/* CSS Document */
/*	Altered from floatilla and Simple VII Menus by PVII Style Sheet.*/
	
/* General Notes- Rules preceded by # are ID selectors and are
	assigned in the HTML markup like this: <div id="logo">.
	IDs are unique. That is, an ID can only be assigned to
	one element per page.
	
	Rules preceded by a period are Class Selectors and are
	assigned in the HTML markup like this:
	<div class="p7snaptrigger">
	
	Some elements are assigned both an ID and a Class, like this:
	<div class="p7snaptrigger" id="p7trigger1">

/*	Body Rule Notes 
	margin values are in shorthand: Top Right Bottom Left.
	Setting the left and right margins to 15% effectively centers
	all static content and makes that content fill 70% of the window. 
	Zero is the only value that does not require a unit of measure
	Global Font Style and base Font Size */

body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	padding: 0;
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 100%;
	text-align: center;
	text-decoration: none;
	background-color: #c0c0c0;
}

#container
{
	background-color: #FFFFFF;
	margin-top: 10px;
	margin-left: auto;
margin-right: auto;
text-align: left;
	width: 800px;
}

#banner
{
	background-repeat: no-repeat;
	height: 128px;
	width: 800px;
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 80%;
	font-weight: 300;
	background-image: url(layout/banner.jpg);
}
#container #banner #search {
	text-align: center;
	float: right;
	height: 23px;
	width: 125px;
	margin-top: 0px;
	padding-top: 15px;
	padding-right: 15px;
}

#banner a:link {
color: #FFFFFF; text-decoration: none;
}
#banner a:visited {
	color: #AAAAAA;
	text-decoration: none;
}
#banner a:hover, #banner a:active, #banner a:focus {
	color: #DD2C33;
	text-decoration: none;
}

#navigation
{
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 12px;
}

/* 	Link styles for the Triggers

 	Set to block to make link fill up entire layer with medium gray
	background color that shows through the transparent fill of the trigger images */
.trigger a {
	display: block;
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	text-decoration: none;
	letter-spacing: 0.1em;
	padding: 5px;
}

/* 	When the trigger images are hovered over, the background color changes to white.
	We don't change text color because the link text is actually the non-transparent
	portion of the trigger image.
	
	Active and Focus trigger the color change in IE-PC and other
	modern browsers when tabbing through the links with keyboard. */
.trigger a:hover, .trigger a:active, .trigger a:focus {
	background-color: #444444;
	color: #FFFFFF;
}


/* 	The Submenu Layers
 	Use a combined selector to assign all properties common to each
	of the Submenu Layers. */
#subs1, #subs2, #subs3, #subs4{
	width: 230px;
	top: 87px;
	font-size: 12px;
	letter-spacing: 0.1em;
	visibility: hidden;
	position: absolute;
	z-index: 1;
}
/* 	Now use individual selectors for each trigger Layer to assign
	their unique properties, in this case the left property */
#subs1 {left: 14px;}
#subs2 {left: 137px;}
#subs3 {left: 260px;}
#subs4 {left: 260px;}

/* 	The submenu links are in paragraphs, so we set the margin to zero
	so there is no gap between links */
.submenus p {margin: 0;}


/* 	Submenu Link Styles
 	Use a combined selector for a and a:visited. Set padding in shorthand
	to 1px on top and bottom, 8px right and 12px left.
	
	Set display to block so entire link box, including padding is clickable.
	Set border to 1px solid.
	
	Set border colors in shorthand to Light Gray on top and left - and
	Charcoal Gray on right and bottom. This combination of colors creates
	a raised button-type effect.
	
	Set background color to dark gray, text to medium gray and turn off underlines. */
.submenus a, .submenus a:visited {
	display: block;
	padding: 4px 8px 4px 12px;
	background-color: #BBBBBB;
	color: #444444;
	text-decoration: none;
	border-top: 1px solid #BAAFAB;
	border-right: 1px solid #96807A;
	border-bottom: 1px solid #96807A;
	border-left: 1px solid #BAAFAB;
}

/* 	Change background and text colors when links are hovered over.
	Use a combined selector for hover, active, and focus.
	
	Active and Focus trigger the color change in IE-PC and other
	modern browsers when tabbing through the links with keyboard. */ 
.submenus a:hover, .submenus a:active, .submenus a:focus {
	background-color: #555555;
	color: #FFFFFF;
	border-top: #C5A996;
}


#lborder
{
	float: left;
	background-repeat: repeat-y;
	background-image: url(../FE/layout/left.jpg);
	width: 9px;
	height: 100%;
	position: fixed;
	overflow: hidden;
}

#rborder
{
	float: right;
	width: 15px;
	top: auto;
}


/* 	The main content Table */
#content
{
	font-size: 80%;
	margin: 10px;
	line-height: 150%;
}

