

/* All <ul> tags in the menu including the first level */
.menulist, .menulist  ul {
	padding: 0;
	list-style: none;
	line-height: normal;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #666666;
	font-weight: normal;
	margin: 0;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
	display: none;
	position: absolute;
	top: 16px;
	margin-top: 8px; /* I'm using ems and px to allow people to zoom their font */
	left: 0px;
	width: 210px;
}

/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul {
	top: 0px;
	margin-top: 0;
	margin-left: 141px;
}

/*
 All menu items (<li> tags). 'float: left' lines them up horizontally, and they are
 positioned relatively to correctly offset submenus. Also, they have overlapping borders.
*/
.menulist li {
	float: left;
	display: block;
	position: relative;
	margin-right: -1px;
	border-top: 0px none;
	border-right: 0px none;
	border-bottom: 0px none;
	border-left: 0px none;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
	float: none;
	margin: 0 0 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	border-bottom-width: 0px;
	border-bottom-style: solid;
}
.menulist ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
}

/* first level Links inside the menu */
.menulist a {
	display: block;
	color: #1d3420;
	text-decoration: none;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 3px;
	padding-left: 10px;
}

/* drop down Links inside the menu */
.menulist li ul li a {
	display: block;
	padding: 3px 10px;
	text-decoration: none;
	font-weight: normal;
	font-size: 11px;
	text-transform: capitalize;
	background-color: #CCCCCC;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
	color: #000000;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
	color: #990000;
	background-image: url(/themes/demo1/images/nav_hover.jpg);
	background-repeat: no-repeat;
	background-position: left;
}

.menulist a.highlighted {
	color: #990000;
	background-image:url(images/nav_hover.jpg);
	background-repeat: no-repeat;
	background-position: left;
}

/* Lit  items: Second level 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist li ul li a:hover, .menulist li ul li a.highlighted, .menulist li ul li a:focus {
	color: #FFF;
	text-shadow: black 2px 2px 3px;
	background-color: #666666;
	background-image: none;
}

.menulist li ul li a.highlighted:hover {
	background-image:url(none);
}

/* Were I was... parent to open submenus */
xx.menulist li ul li a.highlighted {
	color: #00FF00;
	text-shadow: black 2px 2px 3px;
}

/*
 If you want per-item background images in your menu items, here's how to do it.
 1) Assign a unique ID tag to each link in your menu, like so: <a id="xyz" href="#">
 2) Copy and paste these next lines for each link you want to have an image:
    .menulist a#xyz {
      background-image: url(out.gif);
    }
    .menulist a#xyz:hover, .menulist a.highlighted#xyz, .menulist a:focus {
     background-image: url(over.gif);
    }
*/

/* Only style submenu indicators within submenus. */
.menulist a .subind {
 display: none;
}
.menulist ul a .subind {
 display: block;
 float: right;
}


/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist a {
 float: left;
}
.menulist ul a {
 float: none;
}
/* \*/
.menulist a {
 float: none;
}
/* */


/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*:first-child+html .menulist ul li {
 float: left;
 width: 100%;
}

* html .menulist ul li {
 float: left;
 height: 1%;
}
* html .menulist ul a {
 height: 1%;
}
/* End Hacks */


/* Sub Nav */

#navsetsub{
	margin-right:10px;
	margin-top:0px;
	margin-left:10px;
}
#navsetsub ul{
	padding:0px;
	margin:0px;
}

#navsetsub ul li{
	/* display:none;  Hide top level section*/
	padding:0px;
	margin:0px;
	list-style-type: none;
	padding-bottom: 4px !important;	
}


#navsetsub ul li a{
	line-height:18px;
	color: #36633C;
	font-size: 14px;
	font-weight: bold;
	text-decoration: none;
	padding-left: 0px;
	font-family: Arial, Helvetica, sans-serif;
	background-repeat: no-repeat;
	background-position: 0px -4px;
	display: block;
}
#navsetsub ul li a:hover{
	color: #A56528;
	background-image: url(/themes/frl09/images/subnavhov.jpg);
}


#navsetsub ul ul{
	padding:0px;
	margin:0px;
}
#navsetsub ul ul li{
	padding-bottom: 4px;
}
#navsetsub ul ul li a.selected, #navsetsub ul ul li a.selected:hover {
	color: #343b32;
	color: #660000;
	display: block;
	background-image: url(/themes/frl09/images/subnavselect.jpg);
	background-repeat: no-repeat;
	background-position: left bottom;
}

