/* $Id: layout-fixed.css,v 1.5.2.3 2009/02/13 19:20:19 johnalbin Exp $ */

/* 
 * LAYOUT STYLES
 *
 * Define CSS classes to create a table-free, 3-column, 2-column, or single
 * column layout depending on whether blocks are enabled in the left or right
 * columns.
 *
 * This layout is based on the Zen Columns layout method.
 *   http://drupal.org/node/201428
 *
 * Only CSS that affects the layout (positioning) of major elements should be
 * listed here.  Such as:
 *   display, position, float, clear, width, height, min-width, min-height
 *   margin, border, padding, overflow
 */


/** body **/
  body
  {
  	background: url(images/background.jpg) top center fixed #fff;
  	padding:0;
  	margin:0;
  }

body.front
  {
  	background: url(images/background-front.jpg) top center fixed #fff;
  	padding:0;
  	margin:0;
  }
  
  /*body.page-home, body.front { background: url(images/background-front.jpg) ; }*/

  #page,
  #closure-blocks
  {
    /*
     * If you want to make the page a fixed width and centered in the viewport,
     * this is the standards-compliant way to do that. See also the ie.css file
     * for the necessary IE5 hack to center a div.
     */
    margin-left: auto;
    margin-right: auto;
    width: 960px;
  }

  #page-inner
  {
  }
  
  #navigation-top,
  #navigation
  {
    position: absolute; /* Take the named anchors out of the doc flow    */
    left: -10000px;     /* and prevent any anchor styles from appearing. */
  }

  #skip-to-nav
  {
    position: absolute;
    margin: 0 !important;
    font-size: 0.8em;
    z-index:0;
  }

  #skip-to-nav a:link, #skip-to-nav a:visited
  {
    color: #fff; /* Same as background color of page */
  }

  #skip-to-nav a:hover
  {
    color: #000;
    text-decoration: none;
  }

  /* Alternatively, the skip-to-nav link can be completely hidden until a user tabs
     to the link. Un-comment the following CSS to use this technique. */
  /*
  #skip-to-nav a, #skip-to-nav a:hover, #skip-to-nav a:visited
  {
    position: absolute;
    left: 0;
    top: -500px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

  #skip-to-nav a:active, #skip-to-nav a:focus
  {
    position: static;
    width: auto;
    height: auto;
  }
  */

/** header **/
  #header
  {
  	height:301px;
  	margin-bottom:0px;
  /*	background: url(images/header.png) top center;*/
  }

  #header-inner
  {
  }

  #logo-title
  {
  }

  #logo
  {
    float: left;
  }

  #site-name
  {
  }

  #site-slogan
  {
  }

  #header-blocks
  {
    clear: both; /* Clear the logo */
  }

/** main (container for everything else) **/
 #main {
  	width:960px;
  }

  #main-inner
  {
  }

/** content **/
  #content,
  .no-sidebars #content
  {
    float: left;
    width: 960px;
    margin-left: 0;
    margin-right: -960px; /* Negative value of #content's width + left margin. */
    padding: 0; /* DO NOT CHANGE. Add padding or margin to #content-inner. */
  }


  .sidebar-left #content
  {
    width: 760px;
    margin-left: 200px; /* The width of #sidebar-left. */
    margin-right: -960px; /* Negative value of #content's width + left margin. */
  }

  .sidebar-right #content
  {
    width: 620px;
    margin-left: 0;
    margin-right: -620px; /* Negative value of #content's width + left margin. */
  }

  .two-sidebars #content
  {
    width: 560px;
    margin-left: 200px; /* The width of #sidebar-left */
    margin-right: -760px; /* Negative value of #content's width + left margin. */
  }

  #content-inner
  {
    margin: 0;
    padding: 0 0 0 10px;
  }
  
  .no-sidebars #content-inner {padding-right:10px;}
  
  .page-home #content-inner, .front #content-inner {padding:0;}
  
  body.section-produtos .node-inner {
	padding-right: 0px;
    text-align: justify;
} 

body.section-produtos .node-inner img {
	margin-right: 0px;
}
  
  body.page-produtos .node-inner {padding:0;}

