/* Theme Name: Itineraries Midwest Group Travel Magazine
Theme URI: http://www.itinerariesmidwest.com/
Description: A large cms enabled theme that is completely compatible with WordPress 3.0
Author: Christopher Reber
Author URI: http://www.descriptivedesign.com/
Version: 1.5 */

/***********************
------html5 Reset-------
***********************/
/* 
  HTML5 ? Boilerplate 
  
  style.css contains a reset, font normalization and some base styles.
  
  credit is left where credit is due.
  much inspiration was taken from these projects:
    yui.yahooapis.com/2.8.1/build/base/base.css
    camendesign.com/design/
    praegnanz.de/weblog/htmlcssjs-kickstart
*/

/* 
  html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
  html5doctor.com/html-5-reset-stylesheet/
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}                  

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { 
    display:block;
}

nav ul { list-style:none; }

blockquote, q { quotes:none; }

blockquote:before, blockquote:after,
q:before, q:after { content:''; content:none; }

a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; }

ins { background-color:#ff9; color:#000; text-decoration:none; }

mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom:1px dotted; cursor:help; }

/* tables still need cellspacing="0" in the markup */
table { border-collapse:collapse; border-spacing:0; }

hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }

input, select { vertical-align:middle; }

/* END RESET CSS */


/* fonts.css from the YUI Library: developer.yahoo.com/yui/
   Refer to developer.yahoo.com/yui/3/cssfonts/ for font sizing percentages

  There are three custom edits:
   * remove arial, helvetica from explicit font stack
   * we normalize monospace styles ourselves
   * table font-size is reset in the HTML5 reset above so there is no need to repeat
*/
body { 
    font-size: 1em/*0.875em*/;
}

select, input, textarea, button { font:99% sans-serif; }

/* normalize monospace sizing 
 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp { font-family: monospace, sans-serif; }
 

/* 
 * minimal base styles 
 */


body, select, input, textarea { 
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */ 
  color: #444; 
  /* set your base font here, to apply evenly */
font-family: Arial, sans-serif;
}

