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

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

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

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

body {
}

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

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

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

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

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

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

	
/**********************************************************
 *                  The wrapper divs
 *    Be careful how you modify these, see layout.css
 **********************************************************/
/**
 * Width Setting
 *
 * Genesis supports Elastic, Fluid and Fixed width values.
 * Elastic layouts are dynamic and will expand or contract when 
 * the font size is changed. Fluid widths change when the browser 
 * is resized and fixed width layouts stay the same width even 
 * when the broswer is resized or the font size is changed.
 *
 * Elastic layouts use ems,       e.g. 80em
 * Fluid layouts use percentages, e.g. 85%
 * Fixed widths use pixels,       e.g. 960px
 */
#container {
  width: 984px;     /* Width for IE6 */
  background-color: #f9f9f4;
  border-left: 5px solid #fff;
  border-right: 5px solid #fff;
  border-bottom: 5px solid #fff;
  -webkit-box-shadow: 0px 0px 20px 2px #444;
  -moz-box-shadow: 0px 0px 20px 2px #444;
  box-shadow: 0 0 20px 0 #444444;
}

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


/* Content wrappers */
#content-column {}
.content-inner {}
#genesis-3c .two-sidebars .content-inner {margin-left: 440px;}

/* Main content wrappers*/
#main-content {margin-right: 30px;}
#content {}


/**********************************************************
 *                       Regions
 **********************************************************/
/* Target all regions with this low specifity selector. */
.region {}
.region-inner {}

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

/* Header blocks region is embedded in the header, floated
   between the logo/site_name and the search box. */
#header-blocks {
  clear: both;
  float: left;
  width: 100%;
}
#header-blocks .region-inner {}

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

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

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


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

/* Target a specific sidebar, inner or sidebar-inner. */
#sidebar-left {}
#sidebar-left .sidebar-inner {
padding-right: 24px;}

#sidebar-right {}
#sidebar-right .sidebar-inner {}


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

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

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

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


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

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

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


/**********************************************************
 *                 Header Elements
 **********************************************************/
/* #header wraps #branding, #search-box-top and #header-blocks. */
#header {
    border-bottom: 4px solid #fff;
    padding: 24px 0 0;
}

/* #branding wraps #logo, #site-name and #site-slogan. */
#branding {
  float: left; /* LTR */
  width: 670px;
}

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

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

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

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

/* Logo. */
#logo {
    float: left;
    padding: 0 20px 10px 50px;
}

#site-name {
    display: block;
    float: left;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 30px;
    font-weight: bold;
    margin-top: 11px;
    text-decoration: none;
    width: 450px;
}

/* Override default pseudo class styles. */
#site-name a:link    {
    color: #995030;
    text-decoration: none;
}
#site-name a:visited {color: #995030;}
#site-name a:hover   {}
#site-name a:focus   {}
#site-name a:active  {}

/* Site slogan. */
#site-slogan {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-size: 14px;
font-weight: bold;
text-decoration: none;
line-height: 2.3em;
letter-spacing: +.1em;
word-spacing: +.1em;
color: #888;
float: left;
}


/**********************************************************
 *    Search box, Advanced search form, Search results
 *          For the search block see blocks.css
 **********************************************************/
/**
 * Search box
 */
/* Float the serch box right. */
#search-box {
  float: right; /* LTR */
  margin: 0 14px 0 0;
}

/* Reset form element margins. */
#search-theme-form {
  margin: 72px 0 0;
}

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

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

#search-theme-form label {display: none;}
#search-theme-form input {}
#search-theme-form .form-item {}
#search-theme-form .form-submit {}

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

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


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

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

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

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

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

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

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

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


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

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

/**
 * Primary Links Positioning
 */
/* FLOAT PRIMARY RIGHT */
/* #primary .primary-inner {float: right;} */
/* ALIGN PRIMARY CENTER */
/* #primary .primary-inner {display: table; margin: 0 auto; text-align: center;} */

/**
 * Primary Links Style
 * Example styles to get you started.
 */
#primary {}

#nav .primary-links {
  background: #DDD; /* Default gray for dev only. */
  font-weight: bold;
  margin: 0;
  padding: 0;
}

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

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

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

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

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


/**
 * Secondary Links Positioning
 */
/* FLOAT SECONDARY RIGHT */
/* #secondary .secondary-inner {float: right;} */
/* ALIGN SECONDARY CENTER */
/* #secondary .secondary-inner {display: table; margin: 0 auto; text-align: center;} */