/** navbar **/
  #navbar
  {
    float: right;
    width: 630px;
    margin-top: 148px;
    margin-right: 0px; /* Negative value of #navbar's width + left margin. */
    padding: 0; /* DO NOT CHANGE. Add padding or margin to #navbar-inner. */
     /* The navbar can have any arbritrary height. We picked one
                      that is twice the line-height pluse 1em: 2 x 1.3 + 1 = 3.6
                      Set this to the same value as the margin-top below. */
  }
  
  .logged-in #navbar {margin-top: 5px;} 

  .with-navbar #content,
  .with-navbar #sidebar-left,
  .with-navbar #sidebar-right,
  #content,
  #sidebar-left,
  #sidebar-right
  {
    margin-top: 30px; /* Set this to the same value as the navbar height above. */
  }
  
  .front #content,
  .front #sidebar-left,
  .front #sidebar-right,
  .page-home #content,
  .page-home #sidebar-left,
  .page-home #sidebar-right
  {
  	margin-top: 39px;
  }
  

  #navbar-inner
  {
	float:left;
	
  }

  #search-box
  {
    width: 200px;
    margin-right: -200px; /* Negative value of #search-box's width. */
    float: left;
  }

  #primary
  {
    margin-left: 200px; /* Width of search-box */
  }

  #secondary
  {
    margin-left: 200px; /* Width of search-box */
  }

  #navbar ul /* Primary and secondary links */
  {
    margin: 0;
    padding: 0;
    text-align: left;
  }

  #navbar li /* A simple method to get navbar links to appear in one line. */
  {
    float: left;
  /*  padding: 0 10px 0 0;*/
  }

  /* There are many methods to get navbar links to appear in one line.
   * Here's an alternate method: */
  /*
  #navbar li
  {
    display: inline;
    padding: 0 10px 0 0;
  }
  */

/** sidebar-left **/
  #sidebar-left
  {
    float: left;
    width: 200px;
    margin-left: 0;
    margin-right: -200px; /* Negative value of #sidebar-left's width + left margin. */
    padding: 0; /* DO NOT CHANGE. Add padding or margin to #sidebar-left-inner. */
  }

  #sidebar-left-inner
  {
    margin: 0 20px 0 0;
    padding: 0;
  }

/** sidebar-right **/
  #sidebar-right
  {
    float: left;
    width: 300px;
    margin-left: 660px; /* Width of content + sidebar-left. */
    margin-right: -960px; /* Negative value of #sidebar-right's width + left margin. */
    padding: 0; /* DO NOT CHANGE. Add padding or margin to #sidebar-right-inner. */
  }

  #sidebar-right-inner
  {
    margin: 0 20px 0 0px;
    padding: 0;
  }
  
#sidebar-right  .block /* Block wrapper */
  {
    margin-bottom: 2em;
  }

/** footer **/
  #footer
  {
  	background:url(images/footer-fd.png);
	height:137px;
	margin-top:2em;
  }
  
  #footer a{color:#fff;}

  #footer-inner
  {
  	color: #fff;
  	padding:17px 20px 0 28px;
  }
  
    #block-block-6 {
  	float:left;
  	width:70%;
  	text-align:left;
  	margin-top:17px;
  	margin-left:10px;
  	color:#fff;
  }
  #block-block-6 a {color:#fff !important;}
/*  
#block-block-6 .content p {margin:0; line-height: 1.5em;}
  #block-block-6 .content p:first-child { font: 1.4em Impact,Arial;  margin-bottom:8px;}
  #block-block-6 .content p:first-child strong { color:#FBF23D; font-weight:normal; }
  #block-block-6 .content p.last {margin-top:7px;}*/

/** closure **/
  #closure-blocks /* See also the #page declaration above that this div shares. */
  {
  	width:100%;
    color:#000; 
	height:137px; 
	background: url(images/footer-fd.png) top center no-repeat; 
	clear:both;
	border: 0px solid #636363;
	border-left: 0;
	border-right: 0;
  }
  
  #closure-blocks strong {color:#2d2a2b;}
    
  #closure-blocks-clear {clear:both; height:50px}
  
  #closure-blocks-inner {
	margin-left: auto;
    margin-right: auto;
    width: 960px;
    height: 100px;
	padding-top:18px;
	overflow: hidden;
}

