/**
 * @file
 * Page Styling
 *
 * Style the markup found in page.tpl.php. Also includes some styling of
 * miscellaneous Drupal elements that appear in the $content variable, such as
 * ul.links, .pager, .more-link, etc.
 */


/*
 * Body
 */

body {
  margin: 0;
  padding: 0;
  background-color:#262520;
  background-position:center top;
  background-repeat:no-repeat;
  background-size:100%;
}

body.no-front { background-image:url('../images/about_background.jpg'); }


body.section-visit {
	background-image:url('../images/visit_background.jpg');
}

body.section-explore { background-image:url('../images/explore_background.jpg'); }
body.section-teachers { background-image:url('../images/teachers_background.jpg'); }
body.section-join { background-image:url('../images/join_background.jpg'); }

#page {
}

/*
 * The skip-link link will be completely hidden until a user tabs to the link.
 * See the element-focusable rule in system.base.css.
 */

#skip-link {
  margin: 0;
}
#skip-link a,
#skip-link a:visited {
  display: block;
  width: 100%;
  padding: 2px 0 3px 0;
  text-align: center;
  background-color: #666;
  color: #fff;
}

/*
 * Header
 */

#header {
}

#logo { /* Wrapping link for logo */
  float: left; /* LTR */
  margin: 0;
  margin-top:20px;
  padding: 0;
  padding-top:20px;
  background-image:url('../images/smv_logo.png');
  background-position:left top;
  background-repeat:no-repeat;
  width:228px;
  height:161px;
  position:relative;
  z-index:10;
}
body.not-front #logo {
	background-image:url('../images/smv_logo_small.png');
	width:180px;
	height:127px;
}
#logo img {
  vertical-align: bottom;
  display:none;
}

#name-and-slogan { /* Wrapper for website name and slogan */
  float: left;
}

#site-name { /* The name of the website */
  margin: 0;
  font-size: 2em;
  line-height: 1.5em;
}
#site-name a:link,
#site-name a:visited {
  color: #000;
  text-decoration: none;
}
#site-name a:hover,
#site-name a:focus {
  text-decoration: underline;
}

#site-slogan { /* The slogan (or tagline) of a website */
  margin: 0;
  font-size: 1em;
}


.region-header { }
body.front .region-header { /* Wrapper for any blocks placed in the header region */
	position:relative;
	z-index:20;
}

/*
 * Main (container for everything else)
 */

#main {
	background-color:#fff;
	margin-top:20px;
	border-radius:10px;
	margin-bottom:20px;
}
body.front #main { background-color:transparent; margin-bottom:0px; }
body.not-front #main {
	background-image:url('../images/sidebar_about.png');
	background-repeat:repeat-y;
	background-position:right top;
}
body.section-visit #main { background-image:url('../images/sidebar_visit.png');  background-repeat:repeat-y; background-position:right top; }
body.section-explore #main { background-image:url('../images/sidebar_explore.png');  background-repeat:repeat-y; background-position:right top; }
body.section-teachers #main { background-image:url('../images/sidebar_teachers.png');   background-repeat:repeat-y; background-position:right top; }
body.section-join #main { background-image:url('../images/sidebar_join.png');  background-repeat:repeat-y; background-position:right top; }

/*
 * Content
 */