#navsetsub ul ul li a{
	line-height:20px;
	color: #333;
	font-size: 12px;
	font-weight: bold;
	text-decoration: none;
	padding-left: 18px;
	background-repeat: no-repeat;
	background-position: 10px bottom;
	display: block;
}
#navsetsub ul ul li a:hover{
	color: #41271A;
	color: #A56528;
	display: block;
	background-image: url(/themes/frl09/images/subnavhov.jpg);
	background-repeat: no-repeat;
	background-position: left bottom;
}
#navsetsub ul ul ul li a{
	line-height:24px;
	color: #5B5744;
	font-size: 10px;
	font-weight: bold;
	text-decoration: none;
	padding-left: 36px;
	background-image: url(/themes/frl09/images/subnavlink.jpg);
	background-repeat: no-repeat;
	background-position: 30px bottom;
	display: block;
	text-transform: uppercase;
}
#navsetsub ul ul ul li a:hover{
	color: #41271A;
	color: #A56528;
	display: block;
	background-image: url(/themes/frl09/images/subnavhov.jpg);
	background-repeat: no-repeat;
	background-position: 30px bottom;
}
#navsetsub ul ul ul li a.selected, #navsetsub ul ul ul li a.selected:hover {
	color: #343b32;
	color: #660000;
	display: block;
	background-image: url(/themes/frl09/images/subnavselect.jpg);
	background-repeat: no-repeat;
	background-position: 30px bottom;
}

#lightwindow_overlay {
	/* REQUIRED */
	display: none;
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	z-index: 500;
	/* REQUIRED */
}

#lightwindow {
	/* REQUIRED */
	/* Of Note - The height and width of this element are set to 0px */
	display: none;
	visibility: hidden;
	position: absolute;
	z-index: 999;
	line-height: 0px;
	/* REQUIRED */
}

	#lightwindow_container {
		/* REQUIRED */
		display: none;
		visibility: hidden;
		position: absolute;
		/* REQUIRED */
		padding: 0 0 0 0;
		margin: 0 0 0 0;
	}

	/* IE6 needs this or it messes with our positioning */
	* html #lightwindow_container {
		overflow: hidden;
	}

	#lightwindow_contents {
	overflow: hidden;
	z-index: 0;
	position: relative;
	border: 0px solid #ffffff;
	background-color: #ffffff;
	}		

#lightwindow_loading {
	/* REQUIRED */
	height: 100%;
	width: 100%;
	top: 0px;
	left: 0px;
	z-index: 9999;
	position: absolute;
	/* REQUIRED */
	background-color: #f0f0f0;
	padding: 10px;
}

	#lightwindow_loading_shim { 
		display: none;
		left: 0px; 
		position: absolute; 
		top: 0px;
		width: 100%; 
		height: 100%;
	}

	#lightwindow_loading span {
    	font-size: 12px;
		line-height: 32px;
		color: #444444;
		float: left;
		padding: 0 10px 0 0;
	}

	#lightwindow_loading span a,
	#lightwindow_loading span a:link, 
	#lightwindow_loading span a:visited {
		color: #09F;
		text-decoration: none;
		cursor: pointer;
	}

	#lightwindow_loading span a:hover,
	#lightwindow_loading span a:active {
		text-decoration: underline;
	}


	#lightwindow_loading img {
   		float: left;
   		margin: 0 10px 0 0;
	}


/*-----------------------------------------------------------------------------------------------
	I liked the Navigation so much from http://www.huddletogether.com/projects/lightbox2/
	I mean let's face it, it works really well and is very easy to figure out.
-----------------------------------------------------------------------------------------------*/

#lightwindow_navigation {
	/* REQUIRED */
	position: absolute;
	top: 0px;
	left: 0px;
	display: none;
	/* REQUIRED */
}
	/* We need to shim the navigation for IE, though its more of a sub-floor */
	#lightwindow_navigation_shim { 
		/* REQUIRED */
		display: none;
		left: 0px; 
		position: absolute; 
		top: 0px;
		width: 100%; 
		height: 100%;
		/* REQUIRED */
	}

	#lightwindow_navigation a,
	#lightwindow_navigation a:link,
	#lightwindow_navigation a:visited,
	#lightwindow_navigation a:hover,
	#lightwindow_navigation a:active { 
		/* REQUIRED */
		outline: none;
		/* REQUIRED */
	}

	#lightwindow_previous, 
	#lightwindow_next {
		width: 49%;
		height: 100%;
		background: transparent url(/js/lightwindow/blank.gif) no-repeat; /* Trick IE into showing hover */
		display: block;
	}
	
	#lightwindow_previous { 
		float: left;
		left: 0px;
	}

	#lightwindow_next { 
		float: right;
		right: 0px;
	}

	#lightwindow_previous:hover, 
	#lightwindow_previous:active { 
		background: url(/js/lightwindow/prevlabel.gif) left 15% no-repeat; 
	}

	#lightwindow_next:hover, 
	#lightwindow_next:active { 
		background: url(/js/lightwindow/nextlabel.gif) right 15% no-repeat; 
	}
	
	#lightwindow_previous_title,
	#lightwindow_next_title {
		display: none;
	}
	 	
