body {
	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: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #1b2d5b;
}
.twoColElsLtHdr img {
	border: 0;
}
.twoColElsLtHdr #container #header #topnav #searchform {
	float: right;
	padding: 0px;
	margin-top: -3px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.twoColElsLtHdr #container #mainContent #breadcrumbs {
	font-size: 11px;
	color: #1B2D5B;
	background-color: #CCCCCC;
	padding: 5px;
	margin: -10px;
}
.twoColElsLtHdr #container #mainContent #breadcrumbs a {
	color: #1B2D5B;
	text-decoration: none;
}
.twoColElsLtHdr #container #sidebar1 li {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}
.twoColElsLtHdr #container #sidebar1 ul {
	margin: 0px;
	padding: 10px;
}
.twoColElsLtHdr #container #sidebar1 a {
	font-size: 11px;
	color: #FFFFFF;
	text-decoration: none;
	display: block;
	padding-bottom: 10px;
}
.twoColElsLtHdr #container #header #topnav #searchform form {
	margin: 0px;
	padding: 0px;
}
.searchbox {
	height: 14px;
	width: 80px;
}
.twoColElsLtHdr #container #header #topnav #searchform #imageField {
}
/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
.twoColElsLtHdr #container {
	width: 46em; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #ffffff;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 20px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
	background-color: #CCCCCC;
}
.twoColElsLtHdr #header {
	background: #ffffff;
	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. */
}
.twoColElsLtHdr #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 */
}
/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColElsLtHdr #sidebar1 p" rule.
*/
.twoColElsLtHdr #sidebar1 {
	float: left;
	width: 150px; /* top and bottom padding create visual space within this div */
	background-color: #1B2D5B;
	font-size: 11px;
	color: #FFFFFF;
}
.twoColElsLtHdr #container #header #topnav {
	color: #FFFFFF;
	background-color: #ca3a14;
	height: 17px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	font-size: 11px;
}
.twoColElsLtHdr #container #header #topnav a {
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
	padding-right: 20px;
}
.twoColElsLtHdr #container #sidebar1 #sidebarblk {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .75em;
	font-weight: bold;
	color: #1B2D5B;
	background-color: #72aeb6;
	padding: 10px;
}
.twoColElsLtHdr #container #sidebar1 #sidebarblk a {
	color: #1B2D5B;
	text-decoration: none;
}
.twoColElsLtHdr #sidebar1 h3, .twoColElsLtHdr #sidebar1 p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}
/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/

.twoColElsLtHdr #altContent {
	background-color: #FFFFFF;
	padding: 10px;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 0px;
	font-size: 12px;
	color: #1B2D5B;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #FFFFFF;
}
.twoColElsLtHdr #mainContent {
	background-color: #FFFFFF;
	padding: 10px;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 150px;
	font-size: 12px;
	color: #1B2D5B;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #FFFFFF;
}
.twoColElsLtHdr #container #mainContent h1 {
	margin: 0px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ca3a14;
	font-size: 22px;
	padding-top: 20px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.twoColElsLtHdr #container #mainContent h2 {
	margin: 0px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #8fadb4;
	font-size: 16px;
	padding-top: 14px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.twoColElsLtHdr #container #mainContent h3 {
	font-size: 14px;
}
.twoColElsLtHdr #container #mainContent h4 {
	font-size: 12px;
}
.twoColElsLtHdr #container #mainContent p {
	/*margin: 0px;*/
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	line-height: 18px;
}
.twoColElsLtHdr #container #mainContent img {
	margin: 5px;
}
.twoColElsLtHdr #container #mainContent ul {
	list-style-image: url(images/bullet-193-56-40.jpg);
}
.twoColElsLtHdr #container #mainContent ul li ul {
	list-style-image: url(images/bullet-198-147-10.jpg);
}
.twoColElsLtHdr #container #mainContent ul li ul li ul {
	list-style-image: url(images/bullet-0-38-73.jpg)
}
.twoColElsLtHdr #container #mainContent ul li ul li ul li ul {
	list-style-image: url(images/bullet-140-175-191.jpg);
}
.twoColElsLtHdr #container #mainContent ul li ul li ul li ul li ul {
	list-style-image: url(images/bullet-178-170-112.jpg)
}
.twoColElsLtHdr #container #mainContent ol li {
	list-style: decimal;
}
.twoColElsLtHdr #container #mainContent ol li ol li {
	list-style: lower-alpha;
}
.twoColElsLtHdr #container #mainContent ol li ol li ol li {
	list-style: lower-roman;
}
.twoColElsLtHdr #container #mainContent li {
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 0px;
	line-height: 18px;
}
.twoColElsLtHdr #container #mainContent a {
	font-weight: bold;
	color: #1B2D5B;
}
.twoColElsLtHdr #container #mainContent hr {
	color: #b3b15f;
}
.twoColElsLtHdr #container #mainContent .videoWrapperLeft {
	width: 320px;
	height: 240px;
	float: left;
	margin: 0;
	padding: 20px 5px 5px 0;	
}
.twoColElsLtHdr #container #mainContent .videoWrapperRight {
	width: 320px;
	height: 240px;
	float: right;
	margin: 0;
	padding: 20px 0 5px 5px;	
}

