/* $Id: html-elements.css,v 1.2 2008/01/06 15:50:31 johnalbin Exp $ */

/****
 **** HTML ELEMENT STYLING
 ****/


/** fonts **/
  body
  {
    /*font: 13px Lucida Grande, Lucida Sans, Lucida Console, Helvetica, sans-serif;*/
	font: 13px "Lucida Sans Unicode", "Lucida Grande", Lucida Sans, Lucida Console, Verdana, Arial, Helvetica, sans-serif;

    background: #fff;
  }

  /* IE 5 and 6 can't resize text that is specified in pixels. */
  * html body
  {
    font-size: x-small; /* IE5 will get this value */
    f\ont-size: small; /* IE6 will get this value */
  }

  #page
  {
    /*font-family: Lucida Grande, Lucida Sans, Lucida Console, Helvetica, sans-serif;*/
    line-height: 1.5em;
  }

  pre, code
  {
    font-size: 115%; /* Monospace fonts can be hard to read */
    font-family: "Bitstream Vera Sans Mono", "Courier New", monospace;
  }
  
  strong, em, b, i, h1, h2, h3, h4, h5, h6, address {
    font-family: "Lucida Sans", "Lucida Sans Unicode", "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
}
  

/** headings **/
  h1
  {
    font-size: 140%;
  }

  h1, h1 a, h1 a:hover
  {
    margin: .5em 0 .5em 0;
    /*font-family: Lucida Grande, Lucida Sans, Lucida Console, Helvetica, sans-serif;*/
    /*color: #444;*/
  }

  h1.title
  {
    font-size: 200%;
  }

  h1.title, h1.title a, h1.title a:hover
  {
    /*font-family: Lucida Grande, Lucida Sans, Lucida Console, Helvetica, sans-serif;*/
    font-weight: normal;
    /*color: #6191C5;*/
    margin: 0;
    margin-bottom: 0;
    line-height: normal;
  }

  h2
  {
    /*font-size: 122%;*/
  }

  h2, h2 a, h2 a:hover, .block h3, .block h3 a
  {
    
    /*font-family: Lucida Grande, Lucida Sans, Lucida Console, Helvetica, sans-serif;*/
    margin: .5em 0 .5em 0;
  }

  h3
  {
    font-size: 107%;
    font-weight: bold;
    /*font-family: Lucida Grande, Lucida Sans, Lucida Console, Helvetica, sans-serif;*/
  }

  h4, h5, h6
  {
    font-weight: bold;
    /*font-family: Lucida Grande, Lucida Sans, Lucida Console, Helvetica, sans-serif;*/
  }

/** block-level elements **/
  p
  {
    padding: 0 0 0.5em 0;
    margin: 0;
  }

  ol, ul, dl
  {
    position: relative;
  }

  pre
  {
    background: #ddd;
    border: 1px solid #aaa;
    padding: 0.75em 1.5em;
  }

  blockquote
  {
    border: 1px #ccc solid;
    margin: 0.5em 1em;
    padding: 0.3em;
    font-style: italic;
  }

/** links **/
  /* The order of link states are based on Eric Meyer's article:
   * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
   */
  a,
  a:link,
  a:visited
  {
    color: #091E35;
    text-decoration: none;
  }

  a:hover,
  a:focus
  {
    color: #251702;
    text-decoration: none;
  }

  a:active,
  a.active
  {
    color: #091E35;
	text-decoration: none;
  }

/** tables **/
  table
  {
    font-size: 100%; /* Forces font size inheritance in IE5 */
    /*f\ont-size: inherit;*/
  }

  tr, td
  {
    padding: .25em;
  }

/** abbreviations **/
  /* Date-based "abbreviations" show computer-friendly timestamps which are not
     human-friendly. */
  abbr.created
  {
    border-bottom: none;
    text-decoration: none;
  }

/** images **/
  img
  {
    border: 0;
  }
  
   a img
  {
	border:none;
  }
  

/** forms **/
  form
  {
    margin: 0;
    padding: 0;
  }

  fieldset
  {
    border: solid #ccc 1px;
  }

  select, input, textarea
  {
    font-family: "Lucida Sans Unicode", "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
  }

/* $Id: layout-garland.css,v 1.2 2008/01/06 15:50:31 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 is the same layout method used by Garland.
 *
 * However, there is a KNOWN BUG with this layout method that has no known fix:
 *   oversize content will causes IE to display the sidebars underneath the main
 *   content.
 */



  body
  {
    margin: 0;
    padding: 0;
  }

  /* With 3 columns, require a minimum width of 1000px to ensure there is enough horizontal space. */
  body.two-sidebars
  {
    min-width: 980px;
  }
  
  #sidebar-left
  {
  display:none;
  }

  /* With 2 columns, require a minimum width of 800px. */
  body.sidebar-right
  {
    min-width: 760px;
  }

  #page
  {
    margin-left: auto;
    margin-right: auto;
    width: 1000px;
  }

  #container
  {
    margin: 0 auto;
    max-width: 1000px;
  }

/* Layout the main content column */
  #main
  {

    float: left;
    width: 740px; /* Prevent it from being too narrow on near-empty pages */
  }

  #squeeze
  {
    position: relative;
  }

  /* First we adjust the #main container to make room for the left sidebar */
 /* body.sidebar-left #main,
  body.two-sidebars #main
  {
    margin-left: -210px;
  }

  body.sidebar-left #squeeze,
  body.two-sidebars #squeeze
  {
    margin-left: 210px;
    padding-left: 1em;
  }*/

  /* Then we adjust the #main container to make room for the right sidebar */
  /*body.sidebar-right #main,
  body.two-sidebars #main
  {
    margin-right: -210px;
  }

  body.sidebar-right #squeeze,
  body.two-sidebars #squeeze
  {
    margin-right: 210px;
    padding-right: 1em;
  }*/

/* Layout the sidebars */
  #container .sidebar
  {
    float: left;
    position: relative;
    z-index: 2; /* We ensure the sidebars are still clickable using z-index */
    margin: 0;
  }

  
  /*#container #sidebar-left
  {
    width: 250px; /* If you change this value, change the values
                     of margin-left for #main and #squeeze. */
  /*}*/

  #container #sidebar-right
  {
	margin-left: 10px;
    width: 240px; /* If you change this value, change the values
                     of margin-right for #main and #squeeze. */
  }

/* Laout the footer */
  #footer
  {
    float: none;
    clear: both;
    margin: 4em 0 -3em;
  }

/* Ensure long text or wide images don't break IE6 layout. */
  #page, #header, #footer, #squeeze, #container .sidebar
  {
    _overflow: hidden;
    _overflow-y: visible;
    word-wrap: break-word; /* A very nice CSS3 property */
  }
/* $Id: audubon.css,v 1.9 2008/09/21 15:09:48 johnalbin Exp $ */

/*
 * COMMON STYLES
 */

/*
 * CLEAR FIX !!
 */

.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

clearfix {
    display: inline-block;
}

html[xmlns] .clearfix {
    display: block;
}

* html .clearfix {
    height: 1%;
}


/*****************************
 * COLOR AND BACKGROUND COMBOS
 *****************************/

.front, .not-front
{
/*  color family a */
background: #4683B2 url("wrap/sites/all/themes/audubon/images/background_a.jpg") no-repeat top center;
}

/*#block-block-3, #sidebar-right #block-block-4, #sidebar-right #block-block-5, #sidebar-right #block-menu-menu-right-sidebar-audience-nav, #sidebar-right #block-menu-menu-facilities-nav, #block-uc_cart-0 .block-inner, #block-views-audubon_calendar-block_1*/

#sidebar-right
{
/*  color family a */
background:url("wrap/sites/all/themes/audubon/images/sidebar_background_a.png") repeat top left;
}


.aquarium-area #sidebar-right     { background:url("wrap/sites/all/themes/audubon/images/sidebar_background_aquarium.png") repeat top left; }
.zoo-area #sidebar-right          { background:url("wrap/sites/all/themes/audubon/images/sidebar_background_zoo.png") repeat top left; }
.insectarium-area #sidebar-right  { background:url("wrap/sites/all/themes/audubon/images/sidebar_background_insectarium.png") repeat top left; }
.golf-area #sidebar-right         { background:url("wrap/sites/all/themes/audubon/images/sidebar_background_golf.png") repeat top left; }
/* There's no imax sidebar background--which should we use instead? */
.imax-area #sidebar-right         { background:url("wrap/sites/all/themes/audubon/images/sidebar_background_a.png") repeat top left; }
.parks-area #sidebar-right        { background:url("wrap/sites/all/themes/audubon/images/sidebar_background_golf.png") repeat top left; }
.conservation-area #sidebar-right { background:url("wrap/sites/all/themes/audubon/images/sidebar_background_research.png") repeat top left; }
.ztd-area #sidebar-right          { background:url("wrap/sites/all/themes/audubon/images/sidebar_background_zootodo.png") repeat top left; }
.ztdk-area #sidebar-right         { background:url("wrap/sites/all/themes/audubon/images/sidebar_background_zootodo.png") repeat top left; }



.aquarium-area
{
background: #022946 url("wrap/sites/all/themes/audubon/images/background_aquarium.jpg") no-repeat top center;
}

.aquarium-area #sidebar-right #block-block-3, .aquarium-area #sidebar-right #block-block-4, .aquarium-area #sidebar-right #block-block-5, .aquarium-area #sidebar-right #block-menu-menu-right-sidebar-audience-nav, .aquarium-area #sidebar-right #block-menu-menu-facilities-nav
{
background:url("wrap/sites/all/themes/audubon/images/sidebar_background_aquarium.png") repeat top left;
}

.zoo-area
{
background: #1B360D url("wrap/sites/all/themes/audubon/images/background_zoo.jpg") no-repeat top center;
}

.zoo-area #sidebar-right #block-block-3, .zoo-area #sidebar-right #block-block-4, .zoo-area #sidebar-right #block-block-5, .zoo-area #sidebar-right #block-menu-menu-right-sidebar-audience-nav, .zoo-area #sidebar-right #block-menu-menu-facilities-nav
{
background:url("wrap/sites/all/themes/audubon/images/sidebar_background_zoo.png") repeat top left;
}

.insectarium-area
{
background: #162909 url("wrap/sites/all/themes/audubon/images/background_insectarium.jpg") no-repeat top center;
}

.insectarium-area #sidebar-right #block-block-3, .insectarium-area #sidebar-right #block-block-4, .insectarium-area #sidebar-right #block-block-5, .insectarium-area #sidebar-right #block-menu-menu-right-sidebar-audience-nav, .insectarium-area #sidebar-right #block-menu-menu-facilities-nav
{
background:url("wrap/sites/all/themes/audubon/images/sidebar_background_insectarium.png") repeat top left;
}

.golf-area
{
background: #162909 url("wrap/sites/all/themes/audubon/images/background_golf.jpg") no-repeat top center;
}

.golf-area #sidebar-right #block-block-3, .golf-area #sidebar-right #block-block-4, .golf-area #sidebar-right #block-block-5, .golf-area #sidebar-right #block-menu-menu-right-sidebar-audience-nav, .golf-area #sidebar-right #block-menu-menu-facilities-nav
{
background:url("wrap/sites/all/themes/audubon/images/sidebar_background_golf.png") repeat top left;
}

.imax-area
{
background: #000000 url("wrap/sites/all/themes/audubon/images/background_now_showing.jpg") no-repeat top center;
}

.imax-area #sidebar-right #block-block-3, .imax-area #sidebar-right #block-block-4, .imax-area #sidebar-right #block-block-5, .imax-area #sidebar-right #block-menu-menu-right-sidebar-audience-nav, .imax-area #sidebar-right #block-menu-menu-facilities-nav
{
background:url("wrap/sites/all/themes/audubon/images/sidebar_background_a.png") repeat top left;
}