#lightwindow_galleries {
	width: 100%;
	position: absolute;
	z-index: 50; 
	display: none;
	overflow: hidden;
	margin: 0 0 0 10px;
	bottom: 0px;
	left: 0px;
}

	#lightwindow_galleries_tab_container {
		width: 100%;
		height: 0px;
		overflow: hidden;
	}

	a#lightwindow_galleries_tab,		
	a:link#lightwindow_galleries_tab,
	a:visited#lightwindow_galleries_tab {
		display: block;
		height: 20px;
		width: 77px;
		float: right;
		line-height: 22px;
		color: #ffffff;
		text-decoration: none;
		font-weight: bold;
		cursor: pointer;
		font-size: 11px;
		color: #ffffbe;
		background: url(/js/lightwindow/black-70.png) repeat 0 0 transparent;
	}
	
	* html a#lightwindow_galleries_tab,		
	* html a:link#lightwindow_galleries_tab,
	* html a:visited#lightwindow_galleries_tab {	
		background: none;
		background-color: #000000;
		opacity: .70;
		filter: alpha(opacity=70);
	}

	a:hover#lightwindow_galleries_tab,
	a:active#lightwindow_galleries_tab {
		color: #ffffbe;

	}

	#lightwindow_galleries_tab_span {
		display: block;
		height: 20px;
		width: 63px;
		padding: 0 7px 0 7px;
	}
	
	#lightwindow_galleries_tab .up	{
		background: url(/js/lightwindow/arrow-up.gif) no-repeat 60px 5px transparent;
	}

	#lightwindow_galleries_tab .down {
		background: url(/js/lightwindow/arrow-down.gif) no-repeat 60px 6px transparent;
	}

	#lightwindow_galleries_list {
		background: url(/js/lightwindow/black-70.png) repeat 0 0 transparent;
		overflow: hidden;
		height: 0px;
	}

	* html #lightwindow_galleries_list {
		background: none;
		background-color: #000000;
		opacity: .70;
		filter: alpha(opacity=70);
	}	

	.lightwindow_galleries_list {
		width: 200px;
		float: left;
		margin: 0 0 10px 0;
		padding: 10px;
	}

	.lightwindow_galleries_list h1 {	
		color: #09F;
		text-decoration: none;
		font-weight: bold;
		cursor: pointer;
		padding: 10px 0 5px 0;
		font-size: 16px;
	}

	.lightwindow_galleries_list li {
		margin: 5px 0 5px 0;
		list-style-type: none;
	}

	.lightwindow_galleries_list a, 
	.lightwindow_galleries_list a:link, 
	.lightwindow_galleries_list a:visited {
		display: block;
		line-height: 22px;
		color: #ffffff;
		text-decoration: none;
		font-weight: bold;
		cursor: pointer;
		padding: 0 0 0 10px;
		font-size: 11px;
	}

	.lightwindow_galleries_list a:hover, 
	.lightwindow_galleries_list a:active {
		background: #000000;
		color: #ffffbe;
		border-left: 3px solid #ffffbe;
		padding: 0 0 0 7px;
	}
		
#lightwindow_data {
	/* REQUIRED */
	position: absolute;
	/* REQUIRED */
}

	#lightwindow_data_slide {
	/* REQUIRED */
		position: relative;
	display: none;		/* REQUIRED */
	}

	#lightwindow_data_slide_inner {
		background-color: #ffffff;
		padding: 0 10px 10px 10px;
	}

	#lightwindow_data_caption {
	padding: 10px 0 0 0;
	color: #666666;
	line-height: 25px;
	background-color: #ffffff;
	clear: both;
	display: none;
	}

	#lightwindow_data_details {
		background-color: #f0f0f0;
		padding: 0 10px 0 10px;
		height: 20px;
	}
	
	#lightwindow_data_author_container {
		width: 40%;
		text-align: right;
		color: #666666;
	 	font-style: italic;
		font-size: 10px;
		line-height: 20px;
		float: right;
		overflow: hidden;
	}
	
	#lightwindow_data_gallery_container {
		font-size: 10px;
		width: 40%;
		text-align: left;
		color: #666666;
		line-height: 20px;
		float: left;
		overflow: hidden;
	}
	
#lightwindow_title_bar {
	height: 25px;
	overflow: hidden;		
}

	#lightwindow_title_bar_title {
		color: #ffffbe;
		font-size: 14px;
		line-height: 25px;
		text-align: left;
		float: left;
	}

	a#lightwindow_title_bar_close_link,	
	a:link#lightwindow_title_bar_close_link,
	a:visited#lightwindow_title_bar_close_link {
		float: right;
		text-align: right;		
		cursor: pointer;
		color: #ffffbe;
		line-height: 25px;
		padding: 0;
		margin: 0;
	}
	
	a:hover#lightwindow_title_bar_close_link,
	a:active#lightwindow_title_bar_close_link {
		color: #ffffff;
	}

/*-----------------------------------------------------------------------------------------------
	Theme styling stuff
-----------------------------------------------------------------------------------------------*/	

