/* $Id: page.css,v 1.1.2.7 2009/06/12 15:44:26 jmburnz Exp $ */

/**
 * @file page.css
 * This stylesheet provides the main page styles for this theme.
 */

/**
 * Remove unused styles for performace.
 */

/**********************************************************
 *              Section, Page and Body Classes
 **********************************************************/
/**
 * Normally you will use these in combination with other
 * selectors. I include them here for completedness.
 */
	
/** 
 * Section Class
 * The section class takes the 2nd part of the URL and
 * builds a section-[path-part] class from it. If you emulate
 * site sections using the Pathauto module this can be a 
 * powerful way to style site sections.
 */
/* .section-[path-part] {}  replace [path-part] */


/* $Id: layout-override-examples.css,v 1.1.2.1 2009/05/12 13:55:26 jmburnz Exp $ */

/**
 * @file layout-override-examples.css
 * Layout Overrides 
 *
 * To override one of the core layouts copy/paste the layout override 
 * to your page.css file.
 *
 * This file includes examples of modified layouts you may find useful;
 * that can serve as examples for making your own customisations.
 *
 * There is one example override for one unit variant of each main layout.
 */
 
/**
 * #genesis-1a override
 * Unit:   em
 * Layout: Standard 3 col - left/content/right
 * Modification: right sidebar is wider than the right.
 */

/* Front or not front. */
.front {}
.not-front {}

/* Is the user logged in. */
.logged-in {}
.not-logged-in {}

/* Node type body classes */
.node-type-book  {}
.node-type-blog  {}
.node-type-forum {}
.node-type-page  {}
.node-type-poll  {}
.node-type-story {}

/**
 * Warning! 
 * The sidebar body classes are integral to how genesis
 * applies the layout - do not add margin, padding, borders,
 * or positioning styles to these classes! @see layout.css. 
 */
.one-sidebar   {}
.two-sidebars  {}
.sidebar-right {}
.sidebar-left  {}

#block-block-1 {
	margin-top: -22px;
}

/** 
 * Optional Region body classes
 * When any of the following regions are active a body class can be set.
 * To use you need to uncomment the conditional statements in 
 * genesis_preprocess_page(), @see template.php.
 */
/*
.leaderboard       {}
.header-blocks     {}
.secondary-content {}
.tertiary-content  {}
.footer            {}
*/

/** 
 * Page Path Class
 * The page path class takes the entire URL and
 * builds a page-[path] class from it. See example
 * below. You need to use Firebug or view source to
 * find out what the actual class will be, and be aware
 * that this will change if your URL alias changes!
 */
/* .page-[example-node-path] {}  replace [example-node-path] */


/**********************************************************
 *                  The wrapper divs
 *    Be careful how you modify these, see layout.css
 **********************************************************/
/**
 * Width Setting
 *
 * Genesis supports Elastic, Fluid and Fixed width values.
 * Elastic layouts are dynamic and will expand or contract when 
 * the font size is changed. Fluid widths change when the browser 
 * is resized and fixed width layouts stay the same width even 
 * when the broswer is resized or the font size is changed.
 *
 * Elastic layouts use ems,       e.g. 80em
 * Fluid layouts use percentages, e.g. 85%
 * Fixed widths use pixels,       e.g. 960px
 */
body {
	background: #962920;
}
#container {
	background: url(../images/background-top-home.jpg) top center no-repeat #DED3B3;
  width:902px;     /* Width for IE6 */	
	padding: 0 10px;	
	position: relative;
	margin-bottom: 75px;
}
#stars-left,
#stars-right {
	position: absolute;
}
#stars-left {
	width: 59px;
	height: 61px;
	background: url(../images/star-left.png) top left no-repeat;
	top: 110px;
	left: -70px;
}
#stars-right {
	width: 63px;
	height: 275px;
	background: url(../images/stars-right.png) top left no-repeat;
	bottom: -10px;
	right: -75px;
}
body > #container {
  /*width: 100%;      /* Width for all other browsers */
  /*max-width: 980px; /* set a maximum width */
  /*min-width: 760px; /* set a minimum width */
}