#content {
	padding:10px 30px;
}
body.front #content {
	padding-bottom:0px;
}
.splash-graphic {
	border:3px solid #fff;
	-webkit-box-shadow: 0px 0px 3px 3px #b3b3b3;
	box-shadow: 0px 0px 3px 3px #b3b3b3;
	position:relative;
	z-index:10;
	width:483px;
	height:246px;
}
.splash-graphic .views-field-title {
	font-size:14px;
	background-image:url('../images/splash_graphic_title_bg.png');
	background-position:left top;
	background-repeat:repeat;
	position:absolute;
	bottom:0px;
	width:100%;
}
.splash-graphic .views-field-title .splash-graphic-title {
	display:block;
	padding:10px 15px;
	color:#fff;
}
.splash-graphic .views-field-title .splash-graphic-title a { color:#fff; }
.splash-content-join{
	color:#0054A6;
}
.splash-content-teachers{
	color:#6EA845;
}
.splash-content-join h1,
.splash-content-fieldTrip h1{
	font-weight: normal;
	text-transform:uppercase;
}
.splash-content-join li,
.splash-content-teachers p{
	font-size: 112%;
	padding-bottom: 5px;
}
.region-highlighted {
}

.breadcrumb { /* The path to the current page in the form of a list of links */
	display:none;
}
body.node-type-imax-show .breadcrumb,
body.node-type-event .breadcrumb,
body.node-type-exhibit .breadcrumb,
body.node-type-live-science-demonstration .breadcrumb
{ display:block; }

.breadcrumb ol {
  margin: 0;
  padding: 0;
  margin-bottom:10px;
}

body.section-visit .breadcrumb, body.section-visit .breadcrumb a {  
	color:#faa41a;
	font-size:14px;
}

body.node-type-imax-show #page-title { display:none; }

.breadcrumb li {
  display: inline;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

h1.title, /* The title of the page */
h2.node-title, /* Title of a piece of content when it is given in a list of content */
h2.block-title, /* Block title */
h2.title, /* Comment section heading */
h2.comment-form, /* Comment form heading */
h3.title { /* Comment title */
  margin: 0;
}
.imax-view-listing h3{
	background-color: #333;
    color: white;
    font-size: 1.5em;
    font-weight: normal;
    line-height: 1.282em;
    padding: 10px;
}

tr.even { /* Some tables have rows marked even or odd. */
  /* background-color: #eee; */ /* Drupal core uses a #eee background */
}

tr.odd {
  /* background-color: #eee; */ /* Drupal core uses a #eee background */
}

div.messages { /* Important messages (status, warning, and error) for the user. See also the declarations in messages.css. */
  margin: 1.5em 0; /* Drupal core uses "6px 0" margin */
}
div.messages ul {
  margin-top: 0;
  margin-bottom: 0;
}

div.status { /* Normal priority messages */
}

div.warning,
tr.warning { /* Medium priority messages */
  /* border: 1px solid #f0c020; */ /* Drupal core uses: 1px solid #f0c020 */
}

div.error,
tr.error { /* High priority messages. See also the .error declaration below. */
}

.error { /* Errors that are separate from div.messages status messages. */
  /* color: #e55; */ /* Drupal core uses a #e55 background */
}

.warning { /* Warnings that are separate from div.messages status messages. */
  /* color: #e09010; */ /* Drupal core uses a #e09010 background */
}

.tabs { /* See also the tabs.css file. */
}

.region-help { /* Help text on a page */
}

.more-help-link { /* Link to more help */
}

.region-content { /* Wrapper for the actual page content */
}

ul.inline { /* List of links generated by theme_links() */
  display: inline;
  padding: 0;
}
ul.inline li {
  display: inline;
  list-style-type: none;
  padding: 0 1em 0 0; /* LTR */
}

span.field-label { /* The inline field label used by the Fences module */
  padding: 0 1em 0 0; /* LTR */
}

.item-list .pager { /* A list of page numbers when more than 1 page of content is available */
  padding: 0;
}
.item-list .pager li { /* Each page number in the pager list */
  padding: 0 0.5em;
}

.feed-icon { /* The link to the RSS or Atom feed for the current list of content */
}

.more-link { /* Aggregator, blog, and forum more link */
}

.column p a:link{
	border-bottom:1px dotted;
}
.column p a:hover{
	border-bottom: 1px solid;
}
#block-block-41 p a:link {
	border-bottom:0px solid;
}
#block-block-41 p a:hover {
	border-bottom: 0px solid;
}
/*
 * First sidebar (on left in LTR languages, on right in RTL)
 *
 * Remember to NOT add padding or margin to your .region-sidebar-first
 * (see the layout.css file.)
 */

