@charset "utf-8";
body {
	font: 125%/1.4;
	/*font-family:"KG Primary Whimsy";*/
	background-image:url(../images/classroom-rewind-concept.jpg);
	/*	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;  */
	margin: 0 auto;
	padding: 0;
	color: #000;
	background-repeat: repeat;
}

h1, h2, h3, h4, h5, h6{
	/*font-family:"KG Like A Skyscraper";*/
	color: #90F;
	margin-top: 0;
}

a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
	padding-left: 15px;
	padding-right: 15px;
	width: 80%;
	max-width: 1542px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
	min-width: 850px;
	margin: 0px auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
	overflow: hidden;
}

/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.

*/

.topnav	{
	background-image: url(../images/Navbg.png);
	background-position: center;
	height: auto;
	width: 80%;
	max-width: 1542px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
	min-width: 850px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
}

img {
	height: auto;
	width: 100%;
}

.topnav ul, .topnav ol { 
	list-style-type: none;
	padding: 5px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
	color: white;
	font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-weight:bold;
	font-size:22px;
	font-style:italic;
}

.topnav li	{
	display:inline;
}

.topnav a:link {
	color: #FFF;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}

.topnav a:visited {
	color:#FFF;
	text-decoration: underline;
}

.topnav a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
	color:#C63;
}

/*.sidebar1 {
	float: left;
	width: 20%;
	background-color: #93A5C4;
	padding-bottom: 10px;
}*/
.content {
	margin-top: 5px;
	margin-bottom: 15px;
	padding: 10px 15px;
	float: left;
	width: 95%;
	background-color: #FFF;
	border-radius: 15px;
	-moz-box-shadow: 9px 9px 5px #999;
	-webkit-box-shadow: 9px 9px 5px #999;
}

.content1 {
	max-width: 217 px;
}

.home	{
	float:left;
	padding: 5px;
	width: 380px;
	height: 510px;
}

/*.sidebar2 {
	float: left;
	width: 20%;
	background-color: #93A5C4;
	padding: 10px 0;*/
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
	font-family: Philosopher;
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */

.nav {
	height: 60px;
	border-radius: 15px 15px 0 0;
	background-color:#F6C;
	margin-bottom: 5px;
}

.accountMenu {
	clear: both;
}

.StyleTxtField {
	border: 1px solid #93F;
	border-radius: 6px;
	width: 200px;
	height: 35px;
	font-family:"KG Like A Skyscraper";
	padding-left: 6px;	
}

.main {
	width: 80%;
	float: left;
}

.left {
	width: 19%;
	float: left;

}

.left img {
	max-width: 180px;
}

.middle {
	margin-left: 8px;
	width: 60%;
	float: left;
}

.middle img {
	width: 100%;
}

.random {
	
}

.random img {
	
}

.right {
	width: 19%;
	float: right;
}

.right img {
	max-width: 180px;
	padding-bottom: 15px;
}

.contact {
	width: 35%;
	float: left;
}

.motto {
	width: 60%;
	max-width: 352px;
	float: left;
}

.motto img {
	width: 100%;
	padding: 15px;
}

.footer	{
	
/*	max-width: 1260px; a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
/* 	min-width: 850px;a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
/*	margin: 0px auto;  the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
	margin-top: 15px;
	padding-top: 3px;
	text-align: center;
	color: #FFF;
	font-size: 10px;
}
