/* Start of CMSMS style sheet 'GPFF_core' */
/* 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: #2d2e2e;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 0.8em;
	line-height: 1.1em;
	margin: 0 0 0 0; /* 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;
	background-color: #000000;
	/* background-image: url(/img/cloudsBG2010.jpg);
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: center top;*/
}
/* Commonly used to style page titles. */

h1, h2, h3, h4 {
	font-family: "Myriad Web", "Myriad Web Pro", Arial, sans-serif;

}

h1 {
	color: #990000;
	font-size: 1.75em;
	letter-spacing: 0.1em;
	display: block;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #EC470D;
	padding-bottom: 10px;
	margin-right: 0px;
}
/* Commonly used to style section titles. */
h2 {
  color: #990000;
  font-size: 1.4em;
  font-weight: bold;
        line-height: normal;
}
h3 {
	color: #990000;
	font-size: 1.2em;
	font-weight: bold;
	margin-top: 8px;
        line-height: normal;
}
h4 {
	font-size: 105%;
	margin-top: 8px;
	margin-bottom: -12px;
	margin-left: 12px;
	background-color: #EE5316;
	color: #FFFFFF;
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 5px;
	padding-right: 5px;
	margin-right: 10px;
	text-transform: uppercase;
}

#socialnets h4 {
	font-size: 105%;
	margin-top: 8px;
	margin-bottom: -5px;
	margin-left: 12px;
	background-color: #fff;
	color: #444444;
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 5px;
	padding-right: 5px;
	margin-right: 10px;
	text-transform: uppercase;

}

/* Sets the style for unvisited links. */
a,  a:link {
  color: #184FCC;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #184FCC;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #c92c17;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #c92c17;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #5482EB;
}
#fullheader {
	height: 60px;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	background-image: url(/img/bg_fullheader.jpg);
	background-repeat: no-repeat;
	background-position: center top;
}

/* 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: 860px;
	background-image: url(../img/maincontentBG_02.gif);
	background-repeat: repeat-y;
	background-position: -4px top;
	background-color: #FFFFFF;
	border-top-width: 0px;
	border-right-width: 6px;
	border-bottom-width: 6px;
	border-left-width: 6px;

}
#outerWrapper #header {
	font-size: 1em;
	font-weight: bold;
	line-height: 1.6em; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #0A0638;
	border-bottom-color: #FFCC00;
	border-right-color: #0A0638;
	border-left-color: #0A0638;
	height: 286px;
	background-image: url(../img/headerBG2010.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}
#outerWrapper #header09 {
	font-size: 1em;
	font-weight: bold;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #0A0638;
	border-bottom-color: #FFCC00;
	border-right-color: #0A0638;
	border-left-color: #0A0638;
	height: 286px;
	background-image: url(../img/headerBG2010.jpg);
	background-repeat: no-repeat;
	background-position: center top;
}
#outerWrapper #header #logo {
	margin-left: 450px;
	float: right;
	clear: right;
}

#outerWrapper #topNavigationA {
	clear: both;
	margin-top: 242px;

}

#outerWrapper #header h1, #outerWrapper #header09 h1 {
	display: none;
}

#outerWrapper #contentWrapper #leftColumn1 {
	float: left; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 180px;
	border-right-width: 1px;
	padding-top: 15px;
	padding-right: 20px;
	padding-bottom: 15px;
	padding-left: 15px;
}
#outerWrapper #contentWrapper #leftColumn1 p {
	font-size: 94%;
}
#outerWrapper #contentWrapper #leftColumn1 h1 {
	margin-left: -8px;
	letter-spacing: 0em;
	word-spacing: 0em;
	
}
#outerWrapper #contentWrapper #leftColumn1 h2 {
	margin-left: -1px;
	text-transform: uppercase;
}

/* 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 {
	min-height: 500px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 220px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
#outerWrapper #contentWrapper #contentBside {
	min-height: 500px;
	padding-top: 20px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	background-color: #FFFFFF;
	margin: 0;
}
#outerWrapper #contentWrapper #content p, #contentBside p {
	margin-right: 25px;
	margin-left: 15px;
	line-height: 120%;
}
#outerWrapper #contentWrapper #content h1, h2, h3, #contentBside h1, h2, h3 {
	font-family: Arial, Helvetica, sans-serif;
	margin-left: 8px;
}
#outerWrapper #contentWrapper #content td.sep {
	background-image: url(../images/dottedline_blue.gif);
	background-repeat: repeat-x;
	background-position: center center;
}
#outerWrapper #contentWrapper #content li, #contentBside li {
	list-style-type: none;
	list-style-image: url(../img/news_bullet.gif);
	margin-right: 15px;
}

#content a.readmore {
	background-image: url(../img/arrow-right.gif);
	background-repeat: no-repeat;
	display: block;
	background-position: right top;
	height: 18px;
	padding-right: 21px;
	font-size: 92%;
	text-transform: uppercase;
	text-align: right;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #999999;
	padding-bottom: 5px;
}


/* 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 {
  clear: left;
  display: block;
}
#outerWrapper #contentWrapper #content img.leftfloat {
	float: left;
	margin-right: 10px;
	margin-bottom: 0px;
}
#outerWrapper #contentWrapper #content img.rightfloat {
	float: right;
	margin-left: 10px;
	margin-bottom: 0px;
}

#outerWrapper #footer {
	background-color: #efefef; /* Sets the top border properties for an element using shorthand notation */
	padding: 5px 10px 5px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #5972B7;
}
#quote {
	width: 800px;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-right: auto;
	margin-left: auto;
}
#quote p {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 120%;
	color: #FFFFFF;
	font-style: italic;
	font-weight: bold;
	text-align: left;
	margin-top: 8px;
	margin-bottom: 10px;
}
#quote p.atrrib {
	font-size: 100%;
	font-style: normal;
	font-weight: normal;
	text-align: right;
	color: #FFFFFF;
	margin-top: -5px;
	margin-bottom: 0px;
}

