/* * * STYLESHEET FOR ALL ADDons-EXTRAS STUFF * * */

/* HORIZONTAL ACCORDION */
#content #accordion {
	background:#FFFFFF url(http://flowplayer.org/img/global/gradient/h150.png) repeat scroll 0;
	height:80px;
	padding:10px 0 10px 20px;
	width:590px;
	border:1px solid #ddd;
	margin-top:10px;
}

/* accordion header */
#content #accordion img {
	float:left;
	margin-right:10px;
	cursor:pointer;
	opacity:0.5;
	filter: alpha(opacity=50);
}

/* currently active header */
#content #accordion img.current {
	cursor:default;
	opacity:1;
	filter: alpha(opacity=100);
}

/* 
	accordion pane. should initially have zero width and display:none.
	the first pane should override these with inline style
*/
#content #accordion div {
	width:0px;
	float:left;	
	display:none;		
	margin-right:10px;
}

/* content inside a pane should have fixed width */
#content #accordion div h3 {
	color:#444;
	margin:0 0 -10px 0;
	width:190px;
	font-size:15px;	
}
	
#content #accordion div p {	
	font-size:11px;
	width:190px;
}


/* VERITCAL ACCORDION */
#content #accordionVert {
	background:#333 url(http://flowplayer.org/img/global/gradient/h300.png) 0 0;
	width: 300px;
	border:1px solid #333;	
	-background:#666;
	float:right;
	margin:10px 300px 0 0;
}

/* accordion header */
#content #accordionVert h2 {
	background:#ccc url(http://flowplayer.org/img/global/gradient/h30.png);
	margin:0;
	padding:5px 15px;
	font-size:14px;
	font-weight:normal;
	border:1px solid #fff;
	color:black;
	border-bottom:1px solid #ddd;
	cursor:pointer;	
	text-transform:none;	
}

/* currently active header */
#content #accordionVert h2.current {
	cursor:default;
	background-color:#fff;
}

/* accordion pane */
#content #accordionVert .pane {
	border:1px solid #fff;
	border-width:0 2px;
	display:none;
	height:190px;
	padding:15px;
	color:#fff;
	font-size:12px;
}
	#content #accordionVert .pane p{
		color:white;
		line-height:120%;
	}

/* a title inside pane */
#content #accordionVert .pane h3 {
	font-weight:normal;
	margin:0;
	font-size:16px;
	color:#ddd;
}

/* * LIGHTBOX OVERLAY PAGE * */

/* the overlayed element */
.simple_overlaytest {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background-color:#333;
	
	width:675px;	
	min-height:200px;
	border:1px solid #666;
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 90px 5px #13283B;
	-webkit-box-shadow: 0 0 90px #13283B;	
}

