/* $Id: zen.css,v 1.14 2008/09/15 10:36:22 johnalbin Exp $ */

/*
 * ZEN STYLES
 *
 * This is an example stylesheet. Sub-themes should NOT include the zen/zen.css
 * file, but instead copy this CSS to their own stylesheets.
 *
 * In this stylesheet, we have included all of the classes and IDs from this
 * theme's tpl.php files. We have also included many of the useful Drupal core
 * styles to make it easier for theme developers to see them.
 *
 * Many of these styles are over-riding Drupal's core stylesheets, so if you
 * remove a declaration from here, the styles may still not be what you want
 * since Drupal's core stylesheets are still styling the element. See the
 * drupal6-reference.css file for a list of all Drupal 5.x core styles.
 *
 * In addition to the style declarations in this file, other Drupal styles that
 * you might want to override or augment are those for:
 *
 *   Book Navigation  See line 74  of Zen's drupal6-reference.css file
 *   Forum            See line 197 of Zen's drupal6-reference.css file
 *   Menus            See line 667 of Zen's drupal6-reference.css file
 *   News Aggregator  See line 20  of Zen's drupal6-reference.css file
 *   Polls            See line 287 of Zen's drupal6-reference.css file
 *   Search           See line 320 of Zen's drupal6-reference.css file
 *   User Profiles    See line 945 of Zen's drupal6-reference.css file
 */


/** body **/
  body {
    margin: 0;
    padding: 10px;
    background-color: #E8EBEF;
    color:#333;
  }
  
  a {
    text-decoration: none;
    /*color: #638CC6; Comme le logo */
    color: #375F92;
  }
  
  a:hover
  {
    text-decoration: underline;
    color: #F66400;
  }
  
  a:active
  {
    text-decoration: none;
    color: #F66400;
  }  

/** header **/

  #logo /* Wrapper for logo */
  {
    margin: 0 10px 0 0;
    padding: 0 0 0 10px;
  }

  h1#site-name, div#site-name /* The name of the website */
  {
    margin: 0;
    font-size: 2em;
    line-height: 1.3em;
  }

  #site-name a:link,
  #site-name a:visited
  {
    color: #000;
    text-decoration: none;
  }

  #site-name a:hover
  {
    text-decoration: underline;
  }

/** content **/
#content-inner {
  min-height:30em;
  overflow:auto;
}

  .breadcrumb /* The path to the current page in the form of a list of links */
  {
    padding-bottom: 10px; /* Undo system.css */
  }

  h1.title, /* The title of the page */
  h2.title, /* Block title or the title of a piece of content when it is given in a list of content */
  h3.title /* Comment title */
  {
    margin: 0;
  }

  div.messages /* Important messages (status, warning, and error) for the user */
  {
  }

  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. */
  {
  }

  div.tabs /* See also the tabs.css file. */
  {
  }

  .help /* Help text on a page */
  {
    margin: 1em 0;
  }

  .more-help-link /* Link to more help */
  {
    font-size: 0.85em;
    text-align: right;
  }

  .pager /* A list of page numbers when more than 1 page of content is available */
  {
    clear: both;
    margin: 1em 0;
    text-align: center;
  }

  .pager a, .pager strong.pager-current
  {
    padding: 0.5em;
  }

  .feed-icons /* The links to the RSS or Atom feeds for the current list of content */
  {
    margin: 1em 0;
  }

  #content-bottom /* Wrapper for any blocks placed in the "content bottom" region */
  {
  }

/** navbar **/

  #edit-search-theme-form-1-wrapper label /* Label that says "Search this site:" */
  {
    display: none;
  }

/** footer **/
#footer  {
  clear:both;
}

  #footer-message /* Wrapper for the footer message from Drupal's "Site information"
                     and for any blocks placed in the footer region */
  {
  }

/** closure **/
  #closure-blocks /* Wrapper for any blocks placed in the closure region */
  {
  }

/** Drupal nodes **/

  .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-teaser /* A node displayed as teaser */
  {
  }

  /* All nodes are given a node-type-FOO class that describes the type of
   * content that it is. If you create a new content type called
   * "my-custom-type", it will receive a "node-type-my-custom-type" class.
   */

  .node h2.title /* Node title */
  {
  }

  .marker /* "New" or "Updated" marker for content that is new or updated for the current user */
  {
    color: #c00;
  }

  .node .picture /* The picture of the node author */
  {
  }

  .node.node-unpublished .picture,
  .comment.comment-unpublished .picture
  {
    position: relative; /* Otherwise floated pictures will appear below the "Unpublished" text. */
  }


  .node div.links /* Wrapper for node links */
  {
    margin: 1em 0;
  }

  ul.links /* Taxonomy links, node links, comment links */
  {
    margin: 0;
    padding: 0;
  }

  ul.links.inline
  {
    display: inline;
  }

  ul.links li
  {
    display: inline;
    list-style-type: none;
    padding: 0 0.5em;
  }

  .preview .node /* Preview of the content before submitting new or updated content */
  {
    /* background-color: #ffffea; */ /* Drupal core uses a #ffffea background */
  }

/** Drupal comments **/
  #comments /* Wrapper for the list of comments and its title */
  {
    margin: 1em 0;
  }

  .new /* "New" marker for comments that are new for the current user */
  {
    color: #c00;
  }

  .comment div.links /* Wrapper for comment links. See also the ul.links declaration in the node section above. */
  {
    margin: 1em 0;
  }