.region-sidebar-first {
}
body.not-front .region-highlighted .block.last, #block-block-22 {
	margin-top:30px;
	margin-left:10px;
	width:490px;
	float:left;
}

/*
 * Second sidebar (on right in LTR languages, on left in RTL)
 *
 * Remember to NOT add padding or margin to your .region-sidebar-second
 * (see the layout.css file.)
 */

.region-sidebar-second {
	padding-left:30px;
	padding-top:30px;
}

.section-visit .region-sidebar-second {
	
}

/*
 * Footer
 */

#footer {
}

.region-footer {
	background-image:url('../images/footer_exclusive_paper.png');
	background-repeat:repeat;
	background-position:left top;
}

/* Hours and Contact Information Homepage */
#block-block-5 { 
	float:right;
	width:280px;
	margin-top:20px
}
#block-block-5 p {
	margin-top:0px;
}
#block-block-5 h3 {
        font-size:16px;
        line-height:normal;
        margin:0px;
	font-weight:normal;
}
.contactInfo-hours {
	color:#0054a6;
	background-image:url('../images/footer_gear.png');
	background-repeat:no-repeat;
	background-position:left top;
	padding:10px;
	padding-left:20px;
	padding-bottom:0px;
	padding-top:5px;
}
.contactInfo-hours a {
	color:#0054a6;
	text-decoration:none;
	border-bottom:1px dotted #0054a6;
}
.contactInfo-hours a:hover {
	border-bottom:1px solid #0054a6;
}

.contactInfo-contact {
        color:#c84b89;
        background-image:url('../images/footer_starts.png');
        background-repeat:no-repeat;
        background-position:80px center;
        padding:10px;
        padding-left:20px;
	padding-top:0px;
}
.contactInfo-contact a {
        color:#c84b89;
        text-decoration:none;
        border-bottom:1px dotted #c84b89;
}
.contactInfo-contact a:hover {
        border-bottom:1px solid #c84b89;
}

.contactInfo-social {
        color:#d48b16;
        background-image:url('../images/footer_lightbulb.png');
        background-repeat:no-repeat;
        background-position:140px center; 
        padding:10px;
        padding-left:20px;
        padding-top:0px;
}
.contactInfo-social a {
        color:#d48b16;
        text-decoration:none;
}
.contactInfo-social a .linkText { border-bottom:1px dotted #faa41a; }
.contactInfo-social a:hover .linkText { border-bottom:1px solid #faa41a; }

.socialLink {
	display:block;
        padding:3px 0px 5px 24px;
        background-image:url('../images/icons/facebook.png');
        background-position:2px center;
        background-repeat:no-repeat;
}
.socialLink.facebook { background-image:url('../images/icons/facebook.png'); }
.socialLink.googleplus { background-image:url('../images/icons/googleplus.png'); }
.socialLink.youtube { background-image:url('../images/icons/youtube.png'); }
.socialLink.twitter { background-image:url('../images/icons/twitter.png'); }

.contactInfo-parking {
        color:#298624;
        background-image:url('../images/footer_orbit.png');
        background-repeat:no-repeat;
        background-position:200px center;
        padding:10px;
        padding-left:20px;
	padding-right:20px;
	padding-top:0px;
}
.contactInfo-parking a {
        color:#298624;
        text-decoration:none;
        border-bottom:1px dotted #298624;
}
.contactInfo-parking a:hover {
        border-bottom:1px solid #298624;
}
.data-point-link {
	display:block;
	padding:3px 0px 5px 22px;
	background-image:url('../images/icons/datapoint-icon-transparent.png');
	background-position:2px center;
	background-repeat:no-repeat;
	border-bottom:0px solid #fff !important;
}
.data-point-link .linkText { border-bottom:1px dotted #298624; }
.data-point-link:hover { border-bottom:0px solid #fff !important; }
.data-point-link:hover .linkText { border-bottom:1px solid #298624; }
/* Footer Navigation Menu */

#footer .block-menu-block {
	float:left;
	margin-top:30px;
	margin-right:60px;
}
#footer .block-menu-block.last { margin-right:0px; }
#footer .block-menu-block ul.menu {
	padding-left:0px;
	padding-top:0px;
	margin-top:0px;
	margin-left:0px;
}
#footer .block-menu-block a {
	color:#515151;
	text-decoration:none;
}
#footer .block-menu-block a:hover {
	color:#000;
}
#footer .block-menu-block a:visited {
	color:#515151;
}
#footer .block-menu-block li {
	padding:10px;
	padding-left:0px;
}

