@charset "UTF-8";
body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #000000;
	background-image: url(images/REO_bg_logo.jpg);
	background-repeat: no-repeat;
	background-position: center -90px;
}

a:link {
	color: #CC0000;
	text-decoration: none;
}
a:visited {
	color: #CC0000;
	text-decoration: none;
}
a:hover {
	color: #FF0000;
	text-decoration: underline;
}

#container {
	width: 898px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image: url(images/REO_temp_bg.jpg);
	background-repeat: repeat-y;
	background-position: 0px 356px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
} 
#header {
	padding: 0px;
	height: 356px;
	width: 897px;
} 
#noflashheader {
	padding: 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	background-image: url(images/REO_header_02.jpg);
	height: 256px;
	width: 898px;
} 

#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}


/********************************/
/*      COLUMNS                  */
/*                               */
/********************************/


#colMain {
	float: left; /* since this element is floated, a width must be given */
	width: 500px;
	margin-left: 30px;
	margin-bottom: 20px;
}

#colSide {
	float: right; /* since this element is floated, a width must be given */
	width: 300px; /* padding keeps the content of the div away from the edges */
	margin-right: 30px;
	margin-bottom: 20px;
}

#colLeft {
	float: left; /* since this element is floated, a width must be given */
	width: 300px;
	margin-left: 20px;
	margin-bottom: 20px;
}

#colRight {
	float: right; /* since this element is floated, a width must be given */
	width: 300px; /* padding keeps the content of the div away from the edges */
	margin-right: 20px;
	margin-bottom: 20px;
}

#colCenter {
	margin-top: 40px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-top: 0px;
	padding-bottom: 0px;
	width: 200px;
} 

#colFull {
	width: 820px;
	margin-left: auto;
	margin-bottom: 20px;
	margin-right: auto;
}



/********************************/
/*      FOOTER                   */
/*                               */
/********************************/



#footer {
	padding-right: 10px;
	padding-left: 20px;
	margin-right: 13px;
	margin-left: 14px;
	background-image: url(images/footer_bg.jpg);
	height: 35px;
	color: #FFFFFF;
	font-size: 11px;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #660000;
	border-bottom-color: #660000;
} 
#footer .menu {
	margin: 0;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
	float: left;
}
#footer .credits {
	margin: 0;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
	float: right;
}

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
#menubox {
	background-image: url(images/REO_header_04.jpg);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	height: 100px;
	width: 898px;
	float: left;
}

.secbox {
	border: 2px solid #878787;
	background-color: #1E1F1E;
	background-image: url(images/sec_bg.jpg);
}
.cont {
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	color: #FFFFFF;
	font-size: 12px;
}
#mainmenu {
	margin-top: 7px;
	margin-left: 15px;
	margin-right: 15px;
	text-align: center;
	font-size: 12px;
	font-weight: bold;
	height: 46px;
	margin-bottom: 2px;
}
#mainmenu .menuLeft {
	float: left;
	width: 350px;	
}

#mainmenu .menuRight {
	float: right;
	width: 350px;
	height: 46px;
}
.menuItem {
	margin-top: 2px;
	padding-bottom: 2px;
	padding-top: 2px;
	height: 20px;
	padding-right: 7px;
	padding-left: 7px;
	color: #FFFFFF;
	line-height: 20px;
}
.menuItem a {
	color: #FFFFFF;
}
.menuItem a:hover {
	font-size: 11px;
	padding-bottom: 3px;
	padding-top: 3px;
	padding-right: 3px;
	padding-left: 3px;
	background-image: url(images/menu_over.jpg);
	background-repeat: repeat-x;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #CCCCCC;
	border-left-color: #CCCCCC;
}

ul#tour-dates, ul#links, ul#videos-list, ul#disc-list, ul#links1, ul#links2 {
	height: auto;
	padding: 0pt;
	width: auto;
	margin: 0px;
}