#lightwindow p {
	color: #000000;
	padding-right: 10px;
}




/* CSS to go with Prototip.Styles */
.prototip {
	font: 11px Arial, Helvetica, sans-serif;
	color: #000;
}

/* the default style */
.prototip .default {
	width: 250px;
	color: #808080;
}
.prototip .default .toolbar {
	background: #f1f1f1;
	font-weight: bold;
}
.prototip .default .title { padding: 5px; }
.prototip .default .content {
	padding: 5px;
	background: #fff;
}

/* basic */
.prototip .basic {
	width: 250px;
	color: #808080;
}
.prototip .basic .toolbar {
	background: #f1f1f1;
	font-weight: bold;
}
.prototip .basic .title { padding: 5px; }
.prototip .basic .content {
	padding: 5px;
	background: #fff;
}

/* basic */
.prototip .hint {
	width: 250px;
	color: #313120;
	background: #fff6aa;
}
.prototip .hint .toolbar {
	background: #fdf1a0;
	font-weight: bold;
}
.prototip .hint .title,
.prototip .hint .content { padding: 5px; }

/* protoblue */
.prototip .protoblue {
	width: 250px;
	color: #fff;
}
.prototip .protoblue .toolbar {
	background: #0d7cd0;
	font-weight: bold;
}
.prototip .protoblue .title { padding: 5px; }
.prototip .protoblue .content {
	background: #1e90ff;
	padding: 5px;
}

/* creamy */
.prototip .creamy {
	width: 250px;
	color: #bb9c61;
}
.prototip .creamy .toolbar {
	background: #f3edc2;
	font-weight: bold;
}
.prototip .creamy .title { padding: 5px; }
.prototip .creamy .content {
	background: #f8f4ca;
	padding: 5px;
}

/* darkgrey */
.prototip .darkgrey {
	width: 250px;
	color: #fff;
}
.prototip .darkgrey .toolbar {
	background: #5f5f5f;
	font-weight: bold;
}
.prototip .darkgrey .title { padding: 5px; }
.prototip .darkgrey .content {
	padding: 5px;
	background-color: #FFF;
}

/* protogrey */
.prototip .protogrey {
	width: 250px;
	color: #fff;
	background: #fff;
}
.prototip .protogrey .toolbar {
	background: #969c92;
	font-weight: bold;
}
.prototip .protogrey .title { padding: 5px; }
.prototip .protogrey .content {
	color: #808080;
	padding: 5px;
}
/* This is how to resize the close button for a style */
.prototip .protogrey .toolbar .close {
	width: 14px;
	height: 14px;
}


/* loader gif */
.prototipLoader {
	position: absolute;
	top: -1000px;
	left: -1000px;
	height: 14px;
	width: 14px;
	border: 1px solid #dddddd;
	overflow: hidden;
}


/* Required for all tooltips, do not modify */
.prototip{position:absolute;overflow:hidden;}.prototip .tooltip,.prototip .toolbar,.prototip .toolbar .title{position:relative;}.prototip .content{clear:both;}.prototip .toolbar .close{position:relative;text-decoration:none;float:right;width:19px;height:15px;display:block;line-height:0;font-size:0;border:0;cursor:pointer;}.prototip .tooltip{clear:both;float:left;}.prototip .borderLeftWrapper,.prototip .borderRightWrapper{position:absolute;top:0;left:0;width:300px;height:20px;}.prototip .borderFrame{height:100%;width:100%;float:left;margin:0;padding:0;position:relative;}.prototip .borderTop,.prototip .borderBottom{overflow:hidden;}.prototip .borderRow{list-style-type:none;float:left;width:100%;position:relative;clear:both;margin:0;padding:0;}.prototip_CornerWrapper{position:absolute;top:0;left:0;width:100%;height:100%;margin:0;padding:0;clear:both;}.prototip_Corner{float:left;position:relative;}.prototip canvas{position:relative;float:left;}.prototip_CornerTr,.prototip_CornerBr{float:right;}.prototip_BetweenCorners{position:absolute;top:0;left:0;width:100%;overflow:hidden;clear:both;}.prototip .borderMiddle{position:relative;float:left;}.prototip .borderCenter{position:relative;float:left;height:100%;}.prototip_StemWrapper{position:relative;width:100%;height:auto;clear:both;}.prototip_StemBox{float:left;position:relative;}.prototip_Stem{width:100%;position:absolute;overflow:hidden;}.iframeShim{position:absolute;border:0;margin:0;padding:0;background:none;overflow:hidden;}.prototip .clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden;}.prototip .clearfix{display:inline-block;}/* IE Mac Hide \*/ .prototip .clearfix{display:block;}/* IE Mac Hide End */

#lightwindow_overlay {
	/* REQUIRED */
	display: none;
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	z-index: 500;
	/* REQUIRED */
}