/** Drupal blocks **/
  .block /* Block wrapper */
  {
    margin-bottom: 1em;
  }


/** Drupal boxes **/
  /* Wrapper for Comment form, Comment viewing options, Menu admin, and
   * Search results.
   */
  .box /* Wrapper for box */
  {
  }

  .box-inner /* Additional wrapper for box */
  {
  }

  .box h2.title /* Box title */
  {
  }

  .box .content /* Box's content wrapper */
  {
  }

/** Miscellaneous Drupal styles **/
  .error /* Errors that are separate from div.messages status messages (see above.) */
  {
    /* color: #e55; */ /* Drupal core uses a #e55 background */
  }

  .warning /* Warnings that are separate from div.messages status messages (see above.) */
  {
    /* color: #e09010; */ /* Drupal core uses a #e09010 background */
  }

  .more-link /* Aggregator, blog, and forum more link */
  {
    text-align: right;
  }

  #user-login-form /* Drupal's default login form */
  {
    text-align: left;
  }

  tr.even, tr.odd /* Some tables have rows marked even or odd. See also the ".section-admin tr.even" declaration below. */
  {
    border-bottom: none;
    padding: 0;
  }

  tr.even
  {
    /* background-color: #eee; */ /* Drupal core uses a #eee background */
  }

  tr.odd
  {
    /* background-color: #eee; */ /* Drupal core uses a #eee background */
  }

  li a.active /* The active item in a Drupal menu */
  {
    color: #F66400;
  }


/** Drupal forms **/
  .form-item, /* Wrapper for a form element (or group of form elements) and its label */
  .form-checkboxes,
  .form-radios
  {
    margin: 1em 0;
  }

  .form-item input.error, /* Highlight the form elements that caused a form submission error */
  .form-item textarea.error,
  .form-item select.error
  {
    border: 2px solid #c00;
  }

  .form-item label /* The label for a form element */
  {
    display: block;
    font-weight: bold;
  }

  .form-item label.option /* The label for a radio button or checkbox */
  {
    display: inline;
    font-weight: normal;
  }

  .form-required /* The part of the label that indicates a required field */
  {
    color: #c00;
  }

  .form-item .description /* The descriptive help text (separate from the label) */
  {
    font-size: 0.85em;
  }

  .form-checkboxes .form-item, /* Pack groups of checkboxes and radio buttons closer together */
  .form-radios .form-item
  {
    margin: 0.4em 0;
  }

  .form-submit /* The submit button */
  {
  }

  .container-inline div, .container-inline label /* Inline labels and form divs */
  {
    display: inline;
  }

  .tips /* Tips for Drupal's input formats */
  {
    margin: 0;
    padding: 0;
    font-size: 0.9em;
  }

/** OpenID **/
  /* The default styling for the OpenID login link seems to assume Garland's
   * styling of list items.
   */
  #user-login-form ul /* OpenID creates a new ul above the login form's links. */
  {
    margin-bottom: 0; /* Position OpenID's ul next to the rest of the links. */
  }

  #user-login-form li.openid-link, /* The "Log in using OpenID" links. */
  #user-login li.openid-link
  {
    margin-top: 1em;
    margin-left: -20px; /* Un-do some of the padding on the ul list. */
  	padding-left: 20px;
  	background-position: left center;
  }

  #user-login-form li.user-link, /* The "Cancel OpenID login" links. */
  #user-login li.user-link
  {
    margin-top: 1em;
  	list-style-type: disc;
  	list-style-position: outside;
  }

  #user-login li.openid-link, /* The OpenID links on the /user form. */
  #user-login li.user-link
  {
    margin-left: -2em; /* Un-do all of the padding on the ul list. */
  }

/** Drupal admin tables **/
  /* We overrode these styles in html-elements.css, but restore them for the
   * admin section of the site.
   */
  .section-admin tbody
  {
    border-top: 1px solid #ccc;
  }

  .section-admin th
  {
    text-align: left;
    padding-right: 1em;
    border-bottom: 3px solid #ccc;
  }

  .section-admin tbody th
  {
    border-bottom: 1px solid #ccc;
  }

  .section-admin thead th
  {
    text-align: left;
    padding-right: 1em;
    border-bottom: 3px solid #ccc;
  }

  .section-admin tr.even,
  .section-admin tr.odd
  {
    background-color: #eee;
    border-bottom: 1px solid #ccc;
    padding: 0.1em 0.6em;
  }

/* Custom for Etic */

/* Header - start */
  #header
  {
    /* width: 960px; */
    /*background-color: #FFF;*/
    background: url(images/etic-header-out.gif) no-repeat 0px 0px;
    padding-bottom: 0;
  }
  
  #header-inner {
    padding-top:8px;
  }
  
  #logo-title
  {
    float: left;
    width: 497px;
  }
  
#block-locale-0,
#block-block-15,
#block-faceted_search_ui-1_keyword2 {
  float: right;
  margin: 40px 0px  0 0;
  padding:0;
}
  
#block-locale-0 li
{
  margin-right: 10px;
  list-style-type: none; 
  float:left;
}

#block-locale-0  ul,
#block-locale-0  ul
{
  margin : 0;
}
  
  
#block-faceted_search_ui-1_keyword2  {
  width: 350px;
}  
  
#block-faceted_search_ui-1_keyword2  input a,
#block-faceted_search_ui-1_keyword2  input {
  display: inline;
  float: left;
  margin-right:5px;
  font-size:0.8em;
}
#block-faceted_search_ui-1_keyword2  input#edit-submit {
  width:32px;
}