/* close button positioned on upper right corner */
.simple_overlaytest .close {
	background-image:url(../img/overlay/close.png);
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
}
/* some styling for triggers */
	#triggerstest {
		text-align:center;
	}
	
	#triggerstest img {
		cursor:pointer;
		margin:0 5px;
		background-color:#fff;
		border:1px solid #ccc;
		padding:2px;
	
		-moz-border-radius:4px;
		-webkit-border-radius:4px;
		
	}

	/* styling for elements inside overlay */
	#content .detailstest {
		position:absolute;
		top:15px;
		right:15px;
		font-size:11px;
		color:#fff;
		width:150px;
	}
	
	#content .detailstest h3 {
		color:#6FA3CF;
		font-size:15px;
		margin-bottom:10px;
	}
	
	#content .detailstest p{
		color:white;
		line-height:120%;
		font-size:12px;
	}
	
	/* * VERTICAL CONTENT SLIDER * */	
	/* this makes it possible to add next button beside scrollable */
	.scrollable {
		float:left;	
	}
	
	/* prev, next, prevPage and nextPage buttons */
	a.prev, a.next, a.prevPage, a.nextPage {
		display:block;
		width:18px;
		height:18px;
		background:url(../img/scrollable/arrow/left.png) no-repeat;
		float:left;
		margin:43px 10px;
		cursor:pointer;
		font-size:1px;
	}
	
	/* mouseover state */
	a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
		background-position:0px -18px;		
	}
	
	/* disabled navigational button */
	a.disabled {
		visibility:hidden !important;		
	}
	
	/* next button uses another background image */
	a.next, a.nextPage {
		background-image:url(../img/scrollable/arrow/right.png);
		clear:right;	
	}
	
	
	
	/*********** navigator ***********/	
	
	/* position and dimensions of the navigator */
	#content .navi {
		width:150px;
		height:20px;
	}
	
	
	/* items inside navigator */
	#content .navi a {
		width:8px;
		height:8px;
		float:left;
		margin:3px;
		background:url(../img/overlay/navigator.png) 0 0 no-repeat;
		display:block;
		font-size:1px;
	}
	
	/* mouseover state */
	#content .navi a:hover {
		background-position:0 -8px;      
	}
	
	/* active state (current page state) */
	#content .navi a.active {
		background-position:0 -16px;     
	} 	
	
	/* main vertical scroll */
	#content #main {
		position:relative;
		overflow:hidden;
		height: 370px;
	}
	
	/* root element for pages */
	#content #pages {
		position:absolute;
		height:20000em;
	}
	
	/* single page */
	#content .pagetest {
		padding:10px;
		height: 450px;
		background:#222 url(http://static.flowplayer.org/img/global/gradient/h600.png) 0 0 repeat-x;
		width:550px;
	}
	
	/* root element for horizontal scrollables */
	#content .scrollabletest {
		position:relative;
		overflow:hidden;
		width: 580px;
		height: 400px;
	}
	
	/* root element for scrollable items */
	#content .scrollabletest .items {
		width:20000em;
		position:absolute;
		clear:both;
	}
	
	/* single scrollable item */
	#content .item {
		float:left;
		cursor:pointer;
		width:550px;
		height:450px;
		padding:10px;
	}
		#content .item img{
			width:400px;
		}
	
	/* main navigator */
	#content #main_navi {
		float:left;
		padding:0px !important;
		margin:0px !important;
	}
	
	#content #main_navi li {
		background-color:#333;
		border-bottom:1px solid #666;
		clear:both;
		color:#FFFFFF;
		font-size:12px;
		height:75px;
		list-style-type:none;
		padding:10px;
		width:180px;
		cursor:pointer;
		margin:0;
	}
	
	#content #main_navi li:hover {
		background-color:#444;
	}
	
	#content #main_navi li.active {
		background-color:#555;
	}
	
	#content #main_navi img {
		float:left;
		margin-right:10px;
	}
	
	#content #main_navi strong {
		display:block;
	}
	
	#content #main div.navi {
		margin-left:250px;
		cursor:pointer;
	}
	
	/* * BX SLIDER ON HOTIZONTAL SLIDER PAGE * */
	
	#content .slides1_wrap{
		float:right;
		padding:0 0 0 0;
		width:640px;
		margin-top:20px;
	}
	
	#content  .slides1_wrap .prev {
		position: relative;
		left: -40px;
		top: -185px;
		outline: 0;
		border:none;
	}
	
	#content .slides1_wrap .next {
		position: relative;
		left: 500px;
		top: -182px;
		outline: 0;
		border:none;
	}
	
	#content #slides1 {
		position: relative;
		padding: 0px 0 37px 50px;
		width:670px;
		margin:0;
	}
	
	#content  #slides1 li {
		list-style: none;
		margin:0;
	}
	
	#content  #slides1 li img {
		float: left;
		margin-left:20px;
	}
	
	#content  #slides1 .content {
		float: left;
		width: 320px;
		padding-left: 11px;
	}
	
	#content  #slides1 .content p {
		line-height: 22px;
		width:270px;
	}
	
	#content  #slides1 h3 {
		font-size: 36px;
		color: #fff;
		font-weight: normal;
		text-transform: lowercase;
	}
	
	#content  #slides1 h4 {
		font-size: 18px;
		color: #ddd;
		font-style: italic;
		font-weight: normal;
		text-transform: lowercase;
		padding-bottom: 16px;
	}
	
	#content .bx_pager {
		padding:25px 0 0 290px;	
	}
	
	#content .bx_pager a {
		float: left;
		width: 14px;
		height: 17px;
		color: #fff;
		font-size: 12px;
		fon-weight:bold;
		margin-right: 6px;
		padding: 4px 0 0 7px;
		text-decoration:none;
		background-color:#B11E24;
	}
	
	#content .bx_pager a:hover, .bx_pager a.active {
		background-position: 0 0;
		text-decoration: none;
		background-color:#2E5A7F;
	}
	