#closure-blocks-inner p {margin-top:0; margin-bottom:0.7em;}

/** Prevent overflowing content **/
  #header,
  #content,
  #navbar,
  #sidebar-left,
  #sidebar-right,
  #footer,
  #closure-blocks
  {
    overflow: visible;
    word-wrap: break-word; /* A very nice CSS3 property */
  }

  #navbar
  {
    /* overflow: hidden; May need to be removed if using a dynamic drop-down menu */
  }

  /* If a div.clear-block doesn't have any content after it and its bottom edge
     touches the bottom of the viewport, Firefox and Safari will mistakenly
     place several pixels worth of space between the bottom of the div and the
     bottom of the viewport. Uncomment this CSS property to fix this.
     Note: with some over-large content, this property might cause scrollbars
     to appear on the #page div.
  */
  /*
  #page
  {
    overflow-y: hidden;
  }
  */
  
  /* --------------> Edited */
  
  #illustration-background {
	background: url(images/illustration.png) top center;
    height: 74px;
    margin-left: 0px;
    position: absolute;
    top: 135px;
    width: 100%;
    z-index: -1;
}

#block-sharethis-sharethis, #block-addthis-0{
	position:absolute;
	margin: 17px 0 0 565px;
}
  
  /* removendo itens desnscessarios */
  body.section-node-add #field-story-video-items, body.section-node-edit #field-story-video-items, 
body.section-node-add #field-story-audio-items, body.section-node-edit #field-story-audio-items,
body.section-node-add #edit-field-story-thumb-0-ahah-wrapper, body.section-node-edit #edit-field-story-thumb-0-ahah-wrapper,
body.section-node-add #field-page-video-items, body.section-node-edit #field-page-video-items, 
body.section-node-add #field-page-audio-items, body.section-node-edit #field-page-audio-items,
body.section-node-add #edit-field-page-thumb-0-ahah-wrapper, body.section-node-edit #edit-field-page-thumb-0-ahah-wrapper
{display: none;}
body.section-node-add #edit-field-story-thumb-0-ahah-wrapper, body.section-node-edit #edit-field-story-thumb-0-ahah-wrapper,
body.section-node-add #field-story-audio-items, body.section-node-edit #field-story-audio-items,
body.section-node-add .teaser-checkbox, body.section-node-edit .teaser-checkbox
{display: none;}
#edit-homepage-wrapper, 
ul.tips, 
#comment-form p, 
.body-field-wrapper p 
{display:none;}



#edit-field-story-ordem-value-wrapper {padding: 0em 0 1em 0}
#field-story-images-items {padding: 1em 0 2em 0;  border-bottom:1px solid #a5a5a5;}