/* always force a scrollbar in non-IE */ 
html { overflow-y: scroll; }

 
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }
a { text-decoration: none;}
a, a:active, a:visited { color: #607890; }
a:hover { color: #036; text-decoration: underline; }


ul, ol { margin-left: 1.8em; }
ol { list-style-type: decimal; }

/* Remove margins for navigation lists */
nav ul, nav li { margin: 0; } 

small { font-size: 85%; }
strong, th { font-weight: bold; }

td, td img { vertical-align: top; } 

sub { vertical-align: sub; font-size: smaller; }
sup { vertical-align: super; font-size: smaller; }

pre { 
  padding: 15px; 
  
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}
 
textarea { overflow: auto; } /* thnx ivannikolic! www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */

.ie6 legend, .ie7 legend { margin-left: -7px; } /* thnx ivannikolic! */

/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; }
.ie7 input[type="checkbox"] { vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }

/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button { cursor: pointer; }
 
/* webkit browsers add a 2px margin outside the chrome of form elements */  
button, input, select, textarea { margin: 0; }

/* colors for form validity */
input:invalid, textarea:invalid { 
      border-radius: 1px;
    -moz-box-shadow: 0 0 5px red; 
 -webkit-box-shadow: 0 0 5px red; 
         box-shadow: 0 0 5px red;
}
.no-boxshadow input:invalid, 
.no-boxshadow textarea:invalid { background-color: #f0dddd; }


/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301 
   Also: hot pink. */
::-moz-selection{ background: #5F2581; color:#fff; text-shadow: none; }
::selection { background:#5F2581; color:#fff; text-shadow: none; } 

/*  j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #5F2581; } 

/* make buttons play nice in IE:    
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }
 
/* bicubic resizing for non-native sized IMG: 
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }



/* 
 * Non-semantic helper classes 
 */

/* for image replacement */
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }

/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display: none; visibility: hidden; } 

/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden  */
.visuallyhidden { position: absolute !important;    
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* >> The Magnificent CLEARFIX: Updated to prevent margin-collapsing on child elements << j.mp/bestclearfix */
.clearfix:before, .clearfix:after {
  content: "\0020"; display: block; height: 0; visibility: hidden;	
} 

.clearfix:after { clear: both; }
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix { zoom: 1; }






 /********************************
 Primary Styles
    Author: Christopher Reber
    url: www.descriptivedesign.com
 ********************************/
/**********************************
		Colors
**********************************/
/*
tan: #F1F1E7
purple: #1A0F1F
purple lite: #6C5084
brown: #9A5C4F

blue; 2b4e59
#980d5e; Canada Pink
#83904a; N Dakota green
#bd810f; S Dakota yellow
#c3141b; Nebraska red
#37a797; Kansas blue
#fba81a; Iowa yellow
#6f4382; Minnesota Purple
#016eaf; Missouri Blue
#848975; UP Michigan tan
#00753e; Wisconsin green
#e85b23; Illinois Orange
*/
/* ============================== */
/* ! Font styles                  */
/* ============================== */
h1, h2, h3, h4, h5, h6 {
	font-family: Arial, Helvetica, sans-serif;
	color: #43254A;
	font-weight: normal;
}
h1 {
	 font-size: 2em;
	 margin: .67em 0;
}
h2 {
	font-size: 1.8em;
	margin: .75em 0;
}
h3 {
	font-size: 1.5em;
	margin: .83em 0;
	}
h4 {
	font-size: 1.2em;
	margin: 1.12em 0;
}
h5 {
	font-size: 1em;
	margin: 1.5em 0;
	}
h6 {
	font-size: .85em;
	margin: 1.67em 0;
	}
p {
	margin: 1.12em 0;
	line-height: 1.4em;
}
.states_title_font {
	font-style: italic;
	font-size: 80%;
}
.clearboth {
	clear: both;
	height: 1px;
	line-height: 1px;
}
.floatleft {
	float: left;
}
.floatright {
	float: right;
}
.textalign-center {
	text-align: center;
	margin: 0 auto;
}
.button2 {
	text-align: center;
	margin: 10px;
}
.button2 a {
	background: #9A5C4F url("images/menu_bg_brown.jpg") center top;
	color: #F1F1E7;
	padding: 5px 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow: 1px 1px 3px #333333;
	-moz-box-shadow: 1px 1px 3px #333333;
	box-shadow: 1px 1px 3px #333333; 
}
.button2 a:hover {
	background: #9A5C4F url("images/menu_bg_brown.jpg") center bottom;
	color: #E5DFC7;
}
.button2 a:active {
	-webkit-box-shadow: -1px -1px 0 #333333;
	-moz-box-shadow: -1px -1px 0 #333333;
	box-shadow: -1px -1px 0 #333333; 
}
/* ============================== */
/* ! Layout for desktop version   */
/* ============================== */

body {
	background: #f1efe3 url(images/background_grunge_photo2.jpg) no-repeat top center;
}
#wrapper {
	overflow: hidden;
}
#container {
	background: url(images/content_bg_dark.jpg) repeat-y;
	box-shadow: 0 0 10px #000;
	overflow: hidden;
}
#two_col_bg {
	background: #fff;
	overflow: hidden;
	padding: 30px 0 50px 0;
	margin-bottom: 50px;
	-webkit-box-shadow: 0 5px 5px #BABAB8;
	-moz-box-shadow: 0 5px 5px #BABAB8;
	box-shadow: 0 5px 5px #BABAB8; 
}
#two_col_bg h2 {
	font-family: georgia;
}
.postmetadata {
    border-top: 1px solid #D7D7D7;
    color: #7A7A7A;
    margin: 0 0 20px;
    padding: 7px 0;
	font-size: 90%;
}
#tags {
    border-bottom: 1px solid #DDDDDD;
    border-top: 1px solid #DDDDDD;
    padding: 3px;
	margin: 5px 0;
	font-size: 90%;
}
.button {
    padding: 0 5px;
    margin: 0;
}
.button a {
    line-height: 30px;
    text-decoration: none;
    color: #995C4F;
    height: 100%;
    width: 100%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 3px 10px;
    text-align: center;
    -webkit-box-shadow: 0 2px 2px #2a2a2a;
    -moz-box-shadow: 0 2px 2px #2a2a2a;
    box-shadow: 0 2px 2px #2a2a2a;
    background: #d9d0a2;
    background: -moz-linear-gradient(top, #d9d0a2 0%, #f8eaa7 3%, #f5df7e 40%, #f1d96e 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d9d0a2), color-stop(3%,#f8eaa7), color-stop(40%,#f5df7e), color-stop(100%,#f1d96e));
    background: -webkit-linear-gradient(top, #d9d0a2 0%,#f8eaa7 3%,#f5df7e 40%,#f1d96e 100%);
    background: -o-linear-gradient(top, #d9d0a2 0%,#f8eaa7 3%,#f5df7e 40%,#f1d96e 100%);
    background: -ms-linear-gradient(top, #d9d0a2 0%,#f8eaa7 3%,#f5df7e 40%,#f1d96e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d9d0a2', endColorstr='#f1d96e',GradientType=0 );
    background: linear-gradient(top, #d9d0a2 0%,#f8eaa7 3%,#f5df7e 40%,#f1d96e 100%);
    border: 1px solid #b9a856;
}
.button a:active {
    -webkit-box-shadow: inset 0px 1px 1px #2a2a2a;
    -moz-box-shadow: inset 0px 1px 1px #2a2a2a;
    box-shadow: inset 0px 1px 1px #2a2a2a; 
}
.skip-link, .screen-reader-text {
	display: none;
}
.img_shadow {
	border: 3px solid #fff;
	-webkit-box-shadow: 0 0 5px #000;
	-moz-box-shadow: 0 0 5px #000;	
	box-shadow: 0 0 5px #000;
}
p label {
	width: 200px;
	float: left;
	text-align: right;
	margin: 0 10px 0 0;
}
/* ==============================
          Header
===============================*/
.header {
	padding: 15px 0 10px 0;
	position: relative;
}
.header_container {
	position: relative;
}
.branding {
	position: relative;
	margin-bottom: 20px;
}
.logo {
	float: left;
	height: 71px;
	width: 240px;
}
.logo a {
	background: url(images/ITMW-logo-color-sprite.png) 0 0 no-repeat;
	display: block;
	height: 71px;
	width: 240px;
}
.logo a:hover {
	background: url(images/ITMW-logo-color-sprite.png) 0 -71px no-repeat;
}
.description {
    border-left: 1px dotted #422659;
    color: #422659;
    float: left;
    letter-spacing: 0.01em;
    margin: 13px 0 0 20px;
    padding: 0 0 0 20px;
}
.description h1, .description h4 {
    font: italic 14pt Georgia,"Times New Roman",Times,serif;
	margin: 0;
	padding: 0;
}
.utility-links {
    float: left;
    margin: 0 0 0 40px;
    font-size: 10pt;
    width: 240px;
}
.header_magazine {
    float: left;
}
.utility-links .menu-utility-menu-container {
    overflow: hidden;
    margin-top: 5px;
}
.utility-links img {
    float: left;
    margin-right: 10px;
    -webkit-box-shadow: 0 1px 5px #000;
    -moz-box-shadow: 0 1px 5px #000;
    box-shadow: 0 1px 5px #000;
}
.utility-links ul li {
    list-style-type: disc;	
}
.utility-links ul li a {
    text-decoration: none;
    color: black;
}
.utility-links ul li a:hover {
    text-decoration: underline;
}
/*********************************
	main navigation
*********************************/
.menu-main-navigation-container {
    height: 35px;
    float: left;
}
.main-nav {
    font-size: 16px;
    font-weight: bold;
    font-family: Verdana, Geneva, sans-serif;
    position: relative;
    z-index: 555;
    background: url(images/menu_bg_brown2.jpg) top center no-repeat;	
    -webkit-box-shadow: 1px 1px 3px #232323;
    -moz-box-shadow: 1px 1px 3px #232323;
    box-shadow: 1px 1px 3px #232323;
}
.main-nav ul {
    list-style-type: none;
    margin: 0;
    padding-top: 4px;
    position: relative;
    float: left;
}
.main-nav ul li {
    float: left;
    background: url(images/menu_spacer3.png) right top no-repeat;
    height: 31px;
    padding: 0 5px;
    position: relative;
}
.main-nav ul li a {
    padding: 3px 5px 0;
    text-decoration: none;
    display: block;
    color: #F5F2E4;
    height: 28px;
    text-shadow: 0 -1px 0 #532a20;
}
.main-nav ul li a:hover {
    color: #bcb099;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright: 10px;
    -webkit-border-radius-topleft: 10px;
    -webkit-border-radius-topright: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;

}
.main-nav ul li ul {
    display: none;
    position: absolute;
    top: 31px;
    left: 0;
    width: 200px;
    padding: 0 0 10px 0;
    font-weight: normal;
    font-size: 85%;
    background: url(images/menu_drop2.jpg) top center;
    z-index: 588;
    -webkit-box-shadow: 2px 2px 2px #232323;
    -moz-box-shadow: 2px 2px 2px #232323;
    box-shadow: 2px 2px 2px #232323;
    border-left: 1px dashed #bcb099;
    border-right: 1px dashed #bcb099;
    border-bottom: 1px dashed #bcb099;
}
.main-nav ul ul li {
    display: block;
    width: 180px;
    background: none;
    margin: 0 10px;
    padding: 3px 0;
    height: 20px;
    float: none;
    position: relative;
}
.main-nav ul ul li a {
    padding: 3px 5px;
    height: 20px;
    clear: both;
    color: #edead7;
}
.main-nav ul ul li a:hover  {
    border-bottom: 1px dashed #bcb099;
}
.main-nav ul li:hover ul{
    display: block;
}
#s {
    font-size: 70%;
    -webkit-box-shadow: -1px -1px 0 #000;
    -moz-box-shadow: -1px -1px 0 #000;
    box-shadow: -1px -1px 0 #000;
    background: #F1F1E7;
    padding: 3px 5px;
}
#searchsubmit {
    background: url(images/button_bg.jpg);
    border-top: 2px solid #fbf1c0;
    border-left: 2px solid #fbf1c0;
    border-bottom: 2px solid #ccb753;
    border-right: 2px solid #ccb753;
    border: 1px solid #2A3F56;
    border-radius: 6px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(255, 255, 255, 0.7) inset;
    color: rgba(0, 0, 0, 0.63);
    cursor: pointer;
    font: bold 10.5pt Arial,'Helvetica Neue',Helvetica,sans-serif;
    margin: 2px 0 0 4px;
    opacity: 0.9;
    padding: 1px 10px 0 10px;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.37);
}
#searchform {
    overflow: hidden;
    padding: 4px 0 0 15px;
    float: left;
}
#crumbs {
    padding: 5px;
    margin-bottom: 15px;
    color: #e7dedb;
    font-size: 12pt;
}
#crumbs a {
    color: #D6C3AB;
}
#crumbs a:hover {
    color: #AD9677;
}
/**********************************
	Content
**********************************/
#main {
    position: relative;
}
.main_bg {
    -webkit-box-shadow: -1px 0 3px #232323;
    -moz-box-shadow: -1px 0 3px #232323;
    box-shadow: -1px 0 3px #232323;
    background: #f1f1e7 url(images/itmw_backgrounds6.jpg) repeat-x;	
}
#container {
    background: url(images/content_bg5.jpg);
}
#content_bg {
    padding: 20px 0;
    overflow: hidden;
}
#content_bg h2{
    color: #412b18;
    border-bottom: 1px solid #D0D0D0;
}
#content {
    overflow: hidden;
    position: relative;
    margin: 0;
    border-right: 1px dashed #d7d7d7;
}
#content h4 {
    margin: 1.2em 0 0 0;
}
#content img {
    margin: 10px;
    -webkit-box-shadow: 0 1px 5px #525252;
    -moz-box-shadow: 0 1px 5px #525252;
    box-shadow: 0 1px 5px #525252; 
}
#content a {
    text-decoration: none;
}
#content a:hover {
    text-decoration: underline;
}
#content_three_col .attachment-post-thumbnail {
    position: absolute;
    right: 0;
    top: 50px;
}
#content_three_col {
    margin: 0;
    padding: 0 10px;
    position: relative;
    overflow: hidden;
    background: white;
}
#content table tr td {
    border: 1px dotted gray;
    padding: 3px 5px;
}
#content table .odd {
    background: #ccc;
}
#content .tablecol_1{
    text-align: right;
}
#content .tablecol_2{
    text-align: left;
}
.past_issues {
    height: 170px;
    border-bottom: 1px dashed #D7D7D7;
    overflow: hidden;
}
.past_issues img {
    float: right;
}
.past_issues_container {
    border-right: 1px dashed #D7D7D7;
}
/**********************************
			Home page 
**********************************/
.attachment-single-post-thumbnail {
    border: 5px solid white;
    float: left;
    margin: 10px 20px 10px 10px;
    -webkit-box-shadow: 3px 3px 5px #000;	
    -moz-box-shadow: 3px 3px 5px #000;
    box-shadow: 3px 3px 5px #000;
}
.home_posts {
    margin: 0 20px;
}
.spacer {
    margin: 20px 15%;
}
.post a {
    text-decoration: none;
    color: #6f4382;
    padding: 3px 5px;
    line-height: 1.5em;
}
.post a:hover {
    text-decoration: underline;
}
#home_bg {
    background: white;
    width: 960px;
    float: left;
    margin: 15px 0 50px 0;
    -webkit-box-shadow: 0 5px 5px #BABAB8;
    -moz-box-shadow: 0 5px 5px #BABAB8;
    box-shadow: 0 5px 5px #BABAB8; 
}
#featured_itineraries {
    border: 1px solid #EAEAEA;
    background: #f9f9f9;
    margin-bottom: 5px;
    -webkit-box-shadow: 0 1px 20px #E8E8E8;
    -moz-box-shadow: 0 1px 20px #E8E8E8;
    box-shadow: 0 1px 20px #E8E8E8;
}
#home_content .home_itineraries  {
    margin: 5px 10px;
    padding: 5px 10px;
    border-bottom: 1px dashed #dAdAdA;

}
.home_itineraries img, .archive_posts img {
    float: left;
    margin: 10px 10px 10px 0;
    border: 2px solid #fff;
    -webkit-box-shadow: 0 0 3px #2a2a2a;
    -moz-box-shadow: 0 0 3px #2a2a2a;
    box-shadow: 0 0 3px #2a2a2a;
}
.home_itineraries h4 {
    margin: 0;
}
.home_itineraries p {
    margin: 2px 0;
}
#hotstops  .grid_5{
    margin: 2px;
    border: 1px solid #bababa;
    background: #eee;
}
.ribbon {
    background: url("images/menu_bg_brown2.jpg");
    -webkit-box-shadow: 1px 1px 3px #232323;
    -moz-box-shadow: 1px 1px 3px #232323;
    box-shadow: 1px 1px 3px #232323;
    clear: both;
    display: block;
    height: 35px;
    margin: -5px 0 0 -13px;
    padding: 0 10px 0 20px;
    position: relative;
}
.ribbon h2 {
    margin: 0;
    text-shadow: 1px 1px 2px #1A0F1F;
    color: #f1f1e7;
    font: 22pt georgia;
}
.ribbon a {
    color: #F1F1E7;
}
/**********************************
	Home page slideshow
**********************************/
#home_slideshow_container{
    position: relative;
    height: 350px;
    width: 960px;
    margin-bottom: 50px;
    float: left;
    -moz-box-shadow: 1px 1px 3px #000;
    -webkit-box-shadow: 1px 1px 3px #000;
    box-shadow: 1px 1px 3px #000;
}
#home_slideshow_container .grid_18 {
    width: 750px;
    margin: 0;
}
#home_slideshow_container .grid_6 {
    width: 199px/*209px*/;
    height: 349px/*349px*/;
    padding: 10px;
    background: #535350 url(images/slideshow_sidebar.jpg) top center no-repeat;
    color: #F1EFE3;
    font-size: 10.5pt;
    margin: 0;
    position: absolute;
    top: -10px;
    left: 750px;
    -webkit-box-shadow: 2px 2px 5px #000;
    -moz-box-shadow: 2px 2px 5px #000;
    box-shadow: 2px 2px 5px #000;
}
#home_sidebar_hotels {
    border-bottom: 1px dashed #F1EFE3;
    height: 75px;
    padding: 3px 0 10px 0;
}
#home_sidebar_hotels a {
    display: block;
    height: 75px;
    padding-left: 105px;
    color: #F1EFE3;
    background: url(images/home_hotels_sidebar.jpg) 0 -75px no-repeat;	
}
#home_sidebar_hotels a:hover {
    background: url(images/home_hotels_sidebar.jpg) 0 0 no-repeat;	
}
#home_sidebar_hotels span {
    font-size: 200%;
}
#home_sidebar_maps {
    margin: 5px;
    font-size: 130%;
}
#home_sidebar_maps  div{
    margin: 5px 13px 0 13px;
}
.nivo-caption {
    background: red;
}
#slideshow_home {
    position: relative;
}
#slideshow_img {
    height: 350px;
    background: black;
    width: 100%;
}
#slideshow_home #slider {
    -webkit-box-shadow: 0 0 5px #000;
    -moz-box-shadow: 0 0 5px #000;	
    box-shadow: 0 0 5px #000;
}
#slideshow_home .grid_7 {
    height: 100px;
    margin: 10px 12px;
}
#slideshow_home .grid_7 a {
    display: block;
    height: 100px;
}
#home_top_sidebar h2{
    margin: 0 0 10px 20px;
    border-bottom: 1px dashed gray;
}
/**********************************
     Map
**********************************/
#continents {
    background: url(images/state_maps.jpg) no-repeat 0 0;
    position: relative;
    height: 386px;
    width: 306px;
    margin: 0 auto;
    padding: 0;
    z-index:499;
}
#continents li {
    list-style: none;
    position: absolute;
}
#continents li a {
    display: block;
    height: 100%;
    text-decoration: none;
}
#continents li a:hover span {
    display: block;
    padding: 5px;
    width: 150px;
    background: #000;
    position: relative;
    top: 50%;
    font: 11px Arial, Helvetica, sans-serif;
    opacity: 0.75;
    filter:alpha(opacity=75);
    color: #FFF;
    text-align: center;
}
#continents li a span {
    display: none;
}
#continents li a:hover span {
    display: block;
}
#continents li a:hover {
    background: url(images/state-maps-hover2.png) no-repeat;
    }