#block-faceted_search_ui-1_keyword2  input#edit-keywords {
  width: 200px;
}  
  
  #block-faceted_search_ui-1_keyword2  a 
  {
    line-height: 19px;
  }  
  
  #block-faceted_search_ui-1_keyword2 .form-item,
  #block-faceted_search_ui-1_keyword2 .form-checkboxes,
  #block-faceted_search_ui-1_keyword2 .form-radios
  {
    margin : 0;
  }
  
  #block-locale-0,
  #block-block-15
  {
    border-right: solid 1px #BFBFBF;
    margin-right: 10px;
    line-height:21px;
  }
  
  #block-block-15
  {
    padding-right: 10px;
  }

/* Header - end */
/* ************************ */
/* Navbar - start */  

  
  #navbar-inner ul
  {
    width: 100%
  }
  #block-nice_menus-1,
  #block-block-17
  {
    display: block;
    margin: 0;
    background-color: #FFF;
  }
  
#block-nice_menus-1 {  
  background: url(images/etic-header-out.gif) no-repeat 0px -76px;  
  height:45px;
}

.section-users #block-nice_menus-1,
.section-user #block-nice_menus-1,
.page-user-login #block-nice_menus-1,
.page-login-register #block-nice_menus-1 {  
  background: url(images/etic-header-section-users.gif) no-repeat 0px -76px;  
  height:45px;
}
  
  #block-block-17
  {
    float: right;
    height: 20px;
  }
  
  #block-block-17
  {
    background-color: #FFF;
    padding: 3px;
  }
  
  #block-block-17  span
  {
    padding: 0 10px 0 10px;
  }
  #block-block-17 a
  {
    padding: 0 20px 0 0px;
  }



/* Navbar - end */


/* Left and right menu blocks - start */
#sidebar-left .block-menu_block
{
  border-top: solid 2px #333;
  padding-top: 5px;
}

#sidebar-left  h2 {
border-bottom:dotted 1px #333;
padding-bottom:5px;
margin-bottom: 0.3em;
}

#sidebar-left .block-menu_block li 
{
  border-bottom: dotted 1px #333;
  padding-bottom: 7px;
  padding-top: 7px;
  list-style-image: none;
  list-style-type: none;
}

#sidebar-left .block-menu_block li.last,
#sidebar-left .block-menu_block ul li ul li
{
    border-bottom: none;
    padding-bottom: 0px;
}

#sidebar-left .block ul
{
  padding:0 0 0 0em;
  margin: 0;
}

#sidebar-left .block-menu_block ul li
{
  background: url(images/menu-collapsed.png) no-repeat left 12px;
  padding-left: 15px;
  line-height: normal;
}

#sidebar-left .block-menu_block ul li.collapsed 
{
  background: url(images/menu-collapsed.png) no-repeat left 12px;
  padding-left: 15px;
  line-height: normal;
}

#sidebar-left .block-menu_block ul li.expanded 
{
  background: url(images/menu-collapsed.png) no-repeat 0 4px;
  padding-left: 15px;
 
}

#sidebar-left .block-menu_block a.active-trail {
  color:#F66400;
}

#sidebar-left .block-menu_block ul li.expanded.active-trail,
#sidebar-left .block-menu_block ul li.expanded li.active-trail {
  background:transparent url(images/menu-expanded.png) no-repeat scroll 0 13px;
  color: #F66400;
  padding-left:15px;
}

#sidebar-left .block-menu_block ul li.expanded ul,
#sidebar-left .block-menu_block ul li.collapsed ul
{
  margin-left: 0px;
}

/* Left and right menu blocks - end */

/* Content - start*/

.with-navbar #content #content-inner
{
  background-color: white;
  padding: 5px 10px 10px 10px;
}

#node-content .title 
{
  color: #F66400;
  font-size: 1.8em;
  border-bottom: solid 1px #BFBFBF;
  padding-bottom:0.3em;
}

#node-content .node-teaser
{
  border-bottom: dotted 1px #BFBFBF;
  padding-bottom: 1em;
  margin-bottom: 1em;
  /*margin-left:2em;*/
}

#node-content .node-teaser .title 
{
  font-size: 1.5em;
  line-height: 1.5em;
  margin-bottom: 0em;
  padding-bottom: 0em;
  border: none;
}

#node-content  h3 
{
  color: #F66400;
  border-top: solid 1px #BFBFBF;
  border-bottom: none;
  font-weight: bold;
  padding-top: 0.5em;
  margin-top: 1em;
  padding-top: 0.5em;
  margin-bottom: 0;
  font-size:1.5em;
  line-height:1.5em;
  font-family: Arial, Helvetica, "Bitstream Vera Sans", sans-serif;
}

#node-content  ul.links li.node_read_more 
{
  padding: 0.5em 0 0.5em 0;
  font-weight: bold;
}

#node-content .field-field-resource {
  font-weight: bold;
}

#node-content .field-field-resource .field-item{
  padding:15px 0 15px 0;
  font-size:1.1em;
}

#node-content .field-label {
  font-family:Arial,Helvetica,"Bitstream Vera Sans",sans-serif;
  font-size:1.3em;
  line-height:1.2em;
  margin-bottom:0;
}

#sidebar-right-inner  {
  margin:0 0 10px 0px;
  padding: 10px;
}

#tools
{
  float:right;
  width: 140px;
  background-color: white;
}