/*
.twoColElsLtHdr #container #mainContent h2 {
	margin: 0px;
	padding-top: 10px;
	font-size: 14px;
	font-weight: bold;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
*/
/* begin school landing page layout */
.twoColElsLtHdr #container #mainContent #SchoolLandingPage {
	margin: 0;
	padding: 0;
}
.twoColElsLtHdr #container #mainContent #SchoolLandingPage h2 {
	margin: 0px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #8fadb4;
	font-size: 16px;
	padding-top: 14px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.twoColElsLtHdr #container #mainContent #SchoolLandingPage .row {
	margin: 0;
	padding: 0;
}
.twoColElsLtHdr #container #mainContent #SchoolLandingPage .mediaCell {
	width: 240px;
	height: 180px;
	padding: 5px;
	float: left;
	text-align: left;
	margin-top: 10px;
}
.twoColElsLtHdr #container #mainContent #SchoolLandingPage .mediaCell img {
	margin: 0;
	padding: 0;
}
.twoColElsLtHdr #container #mainContent #SchoolLandingPage .infoCell {
	text-align: left;
	vertical-align: middle;
	width: 300px;
	height: 180px;
	padding: 5px;
	float: right;
	margin-top: 10px;
}
.twoColElsLtHdr #container #mainContent #SchoolLandingPage .infoCell p {
	margin-top: 35px;
}
.twoColElsLtHdr #container #mainContent #SchoolLandingPage .singleCell {
	width: 100%;
	float: left;
	text-align: left;
	margin: 0;
	padding: 0;
}
/* end of school landing page layout */
.twoColElsLtHdr #container #mainContent #quadContainer {
	text-decoration: none;
}
.twoColElsLtHdr #container #mainContent #quadContainer a {
	text-decoration: none;
}
.twoColElsLtHdr #container #mainContent #quadContainer .row {
}
.twoColElsLtHdr #container #mainContent #quadContainer .lftcell {
	width: 22.2em;
	padding: 0.5em;
	float: left;
	text-align: center;
	margin-bottom: 10px;
}
.twoColElsLtHdr #container #mainContent #quadContainer .rtcell {
	width: 22.2em;
	padding: 0.5em;
	float: right;
	text-align: center;
	margin-bottom: 10px;
}
/* Container for Choice Table */
.twoColElsLtHdr #container #mainContent #choiceContainer {
	text-decoration: none;
}
.twoColElsLtHdr #container #mainContent #choiceContainer a {
	text-decoration: none;
}
.twoColElsLtHdr #container #mainContent #choiceContainer p {
	text-decoration: none;
}
.twoColElsLtHdr #container #mainContent #choiceContainer .row {
}
.twoColElsLtHdr #container #mainContent #choiceContainer .cell {
	width: 137px;
	float: left;
}
.twoColElsLtHdr #container #mainContent #choiceContainer .pic {
	border: 1px solid black;
	width: 137px;
}
.twoColElsLtHdr #container #mainContent #choiceContainer .pic img {
	margin: 0;
	padding: 0;
}
.twoColElsLtHdr #container #mainContent #choiceContainer .titleRed {
	border: 1px solid black;
	width: 131px;
	padding: 3px;
	float: left;
	text-align: center;
	background-color: #e33000;
}
.twoColElsLtHdr #container #mainContent #choiceContainer .titleTan {
	border: 1px solid black;
	width: 131px;
	padding: 3px;
	float: left;
	text-align: center;
	background-color: #e89e00;
}
.twoColElsLtHdr #container #mainContent #choiceContainer .titleSky {
	border: 1px solid black;
	width: 131px;
	padding: 3px;
	float: left;
	text-align: center;
	background-color: #8eafc2;
}
.twoColElsLtHdr #container #mainContent #choiceContainer .titleGrn {
	border: 1px solid black;
	width: 131px;
	padding: 3px;
	float: left;
	text-align: center;
	background-color: #b3b15f;
}
.twoColElsLtHdr #container #mainContent #choiceContainer .para {
	border: 1px solid black;
	width: 131px;
	height: 160px;
	padding: 3px;
	float: left;
	text-align: left;
	background-color:#FFFFFF;
}
.twoColElsLtHdr #container #mainContent #choiceContainer .other {
	border: 1px solid black;
	width: 556px;
	padding: 3px;
	float: left;
	text-align: left;
	background-color:#FFFFFF;
}
/* End Choice Container */