#map_canada {
    top: 0;
    left: 50px;
    height: 148px;
    width: 230px;
    z-index:500;
}
#continents li#map_canada a:hover {
    background-position: -4px 0;
}
#map_ndakota {
    top:117px;
    left: 9px;
    height: 61px;
    width: 107px;
    z-index:501;
}
#continents li#map_ndakota a:hover {
    background-position: -253px -1px;
}
#map_sdakota {
    top: 177px;
    left: 4px;
    height: 69px;
    width: 115px;
    z-index:502;
}
#continents li#map_sdakota a:hover {
    background-position: -251px -99px;
}
#map_nebraska {
    top: 237px;
    left: 2px;
    height: 67px;
    width: 132px;
    z-index:503;
}
#continents li#map_nebraska a:hover {
    background-position: -251px -200px;
}
#map_kansas {
    top: 300px;
    left: 31px;
    height: 63px;
    width: 122px;
    z-index:501;
}
#continents li#map_kansas a:hover {
    background-position: -253px -349px;
}
#map_minnesota {
    top: 108px;
    left: 107px;
    height: 120px;
    width: 103px;
    z-index:501;
}
#continents li#map_minnesota a:hover {
    background-position: -2px -199px;
}
#map_iowa {
    top: 228px;
    left: 117px;
    height: 62px;
    width: 98px;
    z-index:504;
}
#continents li#map_iowa a:hover {
    background-position: -407px -2px;
}
#map_missouri {
    top: 286px;
    left: 135px;
    height: 96px;
    width: 110px;
    z-index:500;
}
#continents li#map_missouri a:hover {
    background-position: -3px -349px;
}
#map_upmichigan {
    top: 141px;
    left: 207px;
    height: 44px;
    width: 98px;
    z-index:503;
}
#continents li#map_upmichigan a:hover {
    background-position: -399px -98px;
}
#map_wisconsin {
    top: 158px;
    left: 171px;
    height: 89px;
    width: 84px;
    z-index:502;
}
#continents li#map_wisconsin a:hover {
    background-position: -152px -354px;
}
#map_illinois {
    top: 246px;
    left: 200px;
    height: 112px;
    width: 62px;
    z-index:501;
}
#continents li#map_illinois a:hover {
    background-position: -152px -202px;
}
/**********************************
	States Sidebar Left
**********************************/
#sidebar h3{
    border-bottom: 1px solid gray;
    border-top: 3px solid gray;
    color: #43254A;
    font-size: 1em;
    letter-spacing: 0.07em;
    margin: 22px 0 15px;
    padding: 5px 0 5px 3px;
}
#sidebar ul {
    margin: 0;
}
#sidebar li, .headlines li {
    margin-left: 30px;
    padding: 5px 0;
}
#sidebar a {
    color: #424242;
}
#sidebar a:hover {
    color: #868686;
    text-decoration: underline;
}
#left_sidebar h2 {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-style: italic;
    width: 100%;
}
#left_sidebar h2 a {
    color: #6C5084;
    text-decoration: none;
}
#get_your_copy  img{
    margin-bottom: 10px;
    -webkit-box-shadow: 0 3px 3px #BABAB8;
    -moz-box-shadow: 0 3px 3px #BABAB8;
    box-shadow: 0 3px 3px #BABAB8; 
}
#states_menu ul {
    padding: 0;
    margin: 0;
    position: relative;
}
#states_menu ul li {
    text-align: right;
    list-style-type: none;
    border-bottom: 1px dashed #D7D7D7;
    position: relative;
}
#states_menu ul li a {
    padding: 5px 10px;
    text-decoration: none;
    display: block;
    height: 100%;
    color: #491029;
}
#states_menu ul li a:hover{
    font-weight: bold;
}
#states_menu li:hover ul {
    display: block;
}
#states_menu li ul {
    left: 100%;
    position: absolute;
    top: 0;