/* * DIGG NAVIGATION MENU * */

#content #page-wrap {
	padding: 0 0 0 0px;
	width:640px;
	float:left;
}


#content #top-bar {
	background: #1b5790; /* Digg Blue */
	min-height: 55px;
	padding: 0 10px;
	font-size: 13px;
	font-weight: bold;
	}
	#content #right-side {
		float: right;
		padding-top: 15px;
		}
		#content #right-side img {
			border: 1px solid white;
			vertical-align: middle;
		}
		#content #right-side a {
			color: white;
			border-left: 1px solid white;
			height: 10px;
			padding-left: 10px;
			}
			#content #right-side a.first {
				border: none;
				padding: 0;
			}
			#content form#main-search {
				display: inline;
				position: relative;
				padding-right: 10px;
				}
				#content form#main-search label {
					display: none;
				}
				#content #search-button {
					position: absolute;
					right: 0px;
					top: -6px;
				}
				
#content #zone-bar {
	background: #b2d281;
	min-height: 30px;
	padding: 5px 10px 0 10px;
	}
	#content #zone-bar ul {
		display: block;
		margin:0;
		padding:0;
		}
		#content #zone-bar ul li {
			height: 18px;
			padding: 5px 5px 0 5px;
			position: relative;
			float: left;
			margin:0 10px 0 0;
			list-style-type:none;
			}
			#content #zone-bar ul li:hover {
				background: url(../img/zonebar-navleft.png) center left no-repeat;
			}
			#content #zone-bar ul li a {
				display: block;
				float: left;
				height: 23px;
				position: relative;
				top: -5px;
				right: -5px;
				padding-right: 3px;
				color: #383838;
				font-weight: bold;
				font-size: 11px;
				text-decoration: none;
				}
				#content #zone-bar ul li a:hover {
					background: url(../img/zonebar-navright.png) center right no-repeat;
				}
				#content #zone-bar ul li a span {
					position: relative;
					top: 6px;
				}
			#content #zone-bar ul li ul {
				display: none;
				position: absolute;
				top: 29px;
				left: 0px;
				width: 150px;
				border: 1px solid #ccc;
				background: white;
				padding: 10px 0 0 0;
				}
				#content #zone-bar ul li ul li {
					float: none;
					padding: 0; margin: 0;
					height: 100%;
				}
				#content #zone-bar ul li ul li:hover {
					background:transparent url(../img/s.gif);
					}
					#content #zone-bar ul li ul li a {
						display: block;
						float: none;
						margin-left: -5px;
						padding: 5px 0 0 10px;
						width: 140px;	
					}
					#content #zone-bar ul li ul li a:hover {
						background:transparent url(../img/s.gif);
						color:#1B5790;
					}
#content #main-content {
	background: white;
	padding: 16px;
}

#content #feature-content {
	margin-bottom: 18px;
	}
	#content #feature-left {
		width: 48%;
		float: left;
		padding-right: 15px;
		}
		#content #feature-left p {
			font-size: 12px;
			line-height: 1.5em;
			margin-top: 8px;
		}
	#content #feature-right {
		float: right;
		width: 49%;
		}
		#content #feature-right p {
			font-size: 12px;
			line-height: 1.5em;
		}
		#content .feature-mini {
			float: left;
			width: 46%;
			margin-right: 2%;
		}
		
		
/* * MEGA DROP DOWN * */

#content div#banner {
float:left;
width:635px;
*width:647px;
margin-top:-100px;
}

#content div#banner h1, div#menu h2 {
margin: 0;
padding: 0;
font-size:14px;
}

#content div#banner h1 a {
display: block;
width: 270px;
height: 120px;
font-size:14px;
}
#content div#banner h1 a span, div#banner .skip {
position: absolute;
top: -10000px;
left: -10000px;
}

#content ul#menu {
background: #940;
color: #fff;
margin: 0;
padding: 0.3em 0em;
}


#content ul#menu li {
display: inline;
margin: 0.1em 1em;
position: relative;
}

