@charset "UTF-8";
/* CSS Document */
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	background-image: url(../images/htmlBackground.jpg);
	background-repeat: repeat;
}
.twoColFixLtHdr #container {
	width: 780px;
	margin: 0 auto;
	text-align: left;
	position: relative;
	padding: 0;
} 
.twoColFixLtHdr #header {
	padding: 0 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	height: 205px;
	background-image: url(../images/headerBackground.png);
	background-repeat: no-repeat;
	margin: 0;
	position: relative;
} 
.twoColFixLtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0;
	text-indent: -1000px;
	float: left;
}
.twoColFixLtHdr #header img {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 30px 0 0 0;
}
#mainNavbar {
	position: absolute;
	bottom: 0px;
	left: 30px;
}
#mainNavbar ul  {
	margin: 0px;
	padding: 0px;
	float: left;
	width: 100%;
	list-style-type: none;
}
#mainNavbar li {
	float: left;
	display: block;
	margin: 0;
	padding: 0;
}
#mainNavbar li a:link,#mainNavbar li a:visited {
	font-size: 1em;
	line-height: 38px;
	color: #FFF;
	margin-right: 10px;
	text-decoration: none;
	padding: 0 15px;
	display: block;
	background-image: url(../images/nav_rollover.gif);
	background-repeat: no-repeat;
	background-position: left bottom;
}
#mainNavbar li a:hover {
	background-image: url(../images/nav_rollover.gif);
	background-repeat: no-repeat;
	background-position: left top;
	color: #333;
	border: none;
}
#mainNavbar ul li a.current{
	line-height: 38px;
	color: #CCC;
	height: 43px;
	margin-top: -5px;
	cursor: default;
	background-image: url(../images/nav_current.gif);
	background-repeat: no-repeat;
}
#mainNavbar ul li a.current:hover {
	color: #CCC;
	cursor: default;
}
.twoColFixLtHdr #mainVisual {
	background-image: url(../images/contentBackground.png);
	background-repeat: repeat-y;
	padding: 0px;
	height: 210px;
	margin: 0 auto;
}
.twoColFixLtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 200px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 10px;
	margin: 0 20px;
	background-image: url(../images/SidebarGradation.jpg);
	background-repeat: no-repeat;
	background-position: right bottom;
	background-color: #D4EAFF;
}
.twoColFixLtHdr #sidebar1 h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-style: italic;
	font-weight: normal;
	margin: 0;
}
.twoColFixLtHdr #sidebar1 p {
	font-size: .75em;
	font-weight: normal;
	margin: 0px;
	padding: 0px;
}
.twoColFixLtHdr #container #sidebar1 h4 {
	font-size: 0.75em;
	font-weight: bold;
	margin: 0px;
	padding: 5px 0 0 0;
}
.twoColFixLtHdr #sidebarLeft {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 10px;
	margin: 0px 0 0 20px;
	background-image: url(../images/SidebarGradationshort.jpg);
	background-repeat: no-repeat;
	height: 255px;
	background-position: right bottom;
	background-color: #D4EAFF;
}
.twoColFixLtHdr #sidebarLeft ul {
	font-size: 0.8em;
	text-transform: uppercase;
	list-style-type: none;
	line-height: 1.2;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	display: block;
	margin: 0px;
	padding: 0px;
	color: #fff;
}
.twoColFixLtHdr #sidebarLeft  li {
	background-color: #4071B8;
}
.twoColFixLtHdr #sidebarLeft ul li a:link, #sidebarLeft ul li a:visited {
	color: #FFF;
	display: block;
	text-decoration: none;
	line-height: 1.2;
}
.twoColFixLtHdr #sidebarLeft ul li a:hover {
	color: #999;
	background-color: #0F3198;
	display: block;
	line-height: 1.2;
}
.twoColFixLtHdr #sidebarLeft li a {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
	padding-left: 5px;
	padding-top: 5px;
	padding-bottom: 5px;
	background-color: #4071B8;
}
#sidebarLeft ul li a.currentSub {
	color: #999;
	cursor: default;
	background-color: #0f3198;
}
#sidbarLeft ul li a.currentSub:hover {
	color: #999;
	cursor: default;
	background-color: #0f3198;
}
.moreLink {
	font-size: .65em;
	font-style: italic;
	font-weight: bold;
	text-align: right;
}
.twoColFixLtHdr #mainContent {
	margin: 0 px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 15px 260px 0 40px;
	background-image: url(../images/contentBackground.png);
	background-repeat: repeat-y;
	height: 400px;
} 
.twoColFixLtHdr #mainContent h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.8em;
	font-style: italic;
	font-weight: normal;
	color: #1772BC;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000;
	margin: 0;
}
.twoColFixLtHdr #mainContent p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	color: #000;
	margin: 0px;
	padding: 5px 0 0 0;
	line-height: 1.5;
}
.twoColFixLtHdr #mainContent_single {
	margin: 0 px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 15px 40px 0 40px;
	background-image: url(../images/contentBackground.png);
	background-repeat: repeat-y;
}
.twoColFixLtHdr #mainContent_single h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.8em;
	font-style: italic;
	font-weight: normal;
	color: #1772BC;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000;
	margin: 0;
}
.twoColFixLtHdr #mainContent_single h5 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.1em;
	padding: 0px;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.twoColFixLtHdr #mainContent_single p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	color: #000;
	margin: 0px;
	padding: 5px 0 0 0;
	line-height: 1.5;
}
.twoColFixLtHdr #mainContent_single ul {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	list-style-type: none;
	padding-bottom: 10px;
}
.contactSection {
	width: 100%;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #666;
}
.twoColFixLtHdr #mainContent_single li {
	float: left;
	padding-right: 25px;
}
.twoColFixLtHdr #mainContent_left {
	margin: 0 px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 15px 40px 0 210px;
	background-image: url(../images/contentBackground.png);
	background-repeat: repeat-y;
}
.twoColFixLtHdr #mainContent_left h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.8em;
	font-style: italic;
	font-weight: normal;
	color: #1772BC;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000;
	margin: 0;
}
.twoColFixLtHdr #mainContent_left p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	color: #000;
	margin: 0px;
	padding: 5px 0 0 0;
	line-height: 1.5;
}
.twoColFixLtHdr #mainContent_left #contactList {
	float: left;
	padding-right: 25px;
}
.twoColFixLtHdr #mainContent_left #contactList ul {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.95em;
	padding: 0px;
	list-style: none;
}
.twoColFixLtHdr #mainContent_left #contactList li {
	margin: 0px;
	padding: 0px;
	float: none;
	font-weight: normal;
}
.twoColFixLtHdr #mainContent_left #contactList_right {
	float: left;
}
.twoColFixLtHdr #mainContent_left #contactList_right ul {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.95em;
	padding: 0px;
	list-style: none;
}
.twoColFixLtHdr #mainContent_left #contactList_right li {
	margin: 0px;
	padding: 0px;
	float: none;
	font-weight: normal;
}
#mainContent_left #contactList_right li.title {
	font-size: 1.1em;
	font-weight: bolder;
}
#mainContent_left #contactList li.title{
	font-size: 1.1em;
	font-weight: bolder;
}
.twoColFixLtHdr #mainContent_News {
	margin: 0 px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 15px 260px 0 40px;
	background-image: url(../images/contentBackground.png);
	background-repeat: repeat-y;
}
.twoColFixLtHdr #mainContent_News h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.8em;
	font-style: italic;
	font-weight: normal;
	color: #1772BC;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000;
	margin: 0;
}
#mainContent_left #availableInventory ul {
	font-family: Arial, Helvetica, sans-serif;
	line-height: 37px;
	text-align: center;
	display: block;
	list-style-type: none;
	margin-right: 45px;
	position: relative;
}
#availableInventory ul #excel a:link,#availableInventory ul #excel a:visited{
	background-image: url(../images/availableInventoryExcel.png);
	display: block;
	background-repeat: no-repeat;
	background-position: center top;
	text-decoration: none;
}
#availableInventory ul #excel a:hover {
	background-image: url(../images/availableInventoryExcel.png);
	display: block;
	background-repeat: no-repeat;
	background-position: center bottom;
	text-decoration: none;
}
#availableInventory ul #pdf a:link, #availableInventory ul #pdf a:visited {
	background-image: url(../images/availableInventoryPdf.png);
	display: block;
	background-repeat: no-repeat;
	background-position: center top;
	text-decoration: none;
}
#availableInventory ul #pdf a:hover {
	background-image: url(../images/availableInventoryPdf.png);
	display: block;
	background-repeat: no-repeat;
	background-position: center bottom;
	text-decoration: none;
}
.twoColFixLtHdr #footer {
	padding: 0 10px 0 20px;
	background-image: url(../images/footerBackground.png);
	background-repeat: no-repeat;
	height: 146px;
	margin: 0;
} 
.twoColFixLtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
	font-size: 0.6em;
	font-weight: bold;
}
.twoColFixLtHdr #footer p img {
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
	margin: 0px;
	padding-top: 10px;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