width: 150%;
    font-size: 90%;
    display: none;
    background: #8B523F url(images/menu_drop_arrow.png) left 7px no-repeat;
    z-index: 700;
    box-shadow: 3px 3px 4px #2a2a2a;
}
#states_menu li ul li {
    text-align: left;
    border: none;
}
#states_menu li ul li a {
    display: block;
    color: #EFEFE5;
}
#states_menu .current-menu-item {
    position: relative;
    left: 20px;
    -moz-border-radius-topleft: 8px;
    -moz-border-radius-bottomleft: 8px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
#states_menu .current_page_item {
    font-weight: bold;
}
/**********************************
    States sidebar right
**********************************/
#right_sidebar {
    position: relative;
    overflow: hidden;
    text-align: center;
}
#right_sidebar h4 {
    border-bottom: 1px dotted gray;
}
.post-meta {
    text-align: left;
    margin: 0;
    padding: 0;
    list-style-type: none;	
}
.post-meta li {
    margin-bottom: 20px;
}
.post-meta ul li {
    list-style-type: disc;
    margin: 5px 0;
    font-size: 90%;
}
.post-meta-key {
    font-size: 120%;
    font-weight: bold;
}
/**********************************
    Sidebars 
**********************************/
.sidebar-post-widget{
    padding: 5px;
    margin-top: 10px;
}
.sidebar-post-widget h3 {
    border-bottom: 1px solid #e8e7e7;
}
.sidebar-post-widget li{
    line-height: 1.4em;
    border-top: 1px dotted #BAB8B0;
    list-style-type: none;
}
.sidebar-post-widget li a {
    text-decoration: none;
}
.sidebar-post-widget li a:hover {
    text-decoration: underline;
}
/**********************************
    Archive page
**********************************/
.archive_posts {
    overflow: hidden;
}
.archive_posts h2 {
    margin-bottom: 0;
}
#content .archive_posts img {
    float: left;
    margin: 0 10px 10px 0;
}
/**********************************
            About us pages
***********************************/
.advertise_magazines {
    border-bottom: 1px dashed #ccc;
}
/**********************************
		Group Lodging
**********************************/
.wpcf7-form p{
    overflow: hidden;
}
#hotel_address {
    word-wrap: break-word;
}
#hotel_address h3 {
    border-bottom: 1px dotted gray;
}
#hotel_address .float_right {
    margin-left: 20px;
}
#hotel_slideshow h4 {
    text-align: center;
}
#hotel_slideshow img {
    margin: 0 40px;
}
#hotels {
    background: #fff;
    overflow: hidden;
    padding: 30px 0 50px 0;
    -webkit-box-shadow: 0 5px 5px ;
    -moz-box-shadow: 0 5px 5px ;
    box-shadow: 0 5px 5px ; 
}
.hotel_logo a {
    display: block;
}
.hotel_logo img {
    margin: 0 10%;
}
#hotels_header {
    border-bottom: 1px solid #ccc;
}
#hotels_header .floatright { 
    margin-right: 20px;
}
#hotels_header h1 {
    margin: 0;
}
#hotel_content {
    border-bottom: 1px dashed #ccc;
}
#hotel_sidebar_contact {
    border-left: 1px dashed #ccc;
}
#hotel_grid span {
    border-bottom: 1px solid #9A5C4F;
    display: block;
    height: 23px;
    margin-bottom: 3px;
}
#hotel_grid span img {
    float: left;
    margin-right: 10px;
}
#hotel_maincontent {
    border-right: 1px dashed #ccc;
}
.check_yes, .check_no {
    padding: 3px 0 3px 25px;
    margin: 6px 0 0 0;
    background: url(images/checkmarks.png) no-repeat;
    display: block;
    height: 16px;
    overflow: hidden;
}
.check_yes {
    background-position: 0 0;
}
.check_no {
    background-position: 0 -22px;
}
.directions_map img {
    margin-right: 10px;
}
/**********************************
    Footer
**********************************/
#footer {
    font-size: 12pt;
    position: relative;
    overflow: visible;
    background: url(images/background_footer.jpg) no-repeat;
    color: black;
    -webkit-box-shadow: -1px 0 3px #2a2a2a;
    -moz-box-shadow: -1px 0 3px #2a2a2a;
    box-shadow: -1px 0 3px #2a2a2a;
}
#footer h1, #footer h2, #footer h3, #footer h4, #footer h5, #footer h6 {
    color: #9A5C4F;
}
#footer_row1 h3{
    margin-top: 0;
}
#footer a:hover {
    color: #f1f1e7;
}
#footer .button a:hover {
    color: #995C4F;
}
#footer_container {
    padding: 60px 0 0 0;
    color: #E5E5D3;
}
#footer_container .utility-links ul li a {
    color: #E5E5D3;
}
#footer_socialmedia {
    position: relative;
    text-align: right;
    height: 75px;
    color: white;
    font-size: 150%;
}
#socialmedia_icons {
    padding-top: 15px;
}
#bus_footer {
    position: absolute;
    top: -20px;
    left: 50px;
}
#footer_row1 img {
    margin: 10px;
}
#copyright {
    font-size: 90%;
    clear: both;
    padding: 0 0 10px 10px;
}
.magazine_cover a:hover{
    height: 261px;
    width: 200px;
    display: block;
    -webkit-box-shadow: 0 1px 5px #fff;
    -moz-box-shadow: 0 1px 5px #fff;
    box-shadow: 0 1px 5px #fff;
}