/* Homepage Styles Begin */
.twoColElsLtHdr #container #homeContent #breadcrumbs {
	font-size: 11px;
	color: #1B2D5B;
	background-color: #CCCCCC;
	padding: 5px;
	margin: 0;
}
.twoColElsLtHdr #container #homeContent #breadcrumbs a {
	color: #1B2D5B;
	text-decoration: none;
}
.twoColElsLtHdr #container #homeContent {
	background-color: #CCCCCC;
	padding: 0;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 150px;
	font-size: 12px;
	color: #1B2D5B;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #FFFFFF;
}
.twoColElsLtHdr #container #homeContent h1 {
	margin: 0px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ca3a14;
	padding-top: 20px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.twoColElsLtHdr #container #homeContent h2 {
	margin: 0px;
	padding-top: 0px;
	font-size: 12px;
	font-weight: bold;
	padding-right: 5px;
	padding-bottom: 0px;
	padding-left: 5px;
}
.twoColElsLtHdr #container #homeContent p {
	margin: 0px;
	padding: 0px;
	font-size: 11px;
	font-weight: bold;
}
.twoColElsLtHdr #container #homeContent img {
	margin: 0;
}
.twoColElsLtHdr #container #homeContent ul {
	list-style-image: url(images/bullet.gif);
}
.twoColElsLtHdr #container #homeContent a {
	font-weight: bold;
	color: #1B2D5B;
	text-decoration: none;
}
.twoColElsLtHdr #container #homeContent #leadStory {
	margin: 0px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #FFFFFF;
	width: 390px;
	height: 376px;
	float:left;
	background-color:#FFFFFF;
}
.twoColElsLtHdr #container #homeContent #CCSDnews {
	width: 193px;
	height: 376px;
	float: right;
	background-color: #CCCCCC;
}
.twoColElsLtHdr #container #homeContent #CCSDnews h2 {
	margin: 0;
	padding: 5px 0 5px 0;
	font-size: 14px;
}
.twoColElsLtHdr #container #homeContent #CCSDnews h3 {
	margin: 0;
	padding: 0 0 5px 5px;
	font-size: 11px;
}
.twoColElsLtHdr #container #homeContent #CCSDnews #new {
	color: #e33000;
}
/* Banners Begin */

/* Official CCSD Colors
#e89e00 Tan
#e33000 Orange
#00046b Navy
#8fadb4 Aqua
#8EAFC2 Sky
#b3b15f Kaki/Gray
#005000 Green
#ffffff White
#000000 Black
*/

.twoColElsLtHdr #container #homeContent #CCSDnews .bannerBlackSky {
	margin-bottom: 1px;
	padding-bottom: 3px;
	padding-top: 3px;
	width: 193px;
	color: #FFFFFF;
	background-color: #00046b;
	font-weight: bold;
	text-align: center;
}
.twoColElsLtHdr #container #homeContent #CCSDnews .bannerBlackSky a {
	color: #ffffff;
}
.twoColElsLtHdr #container #homeContent #CCSDnews .bannerBlackSky a:link,
.twoColElsLtHdr #container #homeContent #CCSDnews .bannerBlackSky a:visited {
	color: #FFFFFF;
}
.twoColElsLtHdr #container #homeContent #CCSDnews .bannerBlackSky a:hover,
.twoColElsLtHdr #container #homeContent #CCSDnews .bannerBlackSky a:active,
.twoColElsLtHdr #container #homeContent #CCSDnews .bannerBlackSky a:focus {
	color: #FFFF00;
}
/* Banners End */