#tools-content,
#tools-taxo
{
  margin-left: 10px;
  margin-bottom: 10px;
  padding: 5px;
  border: solid 1px #BFBFBF;
}

#tools div .collapsiblock
{
  font-size: 1em;
  line-height:1em;
  padding-bottom:0.5em;
  color: #375F92;
  background: transparent url(images/menu-expanded.png) no-repeat scroll left center;
  padding-left: 20px;
  font-family: Verdana,Tahoma,Arial,Helvetica,"Bitstream Vera Sans",sans-serif;
  font-weight: normal;
}

#tools div  .collapsiblockCollapsed
 {
  font-size: 1em;
  line-height:1em;
  padding-bottom:0.5em;
  color: #375F92;
  background: transparent url(images/menu-collapsed.png) no-repeat scroll left center;
  padding-left: 20px;
  font-family: Verdana,Tahoma,Arial,Helvetica,"Bitstream Vera Sans",sans-serif;
  font-weight: normal;
}

#tools-content div#block-service_links-0,
#tools-content div#block-block-16,
#tools-content div#block-simplenews-32,
#tools-content div#block-block-22 {
  padding: 6px 0 3px 0;
  margin: 0;
  border-top: dotted 1px #BFBFBF;
}

#tools-content div#block-print-0 {
  padding: 3px 0px;
  margin: 0px;
}

#tools-content .print_separator  {
  border-top:1px dotted #BFBFBF;
  height:1px;
  margin:4px 0 0;
  padding:2px 0;
  width:118px;
  background-color: white;
}

#tools-content div#block-service_links-0 .service-links ul {
  margin-left: 10px;
  padding-left: 0px;
}

#tools-content div#block-service_links-0 .service-links ul li {
  list-style-type: none;
  list-style-image:none;
  margin-left: 0px;
  padding-left: 0px;
  color: #375F92;
}

#tools-content div#block-service_links-0 img{
  display:none;
}

#tools-content div#block-service_links-0 a img{
  display:inline;
}


#tools-content  #block-block-16 .block-inner div,
#tools-content  #block-block-22 .block-inner div
 {
  font-weight: normal;
  padding-bottom:0.5em;
  line-height: 1.2em;
  padding-left: 0.2em;
}
#block-block-14 li {
  color: #375F92;
}

#tools-content  #block-block-22 .block-inner a
 {
  display:block;
  margin-left:1.2em;
}

#tools-content  #block-block-16 li {
  font-weight: normal;
  padding-bottom:0.5em;
  line-height: 1em;
  color: #375F92;
}

#tools-content  #block-block-16 ul {
  margin: 0;
  padding:0 0 0 1.3em;
}

#tools-taxo div#block-block-14 {
  padding: 0;
  margin: 0;
}

#tools-taxo h2 {
  font-size: 1.2em;
  font-family: Arial, Helvetica, "Bitstream Vera Sans", sans-serif;
  padding-bottom: 0.5em;
}

#tools-taxo  ul {
  margin: 0;
  padding:0 0 0 1.3em;
}

#tools-taxo  .content .views-field-name {
  font-weight: normal;
  padding-bottom:0.5em;
  line-height: 1em;
}

#node-content .field-type-link a {
  background:transparent url(images/sprite-etic.png) no-repeat scroll 0 -500px;
  padding-left: 15px;
}

#node-content .field-type-image {
  text-align:left;
  margin-left:70px;

}

#node-content .field-type-image .field-item {
  margin-top : 2em;
  margin-bottom : 2em;
}



#node-content .field-type-image .lb2_info a {
  color:#3b3b3b;
  background:transparent url(images/sprite-etic.png) no-repeat scroll 190px -608px;
  font-size:0.9em;
  padding-right: 20px;
}

#node-content .field-type-image .lb2_title {
  font-weight:bold;
}

div.image-title-zoom-wrapper {
  overflow:hidden;
  text-align:center;
}

.content .lb2_info_img {
   background:transparent url(images/zoom.png) no-repeat scroll 5px -1px;
   width:20px;
  }

.content .lb2_info {
  color:#3b3b3b;
 
  font-size:0.9em;
  padding-right: 20px;
}

.content  .lb2_title {
  font-weight:bold;
}

/* Content - end */

/* Sidebar-right - start */

#block-submenutree-0,
#block-submenutree-1,
#block-block-6,
#block-block-7,
#block-block-9,
#block-block-10,
#block-block-11,
#block-block-12,
#block-block-18,
#block-block-19,
#block-faceted_search_ui-1_current,
#block-faceted_search_ui-1_guided ,
#block-faceted_search_ui-1_keyword,
#block-views-solution_list-block_1,
#block-views-offer_list-block_1 {
  border-top:2px solid #333;
  padding-top:5px;
  margin-bottom: 2em;
}

#content-bottom .menu ul,
#content-top .menu ul,
#sidebar-right ul {
  margin: 0;
padding-left:0;
  list-style-type: none;
  list-style-image:none;


}

#content-bottom .menu ul li,
#content-top .menu ul li,
#sidebar-right ul li {
  list-style-type: none;
  list-style-image:none;
  padding-left: 14px;
  background:transparent url(images/sprite-etic.png) no-repeat scroll 0 -445px;
  margin-bottom:5px;
}

#sidebar-right ul li a {

}

#sidebar-right #block-faceted_search_ui-1_guided ul li,
#sidebar-right #block-faceted_search_ui-1_current ul li {
  margin-bottom:5px;
}