/* ============================= */
/* ! Layout for mobile version   */
/* ============================= */

@media handheld, only screen and (max-width: 767px) {

	body {
		
	}

}


/* ========================================== */
/* ! Provide higher res assets for iPhone 4   */
/* ========================================== */

@media only screen and (-webkit-min-device-pixel-ratio: 2) { 

/*	.logo {
		background: url(logo2x.jpg) no-repeat;
		background-size: 212px 303px;
	}*/

}

/*
 * Media queries for responsive design
 * These follow after primary styles so they will successfully override. 
 */

@media all and (orientation:portrait) { 
  /* Style adjustments for portrait mode goes here */
  
}

@media all and (orientation:landscape) { 
  /* Style adjustments for landscape mode goes here */
  
}

/* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome)  
   Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
  
  
  /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you
     j.mp/textsizeadjust 
  html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
}

/* 
 * print styles
 * inlined to avoid required HTTP connection www.phpied.com/delay-loading-your-print-css/ 
 */
@media print {
  * { background: transparent !important; color: #444 !important; text-shadow: none !important; }
  a, a:visited { color: #444 !important; text-decoration: underline; }
  a:after { content: " (" attr(href) ")"; } 
  abbr:after { content: " (" attr(title) ")"; }
  .ir a:after { content: ""; }  /* Don't show links for images */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */ 
  tr, img { page-break-inside: avoid; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3{ page-break-after: avoid; }
.logo a, .main-nav, .utility-links, .sidebar-post-widget,.postmetadata a, #crumbs, #footer_row2, #home_bg, #left_sidebar, 
.sidebar-group_lodging-widget, .button a, #states_menu, .sidebar-hotel-widget, .directions_map a, .search_sidebar{
    display: none;
}
.hidden {
    display: block!important;
    visibility: visible;
}
#content, .search-content {
    width: 85%;
    margin: 0;
    float: none;
}
body {
    background: black;
    color: #111;
    font-family: "Times New Roman", Times, serif;
    font-size: 12pt;
    width: 85%;
    line-height: 1.5em;
    margin: 0 15px 10px 15px;
    padding: 0;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    font-family: Georgia, "Times New Roman", Times, serif;
    display: block;
}
h2, h3, h4, h5, h6 {
    border-bottom: 1px solid #d7d7d7
}
h1 {
    font-size: 30pt;
    line-height: 30pt;
}
h2 {
    font-size: 22pt;
    line-height: 22pt;
}
h3 {
    font-size: 19pt;
    line-height: 19pt;
}
h4 {
    font-size: 16pt;
    line-height: 16pt;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    font-size: 80%;
}
a {
    font-style: italic;
    font-size: 10pt;
    font-weight: bold;
}
#two_col_bg, .main_bg, #footer, #hotels {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: none;
}
img a {
    font-size: 50pt;
}
#hotel_sidebar_contact {
    position: relative;
}
}