#lightwindow {
	/* REQUIRED */
	/* Of Note - The height and width of this element are set to 0px */
	display: none;
	visibility: hidden;
	position: absolute;
	z-index: 999;
	line-height: 0px;
	/* REQUIRED */
}

	#lightwindow_container {
		/* REQUIRED */
		display: none;
		visibility: hidden;
		position: absolute;
		/* REQUIRED */
		padding: 0 0 0 0;
		margin: 0 0 0 0;
	}

	/* IE6 needs this or it messes with our positioning */
	* html #lightwindow_container {
		overflow: hidden;
	}

	#lightwindow_contents {
	overflow: hidden;
	z-index: 0;
	position: relative;
	border: 0px solid #ffffff;
	background-color: #ffffff;
	}		

#lightwindow_loading {
	/* REQUIRED */
	height: 100%;
	width: 100%;
	top: 0px;
	left: 0px;
	z-index: 9999;
	position: absolute;
	/* REQUIRED */
	background-color: #f0f0f0;
	padding: 10px;
}

	#lightwindow_loading_shim { 
		display: none;
		left: 0px; 
		position: absolute; 
		top: 0px;
		width: 100%; 
		height: 100%;
	}

	#lightwindow_loading span {
    	font-size: 12px;
		line-height: 32px;
		color: #444444;
		float: left;
		padding: 0 10px 0 0;
	}

	#lightwindow_loading span a,
	#lightwindow_loading span a:link, 
	#lightwindow_loading span a:visited {
		color: #09F;
		text-decoration: none;
		cursor: pointer;
	}

	#lightwindow_loading span a:hover,
	#lightwindow_loading span a:active {
		text-decoration: underline;
	}


	#lightwindow_loading img {
   		float: left;
   		margin: 0 10px 0 0;
	}


/*-----------------------------------------------------------------------------------------------
	I liked the Navigation so much from http://www.huddletogether.com/projects/lightbox2/
	I mean let's face it, it works really well and is very easy to figure out.
-----------------------------------------------------------------------------------------------*/

#lightwindow_navigation {
	/* REQUIRED */
	position: absolute;
	top: 0px;
	left: 0px;
	display: none;
	/* REQUIRED */
}
	/* We need to shim the navigation for IE, though its more of a sub-floor */
	#lightwindow_navigation_shim { 
		/* REQUIRED */
		display: none;
		left: 0px; 
		position: absolute; 
		top: 0px;
		width: 100%; 
		height: 100%;
		/* REQUIRED */
	}

	#lightwindow_navigation a,
	#lightwindow_navigation a:link,
	#lightwindow_navigation a:visited,
	#lightwindow_navigation a:hover,
	#lightwindow_navigation a:active { 
		/* REQUIRED */
		outline: none;
		/* REQUIRED */
	}

	#lightwindow_previous, 
	#lightwindow_next {
		width: 49%;
		height: 100%;
		background: transparent url(/js/lightwindow/blank.gif) no-repeat; /* Trick IE into showing hover */
		display: block;
	}
	
	#lightwindow_previous { 
		float: left;
		left: 0px;
	}

	#lightwindow_next { 
		float: right;
		right: 0px;
	}

	#lightwindow_previous:hover, 
	#lightwindow_previous:active { 
		background: url(/js/lightwindow/prevlabel.gif) left 15% no-repeat; 
	}

	#lightwindow_next:hover, 
	#lightwindow_next:active { 
		background: url(/js/lightwindow/nextlabel.gif) right 15% no-repeat; 
	}
	
	#lightwindow_previous_title,
	#lightwindow_next_title {
		display: none;
	}
	 	
