@CHARSET "US-ASCII";
body { 
	/*background-color: #5959BD;*/
	background-color: #F2F2FA;
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	margin: 0px;
}
h1 {
	font-size: 130%;
	font-weight: bold;
	color: #000099;
}
h2 {
	font-size: 120%;
	font-weight: bold;
	color: #000099;
}
h3 {
	font-size: 110%;
	font-weight: bold;
	color: #000099;
}

#header-top-left {
	float: left;
	width: 115px;
	/*background-color: #F2F2FA;*/
	background-color: #2626A8;
	font-size: 90%;
	padding: 5px;
	margin-top: 0px;
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 5px;
}
#header-top-right {
	float: right;
	width: 300px;
	/*background-color: #CCCCEB;*/
	background-color: #2626A8;
	font-size: 90%;
	color: #FFFFFF;
	padding: 5px;
	margin-top: 0px;
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 5px;
}
#header-top-right ul {
	display: inline;
    list-style-type: none;
    overflow: hidden;
}
#header-top-right ul li {
    float: left;
    color: #FFFFFF;
}
#header-top-right ul li a {
	color: #FFFFFF;
	text-decoration: none;
}
#header-top-main {
	/*background-color: #CCCCEB;*/
	background-color: #2626A8;
	font-size: 90%;
	padding: 5px;
	margin-top: 0px;
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 5px;
}

#header {
	background-color: #2626A8;
	color: #FFFFFF;
	height: 100px;
	display: block;
	padding-top: 2px;
	padding-left: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	/*border: 2px solid red;*/
	margin-top: 5px;
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 5px;
}
#header .container {
	width: 1100px;
}
#header .container: before, #header .container: after {
	display: block;
}
#header .container #header-logo {
	float: left;
	color: #FFFFFF; /*text color*/
	font-size: 200%;
	/*300 + 5 + 5 + 2 + 2 + 5 + 5 = 324 pixels wide*/
	padding-top: 0px;
	padding-left: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	/*border: 2px solid green;*/
	margin-top: 15px;
	margin-left: 10px;
	margin-right: 0px;
	margin-bottom: 15px;
}
#header .container #header-logo a {
	text-decoration: none; /*hides the underlining*/
	color: #FFFFFF; /*text color*/
}
#header .container #header-logo a:hover {/*when hovering over a link*/
	color: #D1F0FF; /*text color*/
}
#logo {
	width: 300px;
	height: 60px;
	/*background: url("img/chrome.png") no-repeat scroll transparent;*/
	background-image: url("img/chrome.png");
	background-repeat: no-repeat;
	background-color: transparent;
}
#header .container #header-banner {
	/*background-color: red;*/
	float: right;
	color: #FFFFFF; /*text color*/
	font-size: 200%;
	padding-top: 0px;
	padding-left: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	/*border: 2px solid yellow;*/
	margin-top: 0px;
	margin-left: 0px;
	margin-right: 10px;
	margin-bottom: 0px;
}
#header .container #header-banner div {
	margin-top: 15px;
	margin-bottom: 15px;
}
#header .container #header-banner img {
	width: 728px;
	height: 90px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
}

/*MENU*/
#menu {
	position:relative;
	z-index: 1;
	background-color: #5959BD;
	margin-top: 5px;
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 5px;
	height: 20px; /*height of menu*/
}
#menu > ul {
	display: inline;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow:auto;
	height: 20px;
	background-color: #5959BD;
}
#menu > ul > li {
	float: left; /*float the 1st level list to the left*/
}
/*when hovering over a link*/
#menu > ul > li > a:hover {
	background-color: #2626A8; /*background color*/
	color: #D1F0FF; /*text color*/
	font-size: 100%;
	height: 20px; /*height of hover*/
}
#menu .all-rounded-edges:hover {
	border-radius:10px; /*rounded edges*/
}
#menu .top-rounded-edges:hover {
	border-radius:10px 10px 0px 0px; /*rounded edges*/
}
#menu li {
	list-style-type: none; /*hide the list's bullets*/
	color: #FFFFFF; /*text color*/
	font-size: 100%;
}
/*sub menu is normally hidden*/
#menu li > ul {
	display: none;
	/*width: 100px;  controls width of sub menu list, but we don't need it - messes everything up*/
}
/*on hover sub menu displays as a block*/
#menu li:hover > ul {
	display: block;
	position: absolute;
	background-color: #2626A8; /*background color*/
	border-top-left-radius:0px;
	border-top-right-radius:10px;
	border-bottom-right-radius:10px;
	border-bottom-left-radius:10px;
}
#menu a {
	text-decoration: none; /*hides the underlining*/
	color: #FFFFFF; /*text color*/
	font-size: 100%;
	line-height: 20px; /*height of text*/
	height: 20px; /*height of link*/
	/*width: 50px;  controls width of menu links in #menu > ul > li, but we don't need it - messes everything up*/
	display: block;
	padding-top: 0px;
	padding-left: 5px;
	padding-right: 5px;
	padding-bottom: 0px;
}
#menu a:hover {/*when hovering over a link*/
	color: #D1F0FF; /*text color*/
	font-size: 100%;
	height: 20px; /*height of hover*/
}


