/* $Id: layout-fixed.css,v 1.5 2008/09/14 10:39:32 johnalbin Exp $ */

/*
 * LAYOUT STYLES
 *
 * Define CSS classes to create a table-free, 3-column, 2-column, or single
 * column layout depending on whether blocks are enabled in the left or right
 * columns.
 *
 * This layout is based on the Border Politics Layout Method.
 *   http://drupal.org/node/201428
 *
 * Only CSS that affects the layout (positioning) of major elements should be
 * listed here.  Such as:
 *   display, position, float, clear, width, height, min-width, min-height
 *   margin, border, padding, overflow
 */


/** body **/
  body
  {
	background-color: #004d9a;
	background-image: url(/templates/1581/images/back.jpg);
	background-repeat: repeat-x;
	font-size: 100%;
  }

  #page,
  #closure-blocks
  {
    /*
     * If you want to make the page a fixed width and centered in the viewport,
     * this is the standards-compliant way to do that. See also the ie.css file
     * for the necessary IE5 hack to center a div.
     */
    margin-left: auto;
    margin-right: auto;
    width:990px;
	padding:0;
  }

  #page-inner
  {
	padding: 0;
  }

  #navigation-top,
  #navigation
  {
    position: absolute; /* Take the named anchors out of the doc flow    */
    left: -10000px;     /* and prevent any anchor styles from appearing. */
  }

  #skip-to-nav
  {
    float: right;
    margin: 0 !important;
    font-size: 0.8em;
  }

  #skip-to-nav a:link, #skip-to-nav a:visited
  {
    color: #fff; /* Same as background color of page */
  }

  #skip-to-nav a:hover
  {
    color: #000;
    text-decoration: none;
  }

  /* Alternatively, the skip-to-nav link can be completely hidden until a user tabs
     to the link. Un-comment the following CSS to use this technique. */
  /*
  #skip-to-nav a, #skip-to-nav a:hover, #skip-to-nav a:visited
  {
    position: absolute;
    left: 0;
    top: -500px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

  #skip-to-nav a:active, #skip-to-nav a:focus
  {
    position: static;
    width: auto;
    height: auto;
  }
  */

/** header **/
  #header
  {
	margin: 0;
  }

  #header img {
		margin: 15px 15px 0;
		width: 960px;
	}

  #header-inner
  {
  }

  #logo-title
  {
  }

  #logo
  {
    float: left;
  }

  #site-name
  {
  }

  #site-slogan
  {
  }

  #header-blocks
  {
    clear: both; /* Clear the logo */
  }

/** main (container for everything else) **/
  #main
  {
	position: relative; 
		z-index: 1;
  }
	
	#header {
		height: 250px;
		/*position: relative;  */
/*		z-index: 13; */
	}

  #main-inner
  {
  }


/** navbar **/
  #navbar
  {
    float: left;
    width: 100%;
    margin-left: 0;
    margin-right: -100%; /* Negative value of #navbar's width + left margin. */
    padding: 0; /* DO NOT CHANGE. Add padding or margin to #navbar-inner. */
    height: 3.6em; /* The navbar can have any arbritrary height. We picked one
                      that is twice the line-height pluse 1em: 2 x 1.3 + 1 = 3.6
                      Set this to the same value as the margin-top below. */
  }

   #navbar-inner
  {
  }

  #search-box
  {
    width: 200px;
    margin-right: -200px; /* Negative value of #search-box's width. */
    float: left;
}

 
  #navbar ul /* Primary and secondary links */
  {
    margin: 0;
    padding: 0;
    text-align: left;
  }

  #navbar li /* A simple method to get navbar links to appear in one line. */
  {
    float: left;
    padding: 0 10px 0 0;
  }

  /* There are many methods to get navbar links to appear in one line.
   * Here's an alternate method: */
  /*
  #navbar li
  {
    display: inline;
    padding: 0 10px 0 0;
  }
  */