/* Column wrappers */
#columns {}
.columns-inner {}

/* Content wrappers */
.content-inner {
	background: url(../images/content-tile.png) top center repeat-y;
}
#main-content {
		background: #EAE3D0;
}
#main-content {
	padding: 5px 15px;
	min-height: 700px;
	margin: 10px 18px;	
}
/* Main content wrappers*/
#main-content {}

/* Events */
.view-frontpage .views-field-field-image-fid {
	padding: 13px 6px;
	background: url(../images/event-back.png) top left no-repeat;
}
.view-frontpage .views-field-title {
	margin-top: 10px;
}
.view-frontpage .views-field-title,
.view-frontpage .views-field-field-date-value,
.view-frontpage .views-field-field-date-extra-value,
.view-frontpage .views-field-field-location-value,
.view-frontpage .views-field-view-node {
	margin-bottom: 10px;
}
.view-frontpage .views-row {
	clear: both;
	padding-bottom: 25px;
	border-bottom: 1px solid #902E22;
}
.view-frontpage .views-row {
	padding-top: 15px;
}
.view-frontpage .views-row-even .views-field-field-image-fid {
	float: left;
	margin-right: 15px;
}
.view-frontpage .views-row-odd .views-field-field-image-fid {
	float: right;
	margin-left: 15px;
}
.view-frontpage a {
	color: black;
}
.view-frontpage .views-field-title h2,
.view-frontpage .views-field-title a {
	font-size: 13px;
	color: black;
	text-decoration: none;
}
/**********************************************************
 *                       Regions
 **********************************************************/
/* Target all regions with this low specifity selector. */
.region {}

/**
 * Most regions have an .inner div to set paddings or other
 * design contingencies.
 */
 
/* Leaderboard is a full width region at the very top, 
   ideal for displaying banners. */
#leaderboard {}

/* Header blocks region is embedded in the header, 
   usefull for displaying small banners. */
#header-blocks {
  float: left;
  margin-left: 2em; /* LTR */
}

/* Secondary content is a full width region between 
   the header and the main columns. */
#secondary-content {}

/* Tertiary content is a full width region above the footer, 
   below the main content. */
#tertiary-content {}

/* Content top and bottom are above and below the main content, 
   within the main content column. */
#content-top {}
#content-bottom {}


/**********************************************************
 *                      Sidebars
 **********************************************************/
/* Target both sidebars with this low specifity selector. */
.sidebar {}

/* Target a specific sidebar, inner or sidebar-inner. */
#sidebar-left  {}
#sidebar-right {
	text-align: center;
}


/*********************************************************
*                     GPanel Regions
**********************************************************/
.two-col-50 {}
.two-col-50 .col-1 {}
.two-col-50 .col-2 {}

.two-col-50.with-nested {}
#two-col-50-nested {}
.two-col-50.with-nested .col-1 {}
.two-col-50.with-nested .col-2 {}
.two-col-50.with-nested #two-col-50-nested .col-1 {}
.two-col-50.with-nested #two-col-50-nested .col-2 {}

.three-col-33 {}
.three-col-33 .col-1 {}
.three-col-33 .col-2 {}
.three-col-33 .col-3 {}

.four-col-25 {}
.four-col-25 .col-1 {}
.four-col-25 .col-2 {}
.four-col-25 .col-3 {}
.four-col-25 .col-4 {}


/**********************************************************
 *                   Skip navigation
 **********************************************************/
/**
 * To hide the skip-nav you can use: 
 * 
 * height: 0; 
 * overflow: hidden;
 * 
 * Do not use display:none as this hides it from screen readers!
 */
#skip-nav {
	height: 0; 
	overflow: hidden;
  text-align: right; /* LTR */
}

/* Override default pseudo class styles */
#skip-nav a:link    {}
#skip-nav a:visited {}
#skip-nav a:hover   {}
#skip-nav a:focus   {}
#skip-nav a:active  {}

/**
 * An alternative method is to position the skip-nav link offscreen
 * until the user tabs the link into focus. Uncomment the following to use.
 * 
 * Adjust the style of the active/focused link to suit.
 */
