

/* 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;
}


/* CSS Document */


form.simple {
	padding: 0px; margin: 0px;
	font: 12px/14px Arial, Helvetica, sans-serif;
}

form.simple fieldset {
	margin: 20px 0px;
	border: 1px solid #707A79;
	padding: 5px;
}

form.simple legend {
	font: 18px/24px Arial, Helvetica, sans-serif;
	border-bottom: 0px solid #666;
	margin-left:20px;
}

form.simple input {
	padding: 0px 3px;
	font: 12px/14px Georgia, "Times New Roman", Times, serif;
	color: #333;
}

form.simple div.description {
	padding-bottom:10px;
	font-style:normal;
}

form.simple div.fieldwrapper { /*field row DIV (includes two columns- Styled label column and 'thefield' column)*/
	overflow: hidden;
	padding: 1px;
	border: 0px dashed #F5F2E9;
	position: relative;
	margin-top: 2px;
}

form.simple div.fieldwrapper:hover {
}

form.simple div.fieldwrapper:focus {
	background-color: #EAFAEC;
	border: 0px solid #666;
}

form.simple div.fieldwrapper label.styled { /* label elements that should be styled (left column within fieldwrapper DIV) */
	float: left;
	width: 165px; /*width of label (left column)*/
	text-transform: capitalize;
	border-bottom: 0px solid #666;
	margin: 0px 0px auto;
	text-align: right;
	position: absolute;
	left: 0px;
	top: 3px;
	padding-top: 5px;
	padding-right: 5px;
	padding-left: 0px;
}

form.simple div.fieldwrapper.required label.styled {
	font-weight: bold;
	
}

form.simple div.fieldwrapper.required label.styled:after {
	content:" *";
	color:#900;
}

form.simple div.fieldwrapper div.thefield { /* DIV that wraps around the actual form fields (right column within fieldwrapper DIV) */
	margin-left: 170px;
	margin-right: 32px;
}

form.simple div.fieldwrapper .thefield ul {
	width:100%!important;
	margin: 0px!important;
	padding: 0px!important;
}
form.simple div.fieldwrapper .thefield ul li{
	margin: 0px!important;
	display: block!important;
	padding: 0px 0px 5px!important;
	list-style-type: none!important;
	clear: both!important;
	background-image:none!important;
	width:100%!important;
	position: relative;
	height: 20px;
}


form.simple div.fieldwrapper .thefield ul li label {
	margin: 0px 0px 0px 20px;
	display: block;
	padding-top: 6px;
	clear: right;
	width: auto;
	color: #333;
}

form.simple div.fieldwrapper .thefield span.instruction {
	font-size: 80%;
	color:#666;
	display: block;
	clear: both;
}

form.simple div.fieldwrapper div.thefield input {
	height:18px;
	margin:3px 0px;
}


form.simple div.fieldwrapper div.thefield input.text{
	border: 1px solid #666;
	display: block;
	width:420px;
	position: relative;
	padding-right: 3px;
	padding-left: 3px;
}

form.simple div.fieldwrapper div.thefield input.text.required{
	/*border: 1px solid #900;*/
}

form.simple div.fieldwrapper div.thefield input.text:focus{
	border: 1px solid #900;
	background-color: #FFC;
}

form.simple div.fieldwrapper div.thefield input.radio, div.fieldwrapper div.thefield input.checkbox{
	float:left;
	cursor: pointer;
	padding-top:0px;
	padding-bottom: 0px;
}

form.simple div.fieldwrapper div.thefield textarea{ 
	width: 100%;
	height: 150px;
	border: 1px solid #666;
}

form.simple div.fieldwrapper div.thefield select {
	width: 100%;
	margin: 4px 0px;
}

/* Alert / Error Message */

form.simple div.fieldwrapper.alert {
	background: #F3D9D1 url(/themes/reo08/images/decline.gif) no-repeat right top;
	border: 1px solid #903;
	color: #903;
	display: block;
	clear: both;
	padding: 2px;
}
form.simple div.fieldwrapper.pass {
	background: url(/themes/reo08/images/accept.gif) no-repeat right top;
}


form.simple div.fieldwrapper .thefield span.error {
	font-size: 80%;
	display: block;
	clear: both;
}


/* Submit / Reset Buttons */