#sidebar-right #block-faceted_search_ui-1_guided ul li a,
#sidebar-right #block-faceted_search_ui-1_current ul li a{
  display:inline;
}

#content-bottom ul.menu li,
#content-top ul.menu li {
  margin-bottom: 1em;
}

#content-bottom ul.menu li ul.menu li,
#content-top ul.menu li ul.menu li {
  margin-bottom: 0;
}

#content-bottom .menu ul li a,
#content-top .menu ul li a {
  list-style-type: disc;
  display:block;
  line-height:1.3em;
  padding-bottom:0.3em;
  padding-left:13px;
  padding-top:0.2em;
}

#sidebar-right h2 {
  border-bottom:dotted 1px #333;
  padding-bottom:5px;
  margin-bottom: 0.3em;
}

#node-content ul.menu {
  padding-left:0px;
}

#node-content ul.menu li.leaf{
  list-style-image:none;
  list-style-type:none;
  line-height:1.3em;
  padding-bottom:0.3em;
  padding-left:13px;
  padding-top:0.2em;
}

#node-content ul.menu li.leaf a {
background:transparent url(images/menu-collapsed.png) no-repeat scroll 0 4px;
display:block;
padding-left:15px;
}

.faceted-search-facet h3 {
  display:block;
}

.view-products-related h3 {
  border-bottom:medium none;
  font-size:1.1em;
  font-weight:normal;
  line-height:1.2em;
  margin:0;
  padding-bottom:0.73em;
}

/* Sidebar-right - end*/

/* Navbar Login - start */
#block-block-24 {
  display:inline;
  float:right;
  height:29px;
  padding:8px 0px 0px 10px;
  position:relative;
  top:-14px;
  margin-bottom:-2px;
}

.not-logged-in  #block-block-24 {
  background:transparent url(images/etic-header-out.gif) no-repeat scroll right -107px;
  width:332px;
}

.logged-in  #block-block-24 {
  background:transparent url(images/etic-header-in.gif) no-repeat scroll right -107px;
  width:501px;
}


#block-block-24 .block-inner {
  text-align:center;
  padding-right:10px;
}

#block-block-24 .label {
  padding-left: 10px;
  padding-right: 10px;
  display:inline;
}

#block-block-24 a {
  padding-right: 10px;
  color: #F66400;
  display:inline;
}

/* Navbar Login Header - end*/

/* Hidden block - start */
.page-login-register  #tools,
.page-user-register #tools,
.page-user #tools,
.page-user-password #tools,
.user-profile-form #tools,
.section-search  #tools,
.node-type-home #tools
{
  display:none;
}

/* Hidden block - end */

/* Form styling - start */

.page-login-register #block-block-1,
.page-login-register #block-block-23 ,
.page-user #user-login,
#user-pass {
  float: left;
  margin: 2em 1em 2em 1em;
  padding: 1em;
  border: solid 1px #BFBFBF;

}

.page-login-register #block-block-1,
.page-login-register #block-block-23  {
  height:21em;
}

.page-login-register #block-block-1 h2,
.page-login-register #block-block-23 h2 {
  margin-bottom:1em;
}

.page-login-register #block-block-1 {
  width: 46em;
}

.page-login-register #block-block-23 {
  width: 30em;
}

.page-login-register .form-item  label,
.page-user #user-login label,
#user-pass label,
.section-contact label {
  float:left;
  padding-right:1em;
  text-align:right;
  width:18em;
}

.section-contact  #webform-component-vos_centres_dinterets label {
  float:none; 
  text-align:left;
}

.section-contact  #webform-component-vos_centres_dinterets div.form-item {
  float:left;
  padding-right:30px;
}

.section-contact  #webform-component-vos_centres_dinterets div.form-checkboxes div.form-item {
  float:none;
  width:100%;
}

.section-contact  #webform-component-vos_centres_dinterets  #edit-submitted-vos-centres-dinterets-informations-yes-wrapper {
  width:100%;
}

.page-login-register .form-item  div.description,
.page-user #user-login div.description,
#user-pass div.description  {
  margin-left:22.5em;
  width:29em;
}

.page-login-register #block-block-1 .form-item  input.form-text,
.page-user #user-login .form-item  input.form-text,
#user-pass .form-item  input.form-text ,
.section-contact .form-item  input.form-text {
  width: 20em;
}

.page-login-register  #block-block-1 input.form-submit,
.page-user #user-login  input.form-submit,
#user-pass input.form-submit,
.section-contact  input.form-submit
 {
  float:right;
  margin-right:25px;
}

.page-login-register #block-block-23  input 
{
  float:right;
  margin-right:25px;
  margin-top:1.8em;
}

.page-user-register .form-item  label {
  float:left;
  padding-right:10px;
  text-align:right;
  width:230px;
}

.page-user-register .form-item .option {
  width:250px;
  margin-left: 236px;
  text-align:left;
}

.page-user-register  .form-item .option{
  width:500px;

}

.page-user-register   #edit-profile-information-wrapper div.description {
  float:left;
}

.page-user-register  fieldset {
  margin-left:65px;
  width:800px;

  border: solid 1px #BFBFBF;
}
.page-user-register legend {
  font-family: Arial, Helvetica, "Bitstream Vera Sans", sans-serif;
  color:#F66400;
  font-size:1.4em;
  font-weight:bold;
  margin-left:20px;
  padding-left:10px;
  padding-right:10px;
}

.page-user-register .form-item  select {
  font-size:1.1em;
}