#footer .block-menu-block h2.block-title {
	margin:0px;
	padding:0px;
}
#footer .block-menu-block h2.block-title a {
	display:block;
	padding-bottom:2px;
	border-bottom:3px solid #ccc;
	margin-bottom:0px;
	line-height:normal;
	text-transform:uppercase;
	font-weight:normal;
	font-size:22px;
}

#block-menu-block-3 h2.block-title a { border-color:#faa41a !important; }
#block-menu-block-4 h2.block-title a { border-color:#dc3a79 !important; }
#block-menu-block-5 h2.block-title a { border-color:#4eb848 !important; }
#block-menu-block-6 h2.block-title a { border-color:#0095d5 !important; }

/*
 * Page bottom
 */

.region-bottom { /* Wrapper for any blocks placed in the page bottom region */
}


/********* Custom Entries ***********************/

/* HOMEPAGE SLIDESHOW */
.homepage-slider-block {
	height:320px;
}
body.front #block-views-homepage-slider-block, body.front #views_slideshow_cycle_teaser_section_homepage_slider-block, body.front #main, #background-slider .views_slideshow_slide {
        position:static !important;
}
.views_slideshow_cycle_teaser_section {
	width:500px !important; 
}
.views_slideshow_cycle_slide {
	z-index:0 !important;
}
.slider-background-image-itself {
	position:absolute;
	top:0px;
	left:0px;
	width:100% !important;
	height:1127px;
	z-index:0;
	background-position:center top;
	background-repeat:no-repeat;
}
.slideshow-nav-container {
	height:35px;
        display:block;
	float:left;
	position:absolute;
	top:500px;
	left:50%;
	margin-left:-50px;
}
.view-visit-slider .view-footer {
	margin-top:-100px;
}
.slideshow-nav-contentpage-container {
	height:35px;
	position:absolute;
	right:10px;
	bottom:0px;
}
.slideshow-nav-left {
	background-image:url('../images/slideshow_nav_left.png');
	background-repeat:no-repeat;
	background-position:left 1px;
	float:left;
	height:35px;
	width:14px;
}
.slideshow-nav-right {
	background-image:url('../images/slideshow_nav_right.png');
        background-repeat:no-repeat;
        background-position:left 1px;
	float:left;
	height:35px;
	width:15px;
}
#slideshow-nav {
	float:left;
	background-image:url('../images/slideshow_nav_middle.png');
        background-repeat:repeat-x;
        background-position:left top;
}
#slideshow-nav a {
	display:inline-block;
	height:35px;
	padding-left:5px;
	padding-right:5px;
	width:11px;
	background-image:url('../images/navigation_slide_marker.png');
	background-position:center center;
	background-repeat:no-repeat;
	text-indent:-999em;
}
#slideshow-nav a.activeSlide {
	background-image:url('../images/navigation_slide_marker_active.png');
}
#slideshow-nav a:focus {
	  outline:none;
}

.view-homepage-slider .views-field-field-slider-link {
	position:absolute !important;
	z-index:5;
        top:200px;
	left:50%;
	width:960px;
	margin-left:-480px;
}
.view-homepage-slider .views-field-field-slider-link a {
	display:block;
	height:300px;
	border:0px solid #fff;
	width:100%;
}

.featured-content, .exhibit-preview {
	position:relative;
}

