﻿/* CSS layout
This page controls the layout of the four main page sections:
- top_nav (used for main menu)
- left_col (used for subject contents menu)
- page_content (used for page content)
- footer (credits, links, etc.)
 */
 
/* next line imports the main navigation menu style sheet */
@import url('../menus/main_nav_menu.css');

/* next line imports the contents (left column) menu style sheet */
@import url('../menus/contents_menu.css');
@media Print {
	.ScreenOnly {
		visibility:hidden;
		display:none;
	}
	#page_title {
	font-family: "Comic Sans MS";
	font-size: large;
	float: left;
	visibility: hidden;
	display: none;
}

	.style1 {
		border-width: 0px;
	}
	.style2 {
		color: #FF9900;
	}
	.style3 {
		border: 3px solid #999999;
	}

	.style4 {
		font-size: large;
	}

.style7 {
	color: #FF0000;
	visibility: hidden;
	display: none;
}
.style8 {
	font-size: small;
	visibility: hidden;
	display: none;
}
.style9 {
	font-size: x-large;
	font-weight: bold;
}

}

@media Screen {
	.PrintOnly {
		visibility:hidden;
		display:none;
	}

#top_nav {
}
#masthead {
	font-family: "Comic Sans MS";
	font-size: xx-large;
	background-color: #FF9900;
	border-top-style: groove;
	border-right-style: groove;
	border-left-style: groove;
	padding-left: 50px;
	padding-bottom: 10px;
	padding-top: 10px;
	height: 60px;
	font-weight: bold;
	color: #000066;
}
#container {
	position: relative;
	width: 100%;
}

#left_col {
	border-style: none groove groove groove;
	border-color: #888888;
	width: 200px;
	position: absolute;
	left: 0px;
	top: 0px;
	height: 99%;
	background-color: #FF9900;
	font-family: Arial, Helvetica, sans-serif;
}

#page_icon {
	font-family: "Comic Sans MS";
	width: 240px;
	height:200;
	float: left;
}

#page_title {
	font-family: "Comic Sans MS";
	font-size: large;
	float: left;
}

#page_content {
	border-color: #C0C0C0 #888888 #888888 #888888;
	border-style: inset groove groove groove;
	margin-left: 204px;
	background-color: #FFFFFF;
	text-align: left;
	height: 700px;
	overflow: scroll;
	clip: rect(auto, auto, auto, auto);
	padding-left: 50px;
	font-family: Arial, Helvetica, sans-serif;
	padding-right: 50px;
	border-top-width: thin;
	color: #003399;
}
#footer {
	font: 100% Arial, Helvetica, sans-serif;
	border-style: ridge;
	border-color: #666666;
	background-color: #68738A;
	color: #C0C0C0;
}

.para1 {
	width: 100%;
	padding: 10px;
	float: left;
}

.image1 {
	margin: 10px 20px 10px 20px;
}

.style1 {
	border-width: 0px;
}
.style2 {
	color: #FF9900;
}
.style3 {
	border: 3px solid #999999;
}

.style4 {
	font-size: large;
}

.style7 {
	color: #FF0000;
}
.style8 {
	font-size: small;
}

}



