﻿/* 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 {
	font-size: 12px;
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center; /* Centers the page content container in IE 5 browsers. */;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	line-height: 18px;
	background-image: url('../images/background.png');
	background-repeat: repeat-x;
	background-color: #bb9966;
}
/* Commonly used to style page titles. */
h1 {
	color: #000;
	font-size: 150%;
	font-weight: bold;
	margin: 10px 0;
}
.h1 {
	color: #000;
	font-size: 150%;
	font-weight: bold;
	margin: 20px 0;
	padding: 20px 0

}
/* Commonly used to style section titles. */
h2 {
	color: #024479;
	font-size: 125%;
	font-weight: bold;
	margin: 20px 0;
}
.h2 {
	color: #024479;
	font-size: 125%;
	font-weight: bold;
	margin: 10px 0;
	padding: 10px 0
}

/* Sets the style for the h3 header. */
h3 {
	color: #B2233D;
	font-size: 110%;
	font-weight: bold;
	margin: 10px 0;
}
/* Sets the style for the h4 header.  Used to headings that are not red */
h4 
{
    line-height: 150%;
    color: #000;
    font-size: 125%;
    font-weight: bold;
}
img { border: 0 }
/* Sets the style for unvisited links. */
a,  a:link {
	color: #B2233D;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #B2233D;
  font-weight: bold;
  text-decoration: none;
  outline: none;
}
a:active
{
  outline: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  font-weight: bold;
  text-decoration: underline;
}
/* 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 {
	background-color: #002E5F;
	width: 880px;
	text-align: left;
	margin: 10px auto 0 auto;
}
#outerWrapper #header {
	height: 158px;
	line-height: 1.5em;
	font-size: 1.2em;
	color: #000;
	background-image: url('../images/PLTWLogo.jpg');
	background-position: 5px center;
	background-repeat: no-repeat;
	padding: 5px 5px 5px 20px;
	font-weight: bold;
	background-color: #fff;
}
##outerWrapper #leftColumn1 {
	padding: 10px 10px 10px 10px;
}
#outerWrapper #leftColumn1 ul li {
	margin-left: 10px;
	padding: 2px 4px;
	background-color: #BF2327;
	display: inline;
	font-size: 1em;
}
#outerWrapper #leftColumn1 ul {
	list-style-type: none;
	margin: 0;
	padding: 2px;
}
#outerWrapper #leftColumn1 a:link {
	list-style-type: none;
	color: #fff;
	margin: 0;
	padding: 0;
}
#outerWrapper #leftColumn1 a:visited {
	list-style-type: none;
	color: #fff;
	margin: 0;
	padding: 0;
}
#outerWrapper #leftColumn1 a:hover {
	list-style-type: none;
	text-decoration: underline;
	margin: 0;
	padding: 0;
}

/* 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 {
/*	background-color: #FFFFCD*/
}
#outerWrapper #contentWrapper #content {
	padding: 10px 10px 10px 10px; 
	margin: 0; 
/*	border-left: solid 2px #AA7D00;*/
	min-height: 300px;
	background-color: #fff;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  display: block;
  clear: left;
}
#outerWrapper #footer {
	text-align: center;
	font-size: 90%;
	font-weight: bold;
	color: #fff;
	padding: 5px;
	background-color:	#445566;
}
.centered { text-align: center }
.float_right { float: right; }
.float_left { float: left; }
.clear-left { 	clear: left }
.nobottomMargin { margin-bottom: 0 }
.notopMargin { margin-top: 0 }
.colorblack { color: #000 }
.noMargin {
	margin-bottom: 0;
	margin-top: 0
}
.alignleft {
	text-align: left;
	margin: 10px 0
}
.bigredp {
	color: #c50019;
	font-size: 125%;
	font-weight: bold;

}
.pnlStyle legend {
	font-weight: bold;
	color: #024479;
	padding: 20px;
	font-size: 125%
}
.pnlStyle fieldset {
	padding: 10px
}
fieldset p {
	margin-top: 0;
}
.labels {
	margin: 0 0 10px 0;
	padding-right: 10px;
	float: left;
	width: 250px;
	text-align: right;
	font-weight: bold;
}
.districtlabels {
	margin: 0 0 10px 0;
	padding-right: 10px;
	float: left;
	width: 300px;
	text-align: right;
	font-weight: bold;
}

.bigbox {	
	margin: 0;
	float: left;
	width: 200px;
	text-align: left;
}
.position {
	margin: 0 0 10px 0;
	width: 500px;
	text-align: left;
}
.category {
	margin: 10px 0 10px 0;
	float: left;
	width: 280px;
}
.left-margin { margin-left: 40px }
.positionlabel {
    margin: 0;
    padding: 5px 0;
    float: left;
    width: 280px;
    font-weight: bold;
    font-size: 125%;
}
.bold { font-weight: bold }
.text_right {   text-align: right }
.text_center { text-align: center }
.spacebuttons { margin-bottom: 10px }
.hdrtxtred {
	color: #B2233D;
}
.hdrtxtblue {
	font-size: 110%;
	color: #000;
}

.hdrtxt {
	float: right;
	text-align: center;
	margin-top: 20px;
}
.listdblsp {
	margin-bottom: 10px
}
.pnltext {
	font-weight: bold;
	width: 600px;
}
.txtmid { vertical-align: middle; }