#mainContent_left #availableInventory ul li {
	padding-bottom: 20px;
}
#mainContent_left #standards_list ul {
	list-style-type: none;
	line-height: 37px;
	display: block;
	position: relative;
}
.twoColFixLtHdr #container #mainVisual img {
	margin: 0px;
	padding: 0px;
	list-style-image: none;
	border-style: none;
	margin-left: 19px;
}
.twoColFixLtHdr #mainContent_left ol {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	line-height: 1.5em;
}
.twoColFixLtHdr #mainContent_left ol li {
	padding-bottom: 5px;
}#hydraulicShapes {
	padding: 10px;
	margin-top: 20px;
}
.twoColFixLtHdr #mainContent_left #hydraulicShapes h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-style: italic;
	text-align: center;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 0px;
}
.twoColFixLtHdr #mainContent_left #hydraulicShapes ul li img {
	float: left;
	padding-right: 10px;
	padding-left: 10px;
}
.twoColFixLtHdr #mainContent_left #hydraulicShapes table {
	font-family: Arial, Helvetica, sans-serif;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
	padding: 0px;
	font-weight: bold;
	text-align: center;
	border: 1px solid #333;
	background-color: #FFF;
}
.twoColFixLtHdr #mainContent_left #hydraulicShapes h4 {
	font-family: Arial, Helvetica, sans-serif;
	font-style: italic;
	text-align: center;
	margin: 0px;
	padding-bottom: 5px;
}
.twoColFixLtHdr #container #mainContent_left #hydraulicShapes table tr td ul li {
	font-size: .9em;
	font-weight: normal;
	text-align: left;
	list-style-type: square;
}
.hydraulicLists {
	font-family: Arial, Helvetica, sans-serif;
	float: left;
	margin-right: 10px;
	padding: 10px;
	border: 1px solid #4071B8;
	list-style-type: none;
	margin-top: 10px;
}
.twoColFixLtHdr #mainContent_left .hydraulicLists h3 {
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #4471B9;
	margin: 0px;
}
.twoColFixLtHdr #mainContent_left .hydraulicLists ul {
	text-align: left;
	list-style-type: square;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 15px;
}
.twoColFixLtHdr #mainContent_left h3 a:link, #mainContent_left h3 a:visited {
	color: #4071B8;
}
.twoColFixLtHdr #mainContent_left h3 a:hover {
	color: #163299;
}
.twoColFixLtHdr #container #mainContent_left #quality {
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-right: 0px;
	padding-left: 0px;
	border-top-width: 1px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #000;
	border-right-color: #000;
	border-bottom-color: #000;
	border-left-color: #000;
}
.twoColFixLtHdr #mainContent_left h3 a .smallsub {
	font-size: .8em;
	font-weight: normal;
}
#header_staff {
	color: #FFF;
	background-color: #1772BD;
	width: 755px;
	padding-left: 25px;
	line-height: 90px;
}
#structure {
	width: 450px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 25px;
	float: left;
}
#sidebar_staff {
	text-align: left;
	width: 200px;
	float: left;
	padding: 30px 0px 20px 10px;
	border-right: solid #000 1px;
	margin-right: 20px;
}
.twoColFixLtHdr #container_staff {
	width: 780px;
	margin: 0 auto;
	text-align: left;
	padding: 0;
	background-color: #FFF;
}
.twoColFixLtHdr #footer_staff {
	padding: 0 10px 0 20px;
	margin: 0;
	background-color: #FFF;
	width: 750px;
}
.twoColFixLtHdr #footer_staff p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
	font-size: 0.6em;
	font-weight: bold;
}
.twoColFixLtHdr #mainContent_staff {
	padding: 0;
	float: left;
	margin: 0;
	background-color: #FFF;
	width: 520px;
}
#container_staff #sidebar_staff a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	list-style-type: none;
	padding-bottom: 5px;
}
.staffList {
	font-family: Arial, Helvetica, sans-serif;
	list-style-type: none;
	line-height: 1.4em;
}
.jobTitles {
	font-size: .9em;
	font-weight: bold;
	color: #FFF;
	background-color: #2272BE;
	text-align: center;
	padding: 4px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000;
}
.jobName {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	line-height: 1.3em;
	text-align: left;
	margin: 0px;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000;
	font-weight: bold;
}
.jobbullets {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	line-height: 1.1em;
	text-align: left;
	margin: 0px;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 5px;
	font-weight: bold;
}
.jobDate {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	line-height: 1.1em;
	text-align: left;
	margin: 0px;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000;
}
.staffHeadline {
	margin-left: 25px;
	font-size: 1em;
}
#mainContent_left #availablejobs {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.85em;
	margin: 0px;
	padding-bottom: 5px;
	width: 500px;
}
/* Navigation */
#navigation {
	color: #1772BD;
	background:#fff;
}
#navigation a {
	color:#1772BD;
	text-decoration: none;
}
ul.subjects { padding-left: 0; list-style: none; }
ul.pages { padding-left: 2em; list-style: square; }
.selected { font-weight: bold; }