#tour-dates li, #links li, #vidoes-list li, #disc-list li, #links1 li, #links2 li {
	line-height: 1.5em;
	width: 97%;
	list-style-type: none;
	list-style-image: none;
	list-style-position: outside;
	font-size: 11px;
	padding-top: 4pt;
	padding-right: 0pt;
	padding-bottom: 10pt;
	padding-left: 5pt;
}

.odd {
	background-color: #2E2E2E;
}
.even {
	background-color: #272727;
}


.tourItem {
	width: 90%;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #999999;
	border-right-color: #999999;
	border-bottom-color: #999999;
	border-left-color: #999999;
}
.tourItem .date {
	font-size: 10px;
	color: #CCCCCC;
	width: 25%;
	text-align: center;
}
.tourItem .venue {
	border-right-width: 1px;
	border-right-style: dashed;
	border-right-color: #666666;
	text-align: center;
	font-weight: bold;
}
.tourItem .city {
	text-align: center;
	font-weight: bold;
}

.date {
	font-size: 10px;
	color: #CCCCCC;
	text-align: center;
	width: 20%;
}
.venue {
	font-size: 10px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #999999;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #999999;
	padding-left: 10px;
}
.city {
	font-size: 10px;
	font-weight: bold;
	border-right-width: 1px;
	border-right-style: dashed;
	border-right-color: #666666;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #999999;
	padding-left: 10px;
}
.extraInfo {
	font-size: 10px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-right-color: #999999;
	border-bottom-color: #999999;
	background-color: #333333;
	padding-left: 10px;
}

.tourHeaderDate {
	font-weight: bold;
	text-align: center;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #999999;
	border-bottom-color: #999999;
	border-left-color: #999999;
	border-right-width: 1px;
	border-right-style: dashed;
	border-right-color: #666666;
}
.tourHeaderVenue {
	font-weight: bold;
	padding-left: 10px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-top-color: #999999;
	border-right-color: #999999;
	border-bottom-color: #999999;
}
.tourHeaderCity {
	font-weight: bold;
	padding-left: 10px;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #999999;
	border-bottom-color: #999999;
	border-right-width: 1px;
	border-right-style: dashed;
	border-right-color: #666666;
}
.galTitle {
	font-size: 18px;
	font-weight: bold;
	padding-left: 15px;
	background-image: url(images/menu_over.jpg);
	background-repeat: repeat-x;
	margin-bottom: 25px;
	padding-top: 5px;
	padding-bottom: 10px;
}
ul {
	margin-bottom: 25px;
	margin-top: 0px;
	background-color: #333333;
	padding-top: 10px;
	padding-bottom: 10px;
}
.secItem {
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #333333;
	clear: both;
	height: auto;
	overflow: hidden;
	
}
.discHeader {
	background-image: url(images/secTitleFull_albums.jpg);
	height: 33px;
	width: 816px;
	color: #FFFFFF;
	font-size: 14px;
}
.discMenu:link, .discMenu:visited{
	color: #FFFFFF;
	text-decoration: underline;
}
.discMenu:hover {
	color: #CC0000;
}
.rule {
	clear: both;
	width: 100%;
	margin-top: 50px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #666666;
}
.itemTitle {
	font-size: 14px;
	font-weight: bold;
	color: #FFFFFF;
	margin-bottom: 5px;
}
.itemDate {
	font-size: 12px;
	color: #CCCCCC;
}
.formCat {
	font-size: 12px;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #660000;
}
.formInfo {
	font-size: 12px;
	color: #CCCCCC;
}
.spanColsRight {
	clear: right;
	width: 520px;
}
.videoBox {
	width: 425px;
	margin-right: auto;
	margin-left: auto;
	overflow:hidden;
}
.featuredItem {
	background-color: #000000;
	padding: 10px;
	margin-top: 5px;
	margin-bottom: 15px;
	border: 1px solid #666666;
	clear: both;
	height: auto;
	overflow: hidden;
	display: block;
}
.faq {
	padding-left: 10px;
	line-height: 20px;
}
.galphoto {
	float: left;
	width: 33%;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 25px;
}