.featured-content .views-row,
#block-views-out-of-this-world-block-1,
#block-views-the-body-human-block-1,
#block-views-question-power-block-1,
#block-views-creatures-block-1,
#block-views-idea-factory-block-1,
#block-block-41 {
	float:left;
	width:180px;
	border:1px solid #e1e1e1;
	background-color:#f8f5f1;
	margin-right:10px;
	padding:10px;
	height:280px;
	position:relative;
}
#block-block-44 .views-row {
	height:180px;	
}
#block-block-41 {
	height:320px;
}
#block-views-happening-now-block .featured-content .views-row {
        float:left;
        width:257px;
        height:257px;
        background-image:url('../images/homepage_picture_frame.png');
        background-position:left top;
        background-repeat:no-repeat;
	background-color:transparent;
	border:0px solid #fff;
        margin-right:2px;
        margin-left:2px;
        padding:3px 0px 0px 16px;
        position:relative;
}

#block-views-out-of-this-world-block-1,
#block-views-the-body-human-block-1,
#block-views-question-power-block-1,
#block-views-creatures-block-1,
#block-views-idea-factory-block-1 { height:320px; }

#block-block-41 p {
	font-size:30px;
	line-height:75px;
	text-align:center;
	margin-top:50px;
}
.exhibit-preview .views-row {
	padding:0px !important;
	margin:0px !important;
	border:0px !important;
}
.featured-content .views-field-type {
	color:#666;
	font-size:10px;
	padding:0 0 6px;
	letter-spacing: 0.1em;
    text-transform: uppercase;
}
.featured-content .views-field-field-image img, .exhibit-preview img {
	border:1px solid #484847;
}
#block-views-happening-now-block .featured-content .views-contant {
	border:1px solid #8c8c8c;
	margin:11px;
	margin-left:0px;
	width:223px;
	height:198px;
	overflow:hidden;
	position:relative;
	cursor:default;
	background-image:url('../images/photo_inlay.png');
	background-position:center center;
	background-repeat:no-repeat;
}
#block-views-happening-now-block .featured-content .views-contant .mask {
	width: 203px;
	height: 168px;
	position: absolute;
	overflow: hidden;
	padding:15px 10px;
	top: 0;
	left: 0;
	text-align:center;
}
#block-views-happening-now-block .featured-content .views-contant img {
	display: block;
   	position: relative;
	border:0px solid #fff;
}
#block-views-happening-now-block .views-contant:hover .views-field-title {
	position:relative;
	font-weight:bold;
	display:block;
	padding-bottom:5px;
	margin-bottom:5px;
	border-bottom:1px solid #333;
}
#block-views-happening-now-block .views-contant:hover .views-field-field-date-s- {
	position:relative;
}
#block-views-happening-now-block .views-contant:hover .views-field-body {
	position:relative;
}
#block-views-happening-now-block .views-contant:hover .views-field-view-node a {
	position:relative;
}
.featured-content .views-field-title a, .exhibit-preview h2.exhibit-topic-title a {
	font-size:14px;
	color:#000;
	font-weight:normal;
}
.exhibit-preview h2.exhibit-topic-title {
	margin-top:0px;
	margin-bottom:0px;
}

.featured-content .views-field-view-node a {
	color:#fff;
	background-image:url('../images/button_learnmore.png');
	background-position:left top;
	background-repeat:no-repeat;
	display:inline-block;
	padding:5px;
	padding-top:3px;
	padding-bottom:7px;
	width:78px;
	text-align:center;
}
#block-views-happening-now-block .featured-content .views-field-view-node a {
	margin-left:55px;
}
.featured-content .views-row .views-field-view-node {
	position:absolute;
	bottom:5px;
}
.featured-content .views-row .views-field-nid {
	position:absolute;
	bottom:5px;
	right:10px;
}
.featured-content .views-row .views-field-uid {
        position:absolute;
        bottom:5px;
	right:35px;
}
.featured-content p {
	margin-top:10px;
	margin-bottom:10px;
}
#block-views-happening-now-block {
	position:static !important;
}
#block-views-happening-now-block .featured-content {
	background-image:url('../images/homepage_desk_trey.png');
	background-repeat:no-repeat;
	background-position:center bottom;
	height:330px;
	padding:30px 0px 20px 0px;
	width:1091px;
	position:absolute;
	top:550px;
	left:50%;
	margin-left:-545px;
}
#block-views-happening-now-block .featured-content .view-content {
	margin-left:125px;
}
#block-views-happening-now-block .featured-content .views-row {
	margin-right:15px;	
}