form.simple div.buttonsdiv {
	margin: 15px 0px 15px 180px;
}

form.simple div.buttonsdiv input { /* style for INPUT fields within 'buttonsdiv'. Assumed to be form buttons. */
	padding: 4px 8px 3px 8px;
	width: 90px;
	font: bold 12px/14px Arial, Helvetica, sans-serif;
	border: 1px solid #88643D;
	cursor:pointer;
	color: #CAA76C;
	background-color: #5A3919;
	background-repeat: repeat-x;
	background-position: left top;
}

form.simple div.buttonsdiv input:hover {
	color: #5C3A1A;
	background-color: #CAA76C;
}

form.simple div.column2{
	width:50%;
}


@charset "UTF-8";

div.gallerystack {
	background-image:url(/themes/reo08/images/Image-Stack.jpg) !important;
	background-repeat:no-repeat;
	clear:none;
	height:150px;
	overflow:hidden;
	margin: 0px;
	padding: 0px;
	width:310px;
	float:left;
	margin-right:5px;
	position: relative;
}
div.gallerystack a {
	float: left;
}
div.gallerystack a img.thumb {
	border:3px solid #FFFFFF !important;
	color:#FFFFFF !important;
	position: absolute;
	height: 96px;
	width: 128px;
	left: 19px;
	top: 19px;
}
div.gallerystack a:hover img.thumb {
	border:3px solid #F5C571 !important;
	color:#F5C571 !important;
}

div.gallerystack .gallerytitle {
	color:#660033;
	font-size:13px;
	font-weight:bold;
	text-align:left;
	text-transform:capitalize;
	margin: 0px;
	padding: 0px;
	height: 18px;
	width: 140px;
	position: absolute;
	left: 170px;
	top: 20px;
}
div.gallerydesc {
	text-align:left;
	font-size:11px;
	line-height:normal;
	height: 65px;
	width: 130px;
	position: absolute;
	left: 170px;
	top: 50px;
}

html, body {
	height: 100%;
}

div#fancy_overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	display: none;
	z-index: 30;
}

* html div#fancy_overlay {
	position: absolute;
	height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
}

div#fancy_wrap {
	text-align: left;
}

div#fancy_loading {
	position: absolute;
	height: 40px;
	width: 40px;
	cursor: pointer;
	display: none;
	overflow: hidden;
	background: transparent;
	z-index: 100;
}

div#fancy_loading div {
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 480px;
	background: transparent url('/_resources/jQueryPlugins/jquery.fancybox/default/fancy_progress.png') no-repeat;
}

div#fancy_loading_overlay {
	position: absolute;
	background-color: #FFF;
	z-index: 30;
}

div#fancy_loading_icon {
	position: absolute;
	background: url('/_resources/jQueryPlugins/jquery.fancybox/default/fancy_loading.gif') no-repeat;
	z-index: 35;
	width: 16px;
	height: 16px;
}

div#fancy_outer {
	position: absolute;
    top: 0;
    left: 0;
    z-index: 90;
    padding: 18px 18px 33px 18px;
    margin: 0;
    overflow: hidden;
    background: transparent;
    display: none;
}

div#fancy_inner {
	position: relative;
	width:100%;
	height:100%;
	border: 1px solid #BBB;
	background: #FFF;
}

div#fancy_content {
	margin: 0;
	z-index: 100;
	position: absolute;
}

div#fancy_div {
	background: #000;
	color: #FFF;
	height: 100%;
	width: 100%;
	z-index: 100;
}

img#fancy_img {
	position: absolute;
	top: 0;
	left: 0;
	border:0; 
	padding: 0; 
	margin: 0;
	z-index: 100;
	width: 100%;
	height: 100%;
}

div#fancy_close {
	position: absolute;
	top: -12px;
	right: -15px;
	height: 30px;
	width: 30px;
	background: url('/_resources/jQueryPlugins/jquery.fancybox/default/fancy_closebox.png') top left no-repeat;
	cursor: pointer;
	z-index: 181;
	display: none;
}

#fancy_frame {
	position: relative;
	width: 100%;
	height: 100%;
	display: none;
}

#fancy_ajax {
	width: 100%;
	height: 100%;
	overflow: auto;
}