/** sidebar-left **/
  #sidebar-left
  {
    float: left;
    width: 200px;
    margin-left: 0;
    margin-right: -200px; /* Negative value of #sidebar-left's width + left margin. */
    padding: 0; /* DO NOT CHANGE. Add padding or margin to #sidebar-left-inner. */
  }

  #sidebar-left-inner
  {
    margin: 0 20px 0 0;
    padding: 0;
  }

/** sidebar-right **/
  #sidebar-right
  {
    float: left;
    width: 235px;
    margin-left: 695px; /* Width of content + sidebar-left. */
    margin-right: -960px; /* Negative value of #sidebar-right's width + left margin. */
    padding: 0; /* DO NOT CHANGE. Add padding or margin to #sidebar-right-inner. */
  }

  #sidebar-right-inner
  {
	padding: 0;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0px;
	color: #004D9B;
  }

/** footer **/
  #footer
  {
	clear: both;
	height: 30px;
	margin: 0;
	padding: 5px 0 0 3px;
	background: url(/templates/1581/images/page.jpg) repeat scroll 0 0;
	color:#fff;
	font-size: 11px;
  }

  #footer-inner
  {
  }

/** closure **/
  #closure-blocks /* See also the #page declaration above that this div shares. */
  {
  }

/** Prevent overflowing content **/
  #header,
  #content,
  #navbar,
  #sidebar-left,
  #sidebar-right,
  #footer,
  #closure-blocks
  {
    overflow: visible;
    word-wrap: break-word; /* A very nice CSS3 property */
  }

  #navbar
  {
    overflow: hidden; /* May need to be removed if using a dynamic drop-down menu */
  }

  /* If a div.clear-block doesn't have any content after it, Firefox and Safari
     will mistakenly place several pixels worth of space between the bottom of
     the div and the bottom of the viewport. This fixes it. */
  #page { overflow-y: hidden; } /* CSS3 property */
  
  /* MISC STYLES /*/
  

	#page {
  	background:url(/templates/1581/images/page.jpg) repeat;

	}
	
	#content {
		background:#FFFFFF;
	}
	
	#sidebar-right .block {
		background:url(/templates/1581/images/block2.jpg) repeat;
		padding:15px;
		color:#FFFFFF;
		_color:#222; /*IE 6 and lower hack */
		
	}
	
		#sidebar-right .block a{
		color:#FFFFFF;
		font-weight:bold;
		_color:#222; /*IE 6 and lower hack */
	}
	
	
		#sidebar-right .block h3{
		color:#FFFFFF;
		_color:#222; /*IE 6 and lower hack */
	}
	
		#sidebar-right .block h5{
		color:#FFFFFF;
		_color:#222; /*IE 6 and lower hack */
	}
	

#menu-float {
	/*		background:transparent url(/sites/all/themes/go_kbrq/images/layout/menu/menu-barnew.pnotg) no-repeat scroll 0 0;*/
		height:80px;
		margin-left:-540px;
		padding-top:69px;
		padding-left:0;
		width:978px;
		left:50%;
		position:absolute;
		top:134px;
	}
	#nice-menu-2{
		width: 960px;
		background:#FFFFFF url(/templates/1581/images/menu.jpg) repeat scroll 0 0;
		padding: 0;
		margin: 5px 0 5px 15px!important;
		margin: 5px 0 5px 7px;
		position:relative;
	}
	#nice-menu-2 li:hover{
		background:#DDF4FF;
	}
	#background-float {
		position:absolute;
		top:0px;
		left:0px;
		width:1160px;
		height:1200px;
		background: url(/templates/1581/images/swirl.png) no-repeat;
	}	
	
	#primary {
	margin: 0;
	}	
	
	#primary a{
		color:#000000;
		text-decoration:none;
		font-family:"Times New Roman", Times, serif;
		font-variant:small-caps;
		padding-left:30px;
		/*	background:url(/sites/all/themes/go_kbrq/images/layout/menu/menu-divider.png) left center no-repeat;*/
			font-size:16px;
	}	

	#primary a:hover, #primary a.active{
		color:#000;
	/*	background:url(/sites/all/themes/go_kbrq/images/layout/menu/menu-divider-white.png) left center no-repeat;	*/
	}				

	#primary ul.nice-menu-down ul a{
	/*	background:url(/sites/all/themes/go_kbrq/images/layout/menu/drop-down-menu-divider.png) left center no-repeat;*/
		font-size:0.8em;
		min-height:20px;
		padding-top:10px;
		
	}	


	ul.nice-menu-down li {
		border:none;
		border-top:solid #FFF 1px;
		background:none;
	 	background-color:#c48312;			
	}
	
	ul.nice-menu li {
		border:none;
		background:none;
		background:none;
	/*	 	background-color:#c48312;	
	background-image:url(/sites/all/themes/go_kbrq/images/layout/menu/back.pnotg);*/
		background-repeat:repeat-x;
		padding-right:13px;
	}
	ul.nice-menu-down li.menuparent, #header-region ul.nice-menu-down li.menuparent,  ul.nice-menu-down li.menuparent, ul.nice-menu-down li.menuparent:hover, ul.nice-menu-down li.over, ul.nice-menu-down li li.menuparent:hover,