#block-views-happening-now-block .marble {
	width:50px;
	height:50px;
	background-image:url('../images/marble_blue.png');
	background-position:center center;
	background-repeat:no-repeat;
	position:absolute;
	z-index:30;
	left:50%;
	margin-left:-25px;
	bottom:80px;
}
#block-views-happening-now-block .marble1 {
	background-image:url('../images/marble_red.png');
	margin-left:-325px;
}
#block-views-happening-now-block .marble3 {
        background-image:url('../images/marble_green.png');
        margin-left:265px;
}
.featured-content .views-row-last {
        margin-right:0px;
}


#block-views-featured-events-homepage-block {
	background-image:url('../images/Featured Event_60Degree.png');
	background-position:left top;
	background-repeat:repeat;
	-webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
	margin-bottom:0px;
	margin-top:370px;
	padding:20px;
	padding-bottom:40px;
	position:relative;
	z-index:10px;
}
#block-views-featured-events-homepage-block h2.block-title {
	float:left;
	font-size:22px;
	text-transform:uppercase;
	font-weight:normal;
	color:#0054a6;
	margin-bottom:5px;
}
#block-views-featured-events-homepage-block .view-header {
	float:right;
	width:410px;
}
#block-views-featured-events-homepage-block .views-row {
	clear:left;
}
#block-views-featured-events-homepage-block .views-row-first {
	margin-bottom:20px;
}
#block-views-featured-events-homepage-block .views-row .views-field-field-date-s- {
	color:#dc3a79;
	font-size:18px;
} 

#block-views-featured-events-homepage-block .views-row .views-field-title a {
	color:#333;
	font-size:13px;
	font-weight:bold;
}
#block-views-featured-events-homepage-block .views-row .views-field-field-image {
	float:left;
	width:120px;
	min-height:100px;
}
#block-views-featured-events-homepage-block .views-row .views-field-field-image img {
	border:3px solid #fff;
        -webkit-box-shadow: 0px 0px 3px 3px #b3b3b3;
        box-shadow: 0px 0px 3px 3px #b3b3b3;
}

#block-views-featured-events-homepage-block .views-row .views-field-body p {
	margin-top:0px;
}
#block-views-featured-events-homepage-block .more-link {
	text-align:left;
	padding-left:120px;
}
#block-views-featured-events-homepage-block .more-link a {
	border-bottom:1px dotted #333333;
}
#block-views-featured-events-homepage-block .more-link a:hover {
        border-bottom:1px solid #333333;
}



#triptych {
	background-image:url('../images/main_bottom_trim.png');
	background-repeat:repeat-x;
	background-position:left bottom;
	min-height:10px;
}
.region-triptych {
	padding:10px;
	background-image:url('../images/homepage_swirl.png');
	background-repeat:no-repeat;
	background-position:right -80px;
}
.region-triptych h2.block-title {  
	font-size:30px;
/* 	color:#ef3f23; */
	color:#298624;
	text-transform:uppercase;
}

.support-item { 
	background-image:url('../images/support_ellipse.png');
	background-repeat:no-repeat;
	background-position:left top;
	text-align:center;
	color:#fff !important;
	display:inline-block;
	margin-right:10px;
	margin-left:30px;
	padding-top:55px;
	font-size:15px;
	width:134px;
	height:114px;

}