/*MAIN*/
#main-frame > iframe {
	position:relative;
	width: 600px;
	height: 200px;
	padding: 0px;
	border: 2px solid red;
	/*margin: 5px;*/
	margin-right: 195px;
	margin-left: 195px;
}
#main {
	background-color: #F2F2FA;
	color: #000000;
	font-size: 105%;
	padding-top: 10px;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	/*border: 2px solid red;*/
    border-color: red;
	margin-top: 0px;
	margin-left: 220px;
	margin-right: 200px;
	margin-bottom: 10px;
}
p.author {
	font-size: 105%;
	color: #000099;
}


/*SIDE BAR LEFT*/
#side-frame-left > iframe {
	float: left;
	width: 182px;
	height: 200px;
	padding: 0px;
	border: 2px solid red;
	margin: 5px;
}
#sidebar-left {
	float: left;
	background-color: #F2F2FA;
	color: #000000;
	font-size: 100%;
	/*194 + 5 + 5 + 2 + 2 + 10 + 2 = 220 pixels wide*/
	width: 194px;
	padding-top: 5px;
	padding-left: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	/*border: 2px solid black;*/
	margin-top: 0px;
	margin-left: 10px;
	margin-right: 2px;
	margin-bottom: 10px;
}
#sidebar-left .expanded {
	background-image: url('../img/expanded-icon.png');
	width: 10px;
	height: 10px;
}
#sidebar-left .collapsed {
	background-image: url('../img/collapsed-icon.png');
	width: 10px;
	height: 10px;
}
#sidebar-left .hide {
    display: none;
}
#sidebar-left .show {
    display: block;
}
#sidebar-left .indented-text {
	padding-left: 25px;
}
#sidebar-left a {
	text-decoration: none; /*hides the underlining*/
	display: block;
	color: #000000;
}
#sidebar-left a:hover {
	color: #2626A8;
}


/*SIDE BAR RIGHT*/
#side-frame-right > iframe {
	float: right;
	width: 182px;
	height: 500px;
	padding: 0px;
	border: 2px solid red;
	margin: 5px;
}
#sidebar-right {
	float: right;
	background-color: #5959BD;
	font-size: 105%;
	/*174 + 5 + 5 + 2 + 2 + 2 + 10 = 200 pixels wide*/
	width: 174px;
	padding-top: 5px;
	padding-left: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	/*border: 2px solid black;*/
	margin-top: 0px;
	margin-left: 2px;
	margin-right: 10px;
	margin-bottom: 8px;
}
p.box {
	text-align: center;
	padding-top: 10px;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	border-top-width: 1px;
	border-top-style: dotted;
	border-top-color: black;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: black;
	border-left-width: 1px;
	border-left-style: dotted;
	border-left-color: black;
	border-right-width: 1px;
	border-right-style: dotted;
	border-right-color: black;
	margin-top: 5px;
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 5px;
}
p.box a {
	text-decoration: none; /*hides the underlining*/
	display: block;
}


/*FOOTER*/
#footer {
	background-color: #1919A3;
	color: #FFFFFF;
	text-align: center;
	padding: 15px;
	margin: 10px;
	font-size: 90%;
	clear: both;
}



