/* 	By adding a Tag "p" after the content ID Selector we
	create what is called a Descendant Selector. In this instance
	the rule is defining styles for all paragraphs that are
	children (descendants) of the content table. Another way
	of saying this is "all paragraphs inside maincontent".
	
	We set all paragraphs in the content area to have
	Line height set to 150% for readability and text justified.
	Margin is set in shorthand to 8px top and bottom
	and zero left and right.
	
	In shorthand, the presence of two
	values means the first one is for Top and Bottom while the
	second is for Left and Right. */
#content p {
	margin: 8px 0;
	text-align: justify;
}
#content ul {
	margin: 0.5em;
	padding: .5em;
}
#content ol {
	margin: 1em;
	padding: 1em;
}
#lineright {
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 0px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #888888;
}
#lineright p {
	line-height: 150%;
	margin-top: 2px;
	margin-right: 0;
	margin-bottom: 0px;
	margin-left: 0;
}
#lineright ul {
	line-height: 110%;
	margin-top: 0em;
	margin-right: 0.5em;
	margin-bottom: 0em;
	margin-left: 0.5em;
	padding-top: 0em;
	padding-right: 0.5em;
	padding-bottom: 0.2em;
	padding-left: 0.5em;
}
#lineright li {
	background-image: none;
	border-bottom-color: #DD2C33;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	padding-bottom: 2px;
	margin-bottom: 2px;
	padding-left: 0px;
}
#lineleft {
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 20px;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #888888;
}
#contentinside {
	padding-right: 20px;
	padding-left: 20px;
}

/* Heading Rules */

/*	The H1 is used to wrap the Logo, representing
	the top of your page's hierarchy */
h1 {margin: 0;}

/*	Additional Headings
	font type for h2 only
	Remove font-weight for H2 to make it render in default bold weight
	
	Font size is based on its container. An H2 in maincontent,
	for example, would be 200% x 85%
	
	Substantial top marigns are set for headings to provide nice
	separation of sections. */
h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 125%;
	line-height: 18px;
	margin-top: 4px;
}
h3 {font-size: 130%; margin: 14px 0 0 0;}
h4 {font-size: 115%; margin: 6px 0 0 0;}
h5 {
	font-size: 95%;
	margin-top: 12px;
	margin-right: 0;
	margin-bottom: 1px;
	margin-left: 0;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #DD2C33;
}




/* 	Link styles for Main Content only
	Active and Focus trigger the color change in IE-PC and other
	modern browsers when tabbing through the links with keyboard. */
#content a:link {
	color: #777777;
	text-decoration: none;
}
#content a:visited {
	color: #AAAAAA;
	text-decoration: none;
}
#content a:hover, #content a:active, #content a:focus {
	color: #000000;
	text-decoration: none;
}
#leftnav {
	padding-top: 0px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 0px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #888888;
}

/* 	The main content Table but altered so the navigation links are black */
#contentlinks
{
}

/* 	Link styles for Main Content only navigation
	Active and Focus trigger the color change in IE-PC and other
	modern browsers when tabbing through the links with keyboard. */
#contentlinks a:link {
	text-decoration: none;
	color: #000000;
}
#contentlinks a:visited {
	text-decoration: none;
	color: #666666;
}
#contentlinks a:hover, #content a:active, #content a:focus {
	text-decoration: none;
	color: #DD2C33;
}

#footer
{
	clear: both;
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 11px;
	color: #000000;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: center;
}
#footer p {
	margin: 0;
	top: 6px;
}
/* 	Link styles for Footer Content only
	Active and Focus trigger the color change in IE-PC and other
	modern browsers when tabbing through the links with keyboard. */
#footer a:link {color: #888888; text-decoration: none;}

#footer a:visited {
	color: #AAAAAA;
	text-decoration: none;}
	
#footer a:hover, #footer a:active, #footer a:focus {color: #FFFFFF;}


.smalltext {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 9px;
	color: #555555;
}
.bodytext {
	font-size: 90%;
	line-height: 110%;
	color: #444444;
}
.headline {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 13px;
	line-height: 20px;
	font-weight: bold;
	color: #000000;
}
.faqhead {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #DD2C33;
	line-height: 16px;
}
#crossref {
	text-align: left;
	font-size: 80%;
	color: #000000;
	margin-top: 5px;
	font-family: Arial, Verdana, Helvetica, sans-serif;
}
#crossref td {
	border-top-width: 1px;
	border-bottom-width: 2px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #666699;
	border-right-color: #666699;
	border-bottom-color: #666699;
	border-left-color: #666699;
	border-right-width: 1px;
	border-left-width: 1px;
	padding: 2px;
}
.crossref_number {
	width: 60px;
}
.crossref_numberbold {
	font-weight: bold;
	background-color: #FFFFCC;
	width: 98px;
}
.crossref_numberbold2 {
	font-weight: bold;
	background-color: #FFFFCC;
	width: 155px;
}
.crossref_number2 {
	width: 55px;
}
#contentinsidecontact {
	padding-right: 20px;
	padding-left: 20px;
	text-align: left;
}
#contentinsidecontact a:link {
	color: #DD2C33;
	text-decoration: none;
	font-weight: bold;
}
#contentinsidecontact a:visited {
	text-decoration: none;
	font-weight: bold;
	color: #DD2C33;
}
#contentinsidecontact a:hover, #contentinsidecontact a:active, #contentinsidecontact a:focus {
	color: #000000;
	text-decoration: none;
}
#productboxes {
	text-align: center;