#lightwindow_galleries {
	width: 100%;
	position: absolute;
	z-index: 50; 
	display: none;
	overflow: hidden;
	margin: 0 0 0 10px;
	bottom: 0px;
	left: 0px;
}

	#lightwindow_galleries_tab_container {
		width: 100%;
		height: 0px;
		overflow: hidden;
	}

	a#lightwindow_galleries_tab,		
	a:link#lightwindow_galleries_tab,
	a:visited#lightwindow_galleries_tab {
		display: block;
		height: 20px;
		width: 77px;
		float: right;
		line-height: 22px;
		color: #ffffff;
		text-decoration: none;
		font-weight: bold;
		cursor: pointer;
		font-size: 11px;
		color: #ffffbe;
		background: url(/js/lightwindow/black-70.png) repeat 0 0 transparent;
	}
	
	* html a#lightwindow_galleries_tab,		
	* html a:link#lightwindow_galleries_tab,
	* html a:visited#lightwindow_galleries_tab {	
		background: none;
		background-color: #000000;
		opacity: .70;
		filter: alpha(opacity=70);
	}

	a:hover#lightwindow_galleries_tab,
	a:active#lightwindow_galleries_tab {
		color: #ffffbe;

	}

	#lightwindow_galleries_tab_span {
		display: block;
		height: 20px;
		width: 63px;
		padding: 0 7px 0 7px;
	}
	
	#lightwindow_galleries_tab .up	{
		background: url(/js/lightwindow/arrow-up.gif) no-repeat 60px 5px transparent;
	}

	#lightwindow_galleries_tab .down {
		background: url(/js/lightwindow/arrow-down.gif) no-repeat 60px 6px transparent;
	}

	#lightwindow_galleries_list {
		background: url(/js/lightwindow/black-70.png) repeat 0 0 transparent;
		overflow: hidden;
		height: 0px;
	}

	* html #lightwindow_galleries_list {
		background: none;
		background-color: #000000;
		opacity: .70;
		filter: alpha(opacity=70);
	}	

	.lightwindow_galleries_list {
		width: 200px;
		float: left;
		margin: 0 0 10px 0;
		padding: 10px;
	}

	.lightwindow_galleries_list h1 {	
		color: #09F;
		text-decoration: none;
		font-weight: bold;
		cursor: pointer;
		padding: 10px 0 5px 0;
		font-size: 16px;
	}

	.lightwindow_galleries_list li {
		margin: 5px 0 5px 0;
		list-style-type: none;
	}

	.lightwindow_galleries_list a, 
	.lightwindow_galleries_list a:link, 
	.lightwindow_galleries_list a:visited {
		display: block;
		line-height: 22px;
		color: #ffffff;
		text-decoration: none;
		font-weight: bold;
		cursor: pointer;
		padding: 0 0 0 10px;
		font-size: 11px;
	}

	.lightwindow_galleries_list a:hover, 
	.lightwindow_galleries_list a:active {
		background: #000000;
		color: #ffffbe;
		border-left: 3px solid #ffffbe;
		padding: 0 0 0 7px;
	}
		
#lightwindow_data {
	/* REQUIRED */
	position: absolute;
	/* REQUIRED */
}

	#lightwindow_data_slide {
	/* REQUIRED */
		position: relative;
	display: none;		/* REQUIRED */
	}

	#lightwindow_data_slide_inner {
		background-color: #ffffff;
		padding: 0 10px 10px 10px;
	}

	#lightwindow_data_caption {
	padding: 10px 0 0 0;
	color: #666666;
	line-height: 25px;
	background-color: #ffffff;
	clear: both;
	display: none;
	}

	#lightwindow_data_details {
		background-color: #f0f0f0;
		padding: 0 10px 0 10px;
		height: 20px;
	}
	
	#lightwindow_data_author_container {
		width: 40%;
		text-align: right;
		color: #666666;
	 	font-style: italic;
		font-size: 10px;
		line-height: 20px;
		float: right;
		overflow: hidden;
	}
	
	#lightwindow_data_gallery_container {
		font-size: 10px;
		width: 40%;
		text-align: left;
		color: #666666;
		line-height: 20px;
		float: left;
		overflow: hidden;
	}
	
#lightwindow_title_bar {
	height: 25px;
	overflow: hidden;		
}

	#lightwindow_title_bar_title {
		color: #ffffbe;
		font-size: 14px;
		line-height: 25px;
		text-align: left;
		float: left;
	}

	a#lightwindow_title_bar_close_link,	
	a:link#lightwindow_title_bar_close_link,
	a:visited#lightwindow_title_bar_close_link {
		float: right;
		text-align: right;		
		cursor: pointer;
		color: #ffffbe;
		line-height: 25px;
		padding: 0;
		margin: 0;
	}
	
	a:hover#lightwindow_title_bar_close_link,
	a:active#lightwindow_title_bar_close_link {
		color: #ffffff;
	}

/*-----------------------------------------------------------------------------------------------
	Theme styling stuff
-----------------------------------------------------------------------------------------------*/	

#lightwindow p {
	color: #000000;
	padding-right: 10px;
}




/* Used only in Editor */


.FCKcontent tr td, .FCKcontent{

}
.FCKcontent{
	width: 635px;
	padding-left: 50px;
	background-image: url(/themes/reo08/images/c1_BG.jpg);
	background-repeat: repeat-y;
}


/* Make sure each defenition is duplicated with #FCKcontent  */
p{
	margin: 0px;
	padding: 0px;
}
#content , #FCKcontent tr td, #content tr td{
	color:#333333;
	font-family: Tahoma, Verdana, Arial, sans-serif;
	font-size: 12px;
	line-height: 18px;
	text-align: justify;
}

#FCKcontent a, #content a{
	text-decoration: none !important;
	color:#336699 !important;
}

#FCKcontent a:hover, #content a:hover{
	text-decoration: underline !important;
	color:#2D892D  !important;
}
#FCKcontent A:visited, #aacontent a:visited{
	text-decoration: underline;
}

#FCKcontent a.linkarrow, #content a.linkarrow{
	background-image: url(/themes/reo08/images/linkarrow.jpg);
	background-repeat: no-repeat;
	padding-left: 12px;
	text-decoration: none;
	color:#336699;
}