a#fancy_left, a#fancy_right {
	position: absolute; 
	bottom: 0px; 
	height: 100%; 
	width: 35%; 
	cursor: pointer;
	z-index: 111; 
	display: none;
	background-image: url(data:image/gif;base64,AAAA);
	outline: none;
}

a#fancy_left {
	left: 0px; 
}

a#fancy_right {
	right: 0px; 
}

span.fancy_ico {
	position: absolute; 
	top: 50%;
	margin-top: -15px;
	width: 30px;
	height: 30px;
	z-index: 112; 
	cursor: pointer;
	display: block;
}

span#fancy_left_ico {
	left: -9999px;
	background: transparent url('/_resources/jQueryPlugins/jquery.fancybox/default/fancy_left.png') no-repeat;
}

span#fancy_right_ico {
	right: -9999px;
	background: transparent url('/_resources/jQueryPlugins/jquery.fancybox/default/fancy_right.png') no-repeat;
}

a#fancy_left:hover {
  visibility: visible;
}

a#fancy_right:hover {
  visibility: visible;
}

a#fancy_left:hover span {
	left: 20px; 
}

a#fancy_right:hover span {
	right: 20px; 
}

.fancy_bigIframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
}

div#fancy_bg {
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	z-index: 70;
	border: 0;
	padding: 0;
	margin: 0;
}
	
div.fancy_bg {
	position: absolute;
	display: block;
	z-index: 70;
	border: 0;
	padding: 0;
	margin: 0;
}

div.fancy_bg_n {
	top: -18px;
	width: 100%;
	height: 18px;
	background: transparent url('/_resources/jQueryPlugins/jquery.fancybox/default/fancy_shadow_n.png') repeat-x;
}

div.fancy_bg_ne {
	top: -18px;
	right: -13px;
	width: 13px;
	height: 18px;
	background: transparent url('/_resources/jQueryPlugins/jquery.fancybox/default/fancy_shadow_ne.png') no-repeat;
}

div.fancy_bg_e {
	right: -13px;
	height: 100%;
	width: 13px;
	background: transparent url('/_resources/jQueryPlugins/jquery.fancybox/default/fancy_shadow_e.png') repeat-y;
}

div.fancy_bg_se {
	bottom: -18px;
	right: -13px;
	width: 13px;
	height: 18px;
	background: transparent url('/_resources/jQueryPlugins/jquery.fancybox/default/fancy_shadow_se.png') no-repeat;
}

div.fancy_bg_s {
	bottom: -18px;
	width: 100%;
	height: 18px;
	background: transparent url('/_resources/jQueryPlugins/jquery.fancybox/default/fancy_shadow_s.png') repeat-x;
}

div.fancy_bg_sw {
	bottom: -18px;
	left: -13px;
	width: 13px;
	height: 18px;
	background: transparent url('/_resources/jQueryPlugins/jquery.fancybox/default/fancy_shadow_sw.png') no-repeat;
}

div.fancy_bg_w {
	left: -13px;
	height: 100%;
	width: 13px;
	background: transparent url('/_resources/jQueryPlugins/jquery.fancybox/default/fancy_shadow_w.png') repeat-y;
}

div.fancy_bg_nw {
	top: -18px;
	left: -13px;
	width: 13px;
	height: 18px;
	background: transparent url('/_resources/jQueryPlugins/jquery.fancybox/default/fancy_shadow_nw.png') no-repeat;
}

div#fancy_title {
	position: absolute;
	bottom: -33px;
	left: 0;
	width: 100%;
	z-index: 100;
	display: none;
}

div#fancy_title div {
	color: #FFF;
	font: bold 12px Arial;
	padding-bottom: 3px;
}

div#fancy_title table {
	margin: 0 auto;
}

div#fancy_title table td {
	padding: 0;
	vertical-align: middle;
}

td#fancy_title_left {
	height: 32px;
	width: 15px;
	background: transparent url('/_resources/jQueryPlugins/jquery.fancybox/default/fancy_title_left.png') repeat-x;
}

td#fancy_title_main {
	height: 32px;
	background: transparent url('/_resources/jQueryPlugins/jquery.fancybox/default/fancy_title_main.png') repeat-x;
}

td#fancy_title_right {
	height: 32px;
	width: 15px;
	background: transparent url('/_resources/jQueryPlugins/jquery.fancybox/default/fancy_title_right.png') repeat-x;
}