#leftColumn1 .leftNavbox {
	color:#333;
	background-color: #EFC387;
	background-image: url(../img/featurebox02_bg.gif);
	background-repeat: no-repeat;
	background-position: 100% 100%;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #184FCC;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 1.5em;
	margin-left: 0;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 30px;
	padding-left: 0px;
}
#leftColumn1 .leftNavbox h1 {
	font-size: 110%;
	word-spacing: 0.1em;
	color:#184FCC;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0px;
	padding-left: 12px;
	padding-bottom: 10px;
	text-transform: uppercase;
	font-family: "Lucida Sans", "Lucida Sans Unicode", Arial, sans-serif;
}


#leftColumn1 .leftNavbox ul {
	margin: 0;
	list-style-type: none;
	padding: 0;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #4A63BF;
	border-top-width: 0px;
	border-right-width: 0px;
	border-left-width: 0px;
	font-family: Arial, Helvetica, sans-serif;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
#leftColumn1 .leftNavbox li {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-top-color: #4A63BF;
	border-right-color: #4A63BF;
	border-left-color: #4A63BF;
	padding: 0px;
	margin: 0px;
}

#leftColumn1 .leftNavbox a {
	display: block;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 8px;
	color: #184FCC;
	font-weight: bold;
	letter-spacing: 0.1em;
	font-size: 86%;
}
#leftColumn1 .leftNavbox a.current {
	background-color: #184FCC;
	color: #FFFFFF;
	padding-left: 24px;
	background-image: url(../img/leftnavBGhover.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}

#leftColumn1 .leftNavbox a:visited {
	
}
#leftColumn1 .leftNavbox a:hover {
	color: #FFFFFF;
	text-decoration: none;
	background-color: #EE5316;
}


/* FOR FLOATING ON MAIN PAGE CONTENT COLUMN */
.topmain {
	margin: 0px;
	padding: 0px;
	width: auto;
	position: relative;
}

.bottommain {
	position: absolute; bottom: 0;
	
}

.duoboxes {
color:#888888;
margin-bottom:8px;
margin-top:8px;
width:auto;
}

div.floatduoboxes {
border-top:2px solid #990000;
border-left:2px solid #990000;
	background-image: url(/img/bgduoboxes.gif);
	background-repeat: no-repeat;
	background-position: right bottom;
float:left;
height:120px;
margin-left:4px;
margin-right:4px;
padding-left:10px;
padding-right:10px;
width:276px;
}

#contentWrapper {
}

/* END FLOATING ON MAIN PAGE CONTENT COLUMN */

/*SOCIAL NETS */

#socialnets {
margin-top:0;
margin-bottom:20px;
width: 100%;
}
/* END SOCIAL NETS */

hr {
  color:#666;
  height: 1px;
  width: 98%;}