#FCKcontent a.linkarrow:hover, #content a.linkarrow:hover{
	text-align: left;
	background-image: url(/themes/reo08/images/linkarrow.jpg);
	background-repeat: no-repeat;
	background-position: left;
	padding-left: 12px;
	text-decoration: none;
	margin-left: 8px;
	color:#009966;
}

/* Text Formating , H1 H2 etc */


#FCKcontent h1, #content h1{
	font-size: 18px;
	line-height: normal;
	color:#31476c;
	background-image: url(/themes/reo08/images/h1BG.jpg);
	background-repeat: no-repeat;
	padding-top: 14px;
	padding-left: 23px;
	padding-bottom: 4px;
	margin-left: -25px;
}
#FCKcontent a h1, #FCKcontent h1 a, #content a h1, #content h1 a{
	color:#6696BA !important;
	text-decoration: none;
}

#FCKcontent h1 a:hover, #content h1 a:hover{
	color:#003399;
	text-decoration: none;
}

#FCKcontent h2, #content h2{
	font-family: "Trebuchet MS", Tahoma, Verdana, Arial, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color:#660033;
	line-height: normal;
	display: block;
	clear: none;
	font-style: normal;
	margin: 0px 0px 0px;
	padding-left: 0px;
	padding-bottom: 4px;
}
#FCKcontent h2 a , #FCKcontent h2 a:visited, #content h2 a , #content h2 a:visited{
	color:#003366 !important;
	text-decoration: none;
}

#FCKcontent h3, #content h3, #FCKcontent fieldset legend, #content fieldset legend {
	font-family: "Trebuchet MS", Tahoma, Verdana, Arial, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color:#38653E;
	line-height: normal;
	font-variant: normal;
	display: block;
	font-style: italic;
	margin: 0px 0px 0px;
	padding-bottom: 6px;
}

#FCKcontent h3 a, #content h3 a, #FCKcontent h3 a:visited, #content h3 a:visited{
	background-image: url(/themes/reo08/images/linkarrow.jpg);
	background-repeat: no-repeat;
	padding-left: 14px;
	background-position: 0 1px;
	text-decoration: none;
}


#FCKcontent h4, #content h4{
	font-family: "Trebuchet MS", Tahoma, Verdana, Arial, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color:#336666;
	line-height: normal;
	font-variant: normal;
	font-style: normal;
	margin-bottom: 2px;
	margin-top: 2px;
}


#FCKcontent .highlight1, #content .highlight1{
	font-weight: bold;
	font-variant: small-caps;
	color:#000000;
	font-size: 14px;
}


/* Images */
#FCKcontent img.right, #content img.right{
	padding: 4px;
	margin-top: 2px;
	margin-right: 0px;
	margin-bottom: 2px;
	margin-left: 7px;
	background-color:#FFFFFF;
	border-top: 1px solid #CCCCCC;
	border-right: 1px solid #999999;
	border-bottom: 1px solid #999999;
	border-left: 1px solid #CCCCCC;
}

#FCKcontent img.left, #content img.left{
	padding: 4px;
	margin-right: 7px;
	margin-bottom: 2px;
	margin-left: 0px;
	background-color:#FFFFFF;
	border-top: 1px solid #CCCCCC;
	border-right: 1px solid #999999;
	border-bottom: 1px solid #999999;
	border-left: 1px solid #CCCCCC;
	margin-top: 2px;
}


#FCKcontent img.centered , #content img.centered, div.border{
	padding: 4px;
	margin-top: 2px;
	margin-right: auto;
	margin-bottom: 2px;
	margin-left: auto;
	background-color:#FFFFFF;
	border-top: 1px solid #CCCCCC;
	border-right: 1px solid #999999;
	border-bottom: 1px solid #999999;
	border-left: 1px solid #CCCCCC;
	display: block;
}


#FCKcontent img.mini , #content img.mini{
	border:1px solid #333333;
	display:block;
	background-color:#FFFFFF;
	padding: 3px;
	margin: 4px;
	float: left;
	width:90px;
	height:62px;
}

/* Lists */

#FCKcontent ul, #content ul{
	display: block;
	margin: 0px;
	padding-left: 15px;
	padding-bottom: 10px;
	padding-top: 5px;
}
#FCKcontent ul li, #content ul li{
	display: block;
	list-style-type: none;
	list-style-position: outside;
	background-image: url(/themes/reo08/images/ul.jpg);
	background-repeat: no-repeat;
	padding-bottom: 3px;
	padding-top: 3px;
	padding-left: 16px;
	background-position: 0px 5px;
	line-height: 16px;
}
/*Tables*/
#content table.stdtable, #FCKcontent table.stdtable{
	width: 590px;
}
#content table.stdtable thead tr td, #FCKcontent table.stdtable thead tr td{
	font-size: 12px;
	font-weight: bold;
	background-color:#F0EEDD;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color:#999999;
	border-bottom-color:#999999;
	color:#003366;
}

