@import url(/css/udm-style.css);
/*@import url(slimbox.css);*/

body {
	margin: 0;
	padding: 0;
/* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */

	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 */
}

p, td, ul, ol, li, dl, dt, dd, h4 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: x-small;
	/* false value for winie4/5 */
	voice-family: "\"}\"";
	/* trick win ie4/5 into thinking rule is over */
	voice-family: inherit;
	/* recover from trick */
	font-size: small;
/* intended value for better browsers */
}

html>body>p, td, ul, ol, ul, li, dl, dt, dd, h4  {
	font-size:  small;
/* be nice to opera */
}

h3 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: small;
	/* false value for winie4/5 */
	voice-family: "\"}\"";
	/* trick win ie4/5 into thinking rule is over */
	voice-family: inherit;
	/* recover from trick */
	font-size: medium;
/* intended value for better browsers */
}

html>body>h3  {
	font-size:  medium;
/* be nice to opera */
}


h2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: medium;
	/* false value for winie4/5 */
	voice-family: "\"}\"";
	/* trick win ie4/5 into thinking rule is over */
	voice-family: inherit;
	/* recover from trick */
	font-size: large;
/* intended value for better browsers */
}

html>body>h2  {
	font-size: large;
/* be nice to opera */
}

#container {
	width: 100%;
/* this will create a container 100% of the browser width */

	background: transparent url(/images/home/repeat.gif) repeat-y left top;
	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: #543948 url(/images/home/logo.gif) no-repeat left top;	
/* This is modified in the per department css */

	padding: 0 10px;
	height: 108px;
}

#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;
}

 #mission_subnav {
	background: transparent url(/images/home/vertnavbar.gif);
/* This is modified in the per department css */

	padding: 0 10px 0 0;
	height: 48px;
}

ul#subnav {
	list-style-type: none;
	font: bold 13px Verdana, Arial, Helvetica, sans-serif;
	margin: 0px;
	padding: 0px;
	height: 48px;
	overflow: hidden;
}

ul#subnav li {
	margin: 0px;
	padding: 0px;
	white-space: nowrap;
	float: left;
}

ul#subnav li a {
	color: #FFFFFF;
	margin: 0px;
	display: block;
	padding: 8px 15px 0;
	text-decoration: none;
}

ul#subnav li a:hover {
	color: #FFD727;
/* This is modified in the per department css */
}

ul#subnav li#mission {
	background-image: url(/images/home/mission.gif);
/* This is modified in the per department css */

	background-repeat: no-repeat;
	background-position: left top;
	height: 48px;
	width: 194px;
}

ul#subnav li#mission  i {
	display: none;
}

div#navbar {
	width: 194px;
	min-height: 606px;
	background: transparent url(/images/home/arc.gif) no-repeat left top;
	float: left;
	padding: 5px 0;
	text-align: center;
}
div#navbar ul#homelink {
	padding-top: 6px;
	padding-bottom: 6px;
}
div#navbar ul#homelink li a {
	padding-right: 3px;
}
div#navbar ul#staticbot {
	padding-top: 10px;
	padding-bottom: 10px;
}
div#navbar ul#staticbot li a {
	border-top: thin dashed #acabae;
	text-align: center;
}
div#navbar ul#referringdocs {
		padding-top: 10px;
}
/*div#navbar ul#referringdocs li a {
	border-top: thin dashed #acabae;

}*/
/* switcher controls */
#switcher {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-align: center;
	width: 140px;
}

#switcher #switchspace {
	width: 8px;
}

td#switch1, td#switch3  {
	height: 5px;
	background-image: url(/images/switcher/sw_arr.gif);
	background-repeat: no-repeat;
	}

/* Tips for content:
1. The space between the content and sidebar1 is created with the left margin on the content 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 #content div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. Be aware it is possible to cause float drop (the dropping of the non-floated content area below the sidebar) if an element wider than it can contain is placed within the content div. WIth a hybrid layout (percentage-based overall width with em-based sidebar), it may not be possible to calculate the exact width available. If the user's text size is larger than average, you will have a wider sidebar div and thus, less room in the content div. You should be aware of this limitation - especially if the client is adding content with Contribute.
3. In the Internet Explorer Conditional Comment below, the zoom property is used to give the content "hasLayout." This may help avoid several IE-specific bugs.
*/

 #content {
	margin: 0 20px 0 205px;
}
 #footer {
	padding: 0 10px;
/* this padding matches the left alignment of the elements in the divs that appear above it. */

	background-image: url(/images/home/repeat.gif);
	background-repeat: repeat-y;
	background-position: left top;

}

 #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 */

	text-align: center;
	height: auto;
	white-space: nowrap;
	display: block;
	font-family: "Times New Roman", Times, serif;
	font-size: 12px;
	color: #999999;
	padding: 15px 0px 15px 194px;
}

.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;
}

h5 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: x-small;
	font-weight: normal;
}

h1 {
	font-family:Verdana, Arial, Helvetica, sans-serif;
}
legend {white-space:normal;}
#content p {
    padding-bottom: 10px;
}