.featurebox {
	color:#333;
	background-color: #EFC387;
	background-image: url(../img/featurebox_bg.gif);
	background-repeat: no-repeat;
	background-position: 100% 100%;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 1.5em;
	margin-left: 0;
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 30px;
	padding-left: 15px;
	border-top-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-left-style: solid;
	border-top-color: #184FCC;
	border-left-color: #184FCC;
}
	.featurebox p, .featurebox h1, .featurebox h2, .featurebox h3, .featurebox h4, .featurebox h5, .featurebox h6 {
	color:#4A63BF;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0.3em;
	margin-left: 0;
}
.featurebox p, .floatduoboxes p {border:none;color:#333333}
.featurebox h1 {
	font-size: 110%;
	color: #FFFFFF;
	word-spacing: -0.1em;
	padding-left: 8px;
	padding-bottom: 4px;
	padding-top: 5px;
	background-color: #990000;
	text-transform: uppercase;
}

.floatduoboxes h1 {
	font-size: 110%;
	color: #990000;
	word-spacing: -0.1em;
	padding-left: 8px;
	padding-bottom: 4px;
	padding-top: 5px;
	text-transform: uppercase;
}
.featurebox a {font-weight:bold}
.featurebox a.readmore, .floatduoboxes a.readmore {
	background-image: url(/img/arrow-right.gif);
	background-repeat: no-repeat;
	display: block;
	background-position: right top;
	height: 18px;
	padding-right: 21px;
	font-size: 92%;
	text-transform: uppercase;
}
.maillink {
	background-image: url(/img/mail.gif);
	background-repeat: no-repeat;
	display: block;
	background-position: right top;
	height: 18px;
	padding-right: 21px;
	font-size: 92%;
	text-transform: uppercase;
	text-align: right;
}

.thinborderfloat_right {
	float:right;
	border:1px solid #999999;
	margin-left: 10px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 10px;
	padding-left: 5px;
  } 

.thinborderfloat_left {
	float:left;
	border:1px solid #999999;
	margin-right: 10px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 10px;
	padding-left: 5px;
  } 
/* FORM STYLES  */

div.form-container
 { margin: 10px; padding: 5px; border: #DDD 1px solid; }
#outerWrapper #contentWrapper #content .form-container form {
	background-color: #FFFFFF;
	margin-right: 8px;
	margin-left: 8px;
}

p.legend { margin-bottom: 1em; }
p.legend em { color: #C00; font-style: normal; }

div.errors { margin: 0 0 10px 0; padding: 5px 10px; border: #FC6 1px solid; background-color: #FFC; }
div.errors p { margin: 0; }
div.errors p em { color: #C00; font-style: normal; font-weight: bold; }

div.form-container form p{
	margin-top: 2px;
	margin-right: 0;
	margin-bottom: 2px;
	margin-left: 0;
}
div.form-container form p.note { margin-left: 170px; font-size: 90%; color: #333; }
div.form-container form fieldset { margin: 10px 0; padding: 10px; border: #DDD 1px solid; }
div.form-container form legend {
	font-weight: bold;
	color: #990000;
	text-transform: uppercase;
}
div.form-container textarea {
	height: 125px;
	width: 275px;
}

div.form-container form fieldset div { padding: 0.25em 0; }

div.form-container label, 
div.form-container span.label

 {
	margin-right: 10px;
	padding-right: 10px;
	width: 150px;
	display: block;
	float: left;
	text-align: right;
	position: relative;
	font-weight: bold;
}
div.form-container label.error, 
div.form-container span.error { color: #C00; }
div.form-container label em, 
div.form-container span.label em { position: absolute; right: 0; font-size: 120%; font-style: normal; color: #C00; }
div.form-container input.error { border-color: #C00; background-color: #FEF; }
div.form-container input:focus,
div.form-container input.error:focus, 
div.form-container textarea:focus {	background-color: #FFC; border-color: #FC6; }
div.form-container div.controlset label, 
div.form-container div.controlset input { display: inline; float: none; }
div.form-container div.controlset div { margin-left: 170px; }
div.form-container div.buttonrow { margin-left: 180px; }
table .sponsors {
	border: 1px solid #000066;
	margin-top: 20px;
}


/* 
.required fb_invalid {
       width: 400px;
       clear:both;
       color: #880000;
       margin: 5px;
}
*/

/* END FORMS STYLES */
#contentBside .sponsor_leftcol {
	float: left;
	width: 190px;
	margin-top: 10px;
	text-align: right;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	margin-left: 10px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
#contentBside .sponsor_rightcol .sponsor {
	margin-top: 0px;
	margin-bottom: 8px;
	clear: right;
	float: left;
	width: 550px;
	padding-top: 5px;
	padding-bottom: 5px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #666666;
}
#contentBside .sponsor_leftcol h3 {
	margin: 0px;
	padding-top: 3px;
	padding-bottom: 3px;
	padding-right: 4px;
	padding-left: 4px;
	display: block;
	background-color: #184FCC;
	color: #FFFFFF;
}
#contentBside .sponsor_rightcol .sponsor_break {
	clear: both;
	height: 1%;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #666666;
	margin-top: 25px;
}


#contentBside .sponsor_rightcol {
	float: right;
	width: 570px;
	margin-top: 10px;
	text-align: left;
	border-top-width: 1px;
	margin-right: 10px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #7398EE;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
#contentBside table {
	margin-top: 15px;
}
#contentBside table td {
	border-top-width: 1px;
	border-top-style: dotted;
	border-top-color: #999999;
	border-right-color: #999999;
	border-bottom-color: #999999;
	border-left-color: #999999;
}
.caps {
	text-transform: uppercase;
}
#outerWrapper #contentWrapper #content .Box_featright {
	padding: 2px;
	float: right;
	width: 300px;
	margin-top: 15px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 10px;
	border-top-width: 4px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #184FCC;
	border-right-color: #184FCC;
	border-bottom-color: #184FCC;
	border-left-color: #184FCC;
	font-size: 90%;
	background-color: #e4e4e4;
}
#outerWrapper #contentWrapper #content .Box_featright p {
	margin-top: 4px;
	margin-bottom: 4px;
}
#outerWrapper #contentWrapper #content .Box_featright h3 {
	display: block;
	margin-right: 8px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #EE5316;
	margin-top: 0.8em;
}
#outerWrapper #contentWrapper #contentSpons {
	min-height: 500px;
	padding-top: 20px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	background-color: #FFFFFF;
	margin: 0;
}
#contentSpons table.sponsorwrap{
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#contentSpons .sponsorwrap td {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #184FCC;
}
#contentSpons table.sponsorinner {

	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#contentSpons .sponsorwrap .sponsorinner td {
	border-top-width: 0px;
	border-bottom-width: 1px;
	border-top-style: none;
	border-bottom-style: dotted;
	border-bottom-color: #CCCCCC;
}
#poplayer {
	width: 420px;
	position: absolute;
	z-index: 10002;
	text-align: left;
	background-image: url(../img/dropshadow.png);
	background-repeat: no-repeat;
	background-position: right bottom;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 20px;
	padding-left: 0px;
	visibility: hidden;
}
#poplayer p {
	font-weight: lighter;
}
#poplayer #poplayer_ins {
	width: 400px;
	background-color: #FFFFFF;
	border: 1px solid #EE5316;
}