#content table.stdtable td, #FCKcontent table.stdtable td{
	vertical-align: top;
	font-size: 11px;
	padding-top: 6px;
	padding-right: 3px;
	padding-bottom: 6px;
	padding-left: 3px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color:#999999;
	text-align: left;
}
#content table.collectiontable, #FCKcontent table.collectiontable{
	width: 590px;
}

/* Price List Table */
#content table.pricelist, #FCKcontent table.pricelist{
	width: 635px;
	border-collapse:collapse;
	vertical-align: top;
}
#content table.pricelist thead tr td, #FCKcontent table.pricelist thead tr td{
	font-size: 11px;
	font-weight: bold;
	background-color:#D3D1C9;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color:#999999;
	border-bottom-color:#999999;
	color:#003366;
}

#content table.pricelist td, #FCKcontent table.pricelist td{
	font-size: 11px;
	line-height: 14px;
	padding-top: 4px;
	padding-right: 5px;
	padding-bottom: 4px;
	padding-left: 5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color:#999999;
	text-align: left;
	vertical-align: top;
}

#content table.pricelist h4, #FCKcontent table.pricelist h4{
	font-size: 11px;
	color:#003366;
	font-weight: bold;
}

/* Quotes */

#FCKcontent .quote , #content .quote{
	background-image: url(/themes/reo08/images/q1.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	margin: 3px;
}

#FCKcontent .quote td.main , #content .quote td.main{
	font-family: "Trebuchet MS", Tahoma, Verdana;
	font-size: 14px;
	font-weight: normal;
	color:#808E8C;
	text-align: left;
	padding: 25px 25px 15px;
	background-image: url(/themes/reo08/images/q2.jpg);
	background-repeat: no-repeat;
	background-position: right bottom;
	line-height: 1.3em;
	letter-spacing: 1px;
	font-style: italic;
}

#FCKcontent .quote td.caption, #content .quote td.caption{
	font-family: "Trebuchet MS", Tahoma, Verdana, Arial, sans-serif;
	font-size: 11px;
	font-style: normal;
	font-weight: normal;
	color:#000000;
	text-align: right;
	padding-right: 10px;
	line-height: normal;
}

#content a.pdfbutton, #FCKcontent a.pdfbutton{
	line-height: 48px;
	background-image: url(/themes/reo08/images/templateicons/PDFicon.jpg);
	background-repeat: no-repeat;
	padding-left: 52px;
	color: #006699;
	text-decoration: none;
	display: block;
	font-weight: bold;
}

#content a:hover.pdfbutton, #FCKcontent a:hover.pdfbutton{
	line-height: 48px;
	background-image: url(/themes/reo08/images/templateicons/PDFicon.jpg);
	background-repeat: no-repeat;
	padding-left: 52px;
	color: #666666;
	text-decoration: none;
	display: block;
	font-weight: bold;
}
#content a.moviebutton, #FCKcontent a.moviebutton{
	line-height: 48px;
	background-image: url(/themes/reo08/images/templateicons/movieicon_button.jpg);
	background-repeat: no-repeat;
	padding-left: 52px;
	color: #006699;
	text-decoration: none;
	display: block;
	font-weight: bold;
}

#content a:hover.moviebutton, #FCKcontent a:hover.moviebutton{
	line-height: 48px;
	background-image: url(/themes/reo08/images/templateicons/movieicon_button.jpg);
	background-repeat: no-repeat;
	padding-left: 52px;
	color: #666666;
	text-decoration: none;
	display: block;
	font-weight: bold;
}


div.vidRight, img.vidRight{
	float: right;
	padding: 4px;
	margin-top: 2px;
	margin-right: 0px;
	margin-bottom: 2px;
	margin-left: 7px;
	background-color:#FFFFFF;
	border-top: 1px solid #CCCCCC;
	border-right: 1px solid #999999;
	border-bottom: 1px solid #999999;
	border-left: 1px solid #CCCCCC;

}
div.vidLeft, img.vidLeft{
	float: left;
	padding: 4px;
	margin-right: 7px;
	margin-bottom: 2px;
	margin-left: 0px;
	background-color:#FFFFFF;
	border-top: 1px solid #CCCCCC;
	border-right: 1px solid #999999;
	border-bottom: 1px solid #999999;
	border-left: 1px solid #CCCCCC;
	margin-top: 2px;

}
div.vidFull, img.vidFull{
	padding: 4px;
	margin-top: 2px;
	margin-right: auto;
	margin-bottom: 2px;
	margin-left: auto;
	background-color:#FFFFFF;
	border-top: 1px solid #CCCCCC;
	border-right: 1px solid #999999;
	border-bottom: 1px solid #999999;
	border-left: 1px solid #CCCCCC;
	display: block;
}