#content ul#menu h2, ul#menu h3 {
font-size: 14px;
font-weight: normal;
display: inline;
}

#content ul#menu h2 a, ul#menu h3 a{
font-size: 14px;
}


#content ul#menu li a {
color: #fff;
text-decoration: none;
padding: 0 0.4em;
}

#content ul#menu li a:hover {
text-decoration: underline;
}

#content ul#menu li.mega a {
background: transparent url(../img/arrow.gif) center right no-repeat;
padding: 0 1.2em;
}

#content ul#menu li.mega a:hover {
text-decoration: underline;
}

#content ul#menu div {
display: none;
}

#content ul#menu li.mega div {
border: 1px solid #dda;
width: 18em;
position: absolute;
top: 1.6em;
*top: 2.2em;
left: 0em;
padding: 1.3em;
background: #ffc;
color: #930;
}

#content ul#menu li.hovering div {
display: block;
}

#content ul#menu li.mega div a {
color: #300;
padding: 0;
background-image: none;
text-decoration: underline;
}

#content ul#menu li div a.more {
color: #390;
font-weight: bold;
}


#content ul#menu div h3 {
color: #f70;
font-weight: bold;
font-size: 1.1em;
}
#content ul#menu div p {
margin: 0 0 0.8em 0;
padding: 0;
}

/* * VERTICAL DROPDOWN MENU * */
/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/dd_valid.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
/* common styling */
#content .menu {font-family: arial, sans-serif; width:750px; height:100px; position:relative; font-size:11px; z-index:100;}
#content .menu ul li a, #content .menu ul li a:visited {display:block; text-decoration:none; color:#000;width:104px; height:20px; text-align:center; color:#fff; border:1px solid #fff; background:#B21D23; line-height:20px; font-size:11px; overflow:hidden;}
#content .menu ul {padding:0; margin:0; list-style: none;}
#content .menu ul li {float:left; position:relative;list-style-type:none;margin:0;padding:0;}
#content .menu ul li ul {display: none;}

/* specific to non IE browsers */
#content .menu ul li:hover a {color:#fff; background:#87A3BC;}
#content .menu ul li:hover ul {display:block; position:absolute; top:21px; left:0; width:105px;}
#content .menu ul li:hover ul li a.hide {background:#87A3BC; color:#fff;}
#content .menu ul li:hover ul li:hover a.hide {background:#87A3BC; color:#000;}
#content .menu ul li:hover ul li ul {display: none;}
#content .menu ul li:hover ul li a {display:block; background:#ddd; color:#000;}
#content .menu ul li:hover ul li a:hover {background:#87A3BC; color:#000;}
#content .menu ul li:hover ul li:hover ul {display:block; position:absolute; left:105px; top:0;}
#content .menu ul li:hover ul li:hover ul.left {left:-105px;}


/* * MENUMATIC HORIZONTAL * */

/* Based partially on Matthew Carroll's keyboard accessible flavor of Suckerfish 
 * Dropdowns by Patrick Griffiths and Dan Webb. 
 * http://carroll.org.uk/sandbox/suckerfish/bones2.html
 */

/* ----[ LINKS ]----*/

/* all menu links */
#content #horiz-nav a, #content #subMenusContainer a{
	text-decoration:none;
	display:block;
	padding:10px 20px;
	background-color:#fff ;
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
}

/* Just main menu links --[for non-javascript users this applies to submenu links as well]*/
#content #horiz-nav a{
	margin:0;
}

/* Just sub menu links */
#content #subMenusContainer a, #content #horiz-nav li li a{
	text-align:left;
}

/* All menu links on hover or focus */
#content #horiz-nav a:hover, #content #horiz-nav a:focus, #content #subMenusContainer a:hover, #content #subMenusContainer a:focus, #content #horiz-nav a.mainMenuParentBtnFocused, #content #subMenusContainer a.subMenuParentBtnFocused{
	background-color:#F6C739 ;
	color:#FFF;
}

/* sub menu links on hover or focus */
#content #subMenusContainer a:hover, 
#content #subMenusContainer a:focus, 
#content #horiz-nav a.mainMenuParentBtnFocused, 
#content #subMenusContainer a.subMenuParentBtnFocused,
#content #horiz-nav li a:hover,
#content #horiz-nav li a:focus{
	background-color:#F6C739 ;
	color:#FFF;
}

