/* All comments are surrounded by /* */ 
/* Comments can't be placed inside { } brackets  */

/********************************* Styles for specific areas on page *********************************/
/*** This section can be used to apply styles to specific areas of the page                                                      ***/
/*** For example "#leftContent a" and "#leftContent a:hover" (below)                                                          ***/
/*** could be used to apply styles to left column links only                                                                           ***/
/*** (by default they are left empty so they will have the same style as the rest of the page)                         ***/
/*********************************************************************************************/

#centerContent{
padding:15px;
}

#leftContent{
padding:5px;
}

#leftContent a{

}

#leftContent a:hover{

}

#rightContent{
padding:5px;
}

#topContent{
padding:0px;
}

#bottomContent{
padding:15px;
}

/********************************** General page wide styles **********************************/
/*** These styles apply to the whole page, but will we overridden                                                           ***/
/*** in specific areas if the same elements exist for the specific area above                                            ***/
/*****************************************************************************************/

body {
line-height: 1.4em;
}

input, select, textarea {
font-size: 12px;
}

p {
margin-top: 0;
margin-bottom: 0;
}

h1{
margin:0;
font-size:150%;
}

img {
border: none;
text-decoration: none;
}

a img {
text-decoration: none;
}

a {
color:#003366;
text-decoration:underline;
}

a:hover{
text-decoration:none;
}
/* The 3 border properites are: Width Style Color */
.boxBorder {
border: 1px solid #CCCCCC;
padding-top: 0px;
padding-right: 0px;
padding-bottom: 0px;
padding-left: 5px;
}

/******************************** Page background colors ********************************/

body{
background:white;
}
/* left and right nav colors */
.outer {
border-left-color: white;
border-right-color: white;
}

/******************************** Page borders ********************************/
/* left and right nav borders */
.inner {
border-left: solid 1px #CCCCCC;
border-right: solid 1px #CCCCCC;
}
/* Footer border */
.bottom{
border-top: solid 1px #CCCCCC;
}

/******************************** Page layout settings ********************************/
/* left and right column/nav widths */
.outer {
border-left-width: 150px;  
border-right-width: 130px;
}
/* left column width and  _negative_ left column width */
.left {
width: 150px; 
margin-left: -150px;
}
/* right column width and  _negative_ right column width */
.right {
width: 130px;
margin-right: -131px;
}