.twoColElsLtHdr #container #homeContent #supportingContainer {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
	background-color: #FFFFFF;
}
.twoColElsLtHdr #container #homeContent #supportingStoryA {
	padding: 0 1 0 0;
	margin: 0px;
	width: 195px;
	float:left;
	border-right: #FFFFFF, 1px;
}
.twoColElsLtHdr #container #homeContent #supportingStoryB {
	padding: 0;
	margin: 0px;
	width: 195px;
	float:left;
}
.twoColElsLtHdr #container #homeContent #videoStory {
	padding: 0 0 0 1;
	margin-left: -10px;
	width: 195px;
	float:right;
}
/* Homepage Styles End */

.twoColElsLtHdr #footer {
	padding: 0 10px;
	font-size: 11px;
	color: #FFFFFF;
	text-align: center;
}
.twoColElsLtHdr #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: 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.twoColElsLtHdr #footer #values {
	font-size: 12px;
	font-weight: bold;
	color: #e33000;
}
.twoColElsLtHdr #footer #motto {
	font-size: 14px;
	font-weight: bold;
	font-style: italic;
}
/* Miscellaneous classes for reuse */
.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;
}
.twoColElsLtHdr #footer a {
	color: #FFFFFF;
}
.twoColElsLtHdr #container #sidebar1 ul ul {
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.twoColElsLtHdr #container #sidebar1 ul ul a {
	margin: 0px;
	padding: 0px;
}
/* Official CCSD Colors
#e89e00 Tan
#e33000 Orange
#00046b Navy
#8fadb4 Aqua
#8EAFC2 Sky
#b3b15f Kaki
#ffffff White
#000000 Black
*/

/* New ID/container for flyout menu sys */
.twoColElsLtHdr #sideMenu {
	float: left;
	width: 150px; /* top and bottom padding create visual space within this div */
	background-color: #1B2D5B;
	font-size: 11px;
	color: #FFFFFF;
}
.twoColElsLtHdr #otherMenu {
	float: left;
	padding: 10 0 0 20;
	width: 150px; /* top and bottom padding create visual space within this div */
	font-size: 11px;
}
/* Std Flyout Menu Begins */

/* common styling */
.menu {
	float:left;
	width:140px;
	position:relative;
	margin:0;
	font-size:11px; /*margin:50px 0;*/
}
.menu ul li a, .menu ul li a:visited {
	display:block;
	text-decoration:none;
	color:#fff;
	width:140px;
	height:20px;
	text-align:left;
	background:#00046b;
	line-height:19px;
	font-size:11px;
	padding-left:10px;
}
.menu ul {
	padding:0;
	margin:0;
	list-style-type: none;
}
.menu ul li {
	float:left;
	margin-right:1px;
	position:relative;
}
.menu ul li ul {
	display: none;
}
/* specific to non IE browsers */
.menu ul li:hover a {
	color:#000;
	background:#8EAFC2;
}
.menu ul li:hover ul {
	display:block;
	position:absolute;
	top:0;
	left:150px;
	width:140px;
}
.menu ul li:hover ul li a.hide {
	background:#b3b15f;
	color:#000;
}
.menu ul li:hover ul li:hover a.hide {
	width:140px;
}
.menu ul li:hover ul li ul {
	display: none;
}
.menu ul li:hover ul li a {
	display:block;
	background:#8EAFC2;
	color:#000;
	width:140px;
}
.menu ul li:hover ul li a:hover {
	background:#b3b15f;
	color:#000;
}
.menu ul li:hover ul li:hover ul {
	display:block;
	position:absolute;
	left:150px;
	top:0;
	color:#000;
}
.menu ul li:hover ul li:hover ul li a {
	display:block;
	width:140px;
	background:#b3b15f;
	color:#000;
}
.menu ul li:hover ul li:hover ul li a:hover {
	background:#e89e00;
	color:#000;
}
/* Std Flyout Menu Ends */
.sideBar {
	float:right;
	margin-top: 10px;
	padding-top: 3px;
	padding-bottom: 3px;
	width:130px;
	color:#FFFFFF;
	background-color:#00046b;
}
.sideBar p {
	size: 9px;
	margin-left: 3px;
	margin-right: 3px;
}
.sideBar a {
	color:#FFFFFF;
	font-weight: bold;
}
.sideBar a:visited {
	color:#FFFFFF;
}
.sideBar a:hover {
	color:#FFFFFF;
}
/* District Wide Menu Begins .distMenu */

