/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
}

/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */

body {
	color: #2c2d2e;
	background-color: #132F56;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 13px;
	line-height: 14px;
	margin: 0 0 0 0;
	background-image: url(../pix/body_bkgrd.png);
	background-attachment: fixed;
	background-repeat: repeat;
	background-position: bottom;

/* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0;

/* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center

;
/* Centers the page content container in IE 5 browsers. */
}

/* Commonly used to style page titles. */

h1 {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	color: #000;
	font-size: 25px;
	font-weight: bold;
	line-height: 25px;
}

/* Commonly used to style section titles. */

h2 {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	color: #000;
	font-size: 20px;
	font-weight: bold;
	line-height: 23px;
}

/* Commonly used to style section titles. */

h3 {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	color: #000;
	font-size: 16px;
	font-weight: bold;
	line-height: 19px;
	margin-top: 15px;
}


/* Sets the style for unvisited links. */

a,  a:link {
	color: #595F7B;
	font-weight: bold;
	text-decoration: none;
}

/* Sets the style for visited links. */

a:visited {
	color: #595F7B;
	font-weight: bold;
	text-decoration: none;
}

/* Sets the style for links on mouseover. */

a:hover {
	color: #EB4D1E;
	text-decoration: underline;
}

/* Sets the style for a link that has focus. */

a:focus {
	color: #707897;
}

/* Sets the style for a link that is being activated/clicked. */

a:active {
	color: #707897;
}

#fullWidthHeader {
	background-color: #000;
	font-size: 18px;
	font-weight: bold;
	line-height: 15px;
	padding: 10px 10px 10px 10px;


/* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left;
	background-image: url(../pix/fullwidthHeader_bkgrd.png);
	background-repeat: repeat-x;
}

/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */

#outerWrapper {
	margin: 0 auto 0 auto;


/* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left;

/* Redefines the text alignment defined by the body element. */
	width: 960px;
}

#outerWrapper #header {
	height: 100px;
	position: relative;
}

#outerWrapper #header h1 {
	color: #000;
	margin: 0;
	text-indent: -1000em;
	height: 55px;
	width: 422px;
	top: 20px;
	left: 0px;
	background-image: url(../pix/pddh_logo.png);
	position: absolute;

}

#outerWrapper #header ul {
	margin: 0;
	padding: 0;
	background-image: url(../pix/headerTwo_bkgrd.png);
	background-repeat: no-repeat;
	background-position: top right;
	text-align: right;
	width: 180px;
	padding-top: 12px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 0px;
	top: 0px;
	right: 0px;
	position: absolute;
}

#outerWrapper #header li {
	color: #FFF;
	margin-left: 0;
	display: inline;
	list-style: none;
	font-size: 12px;
	border-left: 1px solid #FFF;
	padding: 0px 10px 0;
}

#outerWrapper #header li.first{
    margin-left: 0;
	display: inline;
	list-style: none;
	border-left: none;
}

#outerWrapper #header li a{
	color: #FFF;
}

#outerWrapper #header li a:hover{
	color: #EB4D1E;
}

#outerWrapper #topNavigation {
	background-color: #595F7B;
	height: 25px;
	padding: 10px 0px 10px 0px;
/* 

Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

#navlistBottom li {
	display: inline;
	list-style-type: none;
	padding-right: 20px;
}

#announcement {
	font-size: 1.2em;
	background-color: #EAEAEC;
	padding: 15px 10px;
	text-align: left;
	width: auto;
}
#announcement a {
	color: #EB4D1E;
	text-decoration:    
	padding-right: 5px;
	padding-left: 5px;
}

#outerWrapper #contentWrapper {
	overflow: hidden;
	background-color: #FFF;
}

#contentWrapper {
	background: url(../pix/content_bkgrd.gif) no-repeat right bottom;
}

#outerWrapper #contentWrapper #Column {
	background-color: #EAEAEC;

/* 	border-right: solid 1px #9ea3aa; Sets the right border properties for an element using shorthand notation */
	float: right;
	margin-left: 2px;
	padding: 20px 20px 10px 20px;
/* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 15em;
}
#Column h3 {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	color: #666;
	font-size: 18px;
	font-weight: bold;
	line-height: 19px;
}

#outerWrapper #contentWrapper #Column #events {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;/*

Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

#Column #events ul {
	list-style: none;
	margin-left: 0;
	padding-left: 0;
	text-indent: 0;
	}

#events li {
	padding-top: 8px;
	padding-right: 0px;
	padding-bottom: 8px;
	padding-left: 0px;
}


/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */

#outerWrapper #contentWrapper #content {
	padding: 20px 20px 0px 20px;
	/* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	margin-top: 0px;
	margin-right: 19em;
	margin-bottom: 0px;
	margin-left: 10px;
	line-height: 155%;
	text-align: left;
}

#outerWrapper #contentWrapper #contentHome {
	padding: 20px 20px 0px 20px;
	/* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	margin-top: 0px;
	margin-right: 19em;
	margin-bottom: 0px;
	margin-left: 10px;
	line-height: 155%;
	text-align: left;
	background: url(../pix/content_homepage_bkgrd.jpg) no-repeat left top;
}

#content .imgRight {
	margin-left: 10px;
	margin-bottom: 10px;
	float: right;
}

#content .imgLeft {
	margin-right: 10px;
	margin-bottom: 10px;
	float: left;
}
#content #columnWrapper {
	background-color: #F4F4F4;	
}

#cse-search-results {
	width: 690px;
	height: 1100px;
}

#content .ColumnOne {
	width:310px;
	margin:0;
	margin-top: 20px;
	padding-left: 0px;
	padding-right: 0;
	float: left;

}

#content .ColumnTwo {
	width:310px;
	padding-left: 30px;
	padding-right: 0;
	margin-top: 20px;
	margin-right: 0;
	margin-bottom: 0;
	float:left;
}

#outerWrapper #bottomNavigation {
	height: 90px;
	text-align:center;
	background-image: url(../pix/bottomNav_bkgrd.png);
	background-repeat: repeat-x;
	background-position: top;
	padding: 10px 10px 10px 10px;


/* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

#outerWrapper #footer {
	color: #FFF;
	background-color: #132F56;
	background-image: url(../pix/footer_bkgrd.png);
	line-height: 135%;
	padding: 20px 10px 15px 10px;


/* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background-image: url(../pix/footer_bkgrd.png);
	background-repeat: no-repeat;
	background-position: right top;
}

.footerimage {
	float: left;
	margin-top: 0px;
	margin-right: 20px;
	margin-bottom: 10px;
	margin-left: 0;
}

.copyright {
	text-align: center;
	color: #A0A9B6;
}
.noEvent {
	color: #666;
}

.right {
	text-align: right;
	font-size: 10px;
}
.clear {
	clear: both;
	line-height: 0;
}

#navlist {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	border-bottom: 1px solid #595F7B;
	border-top: 1px solid #595F7B;
	margin: 0px;
	margin-bottom: 0px;
	padding: 0px;
	padding-left: 10px;
	background-color: #595F7B;
	padding-bottom: 8px;
	padding-top: 8px;
}

#navlist a, #navlist a:link, #navlist a:visited {
	border: 1px solid #595F7B;
	padding: 1px;
	padding-left: 1em;
	padding-right: 1em;
	color: #FFFFFF;
	font-weight: normal;
	text-decoration: none;
}

#navlist a:hover, #navlist a:active, #navlist a:focus {
	border: 1px solid #EB4D1E;
	padding: 3px;
	padding-left: 1em;
	padding-right: 1em;
	text-decoration: none;
}

#navlist li {
	padding-right: 1px;
	display: inline;
	font-size: 1.2em;
}

#navlist ul {
	margin: 0px;
	padding: 0px;
}

#events a {
	text-decoration: underline;
}

#navlist #active a {
	background-color: #707897;
}

#crumbs {
	height:2.3em;
	border:1px solid #dedede;
	padding:0;
	margin:0;
}

#crumbs ul {
	height:2.3em;
	border:1px solid #dedede;
	list-style-type:none;
}

#crumbs li {
	float:left;
	line-height:2.3em;
	color:#777;
	list-style-type:none;
	padding-left: 0.75em;
	}		
#crumbs li a {
	background:url(../pix/crumbs.gif) no-repeat right center;
	display:block;
	padding:0 15px 0 0;
	}							
#crumbs li a:link, #crumbs li a:visited {
	color:#777;
	text-decoration:none;
	}	
#crumbs li a:hover,#crumbs li a:focus {
	color:#dd2c0d;
	}		
	
#content h1 {
	margin-top: 20px;
	margin-bottom: 20px;
}
#contentHome h1.homepage {
	margin-top: 180px;
	margin-bottom: 20px;
}

#content h5 {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	color: #122b50;
	font-size: 16px;
	line-height: 21px;
	background-color: #EAEAEC;
	font-weight: bold;
	width: 650px;
	padding-top: 5px;
	padding-left: 10px;
	padding-bottom: 5px;
	margin-bottom: 15px;
	margin-top: 15px;
}
.button {
	background-color: #f3f3f3;
	width: 200px;
	padding: 5px;
	text-align: center;
	border: 1px solid #c7c7c7;
}
.buttonLarge {
	background-color: #fff;
	padding: 5px;
	border: 1px solid #c7c7c7;
	width: 725px;
}
#search {

}

#Column #search h3 {
	margin-bottom: 15px;
}

[if IE 5]>
<style type="text/css"> 
/* IE 5 does not use the standard box model, so the column widths are overidden to render the page correctly. */
#outerWrapper #contentWrapper #Column {
  width: 14em;
}
</style>
<![endif]
[if IE]>
<style type="text/css"> 
/* The proprietary zoom property gives IE the hasLayout property which addresses several bugs. */
#outerWrapper #contentWrapper, #outerWrapper #contentWrapper #content {
  zoom: 1;
}
</style>
<![endif]