.parks-area
{
background: #162909 url("wrap/sites/all/themes/audubon/images/background_golf.jpg") no-repeat top center;
}

.parks-area #sidebar-right #block-block-3, .parks-area #sidebar-right #block-block-4, .parks-area #sidebar-right #block-block-5, .parks-area #sidebar-right #block-menu-menu-right-sidebar-audience-nav, .parks-area #sidebar-right #block-menu-menu-facilities-nav
{
background:url("wrap/sites/all/themes/audubon/images/sidebar_background_golf.png") repeat top left;
}

.conservation-area
{
background: #704611 url("wrap/sites/all/themes/audubon/images/background_research.jpg") no-repeat top center;
}

.conservation-area #sidebar-right #block-block-3, .conservation-area #sidebar-right #block-block-4, .conservation-area #sidebar-right #block-block-5, .conservation-area #sidebar-right #block-menu-menu-right-sidebar-audience-nav, .conservation-area #sidebar-right #block-menu-menu-facilities-nav
{
background:url("wrap/sites/all/themes/audubon/images/sidebar_background_research.png") repeat top left;
}

.ztd-area
{
background: #000000 url("wrap/sites/all/themes/audubon/images/background_zootodo.jpg") no-repeat top center;
}

.ztd-area #sidebar-right #block-block-3, .ztd-area #sidebar-right #block-block-4, .ztd-area #sidebar-right #block-block-5, .ztd-area #sidebar-right #block-menu-menu-right-sidebar-audience-nav, .ztd-area #sidebar-right #block-menu-menu-facilities-nav
{
background:url("wrap/sites/all/themes/audubon/images/sidebar_background_zootodo.png") repeat top left;
}

.ztdk-area
{
background: #000000 url("wrap/sites/all/themes/audubon/images/background_zootodo.jpg") no-repeat top center;
}

.ztdk-area #sidebar-right #block-block-3, .ztdk-area #sidebar-right #block-block-4, .ztdk-area #sidebar-right #block-block-5, .ztdk-area #sidebar-right #block-menu-menu-right-sidebar-audience-nav, .ztdk-area #sidebar-right #block-menu-menu-facilities-nav
{
background:url("wrap/sites/all/themes/audubon/images/sidebar_background_zootodo.png") repeat top left;
}

#sidebar-right #block-block-19
{
/*  color family a */
background:url("wrap/sites/all/themes/audubon/images/sidebar_background_a.png") repeat top left;
}

.aquarium-area #sidebar-right #block-block-19
{
background:url("wrap/sites/all/themes/audubon/images/sidebar_background_aquarium.png") repeat top left;
}
.zoo-area #sidebar-right #block-block-19
{
background:url("wrap/sites/all/themes/audubon/images/sidebar_background_zoo.png") repeat top left;
}
.insectarium-area #sidebar-right #block-block-19
{
background:url("wrap/sites/all/themes/audubon/images/sidebar_background_insectarium.png") repeat top left;
}
.golf-area #sidebar-right #block-block-19
{
background:url("wrap/sites/all/themes/audubon/images/sidebar_background_golf.png") repeat top left;
}
.imax-area #sidebar-right #block-block-19
{
background:url("wrap/sites/all/themes/audubon/images/sidebar_background_a.png") repeat top left;
}
.parks-area #sidebar-right #block-block-19
{
background:url("wrap/sites/all/themes/audubon/images/sidebar_background_golf.png") repeat top left;
}
.conservation-area #sidebar-right #block-block-19
{
background:url("wrap/sites/all/themes/audubon/images/sidebar_background_research.png") repeat top left;
}
.ztd-area #sidebar-right #block-block-19
{
background:url("wrap/sites/all/themes/audubon/images/sidebar_background_zootodo.png") repeat top left;
}
.ztdk-area #sidebar-right #block-block-19
{
background:url("wrap/sites/all/themes/audubon/images/sidebar_background_zootodo.png") repeat top left;
}



#page
{
color: #111;
}

#container
{
margin: 0;
}

#header-region,
#closure-blocks
{
margin: 0 10px;
}

#main .node .content
{
color: #333;
}

div.content, div.links
{
font-size: 92%;
}

.block h3
{
font-size: 122%;
}

.book .body
{
padding: 0 0 0.5em 0;
margin: 0;
}

.clearfloat {
clear:both;
height:0;
font-size: 1px;
line-height: 0px;
}

table
{
border:none;
}

thead
{
border:none;
}

tbody
{
border:none;
}

#print-info
{
display:none;
}

#print-copyright
{
display:none;
}

.submitted
{
display:none;
}
#content-top {
	width: 100%;
}
#squeeze ul
{
padding:0;
margin:0 0 10px 0;
list-style-type: none;
}

hah
.content ul li {
/*background: transparent url(images/bullet_main.png) no-repeat scroll left 8px;*/
list-style-image: url(wrap/sites/all/themes/audubon/images/bullet_main.png);
padding: 0 0 0 8px;
margin-left: 25px;
}

.line
{
border-top: 2px solid #ccc;
clear:both;
}

/******* list exceptions *********/

#squeeze .links.inline li
{
padding:0;
margin:0;
list-style-type: none;
background-image:none;
}

#squeeze .tabs ul li
{
background-image:none;
padding:0;
}

/*****************************
 * HEADER STYLES
 *****************************/

#header
{
background-color:#FFF;
background:url("wrap/sites/all/themes/audubon/images/header_background.png") repeat;
height:115px;
margin:0 0 20px 0;
padding:0 0 7px 0;
width: 990px;
}

#navigation
{
padding:0px;
margin:0px;
}


#header-region #navigation ul
{
float:left;

margin:0px;
padding:0px;
display:block;
}

.logged-in #header-region #navigation ul
{
float:left;
margin:6px 0;
}

#header-region #navigation ul li
{
float:left;
display:block;
list-type:none;
margin:0 0px 0px 0;
border:none;
height:20px;
}

#header-region #navigation ul li a
{
float:left;
display:block;
list-type:none;
border:none;
}

#header-region .block-inner h2
{
display:none;
}

/*************** IE6 Message ********************/

#ie6-message {
	display: none;
}

/*************** Primary Menu ********************/


#navigation #primary ul
{
position:absolute;
top:53px;
margin-left:220px;
display:block;
}

/*
#dynamic-persistent-menu-menu-item ul li .active
{
background-color: #091e35;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border: 3px solid #577ea9;
color:#fff;
padding:3px 10px 10px 10px;
}

#dynamic-persistent-menu-menu-item-active-trail li
{
background-color: #091e35;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border: 3px solid #577ea9;
color:#fff;
padding:3px 10px 10px 10px;
}

#dynamic-persistent-menu-menu-item ul li a:hover
{
background-color: #f2edd0;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border: 3px solid #f2edd0;
color:#003366;
padding:3px 10px 10px 10px;
}
*/

#navigation #primary ul .active a
{
background-color: #091e35;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border: 3px solid #577ea9;
color:#fff;
padding:3px 10px 10px 10px;
}

#navigation #primary ul li a
{
font-weight:bold;
font-size: 16px;
height:12px;
padding:6px 13px 13px 13px;
margin-bottom:10px;

}


#navigation #primary ul li .active
{
background-color: #091e35;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border: 3px solid #577ea9;
color:#fff;
padding:3px 10px 10px 10px;
}

#navigation #primary ul li a:hover
{
background-color: #f2edd0;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border: 3px solid #f2edd0;
color:#003366;
padding:3px 10px 10px 10px;
}
.logged-in #header-region #navigation ul
{
float:left;
margin:6px 0;
}
.logged-in #navigation #primary ul
{
margin-left:220px;
top:45px;
}
.logged-in #navigation #secondary ul
{
margin-left:230px;
top:75px;
}


/*************** Secondary Menu ********************/


#navigation #secondary ul
{
clear:right;
position:absolute;
top:85px;
margin-left:230px;
}

#navigation #secondary ul li a
{
font-size: 12px;
padding:3px 10px 3px 10px;
}


#navigation #secondary ul li.active a
{
background-color: #666;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border: 3px solid #999;
color:#fff;
padding:0px 7px 0px 7px; /*fix padding for ie box model*/
}

#navigation #secondary ul li a:hover
{
background-color: #f2edd0;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border: 3px solid #f2edd0;
padding:0px 7px 0px 7px; /*fix padding for ie box model*/
}

/*************** Header Shopping Cart ********************/

#block-block-44 {
	margin: -3px 20px 0 0;
	float:right;
	color:#081E34;
	font-size: 11px;
	line-height: 7px;
		width: 149px;

}

/*************** Newsletter Sign-Up ********************/
#header-region #block-block-37 {
	background-color:#EEECE1;
	border-bottom: solid 1px #E4E1CE;
	width: 489px;
	height: 42px;
	float: right;
	padding: 0 15px;
	color:#311906;
	font-size: 14px;
}
#header-region #block-block-37 .content {
	padding: 5px 0 0 0;
}
#header-region #block-block-37 .content p {
	float: left;
	margin-right: 15px;
}
#header-region #block-block-37 form #signup_submit {
background:url(wrap/sites/all/themes/audubon/images/footer_sign_up.png) no-repeat left top #EEECE1;
display:block;
height:27px;
text-indent:-1000em;
color:transparent;
cursor:pointer;
width:74px;
border:none;
clear:right;
float:right;
margin: -2px 0 0 0;
}

#header-region #block-block-37 form #signup_submit:hover {
background:url(wrap/sites/all/themes/audubon/images/footer_sign_up_O.png) no-repeat left top #EEECE1;
}

#header-region #block-block-37 form input {

width:217px;
height: 16px;
padding-top: 3px;
float:left;
color: #666666;
font-size: 11px;
border: solid 1px #CBC8B9;
}

/*************** Login ********************/

#header-region #block-user-0
{
margin:0px 0px 5px 485px;
padding:1px 1px 7px 20px;
background-color:#efede2;
border-bottom: 1px solid #e4e1ce;
height:36px;
}

#header-region #block-user-0 #block-inner
{
padding:0px;
margin:0px;
}

#header-region #block-user-0 #block-inner .content
{
padding:0px;
margin:0px;
}

#header-region #block-user-0 #user-login-form label
{
float:left;
font-weight:normal;
padding:0px;
margin:0px;
}

#header-region #block-user-0 #user-login-form input
{
float:left;
margin: 0 10px 0 5px;
width:100px;
height:15px;
}

#header-region #block-user-0 #user-login-form .form-submit  /*login button*/
{
width:66px;
height:23px;
text-indent: -9000px;
font-size:0px;
cursor: pointer; /* hand-shaped cursor */
cursor: hand; /* for IE 5.x */
display:block;
background-image: url(wrap/sites/all/themes/audubon/images/login.png);
background-repeat: no-repeat;
background-position: left top;
float:right;
border:none;
}

#header-region #block-user-0 #user-login-form .form-submit:hover
{
background:url(wrap/sites/all/themes/audubon/images/login_O.png) no-repeat top left;
}

#header-region #block-user-0 #user-login-form .form-submit value
{
text-indent: -9000px;
}

#header-region #block-user-0 .item-list
{
display:none;
}

#logo-title
{
margin: 10px 0px 10px 20px;
position: absolute;
top:5px;
float:left;
}

#name-and-slogan
{
display: none;
}


/***************** Search *********************/


#search-theme-form
{
display:none;
}

#block-search-0
{
position:absolute;
top:50px;
margin-left:740px;

/*margin:0px 0px 10px 470px;*/
width:240px;

}