#poplayer #closeit {
	padding-top: 1px;
	padding-right: 1px;
	padding-bottom: 1px;
	padding-left: 10px;
	text-align: right;
	background-color: #EE5316;
	margin-bottom: 10px;
}
#poplayer #poptext {
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
}
#poplayer h2 {
	font-size: 150%;
}
/* NEWS MODULE */
.NewsSummary .NewsSummaryPostdate, #NewsPostDetailDate {
	font-size: 90%;
	text-align: right;
	text-transform: uppercase;
	font-weight: bold;
	color: #666666;
}
#NewsPostDetailDate {
       margin-top: 5px;
       margin-bottom: 8px;
       margin-right: 25px;
}

#NewsPostDetailContent {
       margin-top: 5px;
       margin-bottom: 12px;
       
}

#NewsPostDetailPrintLink {
      float: left;
      width: 300px;
      text-align: center;
}

#NewsPostDetailReturnLink {
      float: left;
      width: 300px;
      text-align: center;
}
#leftColumn1 h2.latestNews {
	margin-top: 5px;
	margin-bottom: 5px;
	padding-top: 4px;
	padding-right: 8px;
	padding-bottom: 4px;
	padding-left: 8px;
	background-color: #990000;
	color: #FFFFFF;
}
.NewsSummary .NewsSummaryLink {
	margin-bottom: 5px;
	font-size: 110%;
	word-spacing: -0.1em;
	letter-spacing: -0.1em;
}

.NewsSummaryMorelink {
background-image:url(/img/arrow-right.gif);
background-position:right top;
background-repeat:no-repeat;
border-bottom:1px dotted #999999;
display:block;
font-size:92%;
height:18px;
padding-bottom:5px;
padding-right:21px;
text-align:right;
text-transform:uppercase;
}
.NewsSummary {
	margin-top: 5px;
	margin-bottom: 10px;
	padding-bottom: 8px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #EC470D;
}
#NewsPostDetailTitle {
	margin-top: 5px;
	margin-bottom: 5px;
	margin-left: 0;
}

/* SITE SEARCH FORM */

#site_search {
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}

#site_search label {
	display: block;
	clear: both;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	text-transform: uppercase;
	font-size: 90%;
	color: #666666;
}
#site_search .search-input {
	color: #990000;
	display: block;
	margin-top: 0px;
	margin-bottom: 5px;
}
.banners {
text-align:center;
}

.banners img {
border: none;}


/* End of 'GPFF_core' */