/* Zoom Image */


span.zoomicon {
	position:absolute;
	height: 23px;
	width: 23px;
	display: none;
	right: 2px;
	bottom: 2px;
	background-image: url('/_resources/jQueryPlugins/jquery.fancybox/default/zoom.png');
	background-repeat: no-repeat;
	text-indent:-2000em;
}

a.zoomlink:hover span.zoomicon, a.zoomlink:active span.zoomicon {
	display:block;
}


/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.jcarousel-container {
    position: relative;
}

.jcarousel-clip {
/*    z-index: 2;
*/    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.jcarousel-list {
    /*z-index: 1;*/
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    margin: 0!important;
    padding: 0!important;
}

.jcarousel-list li,
.jcarousel-item {
    float: left;
    list-style: none;
	background-image:none!important;	
    /* We set the width/height explicitly. No width/height causes infinite loops. */
   

}

/**
 * The buttons are added dynamically by jCarousel before
 * the <ul> list (inside the <div> described above) and
 * have the classnames "jcarousel-next" and "jcarousel-prev".
 */
.jcarousel-next {
    /*z-index: 3;*/
    display: none;
}

.jcarousel-prev {
   /* z-index: 3;*/
    display: none;
}


#maincarousel{
	width: 630px;
	height: 200px;
	position:relative;
	overflow:hidden;
}
#maincarousel #carouseltitle{
	position:absolute;
	height:24px;
	width:530px;
	left:50px;
	bottom:0px;
	background-image: url(/themes/reo08/images/carousel/dotted.gif);
	background-repeat: repeat-x;
	background-position: 0px 10px;
	text-align: center;
}
#maincarousel #carouseltitle span{
	font-size: 14px;
	font-style: italic;
	font-weight: bold;
	color: #333;
	background-color: #f9f9f9;
	padding-right: 10px;
	padding-left: 10px;
}

.jcarousel-skin-gorgelarge .jcarousel-container {
	background-repeat: repeat-x;
}

.jcarousel-skin-gorgelarge .jcarousel-container-horizontal {
	width: 630px;
	height: 190px;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	overflow:hidden;
}

.jcarousel-skin-gorgelarge .jcarousel-clip-horizontal {
	width:  630px;
	height: 150px;
}



.jcarousel-skin-gorgelarge .jcarousel-item {
	width: 136px;
	height: 150px;
	padding: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	position: relative;
}

.jcarousel-skin-gorgelarge .jcarousel-item-horizontal {
	padding: 0px!important;
	margin-top: 0px!important;
	margin-bottom: 0px!important
}


.jcarousel-skin-gorgelarge .jcarousel-item-placeholder {
    background: #fff;
    color: #000;
}

/**
 *  Horizontal Buttons
 */
.jcarousel-skin-gorgelarge .jcarousel-next-horizontal {
	position: absolute;
	right: 7px;
	width: 26px;
	height: 24px;
	cursor: pointer;
	background-color: transparent;
	background-image: url(/themes/reo08/images/carousel/jcarousel-next.gif);
	background-repeat: no-repeat;
	background-position: 0 0;
	bottom: 0px;
}

.jcarousel-skin-gorgelarge .jcarousel-next-horizontal:hover {
    background-position: -26px 0;
}

.jcarousel-skin-gorgelarge .jcarousel-next-horizontal:active {
    background-position: -52px 0;
}

.jcarousel-skin-gorgelarge .jcarousel-next-disabled-horizontal,
.jcarousel-skin-gorgelarge .jcarousel-next-disabled-horizontal:hover,
.jcarousel-skin-gorgelarge .jcarousel-next-disabled-horizontal:active {
    cursor: default;
    background-position: -78px 0;
}

.jcarousel-skin-gorgelarge .jcarousel-prev-horizontal {
	position: absolute;
	left: 7px;
	width: 26px;
	height: 24px;
	cursor: pointer;
	background-color: transparent;
	background-image: url(/themes/reo08/images/carousel/jcarousel-prev.gif);
	background-repeat: no-repeat;
	background-position: 0 0;
	bottom: 0px;
}

.jcarousel-skin-gorgelarge .jcarousel-prev-horizontal:hover {
    background-position: -26px 0;
}

.jcarousel-skin-gorgelarge .jcarousel-prev-horizontal:active {
    background-position: -52px 0;
}