#block-search-0 .form-submit
{
width:66px;
height:25px;
text-indent: -1000em;
font-size:0px;
color:transparent;
cursor: pointer; /* hand-shaped cursor */
cursor: hand; /* for IE 5.x */
display:block;
background-color: transparent;
background-image: url(wrap/sites/all/themes/audubon/images/search.png);
background-repeat: no-repeat;
background-position: left top;
border:none;
float:right;
}

#block-search-0 .form-submit:hover
{
background:url(wrap/sites/all/themes/audubon/images/search_O.png) no-repeat top left;
}

#block-search-0 label
{
display:none;
}

#block-search-0 input {
width:150px;
float:left;
margin: 0 9px 0 0;
height:18px;
padding-top: 4px;
color: #666666;
font-size: 12px;
border: solid 1px #CBC8B9;
}

/***************** 404 Page *********************/

#errorpage-wrapper {
	color: #FFF;
	font-weight:normal;
	width: 740px;
	margin: -30px 0 0 -24px;
}

#errorpage-top-image {
	background: url(wrap/sites/all/themes/audubon/images/404-oops.jpg) no-repeat;
	height: 351px;
}
#errorpage-top-image a {
	color:#FFF!important;
	display:block;
	width: 211px;
	height: 40px;
	text-decoration:none!important;
	padding: 311px 0 0 549px;
	margin-right: -15px;
}
#errorpage-top-image:hover {
	background: url(wrap/sites/all/themes/audubon/images/404-oops-hover.jpg) no-repeat;
}
#errorpage-middle {
	background: url(wrap/sites/all/themes/audubon/images/404-middle.jpg) no-repeat;
	height: 70px;
	width: 740px;
	margin: 15px 0;
}

#errorpage-zoo,
#errorpage-insectarium,
#errorpage-aquarium,
#errorpage-imax {
	width: 366px;
	height: 158px;
}
#errorpage-zoo,
#errorpage-insectarium {
	margin-bottom: 0;
}
#errorpage-zoo,
#errorpage-aquarium {
	float:left;
	margin: 0;
}
#errorpage-insectarium,
#errorpage-imax {
	float: right;
}
#errorpage-zoo a,
#errorpage-insectarium a,
#errorpage-aquarium a,
#errorpage-imax a {
	padding: 126px 0 12px 53px;
	color:#FFF!important;
	display:block;
	text-decoration:none!important;
	padding: 126px 0 0 53px;

}
#errorpage-zoo {
	background: url(wrap/sites/all/themes/audubon/images/404-zoo.jpg) no-repeat;
}
#errorpage-zoo:hover {
	background: url(wrap/sites/all/themes/audubon/images/404-zoo-hover.jpg) no-repeat;
}

#errorpage-insectarium {
	background: url(wrap/sites/all/themes/audubon/images/404-insectarium.jpg) no-repeat;
}
#errorpage-insectarium:hover {
	background: url(wrap/sites/all/themes/audubon/images/404-insectarium-hover.jpg) no-repeat;
}

#errorpage-aquarium {
	background: url(wrap/sites/all/themes/audubon/images/404-aquarium.jpg) no-repeat;
}
#errorpage-aquarium:hover {
	background: url(wrap/sites/all/themes/audubon/images/404-aquarium-hover.jpg) no-repeat;
}



#errorpage-imax {
	background: url(wrap/sites/all/themes/audubon/images/404-imax.jpg) no-repeat;
}
#errorpage-imax:hover {
	background: url(wrap/sites/all/themes/audubon/images/404-imax-hover.jpg) no-repeat;
}


/***************** Factoids *********************/
#block-views-conservation_facts-block_1 {
	font-size: 12px;
	margin-top: 10px;
}
#block-views-conservation_facts-block_1 .view-content {
	background: url(wrap/sites/all/themes/audubon/images/conservation-bkgd.jpg) no-repeat top left;
	padding: 24px 0 0 0;
}

#block-views-conservation_facts-block_1 .view-content .views-row {
	padding: 15px 0 0 15px;
	border: solid 1px #C8D7E7;
	background-color: #EAF1F9;
	overflow:auto;
}
#block-views-conservation_facts-block_1 .view-content .views-field-title {
	font-weight: bold;
	font-size: 14px;
	margin-bottom: 12px;
}
#block-views-conservation_facts-block_1 .view-content .views-field-body {
	width: 550px;
	margin-right: 15px;
}
#block-views-conservation_facts-block_1 .view-content .views-field-body p{
	font-size: 12px !important;
	line-height: 20px !important;
}
#block-views-conservation_facts-block_1 .views-field-field-fact-image-fid {
	float: right;
	margin: 0 15px 15px 0;
}


/***************** Breadcrumbs *********************/

#breadcrumb
{
height:20px;
display:block;
color:#000000;
font-size:12px;
background-color: #F2EDD0;
padding:0px 20px;
}

#breadcrumb a
{
color:#000000;
font-size:12px;
margin:0px;
}

#breadcrumb a:hover
{
color:#000000;
text-decoration: underline;
}


/*****************************
 * SIDEBAR STYLES
 *****************************/

#sidebar-right
{
color:#fff;
padding-bottom:20px;
}

#sidebar-right a
{
color:#fff;
}

#sidebar-right .content .block-inner
{
margin:0px;
padding:0;
}

#sidebar-right .content
{
margin:0px;
padding:0;
}



/*****************************
 * SIDEBAR STYLES-  NAVIGATION
 *****************************/

#block-menu-menu-right-sidebar-audience-nav {
border-top: solid 1px #5D594F;
margin:0 0 0 0;
padding:0;
color:#fff;
}

#block-menu-menu-right-sidebar-audience-nav ul.menu {
margin: 0;
padding: 0;
}
#block-menu-menu-right-sidebar-audience-nav ul.menu li {
padding: 0px 10px 0 15px;
list-style-image:none;
list-style:none;
margin:0;
text-indent:0px;;
font-size:14px;
}
#block-menu-menu-right-sidebar-audience-nav ul.menu li a {
line-height: 26px;
height: 26px;
display: block;
background: url(wrap/sites/all/themes/audubon/images/side-nav-arrow.jpg) no-repeat 220px 8px;
margin: 0 -10px 0 -15px;
padding: 0 10px 0 15px;
}
#block-menu-menu-right-sidebar-audience-nav ul.menu li.leaf.last {
border-bottom: solid 1px #5D594F;
background-color: #27190A;
}
#block-menu-menu-right-sidebar-audience-nav ul.menu li.collapsed,
#block-menu-menu-right-sidebar-audience-nav ul.menu li.collapsed last {
border-bottom: solid 1px #5D594F;
background-color: #27190A;
}

#block-menu-menu-right-sidebar-audience-nav ul.menu li.collapsed last a:link,
#block-menu-menu-right-sidebar-audience-nav ul.menu li.collapsed a:link {
display: block;
line-height: 26px;
}
#block-menu-menu-right-sidebar-audience-nav ul.menu li a:hover {
background: url(wrap/sites/all/themes/audubon/images/side-nav-arrow-rollover.jpg) no-repeat 220px 8px #0A2E56;
}

#block-menu-menu-right-sidebar-audience-nav ul.menu li.collapsed a:hover {
background: url(wrap/sites/all/themes/audubon/images/side-nav-arrow-rollover.jpg) no-repeat 220px 8px #0A2E56;
}

#block-menu-menu-right-sidebar-audience-nav ul.menu li.expanded {
border-bottom: solid 1px #5D594F;
background-color: #27190A;
}

#block-menu-menu-right-sidebar-audience-nav ul.menu li.expanded a:link {
background: url(wrap/sites/all/themes/audubon/images/side-nav-arrow.jpg) no-repeat 220px 8px  ;
margin: 0 -10px 0 -15px;
padding: 0 10px 0 15px;
}

#block-menu-menu-right-sidebar-audience-nav ul.menu li.expanded a:hover {
background: url(wrap/sites/all/themes/audubon/images/side-nav-arrow-active-rollover.jpg) no-repeat 217px 8px #0A2E56;
}

#block-menu-menu-right-sidebar-audience-nav ul.menu li.expanded .active {
background: url(wrap/sites/all/themes/audubon/images/side-nav-arrow-active.jpg) no-repeat 217px 8px;
}

/*****************************
 * SIDEBAR STYLES-  sub-NAVIGATION
 *****************************/
#block-menu-menu-right-sidebar-audience-nav ul.menu li.expanded ul {
	background-color:#4C4233;
	margin: 0 -10px 0 -15px;
	border-top: solid 1px #5D594F;
}

#block-menu-menu-right-sidebar-audience-nav ul.menu li.expanded ul li.leaf {
font-size:12px;
height: 24px;
}
#block-menu-menu-right-sidebar-audience-nav ul.menu li.expanded ul li.leaf.last {
background-color:#4C4233;
border-bottom: none;
}

#block-menu-menu-right-sidebar-audience-nav ul.menu li.expanded ul li.leaf a {
background:url(wrap/sites/all/themes/audubon/images/side-nav-sub-arrow.jpg) no-repeat 15px 9px;
display: block;
line-height: 24px;
margin: 0 -10px 0 -15px;
padding: 0 20px 0 28px;
}
#block-menu-menu-right-sidebar-audience-nav ul.menu li.expanded ul li.leaf a:hover {
font-weight:normal;
color:#FFC;
font-size:12px;
text-decoration: underline;
}
#block-menu-menu-right-sidebar-audience-nav ul.menu li.expanded ul li.leaf .active {
font-weight:normal;
color:#FFC;
font-size:12px;
}

/*************************************
 * SIDEBAR STYLES-  BUY TICKETS
 *************************************/

#block-menu-menu-view-donate-buy {
border: none;
padding:0;
background: none!important;
color:#fff;

}
#block-menu-menu-view-donate-buy .content {
	margin-right: 0;
	width: 240px;
}
#block-menu-menu-view-donate-buy ul.menu {
padding: 15px 0 10px 0;
margin: 0;

}

#block-menu-menu-view-donate-buy ul.menu li {
display: block;
margin: 0 15px;
font-size: 17px;
padding: 0;
}

/*
#block-menu-menu-view-donate-buy ul.menu li.collapsed a{
	background:url(images/attractions-leaffirst-bkgd.png) no-repeat top;
	line-height: 29px;
	display:block;
	padding: 0 0 0 15px;
	margin-bottom: 10px;
}
#block-menu-menu-view-donate-buy ul.menu li.collapsed a:hover {
	background:url(images/attractions-leaffirst-bkgd-hover.png) no-repeat top;
}
#block-menu-menu-view-donate-buy ul.menu li.expanded {
	display:block;
	background: url(images/attractions-leaffirst-bkgd-expanded.png) no-repeat top;
	line-height: 29px;
	padding: 0 0 0 15px;
	margin-bottom: 10px;
	}

*/
#block-menu-menu-view-donate-buy ul.menu li.expanded a{
	background:url(wrap/sites/all/themes/audubon/images/attractions-leaffirst-bkgd.png) no-repeat top;
	line-height: 29px;
	height: 29px;
	display:block;
	padding: 0 0 0 15px;
	margin-bottom: 10px;
}
#block-menu-menu-view-donate-buy ul.menu li.expanded a:hover {
	display:block;
	background: url(wrap/sites/all/themes/audubon/images/attractions-leaffirst-bkgd-expanded.png) no-repeat top;
	line-height: 29px;
	padding: 0 0 0 15px;
	margin-bottom: 10px;
}
#block-menu-menu-view-donate-buy ul.menu li.expanded ul.menu {
	display: none;
	margin-top: -11px;
	margin-left: 0px;
}

#block-menu-menu-view-donate-buy ul.menu li.expanded ul.menu li {
	padding: 0 0 0 0;
}