/*
	960 Grid System ~ Core CSS.
	Learn more ~ http://960.gs/

	Licensed under GPL and MIT.
*/

/*
	Forces backgrounds to span full width,
	even if there is horizontal scrolling.
	Increase this if your layout is wider.

	Note: IE6 works fine without this fix.
*/

body {
	min-width: 960px;
}

/* `Container >> 24 Columns
----------------------------------------------------------------------------------------------------*/
.container_24 {
	margin-left: auto;
	margin-right: auto;
	width: 960px;
}

/* `Grid >> Global
----------------------------------------------------------------------------------------------------*/

.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6,
.grid_7,
.grid_8,
.grid_9,
.grid_10,
.grid_11,
.grid_12,
.grid_13,
.grid_14,
.grid_15,
.grid_16,
.grid_17,
.grid_18,
.grid_19,
.grid_20,
.grid_21,
.grid_22,
.grid_23,
.grid_24 {
	display: inline;
	float: left;
	margin-left: 5px;
	margin-right: 5px;
}

.push_1, .pull_1,
.push_2, .pull_2,
.push_3, .pull_3,
.push_4, .pull_4,
.push_5, .pull_5,
.push_6, .pull_6,
.push_7, .pull_7,
.push_8, .pull_8,
.push_9, .pull_9,
.push_10, .pull_10,
.push_11, .pull_11,
.push_12, .pull_12,
.push_13, .pull_13,
.push_14, .pull_14,
.push_15, .pull_15,
.push_16, .pull_16,
.push_17, .pull_17,
.push_18, .pull_18,
.push_19, .pull_19,
.push_20, .pull_20,
.push_21, .pull_21,
.push_22, .pull_22,
.push_23, .pull_23 {
	position: relative;
}