ul.nice-menu-down li li.over, ul.nice-menu-down li li.menuparent {
		border:none;
		background: none;
	/*	background-color:#c48312;
		background-image:url(/sites/all/themes/go_kbrq/images/layout/menu/back.pnotg);*/
		background-repeat:repeat-x;
	}
	  
	ul.nice-menu-down li.menuparent, #header-region ul.nice-menu-down li.menuparent{
		border:none;
		background:none;
/*	 	background-color:#c48312;		
		background-image:url(/sites/all/themes/go_kbrq/images/layout/menu/back.png);*/
		background-repeat:repeat-x;

	}

	ul.nice-menu-down li{
		border:none;		
	}
	ul.nice-menu-down li ul li, ul.nice-menu-down li ul, ul.nice-menu-down li ul a{
		background:#FFFFFF url(/templates/1581/images/menu.jpg) repeat scroll 0 0;
		_background:#fff;

	}
	ul.nice-menu-down li ul li:hover, ul.nice-menu-down li ul a:hover{
		background:#DDF4FF;
	}	
	#block-nice_menus-2{
		margin:0;
	}
	ul.nice-menu ul, #header-region ul.nice-menu ul {
		border:none;
	}
	.view-display-id-block_1 ul{
		margin:0;
		padding:0;
	}
	.view-display-id-block_1 .item-list ul li{
		list-style:none;
		margin-bottom:10px;
		padding-bottom:4px;
		border-bottom:1px solid #CCC;
	}
	.view-display-id-block_1 .views-field-iid{
		width:100px;
		float:right;
		text-align:right;
	}
	.view-display-id-block_1 .views-field-field-name-value a{
		font-size:1.4em;
		text-decoration:none;
		font-weight:bold;
	}

.secure #secure-top, .short-search #secure-top, .custom-partner #secure-top {
margin: 0;
}

#content-wrapper {
margin: 0;
}

#content { 
margin:0;
padding:0 14px;
}
.short-search #content {
padding-top:0px;
}
#constrain {
margin-left: 12px!important;
margin-left: 10px;
width: 970px;

}

.booking-total {
background:#FEF6F6 url(/templates/1581/images/i-bg-bookingform-total.gif) repeat-y scroll 0 0;
}

.tour {
background:#C4E3FF url(/templates/1581/images/i-bg-bookingform.gif) repeat-y scroll 0 0;
}

.Box .title {
background-color:#7EC1FE;
}

.Box .value-title {
background: #7EC1FE;
}

#content h1 {
background:transparent url(/templates/1581/images/g-red-tl.gif) no-repeat scroll left top;
}

#content .h1-wrapper {
background:transparent url(/templates/1581/images/g-red-m.gif) repeat-x scroll 0 50%;
}

.custom-partner#constrain {
background: none;
}