#block-menu-menu-view-donate-buy ul.menu li.expanded:hover ul.menu {
	display: block;
}
#block-menu-menu-view-donate-buy ul.menu .leaf a {
	background:url(wrap/sites/all/themes/audubon/images/attractions-leaf-lion-bkgd.png) no-repeat top;
	display:block;
	line-height: 48px;
	height: 48px;
	padding: 0 0 5px 15px;
}
#block-menu-menu-view-donate-buy ul.menu .leaf a:hover {
	background:url(wrap/sites/all/themes/audubon/images/attractions-leaf-lion-bkgd-hover.png) no-repeat top;
}
#block-menu-menu-view-donate-buy ul.menu .last a {
	background:url(wrap/sites/all/themes/audubon/images/attractions-leaflast-bkgd.png) no-repeat top;
	display:block;
	line-height: 39px;
	height: 39px;
}
#block-menu-menu-view-donate-buy ul.menu .last a:hover {
	background:url(wrap/sites/all/themes/audubon/images/attractions-leaflast-bkgd-hover.png) no-repeat top;
}

/*************************************
 * SIDEBAR STYLES-  Attractions--SUBNAV
 *************************************/

#block-menu-menu-view-donate-buy ul.menu li.expanded ul {
	list-style-type: none;
	background-color:#A6C679;
	margin: 1px 0 0 -15px;
	border: solid 1px #2A4809;
	color:#212121;
	padding: 0 0 0 15px;
	position:absolute;
	z-index: 2000;
	width: 193px;
}
#block-menu-menu-view-donate-buy ul.menu li.expanded ul li {
	background-image:none;
		margin: 0 0 0 -15px;
		border-bottom: solid 1px #8AAC60;
}
#block-menu-menu-view-donate-buy ul.menu li.expanded ul .first {
		padding-top: 1px;
}
#block-menu-menu-view-donate-buy ul.menu li.expanded ul .last {
	border-bottom: none;
}
#block-menu-menu-view-donate-buy ul.menu li.expanded ul .last a {
	background-image:none;
		border-bottom: none;

}
#block-menu-menu-view-donate-buy ul.menu li.expanded ul li.leaf {
	background-image:none;
font-size:12px;
}

#block-menu-menu-view-donate-buy ul.menu li.expanded ul li.leaf a {
color:#212121;
display: block;
height: 25px;
line-height: 25px;
padding: 0 0 0 15px;
background-image:none;
margin-bottom: 0;
}
#block-menu-menu-view-donate-buy ul.menu li.expanded ul li.leaf a:hover,
#block-menu-menu-view-donate-buy ul.menu li.expanded ul li.leaf .active {
	background-image:none;
background-color:#5C7D3D;
color:#FFf;
margin: 0;
}


/*************************************
 * SIDEBAR STYLES-  Calendar
 *************************************/
#block-block-35 .block-inner {
background: url(wrap/sites/all/themes/audubon/images/audubon-spotlight-bkgd.png) no-repeat top;
padding-top: 25px;
}
#block-block-35 .block-inner .content {
	margin: 0;
	background: url(wrap/sites/all/themes/audubon/images/tab-bkgd.jpg) repeat-x bottom #27190A;
	padding: 5px 15px 0 15px;
	height: 25px;
	color:#fff;
}
#block-block-35 #today {
	background: url(wrap/sites/all/themes/audubon/images/today.jpg) no-repeat;
}
#block-block-35 #today:hover {
	background: url(wrap/sites/all/themes/audubon/images/today-hover.jpg) no-repeat;
}

#block-block-35 #today.active {
	background: url(wrap/sites/all/themes/audubon/images/today-active.jpg) no-repeat;
}
#block-block-35 #today.active:hover {
	background: url(wrap/sites/all/themes/audubon/images/today-active.jpg) no-repeat;
}

#block-block-35 #today,
#block-block-35 #today.active {
height: 25px;
width: 62px;
color:#fff;
border: none;
font-size: 12px;
margin-right: 5px;
}

#block-block-35 #upcoming {
	background: url(wrap/sites/all/themes/audubon/images/upcoming.jpg) no-repeat;
}
#block-block-35 #upcoming:hover {
	background: url(wrap/sites/all/themes/audubon/images/upcoming-hover.jpg) no-repeat;
}
#block-block-35 #upcoming.active {
	background: url(wrap/sites/all/themes/audubon/images/upcoming-active.jpg) no-repeat;
}
#block-block-35 #upcoming.active:hover {
	background: url(wrap/sites/all/themes/audubon/images/upcoming-active.jpg) no-repeat;
}
#block-block-35 #upcoming,
#block-block-35 #upcoming.active {
	height: 25px;
	width: 85px;
	color:#fff;
	border: none;
	font-size: 12px;
}
#block-block-43 {
	display: none;
}
#block-block-42 .block-inner .content,
#block-block-43 .block-inner .content {
	font-size: 11px;
	line-height: 14px;
	padding: 5px 13px 7px 13px;
}
#block-block-42 .content a,
#block-block-43 .content a {
	color:#FFF;
	font-weight: bold;
}
#block-block-42 .content a:hover,
#block-block-43 .content a:hover {
	text-decoration:underline;
}
#block-block-42 .content p,
#block-block-43 .content p {
	margin-top: 0;
	margin-bottom: 5px;
	width: 125px;
}
#block-block-42 .content p.calendar-dates,
#block-block-43 .content p.calendar-dates {
    margin-top: 0;
	margin-bottom: 0;
	font-size: 12px;
}

#block-block-42 .content img,
#block-block-43 .content img {
	float:left;
	margin-right: 6px;
	border: solid 1px #B0A8A8;
	margin-top: 3px;
}
#block-block-41 {
	margin: 0;
}
#block-block-41 .block-inner {
	height: 26px;
	font-size: 12px;
display: block;
border-top: solid 1px #5D594F;
border-bottom: solid 1px #5D594F;
}
#block-block-41 .block-inner a {
	display: block;
	line-height: 26px;
background: url(wrap/sites/all/themes/audubon/images/side-nav-arrow.jpg) no-repeat 220px 8px #27190A;
margin: 0;
padding: 0 10px 0 15px;
}
#block-block-41 .block-inner a:hover,
#block-block-41 .block-inner a:active {
background: url(wrap/sites/all/themes/audubon/images/side-nav-arrow-rollover.jpg) no-repeat 220px 8px #0A2E56;

}

#block-block-41 .block-inner p {
	margin: 0;
}
/*************************************
 * SIDEBAR STYLES-  JOIN AUDUBON
 *************************************/
#block-block-34 {
	padding:0;
	margin: 10px 0;
}
#block-block-34 .block-inner {
	background: url(wrap/sites/all/themes/audubon/images/join-audubon-bkgd.png) no-repeat center;
	height: 56px;
	padding: 22px 5px 5px 35px;
	margin: -10px 15px;
	font-size: 12px;
	line-height: 15px;
}

#block-block-34 .block-inner a {
	text-decoration: none;
	width: 78px;
	height: 37px;
	float:left;
	margin: -15px 35px -15px -35px;
	padding: 29px 0 0 20px;
}

#block-block-34 .block-inner a.right {
	text-decoration: none;
	width: 82px;
	margin-right: 0;
	padding-left: 25px;
}
#block-block-34 .block-inner:hover {
	background: url(wrap/sites/all/themes/audubon/images/join-audubon-bkgd-hover.png) no-repeat center;
}




/*************************************
 * SIDEBAR STYLES-  CONNECT W/AUDUBON
 *************************************/

#block-block-29 .block-inner {
	background:url(wrap/sites/all/themes/audubon/images/connect-w-audubon-bkgd.png) no-repeat top;
	margin-top: 0;
	height: 39px;
	padding: 44px 8px 10px 16px;
	font-size: 12px;
	line-height: 15px;
}
#block-block-29 .block-inner img {
	margin-right: 10px;
	float:left;
}
#block-block-29 .block-inner p {
	margin-top: -4px;
	clear:none;
}




/************** Is this needed anymore? *********************/

#sidebar-right #block-block-3, #sidebar-right #block-block-4, #sidebar-right #block-block-5
{
/* background image reference at top with body background image */
margin:0 0 0 10px;
padding:10px;
color:#fff;
min-height:172px;
}



#sidebar-right #block-block-3 .visit_brown
{
background:url("wrap/sites/all/themes/audubon/images/visit_brown.png") no-repeat top left;
color:#fff;
height:27px;
width:75px;
display:block;
font-size:12px;
float:left;
padding:2px 0 0 20px;
}

#sidebar-right #block-block-3 #block-3-inner
{
margin-left:70px;
}

#sidebar-right #block-block-3 .visit_brown:hover
{
background:url(wrap/sites/all/themes/audubon/images/visit_brown_O.png) no-repeat top left;
}
/***********************************/









/************** Sidebar Top Nav Block *********************/

#sidebar-right #block-menu-menu-right-sidebar-audience-nav h2
{

color:#ad9a80;
font-size:18px;
background:url("wrap/sites/all/themes/audubon/images/sidebar_by_visitor.png") no-repeat top left;
text-indent:-9999px;
}



/************** My cart block *********************/

.block-uc_cart .block-inner
{
/* background image reference at top with body background image */
margin:0 0 0 10px;
padding:10px;
color:#fff;
/*min-height:560px;*/
}

.cart-block-icon-full
{
display:none;
}

.title .cart-block-title-bar
{
text-indent:-9999px;
text-align:right;
color:#4C4232;
background:url(wrap/sites/all/themes/audubon/images/My_Cart.png) no-repeat top left;
width:100px;
height:20px;
font-size:0;
display:block;

}

.cart-block-title-bar .arrow-down
{
background: transparent url(wrap/sites/all/themes/audubon/images/arrow_down.png) no-repeat scroll center center;
height:7px;
width:13px;
font-size:13px;
}

.cart-block-title-bar .arrow-up
{
background: transparent url(wrap/sites/all/themes/audubon/images/arrow_up.png) no-repeat scroll center center;
height:7px;
width:13px;
font-size:13px;
}

/*.cart-block-title-bar
{
background:url(images/My_Cart.png) no-repeat top left;
}*/

.cart-block-summary-links .links
{
padding:0;
margin:10px 0;
}

.cart-block-summary-links .links li
{
float:left;
}

.cart-block-checkout a
{
background:url(wrap/sites/all/themes/audubon/images/checkout_btn.png) no-repeat top left;
width:99px;
height:30px;
text-indent:-9999px;
float:left;
text-align:left;
}

.cart-block-summary-links ul.links li
{
border:none;
}

.cart-block-view-cart a
{
background:url(wrap/sites/all/themes/audubon/images/shopping-bag.png) no-repeat top left;
width:149px;
height:31px;
float:left;
text-align:left;
padding:0;
margin:0;
}

.cart-block-view-cart a:hover
{
background:url(wrap/sites/all/themes/audubon/images/shopping-bag-hover.png) no-repeat top left;
}

.cart-block-checkout a:hover
{
background:url(wrap/sites/all/themes/audubon/images/checkout_btn_O.png) no-repeat top left;
}

.cart-block-summary-items
{
width:100%;

}

.cart-block-summary
{
width:100%;
}

.cart-block-items
{
background-color:#fff2ae;
padding:5px;
color:#333333;
}

#sidebar-right .cart-block-items a
{
color:#333333;
text-decoration:underline;
}

.cart-block-summary label
{
color:#ad9a80;
font-weight:normal;
font-size:14px;
}

#block-uc_cart-0 .cart-block-summary .uc-price
{
font-size:16px;
font-weight:bold;
color:#fff;
}

.catalog-grid-title
{
font-weight:bold;
color:#091e35;
}

.cart-block-icon-empty
{
background-image:none;
}


.sticky-table
{
border:0px;
}
.sticky-table tbody tr
{
border:none;
background:none;
}

.sticky-table tbody tr.odd
{
border:none;
background:none;
}

.sticky-table thead th
{
border:none;
}


