/* 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, p, 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. */

img { border:none; }	

body {
	background-color: #336633;
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 90%;
	margin: 10px 10px 10px 10px; /* 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. */
	background-image: url(images/background.jpg);
	background-repeat: repeat-x;
	line-height: normal;
}
p {
	padding: 0px 0px 10px 0px;
	}
/* Commonly used to style page titles. */
h1 {
  color: #000;
  font-size: 14px;
  font-weight: bold;
  line-height: 14px;
}
/* Commonly used to style section titles. */
h2 {
  color: #000;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #000099;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #000099;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #990000;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #000099;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #000099;
}
/* 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: 930px;
}
#keywords {
	width: 918px;
	float: left;
	padding: 5px 5px 5px 5px;
	font-size: 80%;
	background-color: #2f4356;
	color: #FFFFFF;
	border: solid 1px #fff;
	text-align: center;
	}
#header  {
	background-color: #ddd;
	border-bottom: solid 4px #00320b; /* Sets the bottom border properties for an element using shorthand notation */
	font-size: 18px;
	font-weight: bold;
	float: left;
	width: 930px;
}
#headerTop {
	width: 930px;
	float: left;
	background-color: #FFFFFF;
	padding: 5px 0px 5px 0px;
	}
#headerTopLeft {
	width: 200px;
	float: left;
	margin: 0px 0px 0px 10px;
	font-size: 80%;
	}
#headerTopRight {
	width: 190px;
	float: right;
	font-size: 90%;
	font-weight: bold;
	text-align: center;
	}
#headerText {
	width: 500px;
	float:left;
	padding: 20px 5px 20px 15px
}

#headerImage {
	width: 740px;
	float:left
}

#logo{
	width: 190px;
	float:left;
	padding: 0px
}
#tel{
	float:left;
	width: 150px;
	text-align:right;
	padding: 30px 10px 5px 0px;
	font-size: 0.8em;
}
#contentWrapper {
	width: 930px;
	float: left;
	background-color: #FFFFFF;
	overflow: hidden;
	position: relative;
	border-bottom: solid #333366 5px;
}
#row1 {
	width: 930px;
	float: left;
	background-color: #486197;
	border-bottom: solid #2D4255 10px;
}
#row1Panel1 {
	float: left;
	width: 739px;
	background-repeat: repeat-x;
	background-color: #69859D;
	background-image: url(images/row1Panel1Background.jpg);
	border-right: solid 1px #FFFFFF;
}
#row1Panel1Image {
	width: 288px;
	float: left;
	border-right: solid #ffffff 1px;
}
#row1Panel1Text {
	width: 418px;
	color: #FFFFFF;
	float: left;
	padding: 15px;
}
#row1Panel1Text a {
	color: #F0D582;
}


#row1Panel2 {
	float: right;
	width: 190px;
	background: #486197;
	padding: 10px 0px 10px 0px;
}
#row1Panel3 {
	float: left;
	width: 719px;
	background-repeat: repeat-x;
	background-color: #69859D;
	background-image: url(images/row1Panel1Background.jpg);
	color: #FFFFFF;
	font-weight: bold;
	font-size: 200%;
	padding: 10px 10px 10px 10px;
}

#leftColumn1   {
	background-color: #FFFFFF;
	border-right: solid 1px #666;
	float: left;
	padding: 10px 10px 10px 10px;
	width: 350px;
	color: #000000;
	padding-bottom: 1500px;
	margin-bottom: -1500px;
	border-top: solid 1px #666;
	margin-top: 10px;
}
#rightColumn1   {
	background-color: #FFFFFF;
	border-left: solid 1px #666;
	float: right;
	width: 190px;
	margin-bottom: -1500px;
	padding-bottom: 1500px;
}
.newsItemHeadline {
	width: 160px;
	background-color: #666666;
	color: #FFFFFF;
	font-weight: bold;
	padding: 10px;
	margin: 0px 0px 0px 5px;
}
.newsItemByline {
	width: 160px;
	background-color: #CCCCCC;
	padding: 10px;
	margin: 0px 0px 0px 5px;
}
.newsItemIntro {
	width: 160px;
	background-color: #EBEBEB;
	padding: 10px;
	margin: 0px 0px 5px 5px;
}



#content/* 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. */
   {
	margin: 0 190px 0 370px;
	padding: 10px 10px 10px 10px;
	background-color: #FFFFFF;
	color: #000000;
	border-top: solid 1px #666;
	margin-top: 10px;
}
#content-full {
	padding: 10px 10px 10px 10px;
	background-color: #FFFFFF;
	color: #000000;
	border-top: solid 1px #666;
	width: 717px;
	float: left;
	margin-top: 10px;
}

.clearFloat/* 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. */
   {
  clear: both;
  display: block;
}
#footer  {
	border-top: solid 5px #FFFFFF; /* Sets the top border properties for an element using shorthand notation */
	padding: 10px 0px 10px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	float: left;
	width: 930px;
	background-image: url(images/footerBackground.jpg);
	background-repeat: repeat-x;
}
#footerPanel1 {
	float: left;
	width: 460px;
}
#footerPanel1 a {
	color: #FFFFFF;

}

.footerPanel1Item  {
	float: left;
	width: 130px;
	color: #FFFFFF;
	text-align: center;
	margin: 0px 10px 0px 10px;
}

#footerPanel2 {
	float: right;
	width: 380px;
	margin: 0px 10px 0px 0px;
}
.footerPanel2Item {
	float: right;
	width: 380px;
	color: #FFFFFF;
	text-align: right;
	font-weight: bold;
}


	/* footer menu
-------------------------- */	
#footermenu {
	padding-top: 5px;
	padding-bottom: 5px;
	text-align: center;
	width: 930px;
	color: #FFFFFF;
	float: left;
	}