/*#sidebar_staff ul  {
	list-style-type: none;
	line-height: 1em;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	display: block;
	margin: 0px;
	padding: 0px;
	color: #fff;
}*/
/*#sidebar_staff li {
	background-color: #4071B8;
}*/
/*#sidebar_staff ul li a:link, #sidebar_staff ul li a:visited {
	color: #FFF;
	display: block;
	text-decoration: none;
	line-height: 1em;
}*/
/*#sidebar_staff ul li a:hover {
	color: #999;
	background-color: #0F3198;
	display: block;
	line-height: 1em;
}*/
/*#sidebar_staff li a {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
	padding-left: 5px;
	padding-top: 5px;
	padding-bottom: 5px;
	background-color: #4071B8;
}*/
/*#sidebar_staff li.currentSub{
	color: #999;
	cursor: default;
	background-color: #0f3198;
}*/
.newscopy {
	font-size: 1em;
	color: #666;
}
.newstitle {
	margin: 0px;
	padding: 0px;
}
#mainContent_left #standards_list .list_left ul   .stardards_list_title{
	font-family: Arial, Helvetica, sans-serif;
	color: #000;
	text-align: center;
	margin: 0px;
	font-weight: bold;
	padding: 0;
}
#mainContent_left #availableInventory ul #excel {
	text-indent: -10000px;
}
#mainContent_left #availableInventory ul #pdf {
	text-indent: -10000px;
}
#standards_list ul .pdf a:hover {
	background-image: url(../images/availableInventoryPdf.png);
	display: block;
	background-repeat: no-repeat;
	background-position: center bottom;
	text-decoration: none;
}
#mainContent_left #standards_list .list_left ul .pdf a{
	background-image: url(../images/availableInventoryPdf.png);
	background-repeat: no-repeat;
	background-position: center top;
	display: block;
	list-style-type: none;
	text-indent: -10000px;
}
#mainContent_left #standards_list .list_left {
	float: left;
	width: 230px;
	margin: 0;
	padding: 0 10px;
}
#mainContent_left     {
	font-family: Arial, Helvetica, sans-serif;
	color: #000;
	text-align: left;
	margin: 0px;
	padding: 0;
}
#mainContent_left #materials_list .list_left h4 {
	font-family: Arial, Helvetica, sans-serif;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #000;
	font-weight: bold;
}
#mainContent_left #materials_list .list_left {
	float: left;
	width: 160px;
	font-size: 0.85em;
	padding: 6px 6px;
	border: solid #000 1px;
}
/*SMA Tools page */