/*********************************
 * (NOT FRONT) MAIN PAGE ELEMENTS
 ********************************/

.not-front #main
{
background-color:#fff;
min-height:773px;
}

.not-front #main .content a,
.not-front #main .form-item a,
.not-front #main .content a:link,
.not-front #main .form-item a:link,
.not-front #main .content a:visited,
.not-front #main .form-item a:visited,
.not-front #main .content a:active,
.not-front #main .form-item a:active
{
color: #69F;
text-decoration: none;
}

.not-front #main .content a:hover,
.not-front #main .form-item a:hover,
.not-front #main .content a:focus,
.not-front #main .form-item a:focus
{
text-decoration: underline;
}

.not-front #main .content
{
font-size: 100%;
}

.not-front #squeeze
{
padding:20px;
}

.not-front #squeeze h1
{
font-size:18px;
color:#091E35;
font-weight:bold;
margin-bottom:20px;
}

.not-front #squeeze h2
{
font-size:14px;
color:#003366;
font-weight:bold;
}

.not-front #squeeze p
{
font-size:14px;
line-height:24px;
color:#333;
margin-bottom:10px;
}

.not-front #squeeze ul li,
.not-front #squeeze ol li

{
font-size:14px;
line-height:24px;
color:#333;
margin-bottom:5px;
}

.book-navigation .page-links /** Book Navigation **/
{
background-color:#fff;
border-top:1px solid #d6d6d6;
border-bottom:1px solid #d6d6d6;
}


/*****************************
 * HOME PAGE BLOCKS
 *****************************/
 #main {
	 width: 990px;
	 margin-bottom: 20px;
 }
 
.front #main #content-top,
.front #main #content-bottom
{
padding:0px;
margin:0px;
}

.front #main #content-top .block,
.front #main #content-bottom .block
{
float:left;
margin: 0 0 20px 0;
}

.front #main #content-top .block-inner .content,
.front #main #content-bottom .block-inner .content
{
margin:0;
padding:0;
}

.front #main #content-top #block-block-6,
.front #main #content-bottom #block-block-6
{
width:740px;
height: 290px;
position:relative;
}

.front #main #content-top #block-block-6 .visit_btn,
.front #main #content-bottom #block-block-6 .visit_btn
{
position:absolute;
z-index:2;
top:255px;
right:20px;
padding:2px 20px;

}

.front #main #content-top #block-block-7,
.front #main #content-bottom #block-block-7
{
width:365px;
height: 180px;
margin-right:10px;
position:relative;
}

.front #main #content-top #block-block-8,
.front #main #content-bottom #block-block-8
{
position:relative;
width:365px;
height: 180px;
}

.front #main #content-top #block-block-7 .visit_btn,
.front #main #content-top #block-block-8 .visit_btn,
.front #main #content-bottom #block-block-7 .visit_btn,
.front #main #content-bottom #block-block-8 .visit_btn
{
position:absolute;
z-index:2;
top:142px;
right:10px;
width:36px;
height:27px;
background:url(wrap/sites/all/themes/audubon/images/visit_orange.png) no-repeat left top;
color:#FFFFFF;
padding:2px 20px;
text-align:left;
vertical-align:top;
font-size:13px;
font-weight:500;
}

.front #main #content-top #block-block-7 .visit_btn:hover,
.front #main #content-top #block-block-8 .visit_btn:hover,
.front #main #content-bottom #block-block-7 .visit_btn:hover,
.front #main #content-bottom #block-block-8 .visit_btn:hover
{
background:url(wrap/sites/all/themes/audubon/images/visit_orange_O.png) no-repeat left top;
}

.front #main #content-top #block-block-9,
.front #main #content-top #block-block-10,
.front #main #content-top #block-block-11,
.front #main #content-bottom #block-block-9,
.front #main #content-bottom #block-block-10,
.front #main #content-bottom #block-block-11
{
width:177px;
height: 265px;
margin-right:10px;
color:#FFFFFF;
}

.front #main #content-top #block-block-9,
.front #main #content-bottom #block-block-9
{
background-color:#aa1e07;
position:relative;
}

.front #main #content-top #block-block-10,
.front #main #content-bottom #block-block-10
{
position:relative;
background:url("wrap/sites/all/themes/audubon/images/home_brown.png") repeat;
}

.front #main #content-top #block-block-11,
.front #main #content-bottom #block-block-11
{
background:url("wrap/sites/all/themes/audubon/images/home_green_back.png") repeat-x bottom left;
position:relative;
}

.front #main #content-top #block-block-12,
.front #main #content-bottom #block-block-12
{
background:url("wrap/sites/all/themes/audubon/images/home_orange_back.png") repeat-x left bottom;
position:relative;
}

.front #main #content-top #block-block-9 .home_zigzag,
.front #main #content-top #block-block-10 .home_zigzag,
.front #main #content-top #block-block-11 .home_zigzag,
.front #main #content-top #block-block-12 .home_zigzag,
.front #main #content-bottom #block-block-9 .home_zigzag,
.front #main #content-bottom #block-block-10 .home_zigzag,
.front #main #content-bottom #block-block-11 .home_zigzag,
.front #main #content-bottom #block-block-12 .home_zigzag
{
position:absolute;
z-index:2;
top:98px;
left:0px;
}

.front #main #content-top .home_header_small,
.front #main #content-bottom .home_header_small
{
margin:10px 10px 0 10px;
}

.front #main #content-top #block-block-9 p,
.front #main #content-top #block-block-10 p,
.front #main #content-top #block-block-11 p,
.front #main #content-top #block-block-12 p,
.front #main #content-bottom #block-block-9 p,
.front #main #content-bottom #block-block-10 p,
.front #main #content-bottom #block-block-11 p,
.front #main #content-bottom #block-block-12 p
{
color:#fff;
padding:0px 10px 10px 10px;
line-height:1.2em;
}

.front #main #content-top .visit_btn,
.front #main #content-bottom .visit_btn
{
position:absolute;
top: 225px;
right:10px;
width:36px;
height:27px;
background:url(wrap/sites/all/themes/audubon/images/visit_blue.png) no-repeat left top;
color:#FFFFFF;
padding:5px 20px;
text-align:left;
vertical-align:middle;
font-size:13px;
font-weight:500;
}

.front #main #content-top .visit_btn:hover,
.front #main #content-bottom .visit_btn:hover
{
background:url(wrap/sites/all/themes/audubon/images/visit_blue_O.png) no-repeat left top;
}

.front #main #content-top #block-block-12,
.front #main #content-bottom #block-block-12
{
width:177px;
height: 265px;
}

/*****************************
Attractions Navigation
*********************/

#block-menu-menu-facilities-nav .block-inner {
	float:left;
	clear:right;
	margin: 0 20px 18px 0;
}

#block-menu-menu-facilities-nav .block-inner ul.menu {
color: #4F4E46;
width: 215px;
margin:0;
padding:0;
border: solid 1px #D8D4BC;
border-bottom: none;
}
#block-menu-menu-facilities-nav .block-inner ul.menu li {
background:  url(wrap/sites/all/themes/audubon/images/attractions-nav-li-bkgd.jpg) no-repeat 200px 8px #EEECE1;
color: #4F4E46;
list-style-image:none;
list-style:none;
margin:0;
line-height: 25px;
height: 25px;
padding: 0;
border-bottom: solid 1px #D8D4BC;
font-size:13px;
display: block;
}
#block-menu-menu-facilities-nav .block-inner ul.menu li a:link,
#block-menu-menu-facilities-nav .block-inner ul.menu li a:visited {
	padding-left:15px;
	color: #4F4E46;
	text-decoration: none;
	display: block;
}
#block-menu-menu-facilities-nav .block-inner ul.menu li a:hover {
	background:url(wrap/sites/all/themes/audubon/images/attractions-nav-li-bkgd-hover.jpg) no-repeat 200px 8px #EBE5CE;
		color: #4F4E46;
	text-decoration: none;
	display: block;
}

#block-menu-menu-facilities-nav .block-inner ul.menu li a.active {
background: url(wrap/sites/all/themes/audubon/images/attractions-nav-li-bkgd-active.jpg) no-repeat 200px 8px #D8D4BC;
	color: #4F4E46;
	text-decoration: none;
	display: block;
}

/*****************************
 * VENUE BLOCKS
 *****************************/

#block-block-45,
#block-block-46 {
	background-color:#FEF1B9;
	border: solid 1px #D8D4BC;
	padding: 12px;
	margin: 0 0 15px 0;
}

#block-block-45 .block-inner .content,
#block-block-46 .block-inner .content {
	margin: 0;
}
#block-block-45 .block-inner p,
#block-block-46 .block-inner p {
	color: #324B24!important;
	margin: 0 0 -10px 0;
	font-size: 13px!important;
	line-height: 19px!important;

}

#block-block-45 p.eventsinfo_link,
#block-block-46 p.eventsinfo_link {
	float:right;
	margin-left: 10px;

}
.eventsinfo_link a{
	background: url(wrap/sites/all/themes/audubon/images/venu-link-bkgd.jpg) no-repeat;
	display: block;
	width: 145px;
	height: 30px;
	line-height: 30px!important;
	color:#FFF!important;
	float:left;
	margin: 5px 0 0 0;
	text-align:center;
	text-decoration:none!important;
}
.eventsinfo_link a:hover {
	background: url(wrap/sites/all/themes/audubon/images/venu-link-bkgd-hover.jpg) no-repeat;
	text-decoration:none!important;
}

.view-Venue-View .views-view-grid,
.view-corporate-event-venues .views-view-grid,
.view-wedding-venues .views-view-grid,
.view-birthday-venues .views-view-grid,
.view-private-party-venues .views-view-grid {
	background-color:#FFF;
	width: 701px;
	padding: 0;
}
.view-Venue-View .views-view-grid .col-1,
.view-corporate-event-venues .views-view-grid .col-1,
.view-wedding-venues .views-view-grid .col-1,
.view-private-party-venues .views-view-grid .col-1,
.view-birthday-venues .views-view-grid .col-1 {
	width: 338px;
	float:left;
}
.view-Venue-View .views-view-grid .col-2,
.view-corporate-event-venues .views-view-grid .col-2,
.view-wedding-venues .views-view-grid .col-2,
.view-birthday-venues .views-view-grid .col-2,
.view-private-party-venues .views-view-grid .col-2 {
	width: 338px;
	float:right;
}

.view-Venue-View .views-view-grid td,
.view-corporate-event-venues .views-view-grid td,
.view-wedding-venues .views-view-grid td,
.view-birthday-venues .views-view-grid td,
.view-private-party-venues .views-view-grid td {
	vertical-align:top;
	margin-bottom: 12px;
	background-color: #EEECE1;
	border: solid 1px #D8D4BC;
	border-top: none;
	padding-bottom: 12px;
}

.view-Venue-View .views-view-grid .views-field-title,
.view-corporate-event-venues .views-view-grid .views-field-title,
.view-wedding-venues .views-view-grid .views-field-title,
.view-birthday-venues .views-view-grid .views-field-title,
.view-private-party-venues .views-view-grid .views-field-title {
	background-color:#D8D4BC;
	color: #324B24;
	height: 26px;
	padding: 6px 0 0 12px;
	font-weight: bold;
	margin: -4px -4px 0 -4px;
}

.view-Venue-View .views-view-grid .views-field-body,
.view-corporate-event-venues .views-view-grid .views-field-body,
.view-wedding-venues .views-view-grid .views-field-body,
.view-birthday-venues .views-view-grid .views-field-body,
.view-private-party-venues .views-view-grid .views-field-body {
	margin: 12px;
}
.view-Venue-View .views-view-grid .views-field-body p,
.view-corporate-event-venues .views-view-grid .views-field-body p,
.view-wedding-venues .views-view-grid .views-field-body p,
.view-birthday-venues .views-view-grid .views-field-body p,
.view-private-party-venues .views-view-grid .views-field-body p {
	font-size: 13px !important;
	line-height: 19px!important;
	padding: 0;
	}