/*
#skip-nav {
   text-align: left;
}
#skip-nav a:link, 
#skip-nav a:hover, 
#skip-nav a:visited {
  height: 1px;
  overflow: hidden;
  position: absolute;
  top: -999em;
}
#skip-nav a:active,
#skip-nav a:focus {
  background: #FFF;
  color: #C00000;
  height: 1.5em;
  overflow: visible;
  position: fixed;
  top: 0;
  right: 0;
  width: auto;
  z-index: 1000;
}
*/


/**********************************************************
 *                 Header Elements
 **********************************************************/
/* #header wraps #branding, #search-box-top and #header-blocks. */
#header {
	margin-bottom: 25px;
}

/* #branding wraps #logo, #site-name and #site-slogan. */
#branding {
	padding-top: 15px;
}

/* h1 is for the front page only, all others use the div. */
#branding h1 {font-size: 1em;} /* reset h1, do not change! */

/* Logo and site_name wrapper. */
.logo-site-name {}
div.logo-site-name {}
h1.logo-site-name  {}

/* DIV/strong combo when when title is set. */
div.logo-site-name strong {}

/* Remove display:block if you want the site name inline with the logo. */
.logo-site-name span {
  display: block;
}

/* Logo. */
#logo {
	text-align: center;
}

#site-name {
  font-weight: bold; /* Bold or else the line heights vary. */
  font-size: 2em;
  line-height: 1.5;
}

/* Override default pseudo class styles. */
#site-name a:link    {}
#site-name a:visited {}
#site-name a:hover   {}
#site-name a:focus   {}
#site-name a:active  {}

/* Site slogan. */
#site-slogan {}

/* Page Headers */
h1#page-title span {
	display: block;
	text-indent: -10000px;
}
.node-type-event h1#page-title span {
	text-indent: 0;
}
.front h1#page-title {
	background: url(../images/headers/upcoming-events.png) top left no-repeat;
}
.page-node-1 h1#page-title {
	background: url(../images/headers/tickets.png) top left no-repeat;
}
.page-event-gallery h1#page-title {
	background: url(../images/headers/gallery.png) top left no-repeat;
}
.page-node-2 h1#page-title {
	background: url(../images/headers/history.png) top left no-repeat;
}
.page-node-8 h1#page-title {
	background: url(../images/headers/contact.png) top left no-repeat;
}
.page-node-9 h1#page-title {
	background: url(../images/headers/booking.png) top left no-repeat;
}
.page-node-10 h1#page-title {
	background: url(../images/headers/broad.png) top left no-repeat;
}
.page-node-11 h1#page-title {
	background: url(../images/headers/private.png) top left no-repeat;
}
.page-node-12 h1#page-title {
	background: url(../images/headers/hooligans.png) top left no-repeat;
}
.page-node-16 h1#page-title {
	background: url(../images/headers/targhee.png) top left no-repeat;
}
.page-node-103 h1#page-title {
height: 43px;
	background: url(../images/headers/links.png) top left no-repeat;
}
.detail-block {
	float: right;
	width: 200px;
}

/* Hooligans Styles */
.page-node-12 #main-content {
	background: none;
}
.page-node-12 .content-inner {
	background: url(../images/background-hooligans.png) top left no-repeat #DED3B3;
}
#container.page-node-12 {
	background: url(../images/background-top.jpg) top left no-repeat #DED3B3;
}
#container.page-node-12 #content-column {
	background: url(../images/content-tile-single.png) 210px 20px repeat-y;
	margin-bottom: 20px;
}
.page-node-12 #main-content {
	min-height: 0;
}
#genesis-1c .page-node-12.sidebar-left .content-inner{margin-left:240px;}
#genesis-1c .page-node-12 #sidebar-left{width:240px;margin-left:-100%;}
#genesis-1c .page-node-12.sidebar-left .content-inner{margin-left:240px;}
#container.page-node-12 {
	padding-right: 0;
	width: 912px;
}
.page-node-12 h1#page-title {
	margin-top: 20px;
	height: 55px;
	margin-bottom: 15px;
}
td, th, table, tbody {
	border: none;
}
/**********************************************************
 *    Search box, Advanced search form, Search results
 *          For the search block see blocks.css
 **********************************************************/