/* common styling */
.distMenu {
	font-family: arial, sans-serif;
	width:140px; /*height:150px;*/
	position:relative;
	margin:0;
	font-size:11px; /*margin:50px 0;*/
}
.distMenu ul li a, .menu ul li a:visited {
	display:block;
	text-decoration:none;
	color:#fff;
	width:140px;
	height:20px;
	text-align:left;
	background:#00046b;
	line-height:19px;
	font-size:11px;
	padding-left:10px;
}
.distMenu ul {
	padding:0;
	margin:0;
	list-style-type: none;
}
.distMenu ul li {
	float:left;
	margin-right:1px;
	position:relative;
}
.distMenu ul li ul {
	display: none;
}
/* specific to non IE browsers */
.distMenu ul li:hover a {
	color:#000;
	background:#8EAFC2;
}
.distMenu ul li:hover ul {
	display:block;
	position:absolute;
	top:0;
	left:150px;
	width:140px;
}
.distMenu ul li:hover ul li a.hide {
	background:#b3b15f;
	color:#000;
}
.distMenu ul li:hover ul li:hover a.hide {
	width:150px;
}
.distMenu ul li:hover ul li ul {
	display: none;
}
.distMenu ul li:hover ul li a {
	display:block;
	background:#8EAFC2;
	color:#000;
	width:140px;
}
.distMenu ul li:hover ul li a:hover {
	background:#b3b15f;
	color:#000;
}
.distMenu ul li:hover ul li:hover ul {
	display:block;
	position:absolute;
	left:150px;
	top:0;
	color:#000;
}
.distMenu ul li:hover ul li:hover ul li a {
	display:block;
	width:140px;
	background:#b3b15f;
	color:#000;
}
.distMenu ul li:hover ul li:hover ul li a:hover {
	background:#e89e00;
	color:#000;
}
/* District Wide Menu Ends */ 

/* Department Wide Menu Begins .deptMenu */

/* common styling */
.deptMenu {
	font-family: arial, sans-serif;
	width:140px; /*height:150px;*/
	position:relative;
	margin:0;
	font-size:11px; /*margin:50px 0;*/
}
.deptMenu ul li a, .menu ul li a:visited {
	display:block;
	text-decoration:none;
	color:#fff;
	width:140px;
	height:20px;
	text-align:left;
	background:#00046b;
	line-height:19px;
	font-size:11px;
	padding-left:10px;
}
.deptMenu ul {
	padding:0;
	margin:0;
	list-style-type: none;
}
.deptMenu ul li {
	float:left;
	margin-right:1px;
	position:relative;
}
.deptMenu ul li ul {
	display: none;
}
/* specific to non IE browsers */

.deptMenu ul li:hover a {
	color:#000;
	background:#8EAFC2;
}
.deptMenu ul li:hover ul {
	display:block;
	position:absolute;
	top:0;
	left:150px;
	width:140px;
}
.deptMenu ul li:hover ul li a.hide {
	background:#b3b15f;
	color:#000;
}
.deptMenu ul li:hover ul li:hover a.hide {
	width:140px;
}
.deptMenu ul li:hover ul li ul {
	display: none;
}
.deptMenu ul li:hover ul li a {
	display:block;
	background:#8EAFC2;
	color:#000;
	width:140px;
}
.deptMenu ul li:hover ul li a:hover {
	background:#b3b15f;
	color:#000;
}
.deptMenu ul li:hover ul li:hover ul {
	display:block;
	position:absolute;
	left:150px;
	top:0;
	color:#000;
}
.deptMenu ul li:hover ul li:hover ul li a {
	display:block;
	width:140px;
	background:#b3b15f;
	color:#000;
}
.deptMenu ul li:hover ul li:hover ul li a:hover {
	background:#e89e00;
	color:#000;
}

/* Department Wide Menu Ends */

