/* Global Gardens - two col fixed */

body  {
	/*font: 100% Verdana, Arial, Helvetica, sans-serif; */
/* ! */	background:#FFFFFF;
	font: normal small Arial, Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #006633;
	line-height: 1;
}
#container {
	width: 740px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
/* background-image:url(images/headerimage.jpg); */  /* this image is exact size of the header area and serves as the background image for the header */
	background-repeat:repeat-x;
	text-align: left;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}

#header {
	background: #669966;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	padding-top: 0px;
	margin-top:0px;
} 


/* this is for the left div in the header that holds the header text - it is like the mainp */
#headerContent { 
	margin: 0 250px 0 0; /* see comment for mainContent */
	padding: 0 20px; /* see comment for mainContent */
	border-right:1px dotted #99cc99;
	height:100px; /* this sets the height of the div so the border-right will be the right depth */
} 

/* this is for the full green background tile at top of header */
#header_bgtile{
	background-image: url('../images/header_bgtile3.gif'); height:120px;
	background-repeat: repeat-x;
}

/* this is for the text located in the header div at top of page */
#headertext {
	font: normal normal normal 42px STHeiti, 华文黑体, sans-serif;
	background-color: transparent;
	color: #99cc99;
	position: relative; top: 70px;
	height: 86px;
}

/* this is for the div holding the logo positioned in the top header bar */
#logotop {
	float: right;
	text-align: center;
	padding: 12px 10px 0 10px;
	width: 224px;
	height: 86px;
}

#sidebar {
	float: right; /* since this element is floated, a width must be given */
	width: 224px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: transparent; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 10px;
	/*border: 1px solid #red;*/
}

#mainContent { 
	margin: 0 250px 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border-right:1px dotted #8FBD8F;
} 
#footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#99cc99; 
} 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 4px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: smaller;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

.dateline {
	font: normal small-caps 900 small arial;
}

#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

.byline {
	font-variant: small-caps;
border-bottom: thin dotted #8FBD8F;
	}

h1, h2, h3, h4, h5, h6 {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #775020;
	}

p {
	line-height: 150%;
	}
.news {
	border-bottom: thin dotted #8FBD8F;
}

/* text for the student quotes */
.quote_text {
		font-family: Georgia, "Times New Roman", Times, serif;
		font-style: italic;
		font-size: 15px;
		color: #674F8B;
	}
.firstletter {font-weight: 900; color: #FF8E00;}
.quoteby{
		font-variant: small-caps;
		color: #FF8E00;
	}


.orange {color: #FF8E00;}  /*orange*/
.purple {color: #674F8B;} /*purple*/
.bold {font-weight: 600;}

ul	{
list-style-type: square;
	}
li {	
	margin-bottom: .5em;
	line-height: 125%;
	}

ol.boldone {list-style-type: none;} /* this delets the number in each list item */
ol.boldone li:first-line { font-weight: bold; } /* this sets the first line of each item to bold */

/* ------- -------- -------- ------- Links */
a:link {color: #674F8B}
a:visited {color: #674F8B}
a:hover {color: #674F8B}
a:active {color: #674F8B}

a.orange:link {color: #FF8E00;}
a.orange:visited {color: #FF8E00}
a.orange:hover {color: #FF8E00}
a.orange:active {color: #FF8E00}

a.green:link {color: #8FBD8F;}
a.green:visited {color: #8FBD8F}
a.green:hover {color: #8FBD8F}
a.green:active {color: #8FBD8F}

/* ------- -------- -------- ------- Links */

.orange_text {font-size: 14px; color: #FF8E00;} /*orange*/
.purple_text {font-size: 18px; color: #674F8B;} /*purple*/

/* List style for single spacee p, lists and 0 left padding */
/*.single {
	list-style: none outside; 
	padding-left: 0px;
	margin-bottom: 0px;
	border-bottom: thin dotted #8FBD8F;
	line-height: 110%;
*/

}

/* ------- -------- -------- ------- smooth Gallery layout css */

#myGallery
{
	text-align: left;
	margin: 0 auto;
}

/* ------- -------- -------- ------- Paypal donations layout css */
.donation {
	font:100% bold Arial, Helvetica, sans-serif; 
	color:#006633;
/*	background-color: #BFD5C8; */
	text-align: center;
	margin-left: auto; margin-right: auto; margin-top:6px;
	width: 250px; 
	border: thin dotted #8FBD8F; 
	padding: 0 0 .80em 0;
}