/* Reset form element margins and float the search form. */
#search-theme-form {
  float:right;
  margin: 1.5em 0;
}

/* Use the child selector because the inner div has no class. */
#search-theme-form > div {}

/* #search and .container-inline apply to the same div. */
#search-theme-form #search {}
#search-theme-form .container-inline {}

#search-theme-form label {}
#search-theme-form input {}
#search-theme-form .form-item {}
#search-theme-form .form-submit {}

#edit-search-theme-form-1 {}

/* Override forms.css focus style */
#edit-search-theme-form-1:hover,
#edit-search-theme-form-1:focus {}


/**
 * Advanced search form
 */
/* Advanced search-form id. */
#search-form {}

/* Use the child selector because the inner div has no class. */
#search-form > div {}
#search-form .container-inline {}
#search-form #edit-keys-wrapper {}

#search-form label {}
#search-form input {}
#search-form .form-item {}
#search-form .form-submit {}

/* Override forms.css text field focus style. */
#search-form #edit-keys-wrapper input:hover,
#search-form #edit-keys-wrapper input:focus {}

/* Advanced search fieldset. */
fieldset #search-advanced {}

/**
 * Search results
 */
/* Box styles for the results page. */
.section-search .box {}
.section-search .box-title {}

/* Style the no results messages. */
.section-search .box ul {}
.section-search .box ul li {}

/* Search results document list. */
dl.search-results {}
dl.search-results dt {}
dl.search-results dd {}
dl.search-results dd p {}
dl.search-results dd .search-snippet {}
dl.search-results dd .search-info {}


/**********************************************************
 *               Primary & Secondary Links
 **********************************************************/
/**
 * Implimentation of Primary and Secondary Links.
 *
 * Primary & Secondary Links are colored by default so you 
 * can easily identify them.
 */

/**
 * #nav is the containing div for Primary & Secondary Links.
 */
#nav {
  clear: both; 
  margin: 0.75em 0;
}

/**
 * Primary Links Style
 * Example styles to get you started.
 */
#nav .primary-links {
  background: #DDD; /* Default gray for dev only. */
  font-weight: bold;
  margin: 0;
  padding: 0;
}

/* Modify the margin to set tab spacings. */
#nav .primary-links li {
  display: inline;
  line-height: 2;
  list-style: none;
  margin: 0;
  padding: 0;
}

#nav .primary-links li a {
  padding: 0 1em;
  text-decoration: none;
  white-space: nowrap;
}

/* Set pseudo class styles. */
#nav .primary-links li a:hover {}
#nav .primary-links li a:focus {}
#nav .primary-links li a:active {}
#nav .primary-links li a:visited {}

/* Primary first and last classes. */
#nav .primary-links li.first {}
#nav .primary-links li.last {}

/* Active trail classes. */
#nav .primary-links li.active {}
#nav .primary-links li.active-trail {}
#nav .primary-links li.active-trail a {}


/**
 * Secondary Links Style
 */
#nav .secondary-links {
  background: #EEE; /* Default gray for dev only. */
  font-weight: bold;
  margin: 0;
  padding: 0;
}

/* Modify the margin to set tab spacings. */
#nav .secondary-links li {
  display: inline;
  line-height: 2;
  list-style: none;
  margin: 0;
  padding: 0;
}

#nav .secondary-links li a {
  padding: 0 1em;
  text-decoration: none;
  white-space: nowrap;
}

/* Set pseudo class styles. */
#nav .secondary-links li a:hover {}
#nav .secondary-links li a:focus {}
#nav .secondary-links li a:active {}
#nav .secondary-links li a:visited {}

/* Secondary first and last classes. */
#nav .secondary-links li.first {}
#nav .secondary-links li.last {}

/* Active trail classes. */
#nav .secondary-links li.active {}
#nav .secondary-links li.active-trail {}
#nav .secondary-links li.active-trail a {}