.page-user-register .form-item  div.description {
  margin-left:241px;
  width:500px;
}

.page-user-register  #user-register .form-item  input.form-text{
  /*width: 15em;*/
  width:350px;
  font-size:1.1em;
}

.page-user-register #user-register  input.form-submit {
  margin:0.5em 0em 2em 710px;
}

.section-users dt {
  float:left;
  font-weight:bold;
  margin:0;
  padding-right:25px;
  text-align:right;
  width:160px;
  line-height: 1.5em;
}

.section-users dd {
  line-height: 1.5em;
}

.section-users dd.profile-profile_information,
.section-users dd.profile-profile_cnil
{
  display:none;
}


.section-user fieldset {
  margin-left: 15px;
  margin-right: 15px;
  margin-top: 20px;
}

.section-user input.form-submit {
  /*margin-left: 15px;
  margin-right: 15px;
  margin-top: 20px;*/
}

.section-user legend {
  font-family: Arial, Helvetica, "Bitstream Vera Sans", sans-serif;
  color:#F66400;
  font-size:1.4em;
  font-weight:bold;
  margin-left:20px;
  padding-left:10px;
  padding-right:10px;
}
.section-user #user-profile-form .collapsible a,
.section-user #user-profile-form .collapsible a:hover {
  font-size:1em;
  padding-left:0px;
  background-image: none;
  font-family: Arial, Helvetica, "Bitstream Vera Sans", sans-serif;
  color:#F66400;
  text-decoration:none;
}

.fieldset-wrapper {
  padding-right:15px;
  padding-left:15px;
}

.section-user tr.even, tr.odd {
  background-color: white;
}

/* Search result styling - start */

.faceted-search-stage-results .box-inner h2 {
  display:none;
}

#node-content .search-results .title {
/* Form styling - end */
  margin-top: 1em;
  padding-bottom:0.5em;
  font-weight: bold;
  border: none;
}

#node-content .search-results .title a {
  font-family:Arial,Helvetica,"Bitstream Vera Sans",sans-serif;
  font-weight: bold;
  font-size:0.8em;
  line-height:1em;
}

/* Search result styling - end */
.faq-question {
font-size: 1.2em;
font-weight:bold;
margin-top: 1em;
}
/* FAQ styling - start */

.faq-category-group .faq-answer ul.links {
margin:10px 0 10px -27px;
}
/* FAQ styling - end */


/* Front page styling - start */

.front #content-inner {
  min-height:0px;
}

.front.node-type-home .with-navbar #content #content-inner {
  margin:0;
  overflow:hidden;
  padding:0;
}

.front.node-type-home .with-navbar #content #content-inner {
  background:none;
}

#block-views-mini_blocks_home-block_1 {
  background-color:white;
  width: 630px;
  margin: 15px 0px 0px 0;
  float:left;
  padding: 15px 15px 15px 15px;
  margin-right:10px;
  min-height:200px;
}


#block-views-mini_blocks_home-block_1 h2,
#block-quicktabs-hp_qt  h2,
#block-quicktabs-1  h2 {
  border-top: solid 2px #333;
  padding:5px 0 10px 0;
  position:relative;
}

#block-views-mini_blocks_home-block_1 a {
  /*font-weight:bold;*/
}

#block-views-mini_blocks_home-block_1 div.field-item {
  background:transparent url(images/sprite-etic.gif) no-repeat scroll 0 -447px;
  line-height:1.1em;
  padding-bottom:0.5em;
  padding-left:11px;
}

#block-views-mini_blocks_home-block_1 td {
  vertical-align: top;
}

/* Product block home page*/
#block-block-38 {
  background-color:white;
  width:260px;
  margin:15px 0 0px 0;
  float:left;
  /*padding: 15px 15px 15px 15px;*/
  min-height:200px;
  position:relative;
  margin: 0;
  padding: 0;
  width:250px;
}
#block-block-38 table{
  width:95%;
}

#block-block-38 h2 {
  border-top:2px solid #333333;
  padding:5px 0 10px;
  position:relative;
}

/* quick tab block*/
#block-quicktabs-hp_qt,
#block-quicktabs-1 {
  background-color:white;
  width:260px;
  margin:15px 0 0px 0;
  float:left;
  padding: 15px 15px 15px 15px;
  min-height:200px;
  position:relative;
}
#block-quicktabs-hp_qt .quicktabs_tabs,
#block-quicktabs-hp_qt #quicktabs_container_2,
#block-quicktabs-1 .quicktabs_tabs,
#block-quicktabs-1 #quicktabs_container_1 {
  clear:both;
  padding:0px;
  margin:0px;
}
#block-quicktabs-hp_qt ul.quicktabs_tabs,
#block-quicktabs-1 ul.quicktabs_tabs  {
  border-bottom: solid 1px #BFBFBF;
  margin:0;
  height:24px;
  position:relative;
}
#block-quicktabs-hp_qt  ul,
#block-quicktabs-1  ul {  
  color:#375F92;
  padding-left: 10px;
  padding-right: 10px;
}