.pdf_download {
	font-family: Arial, Helvetica, sans-serif;
	font-style: italic;
	font-weight: bold;
	text-align: center;
	padding: 0;
	margin: 0;
}
#mainContent_left table tr .pdf_download a:link {
	background-image: url(../images/pdf_download_rollover.png);
	background-repeat: no-repeat;
	background-position: left top;
	display: block;
	line-height: 23px;
	list-style-type: none;
	text-decoration: none;
	color: #000;
}
#mainContent_left table tr .pdf_download a:hover {
	background-image: url(../images/pdf_download_rollover.png);
	background-position: bottom left;
	background-repeat: no-repeat;
	list-style-type: none;
	display: block;
	color: #FFF;
}
#mainContent_left table tr .media_download {
	text-indent: -10000px;
	padding: 0;
	margin: 0;
}
#mainContent_left table tr .media_download a:link {
	text-decoration: none;
	background-image: url(../images/photo_image_rollover.png);
	background-repeat: no-repeat;
	background-position: left top;
	display: block;
}
#mainContent_left table tr .media_download a:hover {
	text-decoration: none;
	background-image: url(../images/photo_image_rollover.png);
	background-repeat: no-repeat;
	background-position: left bottom;
	text-indent: -10000px;
	display: block;
}
#mainContent_left table tr .video_download {
	text-indent: -10000px;
	padding: 0;
	margin: 0;
}
#mainContent_left table tr .video_download a:link {
	text-decoration: none;
	background-image: url(../images/video_image_rollover.png);
	background-repeat: no-repeat;
	background-position: left top;
	display: block;
}
#mainContent_left table tr .video_download a:hover {
	text-decoration: none;
	background-image: url(../images/video_image_rollover.png);
	background-repeat: no-repeat;
	background-position: left bottom;
	text-indent: -10000px;
	display: block;
}