div.admin {
    margin-bottom: 1em;
}


  #content-bottom {margin-top:1.5em;}
  
    #top-info {
  	margin: 15px 20px 0 0px;
  	float:right;
	font-size:1.3em;
	height:48px;
	color:#fff;
	z-index:1000;
	width:170px;
  }
  
  #top-info-ico{margin-right:8px;}
  
  
  #block-block-8 {float:right;}
  
  /* removing the default block margin bottom */   
  #block-nice_menus-1, #block-block-8{margin:0;}
    
  body.page-home h2 {
	font-size:1.4em;
	line-height:1.3em;
	margin:0;
	color:#2d2a2b;
	}
	
  #block-webformblock-380 h2{ 
  	background: #888888;
  	padding:5px 10px 5px 10px;
  	color: #fff;
  	margin:0;  	
  }
  
  #block-webformblock-380 div.content {background: #eeeeee; padding:10px 20px 20px 20px; }
  
  #block-webformblock-380 div.content p{}
  
  #block-webformblock-380 input, #block-webformblock-380 textarea { width:205px; }
  
  #block-webformblock-380 #edit-submit {width:auto; padding:6px 20px;}
  
  #block-webformblock-380 .node-inner h2 {display:none;}
  #block-webformblock-380 .node-inner div.content {padding: 0;}

  #block-views-produtos_tags-block_1, #block-block-7, #block-views-produtos_menu_direto-block_1 {background: #183d5a; overflow:hidden; border:3px solid #25b9f9;}

  #block-views-produtos_tags-block_1 h2, #block-views-produtos_menu_direto-block_1 h2,
  #block-webform-client-block-380 h2, #block-block-7 h2{ 
  	background: none;
  	padding:26px 0px 0px 30px;
  	color: #fff;
  	margin:0;  	
  	height:25px;
  	font-size:1.4em;
  	font-weight:normal;
  }
  
  #block-views-produtos_tags-block_1 div.content,
  #block-views-produtos_menu_direto-block_1 div.content,
  #block-webform-client-block-380 div.content,
  #block-block-7 div.content{
    padding:10px 20px 20px 20px; 
    color:#fff;
	}
	
  #block-views-produtos_tags-block_1 .view-footer p, 
  #block-views-produtos_menu_direto-block_1 .view-footer p {margin:0;}
  #block-views-produtos_tags-block_1 .cx-footer,
  #block-views-produtos_menu_direto-block_1 .cx-footer,
  #block-webform-client-block-380 .cx-footer,
  #block-block-7 .cx-footer{ display:none; margin-left: -20px; margin-bottom:-18px;}
  
  #block-views-produtos_tags-block_1 ul,
  #block-views-produtos_menu_direto-block_1 ul,
  #block-block-7 ul {
 	list-style:url(images/list-style-prod-menu.png);
 	padding: 0px 0 0 28px;
	}
		
	
  #block-views-produtos_tags-block_1 li,
  #block-views-produtos_menu_direto-block_1 li,
  #block-block-7 li{
  	list-style:url(images/list-style-prod-menu.png);
    margin-bottom:10px;
  }  
 
  #block-views-produtos_tags-block_1 a,
  #block-views-produtos_menu_direto-block_1 a,
  #block-webform-client-block-380 a,
  #block-block-7 a{color:#fff; font-weight:normal;}
  
  #block-webform-client-block-380 input.form-textarea,
  #block-webform-client-block-380 input.form-text{width:232px;}
  
  #block-webform-client-block-380  .form-item label {color:#fff; font-weight:normal;}
  
  #block-webform-client-block-380 .webform-client-form {margin-top:0; padding-bottom:0em;}
  
  #block-webform-client-block-380 .form-submit {width:90px; height:43px; padding-bottom:7px; margin-left:150px; border: 3px solid #25b9f9; background:#183d5a; color:#fff;}
  
  #block-webform-client-block-380 {background: url(images/cx_rodape.png) no-repeat bottom; }
  
  #block-webform-client-block-380 .block-inner {padding-bottom:21px;}

  
  a.saiba-mais{display:block; margin-top:5px;}
  
  /* problem no ie7, nao aceita margin nos tds. s funcina quando coloca width no table, mas nao segue o tamanho exato. merda! */
  
  /* Lista com thumbs na horizontal */ 
  
  .view-busca .views-row {width:270px; float:left; height:130px; margin:0 30px 1.5em 0; text-align:center;}
  .view-busca .views-row-2, .view-busca .views-row-4, .view-busca .views-row-6, .view-busca .views-row-8 {margin-right:0;}
  .view-busca .views-field-title {color:#656565; font-size:0.9em; margin-top:5px;}
  
  /* pager */
  
  .item-list .pager {float:left; margin-right:47px; padding: 0;}
  
  .item-list .pager li { background: #D63035; float:left; margin-right:5px; min-width:30px; }
  
  .item-list .pager li a {color:#fff;}
  
  .item-list .pager .pager-current {color:#fff;}
  
  .item-list .pager li.pager-last, .item-list .pager li.pager-first {display:none;}
  
  span.subtitulo {display:block;}
  
  /*slidehsow*/
  
/*slidehsow*/

  #views_slideshow_thumbnailhover_breakout_teasers_produtos_slideshow-page_1, #views_slideshow_thumbnailhover_breakout_teasers_pagina_slideshow-page_1{
      	float:left; 
        width:120px;
        height:334px;
		border: none;
		border-top: 0;
		margin:0;
		padding: 0 10px 0 10px; 
		background: none;
		text-align:center;
		overflow:scroll;
		overflow-x:hidden;
		}
		
		#views_slideshow_thumbnailhover_main_produtos_slideshow-page_1 .views-content-field-story-images-fid, #views_slideshow_thumbnailhover_main_pagina_slideshow-page_1 .views-content-field-story-images-fid{ width:490px !important; height:368px !important; text-align: center; vertical-align: middle; }
      
      #views_slideshow_thumbnailhover_teaser_section_produtos_slideshow-page_1, #views_slideshow_thumbnailhover_teaser_section_pagina_slideshow-page_1{float:left; }
      
      .views_slideshow_thumbnailhover_div_breakout_teaser{
      	float:left;
      	width:100px;
      	height:75px;
      	border: 3px solid #f3f3fd;
		background: none;
		text-align:center;
		margin-bottom: 5px;
		overflow:hidden;
      } 
      
      .activeSlide{border: 3px solid #005FB5; background: #005FB5;}
      
	  .views-slideshow-controls-bottom {}
  
  .slideshow-field {float:left; clear:both; margin-bottom:1em;}
	  
	  #views_slideshow_singleframe_prev_home_tv-default{ 
	  	position:absolute; 
	    z-index: 100;
		  }
		  
	  #views_slideshow_singleframe_playpause_home_tv-default{ display:none;}
	  
	  #views_slideshow_singleframe_next_home_tv-default{
	  	position:absolute; 
	    z-index: 100;
	    margin-left:29px;
		}
	  
	  .view-home-tv .views_slideshow_singleframe_main {
	  	border:0px solid #363636;
		border-top:0px;
		height:360px;
		width:850px;
		margin-left:50px;
		overflow:hidden;
		}
		
		
	  .view-home-tv .views_slideshow_slide, .view-home-tv .views-field-field-story-images-fid {height:360px !important;width:950px !important;}
	  
	  
	  .view-home-tv .views-slideshow-controls-top {
   	 	margin-left:0px;
    	margin-top: 0px;
    	position: absolute;  	
    	z-index:100;
	  }
	  
	  #views_slideshow_singleframe_prev_home_tv-default{ 
	  	position:absolute; 
	  	margin-top:158px;
	    z-index: 100;
		  }
		  
	  #views_slideshow_singleframe_playpause_home_tv-default{ display:none;}
	  
	  #views_slideshow_singleframe_next_home_tv-default{
	  	position:absolute; 
	  	margin-top:158px;
	  	margin-left:868px;
	    z-index: 100;
		}
		
	  .view-home-tv .views-field-phpcode {
		position:absolute; 
	    margin-top:172px;
	    right:0px;
	    height:39px;
	    padding: 21px 152px 0 31px; 
	    background: none;
	    display:none;
	  }
	  
	.view-home-tv .views-field-phpcode  a {
    color: #FFFFFF;
    font-size: 1.3em;
    font-weight: normal;
    text-decoration: none;
	  }
	  
	.view-home-tv .views-field-phpcode  a span {color:#F7F240;}
	  
	  .views-slideshow-xtra-overlay {z-index:0;}
	 	

/* home */

.panel-3col-33-stacked .panel-col-top .inside {margin: 0 0 22px 0;}

.center-wrapper .panel-panel .inside{ padding:0 20px; }
.center-wrapper .panel-panel .inside p:first-child {margin-top:9px;}

.panel-3col-33-stacked .panel-col-first {   }

.panel-3col-33-stacked .panel-col {}

.panel-3col-33-stacked .panel-col-last {}


/* */

.page-projetos-realizados .pane-content h2 {display:none;}

.webform-client-form {margin-top:2em;}

/* ShareThis */

#block-block-20 {
	float:right;
	width:224px;
	margin-top:3px;
	text-align:center;
}

#block-block-18 {float:right; margin:25px 50px 0 0;}
  .devby {margin:10px 0 0 20px;}

.view-listar-posts table {width:100%; text-align:center;}
.view-listar-posts table  td{padding-bottom: 30px;}
.view-listar-posts table  a{font-weight:bold;}

