/* 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, span, div, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}
/* 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. */
.clearFloat {
	clear: both;
	display: block;
}
/* 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 {
	background-color: #888877;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	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; /* Centers the page content container in IE 5 browsers. */
	color: #333333;
}
/* Commonly used to style page titles - GLOBAL. */
h1 {
	color: #663333;
	font: bold 15px/20px Verdana, Arial, Helvetica, sans-serif;
}
h2 {
	color: #333366;
	font-size: 14px;
	font-weight: bold;
	line-height: 17px;
	font-family: Arial, Helvetica, sans-serif;
}
H3 {
	font-size: 12px;
	color: #353C48;
	margin-top: 12px;

}
#outerWrapper #contentWrapper #table-contentwrapper .border-left #rightColumn H3 {
	font-size: 12px;
	font-weight: bold;
	color: #333366;
	line-height: 18px;
	margin: 0px 0px -15px;
	padding: 0px;
}
#outerWrapper #contentWrapper #table-contentwrapper .border-left #rightColumn UL {
	margin-left: 0px;
	display: block;
}




/* Sets the style for unvisited links. */
a,  a:link {
  color: #333366;
  text-decoration: none;
}


/* Sets the style for visited links. */
a:visited {
  color: #333366;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	text-decoration: underline;
	font-style: italic;
}
/* 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: #fff;
	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: 739px;
	border: solid #000000 2px;
}

/*HEADER - AKA MASTHEAD - AND HEADER MENU ATTRIBUTES*/
#outerWrapper #header {
	border-bottom: solid 1px #; 
	background: #666633;
	height: auto;
	width: 740px;
}
#outerWrapper #MHMenu {
	text-align: right;
	text-transform: uppercase;
	background: #666633;
	height: 15px;
	width: 740px;
	padding-top: 5px;
}
#outerWrapper #MHMenu a{
	color:#FFFFFF;
	padding: 4px 18px 4px 18px;
	font-size: 12px;
	font-weight: bold;
}
/*CONTAINER FOR THE MAIN BODY CONTENT INCLUDES ALL COLUMNS*/
#outerWrapper #contentWrapper {
	width: 740px;
	height: auto;
}
#outerWrapper #contentWrapper #table-contentwrapper TD {
	padding: 15px 10px;
}

/*LEFTCOLUMN1 ATTRIBUTES*/

#leftColumn1 {
	line-height: 18px;
	width: 165px;
	color: #666666;
}

#outerWrapper #contentWrapper #table-contentwrapper .border-right #leftColumn1 UL {
	display: block;
	margin: 10px 0px;
	list-style: none;
}

#leftColumn1 A {
	font: normal 12px Arial, Helvetica, sans-serif;
	color: #333366;
  	text-decoration: none;

}
#leftColumn1 A:hover {
	font-style: italic;
	color: #666633;	
}
#outerWrapper #contentWrapper #table-contentwrapper .leftColumnNavBG #leftColumn1 P {
	padding: 0px;
	margin: 0px 0px 8px;
}
#outerWrapper #contentWrapper #table-contentwrapper #content #SiteMap A {
	font-weight: normal;
}

#outerWrapper #contentWrapper #table-contentwrapper #content #SiteMap {
	padding-top: 10px;
}


#leftColumn1 A:visited {
	color: #333366;	
}
#outerWrapper #contentWrapper #table-contentwrapper .border-left #rightColumn A {
	font-size: 11px;
}

#leftColumn1 h1 {
	padding-bottom: 0px;
	font: bold 16px/normal Verdana, Arial, Helvetica, sans-serif;
	color: #336600;
}
#leftColumn1 H2 {
	margin: 20px 0px 0px;
	font-size: 12px;
	font-weight: bold;
	color: #336600;
}
#outerWrapper #contentWrapper #table-contentwrapper #content #SiteMap H2 {
	color: #336600;
	padding-top: 6px;
}
#outerWrapper #contentWrapper #table-contentwrapper #content #SiteMap UL {
	margin-top: 3px;
	margin-bottom: 10px;
	margin-left: 12px;
}


/* ATTRIBUTES FOR THE CENTER COLUMN OF THE CONTENT AREA*/
#outerWrapper #content {
	width: 370px;
	padding-left: 10px;
}

/*ATTRIBUTES FOR THE RIGHTCOLUMN*/
#outerWrapper #contentWrapper #rightColumn {
	width: 130px;
	float: right;
	font-size: 11px;
}
.border-left {
}

.leftColumnNavBG {
	background: #ffffcc;
}

#outerWrapper #contentWrapper #table-contentwrapper .border-left #rightColumnn UL {

	display: block;
	margin: 10px 0px;
	list-style: none;
}

/* ATTRIBUTES FOR THE FOOTER AREA */
#outerWrapper #footer {
  background-color: #666633;
  border-top: solid 1px #9bb6d2; /* Sets the top border properties for an element using shorthand notation */
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#footer a{
	color:#FFFFFF;
	padding: 4px 18px 4px 18px;
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
}
#footer{
	background:#A2BCD7;
	text-align: center;
}	
.pDoulbleLineSpace {
	font-size: 12px;
	line-height: 20px;
}
.smallLink {
	font-size: 10px;
	font-weight: normal;
	color: #666633;
}
.LinkasHeadline {
	font-size: 14px;
}
#outerWrapper #contentWrapper #table-contentwrapper #content #journey TD {
	padding: 3px;
}
.bookmark {
	background: #FFFFFF url(/images/PushPin.jpg) no-repeat right bottom;
	padding-top: 8px;
	border-style: none;
	cursor: pointer;
	font: bold 12px Arial, Helvetica, sans-serif;
	color: #336699;
	padding-right: 10px;
	width: 125px;
}