.view-Venue-View .views-view-grid .views-field-body a,
.view-corporate-event-venues .views-view-grid .views-field-body a,
.view-wedding-venues .views-view-grid .views-field-body a,
.view-birthday-venues .views-view-grid .views-field-body a,
.view-private-party-venues .views-view-grid .views-field-body a {
	background: url(wrap/sites/all/themes/audubon/images/venu-link-bkgd.jpg) no-repeat;
	display: block;
	width: 145px;
	height: 30px;
	line-height: 30px!important;
	color:#FFF!important;
	float:left;
	margin: 0 12px 0 0!important;
	text-align:center;
}

.view-Venue-View .views-view-grid .views-field-body a:hover,
.view-corporate-event-venues .views-view-grid .views-field-body a:hover,
.view-wedding-venues .views-view-grid .views-field-body a:hover,
.view-birthday-venues .views-view-grid .views-field-body a:hover,
.view-corporate-event-venues .views-view-grid .views-field-body a:hover {
		background: url(wrap/sites/all/themes/audubon/images/venu-link-bkgd-hover.jpg) no-repeat;
}
/*****************************
 * VISIT PAGE ELEMENTS
 *****************************/


.section-visit #squeeze
{
margin:0;
}

.visit_block
{
position:relative;
background-color:#3a5266;
width:345px;
height:180px;
float:left;
margin:5px 5px 1px 0;
padding:0px;
}

.section-visit #main #squeeze .pulled_quote
{
background-color:#eee;
padding:10px;
float:none;
}

.section-visit #main #squeeze .pulled_quote p
{
font-size:12px;
line-height:20px;
}

.section-visit #main #squeeze .general
{
background-color:#eee;
padding:10px;
float:none;
height:200px;

}

.visit_block .visit_text
{
padding:10px;
color:#fff;
width:170px;
z-index:0;
position:absolute;
}

.not-front #squeeze .visit_text p, .not-front #squeeze .visit_text h2
{
color:#fff;
width:170px;
display:block;
}

.visit_block .visit_images
{
background-color:#0D2F4A;
width:144px;

height:180px;
margin:0px;
padding:0px;
position:absolute;
margin-left:201px;
}

.visit_block .visit_images img
{
margin:0px;
padding:0px;
}

.visit_block br
{
display:none;
}

.visit-images p
{
display:none;
}

.visit_block .zigzag
{
margin-left:190px;
z-index:2;
position:absolute;
}

.visit_block .zigzag_image
{
margin-left:190px;
z-index:2;
position:absolute;
}

.visit_block .back_image
{

z-index:0;
position:absolute;
}

.visit_block .visit_btn
{
position:absolute;
z-index:2;
top: 143px;
right:10px;
width:36px;
height:27px;
background:url("wrap/sites/all/themes/audubon/images/visit_orange.png") no-repeat left top;
color:#FFFFFF;
padding:3px 20px;
text-align:left;
vertical-align:middle;
font-size:13px;
font-weight:500;
}

.visit_block a.visit_btn
{
color:#FFFFFF !important;
text-decoration: none !important;
}

.visit_block .visit_btn:hover
{
background:url("wrap/sites/all/themes/audubon/images/visit_orange_O.png") no-repeat left top;
}

.section-visit #main #squeeze iframe
{
border:1px solid #666;
}

/*------------- Hours Page --------------*/

.page-visit-hours #squeeze .hours_top
{
}

.page-visit-hours #squeeze .hours_block
{
float:left;
width:310px;
display:block;
margin-right:20px;

}

.page-visit-hours #squeeze .hours_top
{
border-bottom:1px solid #CCC;
margin-bottom:40px;
width:100%;
display:block;
min-height:280px; /* hack to fix border */
}

.page-visit-hours #squeeze .hours_block h2
{
font-size:14px;
color:#091e35;
}


.page-visit-hours #squeeze .hours_open
{
color:#940f0f;
font-size:14px;
font-weight:bold;
margin:0px;
}


/*------------- Tickets Page --------------*/

.page-visit-tickets #squeeze .tickets .ticket_left
{
text-align:left;
}

.page-visit-tickets #squeeze h2
{
font-size:14px;
color:#091e35;
margin-bottom:20px;
}

.page-visit-tickets #squeeze .tickets .ticket_header
{
background-color:#f1f2f0;
text-align:center;
font-weight:bold;
}

.page-visit-tickets #squeeze .tickets td
{
text-align:center;
width:150px;
border-left:1px solid #dddfd9;
}

.page-visit-tickets #squeeze .tickets .ticket_left
{
text-align:left;
border:none;
}

.page-visit-tickets #squeeze p .rating
{
font-size:12px;
line-height:1.2em;
color:#FF0000;
}

/*------------- Directions and Parking Page --------------*/

.attraction-map {
	margin: 0 -5px  0 0;
}
.clear {
	clear: both;
}
.attraction-information {
	font-size: 14px;
}
.attraction-address {
	width: 338px;
	float: left;
}
.attraction-instructions {
	width: 338px;
	float:right;
}


/*------------- Group Sales Page --------------*/


.page-visit-groupsales #squeeze .tickets .ticket_left
{
text-align:left;
}

.page-visit-groupsales #squeeze .tickets .ticket_header
{
background-color:#f1f2f0;
text-align:center;
font-weight:bold;
}

.page-visit-groupsales #squeeze .tickets td
{
text-align:center;
width:150px;
border-left:1px solid #dddfd9;
}

.page-visit-groupsales #squeeze .tickets .ticket_left
{
text-align:left;
border:none;
}

/*------------- Now Showing Page --------------*/

.page-visit-imax-nowshowing .now_playing
{
width:740px;
display:block;
min-height:300px;
}

.page-visit-imax-nowshowing .now_playing_table
{
float:left;
padding-right:10px;
}

.page-visit-imax-nowshowing .now_playing .time
{
text-align:right;
padding-right:10px;
font-weight:bold;
}

.page-visit-imax-nowshowing .now_playing_block
{
width:400px;
float:left;
padding-left:30px;
border-left:1px solid #CCC;
display:block;
}

.not-front #squeeze .now_playing_block p
{
font-size:12px;
line-height:1.6em;
clear:none;
}

.page-visit-imax-nowshowing .now_playing_block img
{
float:left;
}

.not-front #squeeze .new_releases h2
{
margin:0px;
}

.not-front #squeeze .new_releases p
{
font-size:12px;
line-height:1.4em;
}

.not-front #squeeze .new_releases .rating
{
font-size:14px;
line-height:1.6em;

}

.page-visit-imax-nowshowing .now_playing_descript
{
margin-left:110px;

}

.page-visit-imax-nowshowing .now_playing_descript .rating
{
height:7px;

font-size:14px;
}

.page-visit-imax-nowshowing .now_playing_descript h2
{
margin-top:0;
}

.page-visit-imax-nowshowing .now_playing_descript p
{
font-size:10px;
line-height:1em;
}

.page-visit-imax-nowshowing .buy_tickets
{
background:url(wrap/sites/all/themes/audubon/images/show_btn.png) no-repeat top left;
text-indent:-9999px;
width:97px;
height:27px;
display:block;
}

.page-visit-imax-nowshowing .buy_tickets:hover
{
background:url(wrap/sites/all/themes/audubon/images/show_btn_O.png) no-repeat top left;
}

.page-visit-imax-nowshowing .new_releases
{
width:120px;
margin-right:20px;
float:left;
display:block;
}



/*------------- Events Page --------------*/

.not-front #squeeze .calendar-calendar td
{
border-left:none;
border-right:none;
border-color:#dddddd;
}

.not-front #squeeze .date-nav
{
padding:10px 0;
background-color:#eee;
border-top:1px solid #ddd;
border-left:none;
border-right:none;
text-align:center;
}

.not-front #squeeze .calendar-calendar .links li
{
background-image:none;
}

.calendar-empty
{
display:none;
}

.calendar-agenda-hour
{
display:none;
}

.calendar-dayview-hour
{
display:none;
}

th.calendar-agenda-items
{
width:100%;
}

.calendar-calendar td.calendar-agenda-items
{
border:1px solid #333;
}

.has-events
{
background-color:#ffffcc;
}

.attachment-after .calendar-calendar .month-view table, .calendar-calendar .week-view, .calendar-calendar .day-view
{
margin-bottom:25px;
}



.not-front #squeeze .date-heading h3, .calendar-calendar div.date-nav a, .calendar-calendar div.date-nav h3
{
color:#091e35;
font-size:15px;
}

th.calendar-agenda-items
{
background-color:#091e35;
border:none;
}

.not-front #squeeze .view-audubon-calendar .date-next a
{
background:url(wrap/sites/all/themes/audubon/images/events_next.png) top left;
width:73px;
height:21px;
margin-right:10px;
text-indent:-9999px;
display:block;
/*float:right;*/
position: absolute;
top: 0;
right: 0;
}

.not-front #squeeze .date-next a:hover
{
background:url(wrap/sites/all/themes/audubon/images/events_next_O.png);
}

.date-nav div.date-next
{
text-align:left;
height:26px;
margin:0;
padding:0;
}

.not-front #squeeze .date-nav .date-next /**** hack to fix next and prev buttons ***/
{
height:10px;
margin-top:0px;
padding:0;
position: relative;
}



.not-front #squeeze .date-nav .date-prev /**** hack to fix next and prev buttons ***/
{
height:10px;
padding:0;
}

.not-front #squeeze .date-prev a
{
background:url(wrap/sites/all/themes/audubon/images/events_previous.png) top left;
text-indent:-9999px;
width:73px;
height:21px;
margin-left:10px;
display:block;
}

.not-front #squeeze .date-prev a:hover
{
background:url(wrap/sites/all/themes/audubon/images/events_previous_O.png) top left;
}

.not-front #squeeze .view-audubon-calendar .date-prev
{
display:block;
}

.not-front #squeeze th.days
{
background-color:#091e35;
border:none;
font-weight:normal;
padding:5px 0;
color:#fff;
}

.not-front #squeeze .day
{
background:none;
border:none;
}

.view-audubon-calendar td
{
height:74px;
padding:0px;
margin:0;
}

.not-front #squeeze .day a
{
background:none;
color:#666666;
font-weight:normal;
font-size:12px;
}

.section-visit .week
{
display:none;
}

.not-front #squeeze .empty
{
background-color:#FFFFFF;
}

.not-front #squeeze .today
{
background-color:#f2edd0;
}

.not-front #squeeze .sat, .not-front #squeeze .sun
{
background-color:#eaf1f9;
padding:0px;
}

.view-audubon-calendar .mini
{
height:30px;
padding:2px;
}

.not-front #squeeze .view-audubon-calendar .links
{
text-align:center;
}

.not-front #squeeze .view-audubon-calendar .links a
{
font-size:12px;
}

.page-join-benefits ol
{
font-size:14px;
}

/*------------- Aquarium, Insectarium, Now Showing - Attractions Page, Educators-Camps, Workshops --------------*/


.item-list
{
margin:10px 0 20px 0;
}

#squeeze .item-list ul li
{
margin:0;
padding:0px;
}

#squeeze .item-list ul li
{
list-style:none;
list-style-type:none;
width:47%;
float:left;
margin:0;
padding-top:10px;
display:block;
}

#squeeze .imagefield
{
float:left;
margin:0 10px 10px 0;
}

#squeeze .views-field-title a
{
font-weight:bold;
padding-bottom:5px;
line-height:1.4em;
display:block;
font-size:14px;
margin:0;
}

#squeeze .views-field-field-summary-value p
{
font-size:12px;
line-height:1.5em;
clear:none;
}

