@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #d4d4d4;
	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 */
}

a:link {color: #FFA800; text-decoration:none}
a:visited {color: #0099CC; text-decoration:none}
a:hover {color: #FF0000;}

#container { 
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #2d2d2d;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header { 
	background: #000000 url(../Images/ST-V3/header-kids-gr1.jpg); 
	padding: 0;  /* 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. */
	height: 150px;
} 
#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 */
	color: #FFFFFF;
}

#nav {
	margin: 10px 0 0 0;
	padding: 0;
	background: #000000 url(../Images/ST-V3/navbar-bg-gradient.png) repeat-x;
	list-style-type: none;
	width: 994px;
	float: left;
	font: 0.8em Arial, Helvetica, sans-serif;
}

#nav li {
	margin: 0;
	padding: 0;
	float: left;
}

#nav a {
	float: left;
	width: 141px;
	color: #FFFFFF;
	text-decoration: none;
	line-height: 30px;
	text-align: center;
	border-right: 1px solid #d4d4d4;
}

#nav a:hover {
	color: #000000;
	font-weight: bold;
	background: #ffa800 url(../Images/ST-V3/navbar-hover-gradient.png) repeat-x;
}

#sidebar {
	float: right; /* since this element is floated, a width must be given */
	width: 300px; /* 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:#4a4a4a url(../Images/ST-V3/bg-gradient.png) repeat-x;;
	margin: 20px 0 20px 0;
	padding: 0;
}

#sidebar h2 {font: normal 0.9em Verdana, Arial, Helvetica, sans-serif; text-decoration:underline; color: #FFFFFF; margin-bottom: 5px; text-align: center;}
#sidebar h3 {font: normal 0.8em Verdana, Arial, Helvetica, sans-serif; text-decoration:underline; color: #FFA800; margin-bottom: 5px; text-align: center;}
#sidebar h4 {font: normal 1.0em Verdana, Arial, Helvetica, sans-serif; text-decoration:none; color: #FFA800; margin: 0px; padding-bottom: 0; text-align: left;}
#sidebar p {
	font: normal 0.7em Verdana, Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}
#sidebar li {font-size: 0.7em; text-align:left; padding: 0;}
#sidebar ol, #sidebar ul {padding: 0 0 0 35px;}

#sidefeature {
	width: 250px;
	background: url(../Images/ST-V3/feature-topcurve.jpg) no-repeat #a1a1a1;
	margin: 0 0 20px 25px;
	padding: 0 0 10px 0;
}

#sidefeature h3 {
	padding: 20px 20px 0;
	font-size: 120%;
	color: #000;
	line-height: 1;
	margin: 0;
	text-decoration: none;
}

#sidefeature p {
	padding: 10px 20px 0;
	color: #000000;
	line-height: 1.3;
	margin: 0;
}

#sidefeature a:link {color: #900; text-decoration:none}
#sidefeature a:visited {color: #0099CC; text-decoration:none}
#sidefeature a:hover {color: #FF0000;}

#mainContent { 
	margin: 20px 330px 20px 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; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background:#4a4a4a url(../Images/ST-V3/bg-gradient.png) repeat-x;
	color: #ffffff;
} 

#mainContent h1 {font: bold small-caps 1.2em Verdana, Arial, Helvetica, sans-serif; color:#FFA800; text-align:center; padding: 0;}
#mainContent h2 {font: bold 1.0em Verdana, Arial, Helvetica, sans-serif; color:#FFA800; text-align:center;}
#mainContent h3 {font: italic 0.9em Verdana, Arial, Helvetica, sans-serif; color:#FFFFFF; text-align:left; margin: 10px 0 5px 20px;}
#mainContent p {font: normal 0.7em Verdana, Arial, Helvetica, sans-serif; color:#FFFFFF; padding: 0 20px 0 20px;}
#mainContent li {font-size: 0.7em;}

#navbtm {
	margin: 0;
	padding: 0;
	background: #000066 url(../Images/ST-V3/nav-btm.png) repeat-x;
	list-style-type: none;
	width: 1000px;
	float: left;
	font: 0.6em Arial, Helvetica, sans-serif;
}

#navbtm li {
	margin: 0;
	padding: 0;
	float: left;
}

#navbtm a {
	float: left;
	width: 89px;
	color: #FFA800;
	text-decoration: none;
	line-height: 20px;
	text-align: center;
	border-right: 1px solid #d4d4d4;
}

#navbtm a:hover {
	color: #000000;
	font-weight: bold;
	background: #000066 url(../Images/ST-V3/nav-btm-hover.png) repeat-x;
}

#footer { 
	background: url(../Images/ST-V3/footer.jpg) #000000;
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	height: 100px;
} 

#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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

.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;
}

.captionedphoto {
	float: left;
	margin: 20px 20px 20px 20px;
	padding: 0;
	line-height: 1em;
	width: 400px;
	border: 5px solid #ccc;
	border-bottom-color: #eee;
	border-left-color: #ddd;
	border-top-color: #bbb;
}

.captionedphoto p {
	width: 100%;
	margin: 0;
	padding: 1em 0;
	font: .75em/1.75em Verdana, sans-serif;
	color: #CCCCCC;
}

.captionedphoto img {
	margin: 0;
	padding: 0;
	display: block;
}

ul.start {
	margin: 0 0 10px 0;
	padding: 0;
	float: left;
	text-align: center;
	line-height: 1em;
	list-style: none;
	border: 0px;
}

ul.start li {
	display: inline;
	margin: 0;
	padding: 0;
	
}

ul.start a {
	display: block;
	float: left;
	margin: 0;
	padding: 10px;
	background-color: #ccc;
	text-align: center;
	width: 106px;
	margin: 10px 10px 10px 20px;
	
}

ul.start a:hover {
	background-color: #ffa800;
	border: 0;
}

.imgwrap {
	float: left;
	margin: 10px 10px 10px 25px;
}

.leftbtn {
	margin: 0 0 0 20px;
}

.googleheadlinks {
	float: right;
	margin: 20px 25px 0 0;
}

.googlelg {
	float: left;
	margin: 0 20px 10px 20px;
}

.lomastvadleftcol {
	text-align: center;
	padding: 0;
	margin: 20px 0 0 0;
}

.flashvocabulary {
	text-align: center;
	float: none;
	margin-top: 20px;
}