/* `Grid >> Children (Alpha ~ First, Omega ~ Last)
----------------------------------------------------------------------------------------------------*/

.alpha {
	margin-left: 0;
}

.omega {
	margin-right: 0;
}

/* `Grid >> 24 Columns
----------------------------------------------------------------------------------------------------*/

.container_24 .grid_1 {
	width: 30px;
}

.container_24 .grid_2 {
	width: 70px;
}

.container_24 .grid_3 {
	width: 110px;
}

.container_24 .grid_4 {
	width: 150px;
}

.container_24 .grid_5 {
	width: 190px;
}

.container_24 .grid_6 {
	width: 230px;
}

.container_24 .grid_7 {
	width: 270px;
}

.container_24 .grid_8 {
	width: 310px;
}

.container_24 .grid_9 {
	width: 350px;
}

.container_24 .grid_10 {
	width: 390px;
}

.container_24 .grid_11 {
	width: 430px;
}

.container_24 .grid_12 {
	width: 470px;
}

.container_24 .grid_13 {
	width: 510px;
}

.container_24 .grid_14 {
	width: 550px;
}

.container_24 .grid_15 {
	width: 590px;
}

.container_24 .grid_16 {
	width: 630px;
}

.container_24 .grid_17 {
	width: 670px;
}

.container_24 .grid_18 {
	width: 710px;
}

.container_24 .grid_19 {
	width: 750px;
}

.container_24 .grid_20 {
	width: 790px;
}

.container_24 .grid_21 {
	width: 830px;
}

.container_24 .grid_22 {
	width: 870px;
}

.container_24 .grid_23 {
	width: 910px;
}

.container_24 .grid_24 {
	width: 950px;
}

/* `Prefix Extra Space >> 24 Columns
----------------------------------------------------------------------------------------------------*/

.container_24 .prefix_1 {
	padding-left: 40px;
}

.container_24 .prefix_2 {
	padding-left: 80px;
}

.container_24 .prefix_3 {
	padding-left: 120px;
}

.container_24 .prefix_4 {
	padding-left: 160px;
}

.container_24 .prefix_5 {
	padding-left: 200px;
}

.container_24 .prefix_6 {
	padding-left: 240px;
}

.container_24 .prefix_7 {
	padding-left: 280px;
}

.container_24 .prefix_8 {
	padding-left: 320px;
}

.container_24 .prefix_9 {
	padding-left: 360px;
}

.container_24 .prefix_10 {
	padding-left: 400px;
}

.container_24 .prefix_11 {
	padding-left: 440px;
}

.container_24 .prefix_12 {
	padding-left: 480px;
}

.container_24 .prefix_13 {
	padding-left: 520px;
}

.container_24 .prefix_14 {
	padding-left: 560px;
}

.container_24 .prefix_15 {
	padding-left: 600px;
}

.container_24 .prefix_16 {
	padding-left: 640px;
}

.container_24 .prefix_17 {
	padding-left: 680px;
}

.container_24 .prefix_18 {
	padding-left: 720px;
}

.container_24 .prefix_19 {
	padding-left: 760px;
}

.container_24 .prefix_20 {
	padding-left: 800px;
}

.container_24 .prefix_21 {
	padding-left: 840px;
}

.container_24 .prefix_22 {
	padding-left: 880px;
}

.container_24 .prefix_23 {
	padding-left: 920px;
}

/* `Suffix Extra Space >> 24 Columns
----------------------------------------------------------------------------------------------------*/

.container_24 .suffix_1 {
	padding-right: 40px;
}

.container_24 .suffix_2 {
	padding-right: 80px;
}

.container_24 .suffix_3 {
	padding-right: 120px;
}

.container_24 .suffix_4 {
	padding-right: 160px;
}

.container_24 .suffix_5 {
	padding-right: 200px;
}

.container_24 .suffix_6 {
	padding-right: 240px;
}

.container_24 .suffix_7 {
	padding-right: 280px;
}

.container_24 .suffix_8 {
	padding-right: 320px;
}

.container_24 .suffix_9 {
	padding-right: 360px;
}

.container_24 .suffix_10 {
	padding-right: 400px;
}

.container_24 .suffix_11 {
	padding-right: 440px;
}

.container_24 .suffix_12 {
	padding-right: 480px;
}

.container_24 .suffix_13 {
	padding-right: 520px;
}

.container_24 .suffix_14 {
	padding-right: 560px;
}

.container_24 .suffix_15 {
	padding-right: 600px;
}

.container_24 .suffix_16 {
	padding-right: 640px;
}

.container_24 .suffix_17 {
	padding-right: 680px;
}

.container_24 .suffix_18 {
	padding-right: 720px;
}

.container_24 .suffix_19 {
	padding-right: 760px;
}

.container_24 .suffix_20 {
	padding-right: 800px;
}

.container_24 .suffix_21 {
	padding-right: 840px;
}

.container_24 .suffix_22 {
	padding-right: 880px;
}

.container_24 .suffix_23 {
	padding-right: 920px;
}

/* `Push Space >> 24 Columns
----------------------------------------------------------------------------------------------------*/

.container_24 .push_1 {
	left: 40px;
}

.container_24 .push_2 {
	left: 80px;
}

.container_24 .push_3 {
	left: 120px;
}

.container_24 .push_4 {
	left: 160px;
}

.container_24 .push_5 {
	left: 200px;
}

.container_24 .push_6 {
	left: 240px;
}