.jcarousel-skin-gorgelarge .jcarousel-prev-disabled-horizontal,
.jcarousel-skin-gorgelarge .jcarousel-prev-disabled-horizontal:hover,
.jcarousel-skin-gorgelarge .jcarousel-prev-disabled-horizontal:active {
    cursor: default;
    background-position: -78px 0;
}


#mycarousel, #mycarousel li {
	margin: 0px;
	padding: 0px;
}
#mycarousel li {
	margin: 0px;
	padding: 0px;
	width:210px;
	float:left;
	height: 150px;
	position: relative;
	background-image:none!important;
}
#mycarousel li a {
	display: block;
	height: 140px;
	width: 190px;
	color: #333!important;
	overflow:hidden;
	margin-right: auto;
	margin-left: auto;
	border: 5px solid #000;
	position: relative;
}

#mycarousel li a img {
	border-style: none!important;
}
#mycarousel li a:hover {
	text-decoration: none!important;
	background-color: #666;
	color: #FFF!important;
}

#mycarousel li a:hover img {
	border-style: none;
}
#mycarousel li a img {
	border: 1px solid #C5C5C5;
}
br.clear {
	clear: both;
}
#mycarousel li a .jcarousel-txt {
	display: block;
	height: 100px;
	overflow: hidden;
	text-decoration: none;
	color: #FFF;
	left: 0px;
	bottom: 0px;
	position: absolute;
	margin: 0px;
	padding: 0px;
	width: 190px;
	font: bold normal 11px/normal "Trebuchet MS", Arial, Helvetica, sans-serif;
	background-image: url(/themes/reo08/images/carousel/overlay.png);
	background-repeat: repeat-x;
	background-position: center bottom;
	text-align: left;
}
#mycarousel li a .jcarousel-txt span {
	padding:4px;
	display: block;
	position: absolute;
	left: 0px;
	bottom: 0px;
	text-shadow: 1px 1px 3px black ;
}


body {
	background-image: url(/themes/reo08/images/bodyBG.jpg);
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	background-position: 50% 0px;
	
}
body, tr td{
	font-family: Tahoma;
	font-size: 12px;
}
#wrapper {
	background-image: url(/themes/reo08/images/wrapperBG.jpg);
	background-repeat: repeat-x;
	background-position: 50% 0px;
}
#wrapper #page {
	width: 980px;
	margin-right: auto;
	margin-left: auto;
	background-image: url(/themes/reo08/images/pageBG.jpg);
	background-repeat: repeat-y;
	position: relative;
}
#wrapper #page #footer {
	background-image: url(/themes/reo08/images/footerBG.jpg);
	height: 83px;
	background-repeat: no-repeat;
}
#wrapper #page #lbit {
	background-image: url(/themes/reo08/images/lbit.jpg);
	background-repeat: no-repeat;
	position: absolute;
	height: 211px;
	width: 10px;
	left: 0px;
	top: 76px;
}
#wrapper #page #rbit {
	background-image: url(/themes/reo08/images/rbit.jpg);
	background-repeat: no-repeat;
	position: absolute;
	height: 211px;
	width: 10px;
	right: 0px;
	top: 76px;
}
#wrapper #page #mainnav {
	background-image: url(/themes/reo08/images/mainnavBG.jpg);
	background-repeat: repeat-x;
	height: 23px;
	width: 920px;
	position: absolute;
	left: 10px;
	padding-left: 40px;
	clear: right;
	z-index: 10;
}
#wrapper #page #topbit #topnav {
	background-image: url(/themes/reo08/images/topnavBG.jpg);
	background-repeat: no-repeat;
	position: absolute;
	height: 25px;
	width: 339px;
	top: 18px;
	right: 140px;
	padding-left: 10px;
}

#wrapper #page #topbit #topnav a{
	height: 25px;
	background-position: 0px 0px;
	display: block;
	float: left;
}
#wrapper #page #topbit #topnav a#top1 {
	background-image: url(/themes/reo08/images/topnav/tn_spec.jpg);
	width: 84px;
}
#wrapper #page #topbit #topnav a#top2 {
	background-image: url(/themes/reo08/images/topnav/nt_book.jpg);
	width: 118px;
}
#wrapper #page #topbit #topnav a#top3 {
	background-image: url(/themes/reo08/images/topnav/tn_ig.jpg);
	width: 127px;
}
#wrapper #page #topbit #topnav a:hover{
	background-position: 0px -25px;
}
#wrapper #page #topbit #topnav a span{
	display:none; 
 }
