﻿/* layout style sheet for the PD website */

*{ /* reset the padding and margin of every element */
padding: 0;
margin: 0;
}

/* **************************
html and body 
************************** */
html, body {
background: #ffffff;
color: #000000;
}

/* *************************
Container ID which is the overall wrapper for the website
limited to a fixed width of 1000px
************************* */
#container{
width: 1000px; 
margin: 0 auto; 
}
* html #container{
width: 1010px; /* HACK ie6 display hack */
}

/* **********************************
Header Layout
************************************/
#header-links {
height: 25px;
width: 1000px;
margin: 0 auto;
margin-top: 3px;
}

#header {
height: 78px;
margin-top: 5px;
}

/* ************************************
 menu layout
**************************************/
#mainmenu {
height: 75px;
margin-top: 5px;
}

/***************************************
Content and sidebar layouts
***************************************/
#content{
padding: 0;
margin: 5px 0 0 155px;
width: 690px;
overflow: hidden;
}

#left_column, #right_column{
width: 150px;
margin: 5px 0 0 0;
display: inline;
overflow: hidden;
}

#left_column{
float: left;
}

#right_column{
float: right;
}

/***********************************
Footer
***********************************/
#footer{
height: 20px;
clear: both;
margin: 5px auto;
padding: 5px 0 0 0;
text-align: center;
}
/*
.sidebar-a {float:left;width:150px;margin-top:10px;display;inline;overflow:hidden; }

.sidebar-a {color:#000000;text-decoration:none;font-family:arial;font-size:12px;}
.sidebar-a a {color:#000000;text-decoration:none;font-family:arial;font-size:12px;}
.sidebar-a a:hover {color:#FFFFFF;text-decoration:underline;font-family:arial;color:#000000;}

.sidebar-b {float:right;width:150px;margin-top:10px;display:inline;overflow:hidden; }

.sidebar-b {color:#000000;text-decoration:none;font-family:arial;font-size:12px;}
.sidebar-b a {color:#000000;text-decoration:none;font-family:arial;font-size:12px;}
.sidebar-b a:hover {color:#FFFFFF;text-decoration:underline;font-family:arial;color:#000000;}

#content {padding:0;border:0px solid black;margin-right:px;margin-left:155px;margin-top:10px;margin-bottom:0px;width:690px;overflow:hidden;}
#footer {height:20px;clear:both;margin-top:5px;padding-top:5px; }
*/