/**
 * Secondary Links Style
 */
#secondary {}

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

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

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

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

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

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


/**********************************************************
 *                      Breadcrumb
 **********************************************************/
/**
 * Genesis places the breadcrumb directly below the header, 
 * giving it the full width of theme to expand into.
 * You can eaisly drag the breadcrumb html to the main 
 * content column if you need to.
 */
#breadcrumb {
    margin: 0;
    display: none;
    font-size: 10px;
}


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


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


/**********************************************************
 *                     Pager 
 **********************************************************/
/* The first 2 classes provide the base pager styles. */
.item-list ul.pager    { margin: 24px 0 0;}
.item-list ul.pager li {
  background-color: #EFEFE5;
  border: 1px solid #ccccbb;
  margin: 0;
  padding: 4px 7px;
}
.item-list ul.pager li:hover {
  background-color: #dFdFd5;
}

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

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


/**********************************************************
 *               Footer, Footer Message
 **********************************************************/
#foot-wrapper {
  background-color: #E0DED4;
  margin: 2em 0 0;
  padding: 20px;
}
#foot-wrapper .block {
  margin: 0;
}
#foot-wrapper .block-content {
  text-align: center;
}
#foot-wrapper .block-content p {
  margin: 0 0 4px;
  color: #888070;
  font-size: 10px;
}
#foot-wrapper .block-content a {
  color: #787770;
}
#block-statcounter-0 {
  margin: 0;
} 
#footer {}
#footer .region-inner {}
  
#footer-message {}

#footer a, 
#footer-message a {}


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

/**********************************************************
 *                    Layout (aris)
 **********************************************************/

#container > #columns {
  display: block;
  margin-top: 20px;
}

.node-content .field-item {
  margin: 3px 0 3px;
}

.node-georgopoulos_image .field-item p {
  margin: 3px 0 6px;
}
.node-georgopoulos_image .field-label {
  padding: 0 0 2px;
}
.node-georgopoulos_image .field {
  border-bottom: 1px dotted #CCBB88;
  margin: 6px 0 0;
  padding-bottom: 4px;
}
.node-georgopoulos_image div.node-terms {
}

.node-tanon_document .field-field-tonano-document-pages .field-item {
  float: left;
  margin: 0 6px 8px 0;
}

.node-orphan_film .field-field-orphan-film-image .field-item {
  float: left;
  height: 110px;
  margin-right: 10px;
}


/**********************************************************
 *                    Views (aris)
 **********************************************************/

.view-header h2 {
  margin-bottom: 10px;
}

.view-content .node-links {
  margin-top:3px;
}
.view-content .node-content p {
  margin: 3px 0 3px;
}
.view-content .node-content .field {
  margin: 3px 0 3px;
}
.views-field-title a {
  text-decoration: none;
}
.view-news-view .views-field-title h2 a:link,
.view-news-view .views-field-title h2 a:visited {
    color: #885730;
    text-decoration: none;
}
.view-news-view  .views-field-field-image-news-fid {
  float: right;
  margin: 6px 0 10px 15px;
}

.view-news-view .views-row {
  border-bottom: 3px dotted #CCCCBB;
  clear: both;
  overflow: auto;
  padding: 12px 0 0;
}
.view-news-view .views-row-first {
  padding: 0;
}

.view-geo-album .views-row {
  overflow: auto;
  margin: 5px 0 10px 0;
}

.view-geo-album .views-field-title {
  border-bottom: 3px dotted #CCCCBB;
  margin: 12px 0;
  padding: 0 0 3px;
}

.views-field-field-geo-album-page-fid .field-item {
  float: left;
  margin: 3px 3px 0;
}

.field-field-geo-album-page .field-item {
  float: left;
  margin: 3px 3px 0;
}

.view-Geo-image-lists th.views-field-field-geo-image-code-value,
.view-Geo-image-lists td.views-field-field-geo-image-code-value {
  font-size: 10px;
}
.view-Geo-image-lists td.views-field-title {
}
.view-Geo-image-lists td.views-field-field-date-value {
}
.view-Geo-image-lists td.views-field-tid {
}
.view-tonano-documents.view-display-id-page_1 .views-field-field-tonano-document-pages-fid .field-item {
  float: left;
  height: 156px;
  margin: 0 6px 8px 0;
}
.view-tonano-documents.view-display-id-page_1 .field-field-tonano-document-pages-fid .field-label {
  margin-bottom: 8px;
}