/* Parent Sub Menu Links ---[javascript users only]*/
#content .subMenuParentBtn{ 
	background: url(../img/arrow_right.gif) right center no-repeat;  
}

/* Parent Sub Menu Links on hover or focus ---[javascript users only]*/
#content .subMenuParentBtnFocused{ 
	background: url(../img/arrow_right_over.gif) right center no-repeat;  
}

/* Parent Main Menu Links ---[javascript users only]*/
#content .mainMenuParentBtn{	
	 background: url(../img/arrow_right.gif) right center no-repeat; 
}

/* Parent Main Menu Links on hover or focus ---[javascript users only]*/
#content .mainMenuParentBtnFocused{	
	background: url(../img/arrow_right_over.gif) right center no-repeat; 
}

/* ----[ OLs ULs, LIs, and DIVs ]----*/

/* Submenu Outer Wrapper - each submenu is inside a div with this class - javascript users only */
#content .smOW{ 
	display:none; 
	position: absolute; 
	overflow:hidden; 
	/*the 2px left & right padding lets you have a 1px border 
	  on the ul or ol inside since overflow is set to hidden*/
	padding:0 2px;
	margin:0 0 0 -2px;
}

/* All submenu OLs and ULs */
#content #horiz-nav ol, #horiz-nav ul, #subMenusContainer ul, #subMenusContainer ol {	
	/*border around submenu goes here*/
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	background:#fff;	
	border:1px solid #C3D46A; 
	left:0;
}

/* All ULs and OLs */
#content #horiz-nav, #horiz-nav ul, #horiz-nav ol, #subMenusContainer ul, #subMenusContainer ol { 
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1em;
}

/* List items in main menu --[for non-javascript users this applies to submenus as well]  */
#content #horiz-nav li { 
	/*great place to use a background image as a divider*/
	display:block;
	list-style:none;
	position:relative;
}

#content #subMenusContainer li{
	list-style: none;
}

/* main menu ul or ol elment */
#content #horiz-nav{
	display:block;
	list-style:none;
	width:186px;
	z-index:5;
	text-align: right;
	display:block;
	float:left;
}

#content #subMenusContainer{	display:block; 	position:absolute;	top:0;	left:0;	width:100%;	height:0;	overflow:visible;	z-index:1000000000; }


/* --------------------------[ The below is just for non-javscript users ]--------------------------*/
#content #horiz-nav li li{	float:none; }

#content #horiz-nav li li a{ /* Just submenu links*/	
	position:relative;
	float:none;
}

#content #horiz-nav li ul { /* second-level lists */
	position: absolute;
	width: 10em;
	margin-left: -1000em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

/* third-and-above-level lists */
#content #horiz-nav li ul ul { margin: -1em 0 0 -1000em; }
#content #horiz-nav li:hover ul ul {	margin-left: -1000em; }

 /* lists nested under hovered list items */
#content #horiz-nav li:hover ul{	margin-left: 186px; margin-top:-2.5em;}
#content #horiz-nav li li:hover ul {	margin-left: 10em; }

/* extra positioning rules for limited noscript keyboard accessibility */
#content #horiz-nav li a:focus + ul {  margin-left: 186px; margin-top:-2.5em; }
#content #horiz-nav li li a:focus + ul { left:186px; margin-left: 1010em; margin-top:-2.5em;}
#content #horiz-nav li li a:focus {left:186px;  margin-left:1000em; width:10em;  margin-top:-2.5em;}
#content #horiz-nav li li li a:focus {left:186px; margin-left: 2010em; width: 10em;  margin-top:-2.5em;}
#content #horiz-nav li:hover a:focus{ margin-left: 0; }
#content #horiz-nav li li:hover a:focus + ul { margin-left: 10em; }

/* * * MEGA MENU * * */

a#megaanchor{
	display:block;
	padding:10px 0;
	background-color:#87A3BC;
	color:#fff;
	border:5px solid white;
	font-size:24px;
	width:180px;
	height:auto;
	float:left;
	text-decoration:none;
	text-align:center;
}
	a#megaanchor:hover{
		background-color:#B01D23;
	}