.container_24 .push_7 {
	left: 280px;
}

.container_24 .push_8 {
	left: 320px;
}

.container_24 .push_9 {
	left: 360px;
}

.container_24 .push_10 {
	left: 400px;
}

.container_24 .push_11 {
	left: 440px;
}

.container_24 .push_12 {
	left: 480px;
}

.container_24 .push_13 {
	left: 520px;
}

.container_24 .push_14 {
	left: 560px;
}

.container_24 .push_15 {
	left: 600px;
}

.container_24 .push_16 {
	left: 640px;
}

.container_24 .push_17 {
	left: 680px;
}

.container_24 .push_18 {
	left: 720px;
}

.container_24 .push_19 {
	left: 760px;
}

.container_24 .push_20 {
	left: 800px;
}

.container_24 .push_21 {
	left: 840px;
}

.container_24 .push_22 {
	left: 880px;
}

.container_24 .push_23 {
	left: 920px;
}

/* `Pull Space >> 24 Columns
----------------------------------------------------------------------------------------------------*/

.container_24 .pull_1 {
	left: -40px;
}

.container_24 .pull_2 {
	left: -80px;
}

.container_24 .pull_3 {
	left: -120px;
}

.container_24 .pull_4 {
	left: -160px;
}

.container_24 .pull_5 {
	left: -200px;
}

.container_24 .pull_6 {
	left: -240px;
}

.container_24 .pull_7 {
	left: -280px;
}

.container_24 .pull_8 {
	left: -320px;
}

.container_24 .pull_9 {
	left: -360px;
}

.container_24 .pull_10 {
	left: -400px;
}

.container_24 .pull_11 {
	left: -440px;
}

.container_24 .pull_12 {
	left: -480px;
}

.container_24 .pull_13 {
	left: -520px;
}

.container_24 .pull_14 {
	left: -560px;
}

.container_24 .pull_15 {
	left: -600px;
}

.container_24 .pull_16 {
	left: -640px;
}

.container_24 .pull_17 {
	left: -680px;
}

.container_24 .pull_18 {
	left: -720px;
}

.container_24 .pull_19 {
	left: -760px;
}

.container_24 .pull_20 {
	left: -800px;
}

.container_24 .pull_21 {
	left: -840px;
}

.container_24 .pull_22 {
	left: -880px;
}

.container_24 .pull_23 {
	left: -920px;
}

/* `Clear Floated Elements
----------------------------------------------------------------------------------------------------*/

/* http://sonspring.com/journal/clearing-floats */

.clear {
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}

/* http://www.yuiblog.com/blog/2010/09/27/clearfix-reloaded-overflowhidden-demystified */

.clearfix:before,
.clearfix:after {
	content: '\0020';
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}

.clearfix:after {
	clear: both;
}

/*
	The following zoom:1 rule is specifically for IE6 + IE7.
	Move to separate stylesheet if invalid CSS is a problem.
*/

.clearfix {
	zoom: 1;
}

/*******************************************
               slideshow              
********************************************/
/*--Main Container--*/
.main_view {
	float: left;
	position: relative;
}
/*--Window/Masking Styles--*/
.window {
	height:350px;
        width: 750px;
	overflow: hidden; /*--Hides anything outside of the set width/height--*/
	position: relative;
        background: red;
}
.image_reel {
	position: absolute;
	top: 0; left: 0;
}
.image_reel img {float: left;}

/*--Paging Styles--*/
.paging {
	position: absolute;
	bottom: 40px; left: -8px;
	width: 181px; height:51px;
	z-index: 100; /*--Assures the paging stays on the top layer--*/
	text-align: center;
	line-height: 40px;
	background: url(paging_bg4.png) no-repeat;
	display: none; /*--Hidden by default, will be later shown with jQuery--*/
}
.paging a {
	padding: 5px;
	text-decoration: none;
	color: #fff;
}
.paging a.active {
	font-weight: bold;
	background: #592d23;
        border-top: 1px solid #1e0d09;
        border-left: 1px solid #1e0d09;
        border-right: 1px solid #a36b5d;
        border-bottom: 1px solid #a36b5d;/*975f51*/
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	-webkit-border-radius: 3px;
}
.paging a:hover {font-weight: bold;}

/********************************************
           second slideshow
********************************************/
#featured{ 
	width:750px; 
	position:relative; 
	height:350px; 
        margin: 0;
}
#featured ul.ui-tabs-nav{ 
	list-style:none; 
	padding: 0 0 0 25px; 
        margin:0;
	position: absolute;
	bottom: 20px; left: -8px;
	width: 181px; height:51px;
	z-index: 100; /*--Assures the paging stays on the top layer--*/
	text-align: center;
	line-height: 35px;
	display: none; /*--Hidden by default, will be later shown with jQuery--*/
        background: url('images/paging_bg4.png') no-repeat;
}
#featured ul.ui-tabs-nav li{ 
	padding: 1px 0 0 5px; 
	font-size:12px; 
	color:#666; 
        float: left;
}
#featured ul.ui-tabs-nav li a {
	padding: 5px;
	text-decoration: none;
	color: #fff;
}
#featured .ui-tabs-selected a{
	font-weight: bold;
	background: #592d23;
        border-top: 1px solid #1e0d09;
        border-left: 1px solid #1e0d09;
        border-right: 1px solid #a36b5d;
        border-bottom: 1px solid #a36b5d;/*975f51*/
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	-webkit-border-radius: 3px;
}

#slide_text_bg {
    height: 350px;
    width: 750px;
    position: relative;
}
#featured .info p { 
	margin:0 5px;
        padding: 5px;
        color:#fff;
        position: absolute;
        font-size: 150%;
        width: 540px;
        left: 185px;
        bottom: 10px;
        text-align: right;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px; 
        background: url('images/bg_transparent_black_50.png');
}
#featured .info a{ 
	text-decoration:none; 
	color:#fff; 
}
#featured .info a:hover{ 
	text-decoration:underline; 
}
#featured .ui-tabs-hide{ 
	display:none; 
}