#block-quicktabs-hp_qt ul.quicktabs_tabs li,
#block-quicktabs-1 ul.quicktabs_tabs li {
  float:left;
  padding: 3px 10px 3px 10px;
  border: solid 1px #BFBFBF;
  margin-right: 5px;
  position:relative;
  bottom:-1px;
  background-color:#EFEFEF;
}
#block-quicktabs-hp_qt ul.quicktabs_tabs li a,
#block-quicktabs-1 ul.quicktabs_tabs li a {
  color:#555;
  font-weight:bold;
}
#block-quicktabs-hp_qt ul.quicktabs_tabs li,
#block-quicktabs-1 ul.quicktabs_tabs li {
  font-size: 11px;
  list-style-type:disc;
}
#block-quicktabs-hp_qt ul.quicktabs_tabs li.active,
#block-quicktabs-1 ul.quicktabs_tabs li.active {
  
  border-bottom: solid 1px #FFFFFF;
  background-color:#FFFFFF;

}
#block-quicktabs-hp_qt ul.quicktabs_tabs li.active a,
#block-quicktabs-1 ul.quicktabs_tabs li.active a {
  color:#375F92;
}
#block-quicktabs-hp_qt ul.quicktabs_tabs li a:hover,
#block-quicktabs-hp_qt ul.quicktabs_tabs li.active a:hover,
#block-quicktabs-1 ul.quicktabs_tabs li a:hover,
#block-quicktabs-1 ul.quicktabs_tabs li.active a:hover {
  color:#F66400;
}
#quicktabs_tabpage_hp_qt_0,
#quicktabs_tabpage_hp_qt_1,
#block-quicktabs-hp_qt #quicktabs_container_2,
#block-quicktabs-1 #quicktabs_container_1 {
  position:relative;
  top:0px;
  padding : 5px;
  border: solid 1px #BFBFBF;
  border-top: none;
  /*overflow:auto;*/
  overflow:hidden;
}
#block-quicktabs-hp_qt .pager,
#block-quicktabs-1 .pager {
  color:#555;
}


/*
ul.quicktabs_tabs.quicktabs-style-basic a {
  font-family: Arial, Helvetica, "Bitstream Vera Sans", sans-serif;
  padding: 2px 5px 2px 5px;
  color:#555;
}

ul.quicktabs_tabs.quicktabs-style-basic a:hover {
  color: #F66400 !important;
}

ul.quicktabs_tabs.quicktabs-style-basic li.active a {
  color: #375F92;
}

ul.quicktabs_tabs.quicktabs-style-basic {
  height:auto !important;
}

.quicktabs_main.quicktabs-style-basic  {
  padding:5px;
}

.quicktabs_main.quicktabs-style-basic  .item-list .pager {
  margin-bottom:0;
  margin-top:2px;
}

.quicktabs_main.quicktabs-style-basic  .item-list .pager li {
  font-weight:normal;
}

.quicktabs_main.quicktabs-style-basic .item-list ul li {
  color:#375F92;
}

ul.quicktabs_tabs.quicktabs-style-basic li.active {
  border-width:1px 1px medium;
}

ul.quicktabs_tabs.quicktabs-style-basic {
padding-bottom:2px;
}
*/

#block-views-mini_blocks_home-block_1  .content {
  border: solid 1px #BFBFBF;
  padding: 5px 0 10px 10px;
}

#block-views-mini_blocks_home-block_1  .content  .views-field-title {
  border-bottom:1px dotted #333;
  color:#F66400;
  font-family:Arial,Helvetica,"Bitstream Vera Sans",sans-serif;
  font-size:1.1em;
  font-weight:bold;
  height:3.3em;
  line-height:1.2em;
  margin-bottom:5px;
  margin-right:15px;
  padding-bottom:10px;
  width:107px;
  height:45px;
}

#block-views-mini_blocks_home-block_1  .content  .views-field-field-link-url {
  margin-right: 10px;
}

/* Front page styling - end */

/* Secondary navigation - start */
#block-menu_block-4 ul { /* Center in the middle */
  text-align:center;
}  

#block-menu_block-4 li{
  display:inline;
  list-style-image:none;
  list-style-type:none;
  padding:0 0 0 20px;
}

/* Secondary navigation - end */


/* Onion skin drop shadow jquery*/
.wrap1, .wrap2, .wrap3 {
  display:inline-table;
  /* \*/display:block;/**/
  }
.wrap1 {
  float:left;
  background:url(images/shadow/shadow.png) right bottom no-repeat;
  }
.wrap2 {
  background:url(images/shadow/corner_bl.png) 0px bottom no-repeat;
  }
.wrap3 {
  padding:0 9px 9px 0;
  background:url(images/shadow/corner_tr.png) right 0px no-repeat;
  }

/* Onion skin drop shadow jquery*/

li.node_read_more  a{
  background:transparent url(images/sprite-etic.png) no-repeat scroll 0 -500px;
  padding-left:15px;
}

#block-block-25.block {
  margin-bottom:0;
}

.print-icon.print-icon-margin {
  padding-right:5px;
  vertical-align:middle;
}

.print_html, .print_mail, .print_pdf {
  margin-left: 0em;
  display:block;
  height:20px;
}

/* Styling particulier*/


.field-field-files .field-items {
  float:left;
}

ul.primary li a .tab {
  cursor:pointer;
}

.node-teaser  .content {
  font-weight:lighter;
}

a.ext {
  padding:0;
  background:none;
}

#content .content-inner {
  overflow:auto;
}

#node-content .node-teaser h4 {
  border:none;
  font-size:1em;
}

#content-area #node-content .field-label {
  padding-bottom:0.5em;
  padding-top:0.5em;
  border-top:1px dotted #BFBFBF;
}

#content-area #node-content .field-items p,
#content-area #node-content .field-items li {
  padding-bottom:0.5em;
  margin-top:0;
  margin-bottom:0;
  line-height:1.3em;
}