#wrapper #page #main {
	width: 960px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 23px;
	margin-bottom: 40px;
}
#wrapper #page #main #right {
	width: 255px;
	float: right;
	margin-right: 15px;
	margin-top: 15px;
}
#wrapper #page #stage #ctabar #boxfix {
	background-image: url(/themes/reo08/images/boxFix.jpg);
	background-repeat: no-repeat;
	position: absolute;
	height: 7px;
	width: 651px;
	left: 23px;
	top: 80px;
}
#wrapper #page #main #right .ctabox {
	background-image: url(/themes/reo08/images/cta_boxes/cta_slider.jpg);
	background-position: 0px bottom;
	padding-bottom: 10px;
	margin-bottom: 2px;
}
#wrapper #page #main #content {
	padding-left: 30px;
	padding-right: 295px;
}
#wrapper #page #topbit {
	background-image: url(/themes/reo08/images/TopBit.jpg);
	height: 76px;
	width: 980px;
}
#wrapper #page #stage {
	height: 420px;
	width: 960px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	top: 23px;
	overflow: hidden;
}
#wrapper #page #sw1 {
	background-image: url(/themes/reo08/images/sw1.png);
	background-repeat: no-repeat;
	position: absolute;
	height: 99px;
	width: 156px;
	left: -95px;
	top: 0px;
	z-index: 15;
}
#wrapper #page #sw2 {
	position: absolute;
	height: 99px;
	width: 156px;
	left: -56px;
	top: 99px;
	background-image: url(/themes/reo08/images/sw2.png);
}
#wrapper #page #stage #hshadow {
	background-image: url(/themes/reo08/images/hshadow.png);
	background-repeat: no-repeat;
	height: 10px;
	width: 960px;
	position: absolute;
	left: 0px;
	top: 0px;
}
#wrapper #page #ctabar div.ctaslider {
	background-image: url(/themes/reo08/images/ctasliderBG.jpg);
	height: 87px;
	width: 219px;
	background-position: 0px bottom;
}
#wrapper #page #ctabar #cta1 {
	position: absolute;
	left: 22px;
	top: 0px;
	background-image: url(/themes/reo08/images/cta1.jpg);
	background-position: 0px 0px;
	background-repeat: no-repeat;
}
#wrapper #page #ctabar #cta2 {
	position: absolute;
	left: 239px;
	top: 0px;
	background-image: url(/themes/reo08/images/cta2.jpg);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	z-index: 15;
}
#wrapper #page #stage #ctabar #cta3 {
	position: absolute;
	left: 456px;
	top: 0px;
	background-image: url(/themes/reo08/images/cta3.jpg);
	background-repeat: no-repeat;
	background-position: 0px 0px;
}
#wrapper #page #stage #ctabar #contactinfo {
	background-image: url(/themes/reo08/images/contactInfo.jpg);
	position: absolute;
	height: 99px;
	width: 270px;
	right: 0px;
	bottom: 0px;
}
#wrapper #page #stage #tour {
	background-image: url(/themes/reo08/images/StageBG.jpg);
	height: 416px;
	width: 960px;
	position: absolute;
	bottom: 90px;
	display: none;
}

#wrapper #page #stage #header {
	background-image: url(/themes/reo08/images/headerTMP.jpg);
	height: 330px;
	width: 960px;
	position: absolute;
	bottom: 90px;
	display: block;
}
#wrapper #page #ctabar {
	height: 90px;
	position: absolute;
	bottom: 0px;
	width: 960px;
}
#wrapper #page #main #right .ctabox .ctacontent {
	width: 245px;
	margin-right: auto;
	margin-left: auto;
}
#wrapper #page #incontrol {
	background-image: url(/themes/reo08/images/bodyBG.jpg);
	text-align: center;
	padding-bottom: 10px;
	color: #EAE8DE;
}
#wrapper #page #incontrol a {
	font-size: 10px;
	color: #EAE8DE;
	text-decoration: none;
}