.image-hidden { display:none; }
a.buy-tickets-button, .views-field-field-ticket-purchase-link a {
	color:#fff !important;
	text-transform:uppercase;
	font-size:12px;
	font-weight:bold;
	display:block;
	background-image:url('../images/buy-tickets-bg.jpg');
	background-position:left top;
	background-repeat:repeat-x;
	padding:5px 15px;
	border:1px solid #fbd88c !important;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
a.imax-trailer-link {
	height:44px;
	width:169px;
	display:block;
	text-indent:-999px;
	background-image:url('../images/watch_trailer_button.png');
	border:0px solid #fff;
}

.plan-field-trip-header-container {
	padding-left:50px;
	background-image:url('../images/smv_gear.png');
	background-position:left 10px;
	background-repeat:no-repeat;
	padding-top:20px;
}
.plan-field-trip-header {   
	font-size:20px;
	color:#3884c0;
}
#block-views-0ea056b7cdc11bec3cef9aea7f871428 h2.block-title, #block-views-ae3729f57040f802a07465f64fa2f475 h2.block-title {
	color:#0773df;
	font-size: 16px;
    font-weight: normal;
	font-family: "AvantQue","Lucidia Sans","Lucida Sans Unicode","Lucida Grande",Verdana,Tahoma,sans-serif;
    letter-spacing: -1px;
	margin-top:10px;
	text-align:center;
}

#block-views-0ea056b7cdc11bec3cef9aea7f871428 { width:420px; margin-right:10px; float:left; }
#block-views-ae3729f57040f802a07465f64fa2f475 { width:220px; float:left; }


table.info-table {
	border-width: 0px;
	border-spacing: 0px;
	border-style: solid;
	border-color: gray;
	border-collapse: collapse;
	width:100%;
}
table.info-table thead th {
	border-bottom: 5px solid #d6d6d6;
	padding: 5px;
	text-align:center;
	color:#003366;
	font-weight:normal !important;
	font-size:12px;
}
table.info-table tbody th {
	text-align:left;
	color:#333333;
	font-weight:normal;
}
table.info-table td {
	border-width: 0px;
	padding: 5px;
	border-style: inset;
	border-color: gray;
	color:#333333;
	text-align:center;
}
table.info-table tr.alternate {
	background-color:#f3f3f3
}

#block-views-event-calendar-block-2 h2.block-title {
    Color:#FFF;
	font-size: 16px;
    font-weight: normal;
    margin-bottom: 0;
    padding-bottom: 0;
    text-shadow: 1px 1px 3px rgba(101, 101, 101, 0.5);
    text-transform: uppercase;
}
#block-blog-recent h2.block-title {
    Color:#FFF;
	font-size: 16px;
    font-weight: normal;
    margin-bottom: 0;
    padding-bottom: 0;
    text-shadow: 1px 1px 3px rgba(101, 101, 101, 0.5);
    text-transform: uppercase;
}
.clearer {  display:block;clear:both; }

.view-table-style .views-table td {
	padding:5px;
}

.view-table-style .views-table tr.even { background-color:#fff; }
.view-table-style table.views-table {
	width:100%;
}
.views-table caption{
	border-bottom: 2px solid #6EA845;
	color: #6EA845;
	font-size:16px;
	padding-bottom:5px;
	text-align: left;
	text-transform: uppercase;
}
.view-explore-splash-interface h3 { display:none; }

.view-blog h3 { margin-bottom:5px; margin-top:5px; } 
.view-blog .views-row .views-field-title {
	margin-bottom:20px;	
}
.view-blog .views-row .views-field-nid { text-align:right;margin-bottom:10px; }
.view-blog .views-row .views-field-nid a { border-bottom:1px dotted #333; }
.view-blog .views-row .views-field-field-topics { font-size:10px; line-height:14px; color:#666 !important; }
.view-blog .views-row .views-field-field-topics a { color:#999 !important; }
.view-blog .views-row .views-label-field-topics { font-weight:bold; }
.clearLeft { clear:left; }
/* test */

/* Social Media Links Overrides */

.addthis_floating_style {
	background-color:transparent !important;
	position:relative !important;
}

/* One time exception - Boost Exhibit */

.node-exhibit .field-type-image { display:none; }
#block-blog-recent .more-link { display:none; }