#content-area #node-content #attachments td {
  padding: 3px 10px 3px 10px;
  text-align:left;
}

#content-area #node-content #attachments th {
  padding: 3px 10px 3px 10px;
  text-align:left;
}

#node-content h4{
/*border-bottom:1px dotted #BFBFBF;*/
font-family:Verdana,Tahoma,Arial,Helvetica,"Bitstream Vera Sans",sans-serif;
font-size:1.1em;
font-weight:normal;
line-height:1.3em;
margin-bottom:0.73em;
padding-bottom:0.5em;
margin-top:0.83em;
/*padding-bottom:0.73em;*/
}

.content p img {
  /*position:relative;*/ /* removed for IE6 */
  /*float:left;*/
  padding: 0 10px 10px 0;
}

.view-customers-reference .views-field-tid {
  float:left;
  margin-right: 10px;
}

/* Domaines d'application */
.group-domain {
  margin-left:40px;
  width:340px;
  background-color:#eff2f6;
}
.group-domain legend {
  font-size:1.2em;
}

.field-field-systems,
.field-field-data,
.field-field-process {
  width:45%;
  float:left;
  margin-left:5%;
  
}

.field-field-systems .field-item,
.field-field-data .field-item,
.field-field-process .field-item {
  background:transparent url(images/checked.png) no-repeat scroll 0px -4px;
  padding-left:18px;
  line-height:18px;
  margin-left:10px;
}

#content-area #node-content .field-field-systems .field-label,
#content-area #node-content .field-field-data  .field-label,
#content-area #node-content .field-field-process  .field-label {
  border:none;
  padding-top:0;
  font-weight:normal;
  font-size:1.2em;
}
 
/* Images Left */ 
img.img-left.no-caption {
  float:left;
  padding:0 10px 10px 0;
}

/* Adjustment post production */ 
.front #content {
  display:block;
}

#content-inner {
  overflow:hidden;
}

/* news */
.node-type-news #content-area #node-content .content .field-label {
    border-top:none;
    padding:0;
    display:inline-block;
    font-size: 12px;
}
*+html .node-type-news #content-area #node-content .content .field-label {
  zoom: 1;
  display: inline;
}
.node-type-news #content-area #node-content .content .field-items {
    border-top:none;
    padding:0;
    display:inline-block;
}
*+html .node-type-news #content-area #node-content .content .field-items {
  zoom: 1; /*offre le layout ˆ un ŽlŽment (*)*/
  display: inline;
}
.node-type-news #node-content .content .field-type-link a {
    background: none;
    padding-left:0;
}
.node-type-news #node-content .content {
    padding-left: 0;
}
.node-type-news #tools{
  display:none;
}
.node-type-news #node-content .content .field-field-news-src-link{
    /*float: left;
    margin-bottom: 10px;
    padding-bottom: 10px;*/
    margin-bottom: 0px;
    padding-bottom: 0px;
    padding-right: 20px;
    padding-top: 7px;
}
.node-type-news #node-content .content .field-field-news-date{
    border-bottom: 1px dotted #BFBFBF;
    padding-bottom: 10px;
    padding-top: 7px;
}

.node-type-news #node-content p{
  clear:left;
}

.node-type-home .links .subscriptions-subscribe{
  display:none;
}
#block-views-taxonomy_term-block_1{
  /*margin-top:20px;*/
}
#block-views-taxonomy_term-block_1 .view-content .views-row{
      border-bottom: 1px dotted #BFBFBF;
    margin-bottom: 1em;
    padding-bottom: 1em;
}
#block-views-taxonomy_term-block_1 .view-content h2.title {
    border: medium none;
    font-size: 1.5em;
    line-height: 1.5em;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* webform */
#edit-captcha-response-wrapper label,
.node-type-webform .webform-component.webform-component-radios .form-item label,
.node-type-webform .webform-component.webform-component-textarea .form-item label,
.node-type-webform .webform-component.webform-component-checkboxes .form-item label{
  text-align:left;
  float:none;
  width:100%;
}

/* glossary */
.view-id-glossary .attachment.attachment-before{
  margin-bottom:20px;  
}

/* views footer */
    
.view-display-id-block_2 .view-footer {
  padding-right: 10px;
  text-align: right;
}
.view-display-id-block_2 .view-footer a{
  background: url("images/sprite-etic.gif") no-repeat scroll 0 -447px transparent;
  line-height: 1.1em;
  padding-bottom: 0.5em;
  padding-left: 11px;
}

.view-display-id-block_2 .item-list ul li {
  margin-bottom:5px;
  padding-bottom:5px;
  border-bottom: 1px dotted #333333;
  color:#333;
  list-style:none;
}
.view-display-id-block_2 .date-display-single{
  color:#333;
}

/* comments */
h2#comments-title {
  border-top: 1px solid #BFBFBF;
  padding-top: 1em;
  margin-bottom:0.5em;
  margin-top:1em;
}
#node-content .title {
  border-bottom: none;
  color: #F66400;
  font-size:1.3em;
  padding-bottom: 0.3em;
  border-top:1px dotted #BFBFBF;
  padding-top:1em;
}
#comment-form .form-submit{
  margin-top:1em;
}
#node-content h3.title {
  border-top:1px dotted #BFBFBF;
}
.node-teaser.node-type-news .comment_add,
.node-teaser.node-type-news .comment_forbidden{
  display:none;
}