#footermenu ul {
	margin: 0;
	padding: 0;
	}
#footermenu li {
	list-style: none;
	margin: 0;
	padding: 0;
	display: inline;
	}
#footermenu li a {
	padding: 5px 5px 5px 5px;
	margin-bottom: 0;
	border: 0;
	color: #FFFFFF;
	}
#footermenu li a:hover {
	color: #F0D582;
	}
#footermenu li.here a:hover {
	color: #666666;
	}
#footermenu li.here a {
	color: #333333;
	}

#navigation  {
	width: 170px;
	float: left;
	list-style-type: none;
	padding: 15px 10px 15px 15px;
	}

#vertmenu {
	text-align: left;
	background-color: #486197;
	padding: 10px 0px 10px 0px;
	float: left;
	width: 190px;
	}
#vertmenu ul {
	margin: 0;
	padding: 0px 0px 0px 0px;
	font-size: 80%;
	text-align: left;
	}
#vertmenu li {
	list-style: none;
	margin: 0px 0px 0px 5px;
	padding: 5px 0px 5px 5px;
	width: 170px;
	}
#vertmenu li :hover   {

}

#vertmenu li a {
	color: #FFFFFF;
	text-decoration: none;
	}
#vertmenu li a:hover {
	color: #F0D582;

	}
#vertmenu li.here a:hover {
	color: #003366;
	}
#vertmenu li.here a {
	color: #003366;
	}
#vertmenu-header {
	color: #003366;
	font-weight: bold;
	padding: 4px 1px 4px 8px;
	}
#navitemsub {
	text-align: left;
	color: #000000;
	}
#navitemsub ul {
	margin: 0;
	padding: 0px 0px 0px 0px;
	font-size: 100%;
	}
#navitemsub li {
	list-style: none;
	margin: 0px 0px 0px 5px;
	padding: 5px 0px 5px 5px;
	background-image: url(2008/images/sub_nav_bkgrnd.gif);
	background-position: bottom left;
	background-repeat: no-repeat;
	width: 160px;
	}
#navitemsub li a {
	padding: 5px 5px 5px 5px;
	color: #000000;
	text-decoration: none;
	}
#navitemsub li a:hover {
	color: #003366;
	}
#navitemsub li.here a:hover {
	color: #003366;
	}
#navitemsub li.here a {
	color: #003366;
	}
#navitemsub-header {
	color: #000000;
	font-weight: bold;
	padding: 4px 1px 4px 8px;
	}
#menu{
	clear:left;
	text-align:center;
	background-color:#C7CAE6;
	color: #003366;
	cursor: default;
	letter-spacing: 2px
}
#menu ul{
	margin: 0px;
	padding: 6px 0px 6px 0px;
}
#menu li{
	display:inline;
}
#menu li a{
	color: #003366;
}
.underline{text-decoration:underline}
.main-title{
	text-decoration:underline;
	letter-spacing: 5px;
	font-size: 1.5em;
	padding-bottom: 5px;
	color: #0033FF;
}
.sub-title{
  letter-spacing: 3px;
  margin-top: 5px;
  font-size: 0.8em;
}
.align-right {
	text-align:right
	}
.imgright {
	float: right;
	margin: 0px 0px 5px 5px;
	}
.imgleft {
	float: left;
	margin: 0px 5px 5px 0px;
}

.panelTitle {
	font-size: 120%;
	font-weight: bold;
	color: #FFFFFF;
	margin: 0px 10px 0px 10px;
	background-color: #486197;
}
.panelTitle1 {
	font-size: 200%;
	font-weight: bold;
	color: #FFFFFF;
}
.panelTitle2 {
	font-size: xx-large;
	font-weight: bold;
	color: #000000;
	padding: 0px 0px 15px 0px;
}
.panelTitle3 {
	font-size: 175%;
	font-weight: bold;
	color: #000000;
}
.white {
	color: #FFFFFF;
}
.bold {
	font-weight: bold;
}
.smallText {
	font-size: 80%;
}

th {
	font-family: Arial, Helvetica, sans-serif;
	color: #000000;
	background-color: #cccccc;
	border: 1px;
	border-color: #000000;
}

td {
	font-family: Arial, Helvetica, sans-serif;
	color: #000000;
	background-color: #FFFFFF;
	border: 1px;
	border-color: #000000;
}

.articleHeadline {
	font-weight: bold;
	font-size: 175%;
}
.merchandise-column {
	width: 325px;
}

/*SITE SPECIFIC STYLES*/
.merchandise-row{
	width: 325px;
	float: left;
}


.merchandise-image{
	width: 204px;
	padding-top: 5px;
	padding-bottom: 5px;
	float: left;
}

.merchandise-info{
	width: 115px;
	float: right;
}
.gallery-row {
	width: 710px;
	float: left;
	margin: 10px 0px 20px 0px;
	padding: 5px 2px 5px 2px;
	border-bottom: solid #6B7B6E 1px;
}

.gallery-item {
	float: left;
	width: 225px;
	margin: 5px 5px 5px 5px;
	text-align: center;
}
.gallery-panel-header {
	width: 690px;
	background-color: #576959;
	padding: 5px 10px 5px 10px;
	color: #FFFFFF;
	font-weight: bold;
	background-image: url(images/galley-header-backgrnd.jpg);
	background-repeat: repeat-y;
	}