#wrapper #page #topbit #searchbox {
	position: absolute;
	height: 25px;
	width: 125px;
	top: 18px;
	right: 10px;
	text-align: right;
}
#wrapper #page #topbit #searchbox form {
	margin:0px;
	padding:0px;
}
#wrapper #page #topbit #searchbox input.q {
	font-size: 10px;
	height: 19px;
	width: 102px;
	border: 1px none #666666;
	background-image: url(/themes/reo08/images/topnav/searchbox.jpg);
	background-repeat: no-repeat;
	float: right;
	display: block;
	text-indent: 8px;
	margin: 0px;
	color: #FFFFFF;
	padding-top: 6px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	line-height: 10px;
	text-align: left;
	font-weight: bold;
}
#wrapper #page #topbit #searchbox #searchbtn {
	margin: 0px;
	padding: 0px;
	height: 25px;
	float: right;
}

:focus  { outline: thick none black }
#phoneoverlay {
	position: absolute;
	z-index: 999;
	height: 240px;
	width: 100%;
	left: 0px;
	top: 0px;
	padding-top: 160px;
	margin-right: auto;
	margin-left: auto;
}
#phoneoverlay #phonenumber {
	margin: auto;
	height: 159px;
	width: 1015px;
}
#phoneoverlay #phonenumber.p1800 {
	background-image: url(/themes/reo08/images/1800-overlay.png);
}
#phoneoverlay #phonenumber.p604 {
	background-image: url(/themes/reo08/images/604-overlay.png);
}


/*Trip Boxes */

a.tripbox {
	background-image: url(/themes/reo08/images/tripboxBG.jpg);
	background-repeat: no-repeat;
	float: none;
	height: 183px;
	width: 635px;
	position: relative;
	display: block;
	background-position: 0px 0px;
	font-weight: normal;
	color: #000000;
}
 #content a.tripbox:hover {
/*	background-position: 0px -132px;*/
	text-decoration: none!important;
}
.tripbox img.thumb {
	background-color: #FFF;
	position: absolute;
	top: 0px;
	border: 1px solid #999 !important;
	padding: 4px;
	right: 15px;
}
.tripbox h3{
	position: absolute;
	height: 20px;
	left: 38px;
	top: 16px;
	overflow: hidden;
	width: 309px;
	font-size: 16px!important;
	font-weight: bold!important;
	color: #3a6740!important;
	text-align: left;
}
.tripbox h4{
	position: absolute;
	height: 20px;
	left: 10px;
	top: 48px;
	overflow: hidden;
	width: 330px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px!important;
	font-weight: bold!important;
	color: #000!important;
	text-align: left;
}
.tripbox span.triptext {
	height: 96px;
	width: 330px;
	left: 10px;
	top: 71px;
	position: absolute;
	overflow: hidden;
	display: block;
	font-weight: normal !important;
	color: #000000 !important;
	text-decoration: none;
	text-align: left;
	font-size: 11px;
	line-height: normal;
}
span.tripbutt {
	background-image: url(/themes/eco08/images/tripdetailButt.jpg);
	background-repeat: no-repeat;
	position: absolute;
	height: 22px;
	width: 94px;
	left: 526px;
	top: 139px;
	display: block;
}
.tripbox:hover span.tripbutt {
	background-position: -94px 0px;
}
.tripbox .iconbox {
	position: absolute;
	height: 22px;
	width: 240px;
	left: 8px;
	top: 104px;
	overflow: hidden;
}

.tripbox .iconbox img{
	border: 0px none #000000;
	margin-right: 5px;
}
span.tripbutt1 {
	background-image: url(/themes/reo08/images/LearnMoreBTN.png);
	background-repeat: no-repeat;
	position: absolute;
	height: 32px;
	width: 140px;
	display: block;
	right: 6px;
	bottom: 14px;
}
a.tripbox span.badge {
	display: block;
	position: absolute;
	height: 80px;
	width: 80px;
	top: -10px;
	right: -10px;
	text-indent: -2000em;
}
a.tripbox span.best {
	background-image: url(/themes/reo08/images/BestValueBadge.png);
	
}

a.tripbox span.limited {
	background-image: url(/themes/reo08/images/limitedBadge.png);
	
}
a.tripbox span.kids {
	background-image: url(/themes/reo08/images/KidsBadge.png);	
}

#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;
}