color: #000000;
}
#productboxes td {
border: 1px solid #888888;
text-align: center;
}
#productboxes p {
line-height: 100%;
text-align: center;
font-size: 90%;
color: #000000;
}
#productboxes a:link {
	color: #000000;
	text-decoration: none;
	font-weight: bold;
	font-size: 90%;
}
#productboxes a:visited {
	color: #777777;
	text-decoration: none;
	font-weight: bold;
	font-size: 90%;
}
#productboxes a:hover, #contentinsidecontact a:active, #contentinsidecontact a:focus {
	color: #BBBBBB;
	text-decoration: none;
}
#specs {
	line-height: 100%;
	text-align: left;
	font-size: 85%;
	color: #000000;
	margin-top: 35px;
}
#specs a:link {
	color: #DD2930;
	text-decoration: none;
	font-weight: bold;
	line-height: 120%;
}
#specs a:visited {
	color: #777777;
	text-decoration: none;
}
#specs a:hover, #specs a:active, #specs a:focus {
	color: #000000;
	text-decoration: none;
}
.specstitle {
	font-size: 100%;
	color: #EEEEEE;
	font-weight: bold;
	background-color: #444444;
	letter-spacing: 0.1em;
	padding: 3px;
}
.specbold {
	font-weight: bold;
	background-color: #BBBBBB;
	font-size: 95%;
}
#specs td {
	border: 1px solid #444444;
	padding: 2px;
}
.specone {
	background-color: #FFFFCC;
}
.spectwo {
	background-color: #CCFFCC;
}
.spectext {
	line-height: 20px;
	color: #444444;
}
ul
{
list-style: none;
        margin-left: 0;
}

li
{
	background-image: url(images/bullet.gif);
	background-repeat: no-repeat;
	background-position: 0 0.3em;
	padding-left: 15px;
	padding-bottom: 7px;
}
a img { border-style:none; }


.plaintext {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 95%;
	color: #000000;
	line-height: 115%;
	text-align: left;
}
.plaintextLeft {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 95%;
	color: #000000;
	line-height: 110%;
	text-align: left;
}
#conversion {
	text-align: left;
	margin-top: 4px;
	width: 220px;
}
#conversion td {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #DD2C33;
	text-indent: 4px;
}
#conversion_long {
	text-align: left;
	margin-top: 4px;
	width: 491px;
}
#conversion_long td {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #DD2C33;
	text-indent: 4px;
}
#contentinside_smallerpadding {
	padding-right: 10px;
	padding-left: 10px;
}

#contentinsidefairing {
	padding-right: 3px;
}
#contentinsidefairing ul {
	list-style: none;
	line-height: 110%;
	padding-top: 14px;
	padding-right: 0px;
	padding-bottom: 14px;
	padding-left: 0px;
	margin: 0px;
}
#contentinsidefairing li {
	background-image: url(images/bullet.gif);
	background-repeat: no-repeat;
	background-position: 0 0.1em;
	padding-left: 14px;
}
#rudbottomlinks {
	line-height: 120%;
	text-align: right;
	font-size: 90%;
	color: #000000;
	padding-top: 10px;
}
#rudbottomlinks a:link {
	color: #DD2930;
	text-decoration: none;
	font-weight: bold;
}
#rudbottomlinks a:visited {
	color: #777777;
	text-decoration: none;
}
#rudbottomlinks a:hover, #rudbottomlinks a:active, #rudbottomlinks a:focus {
	color: #000000;
	text-decoration: none;
}
h6 {
	font-size: 140%;
	margin-top: 3px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}
#indextext {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #333333;
	line-height: 22px;
}
#indextext a:link {
	color: #333333;
}
#indextext a:visited {
	color: #333333;
	text-decoration: none;
}
#indextext a:hover, .indextext a:active, .indextext a:focus {
	color: #DD2C33;
	text-decoration: underline;
}

.redboldbigger {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #DD2C33;
	line-height: 16px;
}
.bodytextblack {
	font-size: 93%;
	line-height: 110%;
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
}
.redbighead {
	font-size: 200%;
	line-height: 100%;
	font-weight: bolder;
	color: #DD2C33;
	letter-spacing: -0.4pt;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	margin-top: 0px;
	padding-top: 0px;
}
.fltlft {
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
}
.fltrt {
	float: right;
	margin-left: 10px;
	margin-bottom: 10px;
	padding-top: 5px;
}
.plaintextcenter {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 95%;
	color: #000000;
	line-height: 130%;
	text-align: center;
}