.megamenu{
position: absolute;
display: none;
left: 180px;
top: 5px;
background: white;
border: 1px solid ##B01D23;
border-width: 5px 1px;
padding: 10px;
font: normal 12px Verdana;
z-index: 100;

}

.megamenu .column{
float: left;
width: 180px; /*width of each menu column*/
margin-right: 5px;
}

.megamenu .column ul{
margin: 0;
padding: 0;
list-style-type: none;
}

.megamenu .column ul li{
padding-bottom: 5px;
}

.megamenu .column h3{
background: #13283B;
color:white;
font: bold 13px Arial;
margin: 0 0 5px 0;
padding:3px;
}

.megamenu .column ul li a{
text-decoration: none;
}

.megamenu .column ul li a:hover{
color: red;
}

/* * * TOOL TIPS * * */

ul.tipList li a{
	color:white;
	border-bottom:1px dotted white;
	text-decoration:none;
	font-size:14px;
}

/* tooltip styling for the LINK/IMAGE tooltips  */
.tooltip {
	display:none;
	background:transparent url(../img/black_arrow.png);
	font-size:12px;
	height:70px;
	width:160px;
	padding:25px;
	color:#fff;	
}

/* style the IMAGE trigger elements */
#demo img {
	border:0;
	cursor:pointer;
	margin:0 8px;
	border:1px solid #fff;
}

/* download trigger button */
#download_now {
	background:transparent url(../img/download.png) no-repeat;
	display:block;
	height:121px;
	margin-bottom:30px;
	overflow:hidden;
	text-indent:-999em;
	width:300px;
	cursor:pointer;
	margin:50px 0 0 130px;
	float:left;
}

/* tooltip styling */
.tooltip2 {
	display:none;
	background:url(http://static.flowplayer.org/tools/img/tooltip/black_arrow_big.png);
	height:163px;
	padding:40px 30px 10px 30px;
	width:310px;
	font-size:11px;
	color:#fff;
}

/* a .label element inside tooltip */
.tooltip2 .label {
	color:#ff9f0e;
	width:35px;
}

.tooltip2 a {
	color:#ff9f0e;
	font-size:11px;
	font-weight:bold;
}

/* * * FLIP BOX * * */

#content #flipbox {
  width: 500px;
  height: 200px;
  line-height: 200px;
  background-color: #ff9000;
  font-family: Tahoma, Helvetica, Arial;
  font-size: 2.5em;
  color: #ffffff;
  text-align: center;
  float:left;
}
#content #flipPad {
  margin: 15px 0 15px 60px;
  width: 550px;
  text-align: center;
  float:left;
}
#content #flipPad a {
  padding: 5px 15px;
  background: #1e90ff;
  border: 2px solid #1e90ff;
  border-radius: 2px;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  font-size: 1em;
  font-family: Helvetica, Tahoma, Verdana, sans-serif;
  line-height: 30px;
  height: 30px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-box-shadow: 1px 1px 2px #999999;
  -webkit-box-shadow: 1px 1px 2px #999999;
  -webkit-transition-duration: 1s;
  float:left;
  margin:5px 10px 0 0;
}
#content #flipPad a:hover {
  background-color: #ff9000;
  border: 2px solid #ff9000;
}
#content #flipPad .revert {
  background-color: #ff9000;
  border: 2px solid #ff9000;
  display: none;
}

/* * * GARAGE DOORS * * */

#content ul#menuback {
	margin: 50px auto;
	list-style: none;
	background: url(../img/garage/menu-bg.jpg);
	width: 601px;
	overflow:hidden;	
	float:left;
	padding:0;
	height:100px;
}

#content ul#menuback li.shutter {
	width: 200px;
	height: 100px;
	display: block;
	float: left;
	padding:0;
}

#content ul#menuback li#shutter1 {
	background: url(../img/garage/shutter-africanplains.jpg) no-repeat; 
}
#content ul#menuback li#shutter2 {
	background: url(../img/garage/shutter-reptiles.jpg) no-repeat; 
}
#content ul#menuback li#shutter3 {
	background: url(../img/garage/shutter-aviary.jpg) no-repeat; 
}

#content a.link {
   width: 200px;
   height: 100px;
   display: block;
   background: url(../img/garage/window.png) no-repeat bottom center;
   text-indent: -9999px;
}