.page-visit-insectarium-attractions #squeeze .item-list ul li
{
height:100px;
padding:0 3% 0 0;
overflow:hidden;
}

.page-educators-overnights #squeeze .item-list ul li
{
padding: 0 3% 0 0;
}


/*****************************
 * SHOP PAGE ELEMENTS
 *****************************/


.section-shop #shop_thumb_display /* wraps around all thumbs displayed*/
{
display:block;
float:none;

padding:0 30px;
margin-bottom:20px;
}


.section-shop .shop_thumb /* wraps around individual thumbs displayed*/
 {
 width:100px;
 float:left;
 margin:0px 60px 20px 0px;
 text-align:center;
 }

.section-shop .thumb
 {
 width:100px;
 height:100px;
 display:block;
 background-color:#eee;
 }

.not-front #squeeze .shop_thumb p
{
font-size:12px;
font-weight:bold;
color:#091E35;
margin:0px;
padding:0px;
line-height:1.6em;
}

.not-front #squeeze .shop_thumb .details
{
font-size:10px;
font-weight:normal;
color:#666;
}


/***** product *******/

.category-grid-products table
{
border:none;
margin-top:20px;
}

.category-grid-products tr
{
border:none;
}

.category-grid-products td
{
border:none;
width:20%;
float:left;
margin-right:4%;
padding:0px;
}

.add-to-cart
{
text-align:center;
}

.add-to-cart .form-submit  /*login button*/
{
width:96px;
height:26px;
text-indent: -9000px;
font-size:0px;
cursor: pointer; /* hand-shaped cursor */
cursor: hand; /* for IE 5.x */
background-image: url(wrap/sites/all/themes/audubon/images/Add_to_Cart.png);
background-repeat: no-repeat;
background-position: left top;
border:none;
background-color:transparent;
margin-top:5px;
}

.add-to-cart .form-submit:hover  /*login button*/
{
width:96px;
height:26px;
text-indent: -9000px;
font-size:0px;
cursor: pointer; /* hand-shaped cursor */
cursor: hand; /* for IE 5.x */
background-image: url(wrap/sites/all/themes/audubon/images/Add_to_Cart_O.png);
background-repeat: no-repeat;
background-position: left top;
border:none;
background-color:transparent;
margin-top:5px;
}

/***** Product Sub page **********/

.lightbox-processed .product-image
{
float:left;
clear:both;
display:block;
margin:0;
padding:0;
}

.lightbox-processed .product-info .uc-price-product
{
float:left;
clear:both;
display:block;
text-align:left;
margin:0;
padding:0;
}

.lightbox-processed .product-info.model
{
float:left;
display:block;
clear:both;
margin-bottom:20px;
}

.lightbox-processed .terms
{
display:block;
margin:0 0 10px 0;
}

.lightbox-processed .terms .links
{
padding:0;
text-indent:0;

}

.lightbox-processed .terms .links li
{
margin:0;
padding:0;
}

.lightbox-processed .terms .links li a
{
font-size:12px;
border-right:1px solid #d6d6d6;
padding:0 10px 0 10px;
margin:0;
}

.lightbox-processed .terms .links li.last a
{
border:none;
}

.lightbox-processed .terms .links li.first a
{
padding:0 10px 0 0;
}

.lightbox-processed .product-info .uc-price-product
{
font-size:16px;
font-weight:bold;
color:#091e35;
display:block;
clear:both;
margin:10px 0;
}
.page-shop-products-product-2.lightbox-processed .add-to-cart .form-submit, .page-shop-products-product-1.lightbox-processed .add-to-cart .form-submit
{

display:block;
clear:both;
margin:10px 0;
}

.lightbox-processed #content img.category
{
display:none;
}

.page-shop table.category
{
margin-top:25px;
width:100%;
}

.page-shop table.category tr
{
background-color:#fff;
}

.page-shop table.category td
{
width:25%;
float:left;
padding: 0;
}

.section-shop .content p
{
display:block;
clear:both;
}




/***************** Cart *****************/


#cart-form-products
{
border:none;
}

#cart-form-products th
{
border-bottom:1px solid #d6d6d6;
padding-bottom:5px;
}


#cart-form-products .tableHeader-processed th, #cart-form-products .subtotal strong
{
color:#666;
font-weight:normal;
}

#cart-form-products td
{
padding:10px 0;
}

#cart-form-products .subtotal
{
border-top:1px solid #d6d6d6;
}

#cart-form-products .price .uc-price
{
font-size:12px;
font-weight:normal;
}

#cart-form-products .subtotal .uc-price
{
font-size:16px;
font-weight:bold;
color:#333;
}

#cart-form-products .qty input
{
margin-right:20px;
}

#cart-form-buttons
{
border:none;
padding:20px 0;
}

.section-cart div.messages
{
padding:1em 1em .25em 1em;
}

.section-cart div.status
{
background-image:none;
}


#cart-form-buttons #edit-checkout
{
width:86px;
height:26px;
text-indent: -1000em;
font-size:0px;
cursor: pointer; /* hand-shaped cursor */
cursor: hand; /* for IE 5.x */
background-image: url(wrap/sites/all/themes/audubon/images/checkout.png);
background-repeat: no-repeat;
background-position: left top;
background-color:transparent;
border:none;
margin:10px;
padding:0px;
}

#cart-form-buttons #edit-checkout:hover
{
width:86px;
height:26px;
text-indent: -1000em;
font-size:0px;
cursor: pointer; /* hand-shaped cursor */
cursor: hand; /* for IE 5.x */
background-image: url(wrap/sites/all/themes/audubon/images/checkout_O.png);
background-repeat: no-repeat;
background-position: left top;
background-color:transparent;
border:none;
margin:10px;
padding:0px;
}

#cart-form-buttons #continue-shopping-link
{
text-align:left;
padding:0px;
}

#cart-form-buttons #continue-shopping-link a
{
display:block;
padding: 26px 0 0 0;
overflow: hidden;
background-image: url(wrap/sites/all/themes/audubon/images/continue_shopping.png);
background-repeat: no-repeat;
height: 0px !important;
height /**/:26px;
width: 133px;
}

#cart-form-buttons #continue-shopping-link a:hover
{
background-image: url(wrap/sites/all/themes/audubon/images/continue_shopping_O.png);
}

#cart-form-buttons #edit-update
{
width:89px;
height:26px;
text-indent: -1000em;
font-size:0px;
color:#999;
text-align:center;
text-align:left;
cursor: pointer; /* hand-shaped cursor */
cursor: hand; /* for IE 5.x */
background-image: url(wrap/sites/all/themes/audubon/images/update_cart_O.png);
background-repeat: no-repeat;
background-position: left top;
background-color:transparent;
border:none;
padding:0px;

}

#cart-form-buttons #edit-update:hover
{
width:89px;
height:26px;
text-indent: -1000em;
font-size:0px;
color:#999;
text-align:center;
text-align:left;
cursor: pointer; /* hand-shaped cursor */
cursor: hand; /* for IE 5.x */
background-image: url(wrap/sites/all/themes/audubon/images/update_cart.png);
background-repeat: no-repeat;
background-position: left top;
background-color:transparent;
border:none;
padding:0px;
}





/******************* checkout *********************/

#uc-cart-checkout-form .fieldset-wrapper /*** Gets rid of scroll bar ***/
{
padding:15px;
}

#uc-cart-checkout-form .description p
{
font-size:13px;
}

.cart-review .tableHeader-processed tr, .cart-review th.qty
{
border-bottom:1px solid #d6d6d6;
}

.cart-review .tableHeader-processed th
{
color:#666;
font-weight:normal;
text-align:left;
}

.cart-review .tableHeader-processed th.price
{
color:#666;
font-weight:normal;
display:block;
}

.cart-review .subtotal
{
color:#666;
border-top:1px solid #d6d6d6;
}

.cart-review .tableHeader-processed .price .uc-price
{
color:#666;
font-weight:normal;
}

.cart-review #subtotal-title
{
font-weight:normal;
}

.cart-review .subtotal .uc-price
{
font-size:16px;
font-weight:bold;
color:#333;
}

#uc-cart-checkout-form label, #uc-cart-checkout-form .field-label
{
color:#4d391d;
font-weight:normal;
}

#uc-cart-checkout-form #checkout-form-bottom
{
border:none;
}

#uc-cart-checkout-form #edit-continue
{
width:74px;
height:26px;
text-indent: -1000em;
font-size:0px;
text-align:left;
cursor: pointer; /* hand-shaped cursor */
cursor: hand; /* for IE 5.x */
background-image: url(wrap/sites/all/themes/audubon/images/checkout_review.png);
background-repeat: no-repeat;
background-position: left top;
background-color:transparent;
border:none;
padding:0px;
}

#uc-cart-checkout-form #edit-continue:hover
{
width:74px;
height:26px;
text-indent: -1000em;
font-size:0px;
text-align:left;
cursor: pointer; /* hand-shaped cursor */
cursor: hand; /* for IE 5.x */
background-image: url(wrap/sites/all/themes/audubon/images/checkout_review_O.png);
background-repeat: no-repeat;
background-position: left top;
background-color:transparent;
border:none;
padding:0px;
}

#uc-cart-checkout-form #edit-cancel
{
width:74px;
height:26px;
text-indent: -1000em;
font-size:0px;
text-align:left;
cursor: pointer; /* hand-shaped cursor */
cursor: hand; /* for IE 5.x */
background-image: url(wrap/sites/all/themes/audubon/images/checkout_cancel.png);
background-repeat: no-repeat;
background-position: left top;
background-color:transparent;
border:none;
padding:0px;
}

#uc-cart-checkout-form #edit-cancel:hover
{
width:74px;
height:26px;
text-indent: -1000em;
font-size:0px;
text-align:left;
cursor: pointer; /* hand-shaped cursor */
cursor: hand; /* for IE 5.x */
background-image: url(wrap/sites/all/themes/audubon/images/checkout_cancel_O.png);
background-repeat: no-repeat;
background-position: left top;
background-color:transparent;
border:none;
padding:0px;
}


/*****************************
 * Support
 *****************************/

.not-front #squeeze .item-list ul li
{
background-image:none;
}

.not-front #squeeze .item-list ul li.views-row-odd
{
clear: left;
}

/*****************************
 * MEDIA RESOURCES ELEMENTS
 *****************************/

.not-front #squeeze #attachments
{
width:250px;
}

.not-front #squeeze #attachments thead
{
display:none;
}

.not-front #squeeze #attachments tr
{
background:none;
border:none;
}

.not-front #squeeze #attachments td
{
width:150px;
float:left;
height:27px;
}

.not-front #squeeze #attachments td a
{
font-weight:bold;
}

.not-front #squeeze #attachments td a[href$=".pdf"]:before{
content: url(images/pdf_icon.png)
}

.not-front #squeeze #attachments td a[href$=".png"]:before{
content: url(images/pic_icon.png);
}

.not-front #squeeze #attachments td a[href$=".gif"]:before{
content: url(images/pic_icon.png);
}

.not-front #squeeze #attachments td a[href$=".jpg"]:before{
content: url(images/pic_icon.png);
}

.not-front #squeeze #attachments td a[href$=".docx"]:before{
content: url(images/word_icon.png);
}




.page-media-releases #squeeze .item-list ul li, .page-media-resources #squeeze .item-list ul li
{
list-style:none;
list-style-type:none;
float:none;
margin:0;
padding-top:10px;
display:block;
}


/*****************************************
 * MEDIA ELEMENTS and Audubon eNewsletter
 ****************************************/

.not-front #squeeze .press_releases
{
margin-bottom:25px;
}

.not-front #squeeze .press_releases p
{
font-size:12px;
line-height:1.6em;
}