.documents-view-row {
  border-bottom: 1px solid #CCCCCC;
  clear: both;
  margin-bottom: 10px;
  overflow: auto;
  padding-bottom: 5px;
}

.image-thumnail-float .field-item {
  float: left;
  margin: 0 4px 8px 0;
}

div.field-field-viewfield .field-item {
  margin-bottom: 15px;
  overflow: auto
}

.field-field-viewfield .view-orphan-films.view-display-id-page_2 .views-row,
.field-field-viewfield .view-orphan-photos.view-display-id-page_2 .views-row {
  float: left;
  margin-right: 10px;
} 

.field-field-viewfield .view-header h2 {
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 2px solid #ddc;
}

.view-id-orphan_photos.view-display-id-page_1 .views-row, 
.view-id-orphan_films.view-display-id-page_1 .views-row {
  clear: both;
  border-bottom: 1px solid #ddc;
  overflow: auto;
  padding: 5px 0 2px;
}

.view-id-orphan_photos.view-display-id-page_1 .views-row-first, 
.view-id-orphan_films.view-display-id-page_1 .views-row-first {
  border-top: 1px solid #ddc;
}

.view-id-orphan_photos.view-display-id-page_1 .views-row .views-field, 
.view-id-orphan_films.view-display-id-page_1 .views-row .views-field {
  display: block;
  float: left;
  padding-right: 10px;
}
.view-id-orphan_photos.view-display-id-page_1 .views-row .views-field-counter, 
.view-id-orphan_films.view-display-id-page_1 .views-row .views-field-counter {
  width: 22px;
  color: #888;
  padding-top: 3px;
  padding-right:5px;
  font-size: 10px;
}
.view-id-orphan_photos.view-display-id-page_1 .views-row .views-field-field-orphan-code-value, 
.view-id-orphan_films.view-display-id-page_1 .views-row .views-field-field-orphan-code-value {
  width: 65px;
  color: #888;
  padding-top: 3px;
  font-size: 10px;
}
.view-id-orphan_photos.view-display-id-page_1 .views-row .views-field-title, 
.view-id-orphan_films.view-display-id-page_1 .views-row .views-field-title {
  width: 380px;
}



/**********************************************************
 *                    Views slideshow (aris)
 **********************************************************/

 .view-id-geophotos_slideshow div.skin-default {
   position:relative;
 }


.views-slideshow-controls-top {
  float: left;
  height: 125px;
  position: relative;
  text-align: center;
  z-index: 3;
}
.views_slideshow_slide_counter {
  background-color: #F4F3E8;
  border: 1px solid #BAB9AF;
  display: inline-block;
  margin-top: 12px;
  padding: 2px;
  text-align: center;
  width: 150px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px; 
}
.views_slideshow_controls_text {
  float: left;
  position: absolute;
  top: 310px;
  width: 688px;
  z-index: 4;
}
.views_slideshow_controls_text span {
  float: left;
}
.views_slideshow_controls_text span.views_slideshow_controls_text_next {
  float: right;
}
span.views_slideshow_controls_text_pause {
  display: none;
}
span.views_slideshow_controls_text_previous a {
  background-image: url("../images/prev-next-002.png");
  background-position: -8px -5px;
  display: block;
  height: 65px;
  width: 67px;
}
span.views_slideshow_controls_text_previous a:hover {
  background-position: -8px -79px;
}
span.views_slideshow_controls_text_next a {
  background-image: url("../images/prev-next-002.png");
  background-position: -83px -5px;
  display: block;
  height: 65px;
  width: 67px;
}
span.views_slideshow_controls_text_next a:hover {
  background-position: -83px -79px;
}

div.aris-next-button,
div.aris-prev-button {
  display: none;
}




.views_slideshow_cycle_main {
  left: 0;
  padding-bottom: 130px;
  position: relative;
  top: 130px;
  z-index: 2;
}

.views_slideshow_cycle_teaser_section {
  position: relative;
  overflow: visible !important;
  margin: 5px 74px;
  padding: 0 0 100px;
  text-align: center;
}

.views_slideshow_cycle_slide {
  text-align: center;
  width: 534px !important;
  top: 40px !important;
}
.views_slideshow_cycle_slide .views-row {}



.views-slideshow-main-image {
    display: block;
    padding: 20px;
}