/* Primary Navigation in Block */
#block-menu-primary-links {
	padding-top: 115px;
	background: url(../images/chimp.png) top center no-repeat;
	margin-top: -23px;
}
#block-menu-primary-links a {
	display: block;
	padding-left: 25px;	
}
#block-menu-primary-links span {
	display: block;
	text-indent: -10000px;
}
#block-menu-primary-links ul, 
#block-menu-primary-links li {
	list-style: none;
	list-style-image: none;
	margin-bottom: 20px;
}
#block-menu-primary-links a:hover, #block-menu-primary-links a.active, #block-menu-primary-links li.active-trail a {
	background: url(../images/nav/star.png) left center no-repeat;
}
#menu_item_381 span {
	background: url(../images/nav/events.png) top left no-repeat;
	height: 20px;
}
#menu_item_423 span {
	background: url(../images/nav/gallery.png) top left no-repeat;
	height: 23px;	
}
#menu_item_404 span {
	background: url(../images/nav/tickets.png) top left no-repeat;
	height: 43px;
}
#menu_item_405 span {
	background: url(../images/nav/history.png) top left no-repeat;
	height: 36px;
}
#menu_item_461 span {
	background: url(../images/nav/contact.png) top left no-repeat;
	height: 21px;
}
#menu_item_510 span {
	background: url(../images/nav/links.png) top left no-repeat;
	height: 41px;
}

/* Facebook Block */
#block-block-7 {
  margin-top: 15px;
  margin-left: 30px;
}

/* Newsletter Block */
#block-block-5 {
  margin-top: 15px;
	margin-left: 30px;
}
#block-block-5 input {
	border: 1px solid black;
	background: none;
}
/**********************************************************
 *                      Breadcrumb
 **********************************************************/
/**
 * Genesis places the breadcrumb directly below the header, 
 * giving it the full width of theme to expand into.
 * You can eaisly drag the breadcrumb html to the main 
 * content column if you need to.
 */
#breadcrumb {
  margin: 0 0 0.75em; /* LTR */
}


/**********************************************************
 *                       Mission
 **********************************************************/
#mission {
  font-weight: bold;
  margin: 0 0 1.5em;
}


/**********************************************************
 *                    H1 Page Title
 **********************************************************/
/* The main title on each page. */
h1#page-title {

}


/**********************************************************
 *                     Pager 
 **********************************************************/
/* The first 2 classes provide the base pager styles. */
.item-list ul.pager    {}
.item-list ul.pager li {
  margin: 0;
}

/* Theme the various states of pager links. */
.item-list ul.pager li a:link    {}
.item-list ul.pager li a:visited {}
.item-list ul.pager li a:hover   {}

/* Note: .pager-current is for the current page. */
.item-list ul.pager li.pager-item     {}
.item-list ul.pager li.first          {}
.item-list ul.pager li.last           {}
.item-list ul.pager li.pager-current  {}
.item-list ul.pager li.pager-first    {}
.item-list ul.pager li.pager-previous {}
.item-list ul.pager li.pager-next     {}
.item-list ul.pager li.pager-last     {}


/**********************************************************
 *               Footer, Footer Message
 **********************************************************/
#footer,
#footer-message {
  clear: both;
}

#footer {
	height: 35px;
	width: 940px;
	background: url(../images/footer-back.png);
	position: absolute;
	bottom: -45px;
	left: -10px;
	text-align: center;
	padding-top: 22px;
}
#footer a {
	text-decoration: none;
	color: black;
	font-size: 10px;
	text-transform: uppercase;
	font-weight: bold;
}
#footer li {
	padding: 0 2px;
}
#footer-message {}

#footer a, 
#footer-message a {}


/**********************************************************
 *                 RSS Feed Icon
 **********************************************************/
.feed-icon {}
.feed-icon img {
  padding:0 0.5em;
}
#footer-message a.feed-icon {}


/* Layout Overrides */
#genesis-1c .two-sidebars .content-inner{margin:0 150px 0 190px;}
#genesis-1c .sidebar-left .content-inner{margin-left:190px;}
#genesis-1c .sidebar-right .content-inner{margin-right:150px;}
#genesis-1c #sidebar-left{width:190px;margin-left:-100%;}
#genesis-1c #sidebar-right{width:155px;margin-left:-155px;}