.not-front #squeeze .press_releases p.date
{
color:#666666;
margin:0px;
}


/*****************************************
 * ATTRACTIONS AND HIGHTLIGHTS
 ****************************************/

.not-front #squeeze .two_column_left, .not-front #squeeze .two_column_right
{
width:335px;
float:left;
}

.not-front #squeeze .two_column_left
{
border-right:1px solid #666;
margin-right:20px;
}

.not-front #squeeze .two_column_block
{
padding-right:20px;
}

.not-front #squeeze .two_column_block .fpo
{
width:95px;
height:95px;
background-color:#999999;
float:left;
}

.not-front #squeeze .two_column_block .two_column_descript
{
margin-left:115px;
}

.not-front #squeeze .two_column_block .two_column_descript p
{
font-size:12px;
line-height:1.6em;
}





/*****************************
 * FORM STYLES
 *****************************/


  input, textarea, textfield
  {
    margin: 0;
    color: #000;
    padding: 1px;
    font-size: 11px;
  }

  input.form-checkbox, input.form-radio
  {
    border: none;
  }

  #search .form-text, #user-login-form .form-text
  {
    color: #444;
    padding: 2px;
  }

  .form-submit, .button
  {
    /*padding: 1px;*/
  }

  #search .button,
  #search .form-submit,
  #user-login-form .button,
  #user-login-form .form-submit
  {
    /*background-color: #68A0D9;
    color: #fff;
    font-weight: bold;
	border:none;*/
  }

  #user-login-form
  {
    text-align: left;
  }

  #user-login-form .item-list ul
  {
    margin-top: 0;
    padding-bottom: 0;
  }

/*
 * OpenID
 *
 * The default styling for the OpenID login link seems to assume Garland's
 * styling of list items.
 */
  #user-login-form li.openid-link, /* The "Log in using OpenID" links. */
  #user-login li.openid-link
  {
    margin-top: 1em;
    margin-left: 0;
  	padding-left: 1.5em;
  	background-position: left center;
  }

  #user-login-form li.user-link, /* The "Cancel OpenID login" links. */
  #user-login li.user-link
  {
    margin-top: 1em;
  }

  #user-login li.user-link /* The Cancl OpenID link on the /user form. */
  {
    margin-left: 0;
  }

/*
 * ALERTS, STATUS, HELP MESSAGE STYLES
 */

  div.messages
  {
    padding:1em 1em .25em 1em;
    border-width: 2px;
    margin: 10px 0;
  }

  div.status
  {
    border: 2px solid #ddd;
    background-color: #eee;
	background-image:none;
  }

  div.messages ul
  {
    padding: 0 0 0 20px;
    margin: 0;
  }





/*****************************
 * FOOTER STYLES
 *****************************/

#footer-wrapper
  {
	width:990px;
	margin-right:auto;
	margin-left: auto;
  }

#footer
{
	height:170px;
	margin-right: 5px;
	margin-left: -5px;
	color:#251702;
	background-color: #eaf1f9;
    text-align: center;
    padding: 20px;
}


#footer h2
{
font-size:14px;
}

#footer ul li a, #footer p
{
line-height:18px;
font-size:11px;
font-weight:normal;
}


#footer .block-inner
{
float:left;
padding-right:55px;
}

#footer .content ul li
{
list-style-image: none;
	list-style-type: none;
	padding:0px;
	margin:0px;
}

#footer .content ul
{

	padding:0px;
	margin:0px;
}



  #footer a
  {
    color: #251702;
  }

  #footer a:hover
  {
	  color:#AA1C09;
	  text-decoration: underline;
  }
   #footer img a:hover
  {
	  text-decoration: none;
  }

/*  #footer img.drupal-powered
  {
    position: relative;
    top: .3em;
  }*/

  #footer .block
  {
    text-align: left;
	float:left;
  }

  #footer div.block div.edit
  {
    background-color: #2763A5;
  }

#footer #block-menu-menu-footer-attractions-menu {
	margin-right: -15px;
}


/******** footer icons ************/

#footer #block-block-21 ul li a, #footer #block-block-21 h2
{
color:#091E35;
}

#footer #block-block-21 ul li
{
text-indent:20px;
display:block;
}

#footer #block-block-21 .content .menu .first
{
background:url("wrap/sites/all/themes/audubon/images/footer_subscribe.png") no-repeat left center;
}

#footer #block-block-21 .content .menu li
{
background:url("wrap/sites/all/themes/audubon/images/footer_email.png") no-repeat left center;
}

#footer #block-block-21 .content .menu .last
{
background:url("wrap/sites/all/themes/audubon/images/footer_print.png") no-repeat left center;
}


/*********** footer seach bar *******************/

#footer #block-block-1 p
{
clear:both;
}

#footer #block-block-1
{
width: 225px;
}

#footer #block-block-1 img:hover {
	text-decoration: none;
}






/*****************************
 * ADMIN STYLES
 *****************************/

  .admin-panel
  {
    margin: 0;
    padding: 0;
  }

  .admin-panel .body
  {
    background-color: #eee;
    border: solid #6191C5 1px;
  }

  .admin-panel .body dl, .admin-panel .body p
  {
    padding: 10px;
  }

  .admin-panel h3
  {
    margin-bottom: 0;
    padding: 5px 5px 5px 30px;
    font-family: Verdana, "Bitstream Vera Sans", Arial, Helvetica, sans-serif;
    font-size: 122%;
    color: #fff;
    border-width: 0 2px 2px 2px;
  }

  table tr.odd
  {
    background: #ddd;
  }

  td.icon
  {
    text-align: center;
  }

#sidebar-right #block-user-1, #sidebar-right #block-user-1 a
{
background-color:#eaf1f9;
color: #251702;
}

#sidebar-right #block-user-1
{
padding:10px;
margin-left:10px;
}

/*
 * COMMENT STYLES
 */

  .comment
  {
    margin: 0 0 10px 0;
    padding: 10px;
    background: #EBF2F8;
  }

  .comment-unpublished
  {
    background-color: #FFF;
  }

  .comment-by-author
  {
    background: none;
    border: 1px solid #6191C5;
  }

  .comment  h3.title
  {
    font-size: 122%;
  }

  .comment  h3.title, .comment  h3.title a
  {
    color: #2266AB;
    font-weight: normal;
    font-family: "Trebuchet MS", "Bitstream Vera Sans", Verdana, Arial, Helvetica, sans-serif;
    margin-bottom: 3px;
    margin-top: 0;
  }

  .comment .picture, .node .picture
  {
    float: left;
    margin-right: 15px;
  }

  .node.node-unpublished .picture,
  .comment.comment-unpublished .picture
  {
    position: relative; /* Otherwise floated pictures will appear below the "Unpublished" text. */
  }

  .comment .new
  {
    color: #FFC600;
    font-weight: bold;
    font-family: "Trebuchet MS", "Bitstream Vera Sans", Verdana, Arial, Helvetica, sans-serif;
  }

  .comment .links
  {
    text-align: right;
  }

/*
 * POLL STYLES
 */

  .poll .bar .foreground
  {
    background: #2763A5;
  }

  .poll .bar
  {
    padding: 2px;
    background: #BDCBDD;
  }

/*
 * BOOK STYLES
 */

/*  div.node div.content .book-navigation
  {
    background: #eee;
    margin: 0;
    padding: 0;
  }

  div.node div.content .book-navigation ul.menu
  {
    border: 0;
    border-top: 1px solid #2763A5;
    margin: 0;
    padding-bottom: 10px;
  }

  div.node div.content .book-navigation .page-links
  {
    background: #C1D4EA;
    border: 1px solid #2763A5;
    border-width: 1px 0 1px 0;
    padding: 5px;
    margin: 0;
  }*/

/*
 * FORUM STYLES
 */

  #forum table
  {
    width: 100%;
  }

/*
 * Pager styles
 */

 /**********/
/* PAGERS */
/**********/
.pager {
  clear: both;
  margin: 20px 0 0 0;
  text-align: center;
}

.pager li {
  background-image: none;
  display: inline;
  width: auto !important;
  min-width: 20px;
  list-style-type: none;
  margin: 0 2px !important;
  padding: 0;
}

.pager a.active {
  color: #407DB3 !important;
  font-size: 13px;
  font-weight: normal;
  padding: 0px 8px;
  text-decoration: none; 
}

.pager li.pager-current,
.pager li.pager-current .last {
  background-color: #DADADA;
  border: 1px solid #CCC;
  color: #333;
  height: 24px !important;
  line-height: 16px!important;
  padding: 0px 8px;
}

.pager-first,
.pager-next,
.pager-previous,
.pager-item,
.pager-last {
  background-color:#EAf1F9;
  border: 1px solid #B1CEDB;
  padding: 0px 8px;
  height: 24px !important;
  line-height: 16px!important;
}

.pager-first:hover,
.pager-next:hover,
.pager-previous:hover,
.pager-item:hover,
.pager-previous:hover,
.pager-last:hover {
  background-color: #B9DDF2;
}

/*
 * Node, Block, Content styles
 */

  .node
  {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .node-unpublished div.unpublished, /* The word "Unpublished" displayed beneath the content. */
  .comment-unpublished div.unpublished
  {
    height: 0;
    overflow: visible;
    color: #d8d8d8;
    font-size: 75px;
    line-height: 1;
    font-family: Impact, "Arial Narrow", Helvetica, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    word-wrap: break-word; /* A very nice CSS3 property */
  }

  .node h2.title
  {
    margin-bottom: .1em;
  }

  .node h2.title a
  {
    color: #555;
    font-size: 129%;
    font-weight: normal;
    font-family: Verdana, Tahoma, Arial, Helvetica, "Bitstream Vera Sans", sans-serif;
    line-height: 1.4em;
  }

  .node .content
  {
    padding-top: 10px;
    padding-bottom: 5px;
  }

  .sticky
  {
    border-bottom: solid 3px #ddd;
  }

 /* #sidebar-left .block,
  #sidebar-right .block
  {
    padding-bottom: 15px;
    margin: 0 0 1.5em 0;
  }*/

  #sidebar-left .block
  {
    padding-right: 15px;
  }

 /* #sidebar-right .block
  {
    padding-left: 15px;
  }*/

  .block .content
  {
    margin: 0.5em 0;
  }

  .block .item-list ul
  {
    padding-left: 0;
  }

/*
 * Status report colors.
 */

  table.system-status-report tr.error, table.system-status-report tr.error th
  {
    background-color: #fcc;
    border-color: #ebb;
    color: #200;
  }

  table.system-status-report tr.warning, table.system-status-report tr.warning th
  {
    background-color: #ffd;
    border-color: #eeb;
  }

  table.system-status-report tr.ok, table.system-status-report tr.ok th
  {
    background-color: #dfd;
    border-color: #beb;
  }

/* UberCart overrides */

#squeeze .summary-overview .item-list ul li
{
	float: none;
}



/************************** Leftover From Zen Classic  ******************************/


  /* "Skip to Main Content" link
   *
   * This link useful for both blind people and people with mobility impairments
   * who cannot use a mouse.
   */

  #skip-nav
  {
    display:none;
    margin: 0 !important;
    padding-left: 20px;
    font-size: 0.8em;
    line-height: 1;
  } 

  #skip-nav a
  {
    padding: 1px 10px;
  }

  #skip-nav a:link, #skip-nav a:visited
  {
    color: #ffffff; /* same as background color */
  }

  #skip-nav a:hover, #skip-nav a:active, #skip-nav a:focus
  {
    color: #ffffff;
    background: #2763A5;
    text-decoration: none;
  }


/*********************************
 * 404 PAGE STYLES
 ********************************/
body.page-404 #main
{
	background:none;
}

body.page-404 #breadcrumb, body.page-404 #squeeze h1.title
{
	display:none;
}
