/**
 * @file
 * Default styles for Drupal.
 */



/** Menus *********************************************************************/
.menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tree li {
  padding-left: 1em;
}
/*
.tabs li {
  float: left;
  list-style:none;
  font-family:Arial, Helvetica, sans-serif

}

.tabs,#secondary-menu ul {
  overflow: auto; border:none
}
ul.tabs {margin-top:10px}
.tabs a {
  background: #F9F9F9;
  background: -moz-linear-gradient(top, #F9F9F9 0%, #E3E3E3 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#F9F9F9), color-stop(100%,#E3E3E3));
  background: -webkit-linear-gradient(top, #F9F9F9 0%,#E3E3E3 100%);
  background: -o-linear-gradient(top, #F9F9F9 0%,#E3E3E3 100%);
  background: linear-gradient(top, #F9F9F9 0%,#E3E3E3 100%);
  border: 1px solid #BBB;
  border-bottom-color: #A0A0A0;
  border-top-color: #CCC;
  color: #333;
  display: block;
  height: 1.5em;
  line-height: 1.5;
  padding: 0 .5em;
  text-decoration: none;
}

.tabs a:hover,
.tabs a:focus {
  border-color: #939393;
  outline: 0;
  text-underline: none;
}

.tabs a:active {
  background: #E3E3E3;
  background: -moz-linear-gradient(top, #E3E3E3 0%, #F9F9F9 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#E3E3E3), color-stop(100%,#F9F9F9));
  background: -webkit-linear-gradient(top, #E3E3E3 0%,#F9F9F9 100%);
  background: -o-linear-gradient(top, #E3E3E3 0%,#F9F9F9 100%);
  background: linear-gradient(top, #E3E3E3 0%,#F9F9F9 100%);
  border-color: #444;
  text-underline: none;
}

.tabs li:first-child a {
  -moz-border-radius-topleft: .25em; 
  -moz-border-radius-bottomleft: .25em; 
  -webkit-border-top-left-radius: .25em; 
  -webkit-border-bottom-left-radius: .25em; 
  border-top-left-radius: .25em; 
  border-bottom-left-radius: .25em; 
}

.tabs li:last-child a {
  -moz-border-radius-topright: .25em; 
  -moz-border-radius-bottomright: .25em; 
  -webkit-border-top-right-radius: .25em; 
  -webkit-border-bottom-right-radius: .25em; 
  border-top-right-radius: .25em; 
  border-bottom-right-radius: .25em; 
}

.tabs .active a {
  background: #777;
  background: -moz-linear-gradient(top, #777 0%, #999 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#777), color-stop(100%,#999));
  background: -webkit-linear-gradient(top, #777 0%,#999 100%);
  background: -o-linear-gradient(top, #777 0%,#999 100%);
  background: linear-gradient(top, #777 0%,#999 100%);
  border: 1px solid #888;
  color: #FFF;
}

.pipeline li {
  border-right: 1px solid #777; 
  margin-right: .5em; 
  padding-right: .5em; 
}

.pipeline li.last {
  border-right: 0; 
  margin-right: 0; 
  padding-right: 0; 
}
*/
/** Messages ******************************************************************/
.messages {
  background-position: 8px 8px; 
  background-repeat: no-repeat;
  border: 1px solid;
  line-height: 1.5;
  margin: 0;
  padding: .75em;
}

.messages:before {
  content: ".";
  display: inline-block;
  height: 24px;
  margin-right: .75em; 
  text-indent: -9999em;
  width: 24px;
}

.status {
  border-color: #be7;
}

.status:before {
  background: url(../img/icons.png);
}

div.status,
.ok {
  color: #240;
}

div.status,
table tr.ok {
  background-color: #f8fff0;
}

div.warning {
  border-color: #ed5;
}

div.warning:before {
  background: url(../img/icons.png) -24px 0;
}

div.warning,
.warning {
  color: #840;
}

div.warning,
table tr.warning {
  background-color: #fffce5;
}

div.error {
  border-color: #ed541d;
}

div.error:before {
  background: url(../img/icons.png) -48px 0;
}

div.error,
.error {
  color: #8c2e0b;
}

div.error,
table tr.error {
  background-color: #fef5f1;
}

div.error p.error {
  color: #333;
}

/** Autocomplete **************************************************************/
#autocomplete {
  border: 1px solid;
  overflow: hidden;
  position: absolute;
  z-index: 100;
}

#autocomplete ul {
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0;
}

#autocomplete li {
  background: #fff;
  color: #000;
  cursor: default;
  white-space: pre;
}

#autocomplete li.selected {
  background: #07b;
  color: #fff;
}

/** Contextual Links **********************************************************/
.contextual-links-region {
  outline: none;
  position: relative;
}

.contextual-links-region-active {
  outline: #999 dashed 1px;
}

.contextual-links-wrapper {
  display: none;
  font-size: 90%;
  position: absolute;
  right: 5px; 
  top: 2px;
  z-index: 999;
}

html.js .contextual-links-wrapper {
  display: block;
}

.contextual-links-trigger {
  background: transparent url(../img/icons.png) no-repeat 2px -24px;
  border: 1px solid transparent;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  display: none;
  height: 18px;
  margin: 0;
  outline: none;
  overflow: hidden;
  padding: 0 2px;
  text-indent: 34px; 
  width: 28px;
}

.contextual-links-trigger:hover,
.contextual-links-active .contextual-links-trigger {
  background-position: 2px -42px;
}

.contextual-links-active .contextual-links-trigger {
  background-position: 2px -42px;
  background-color: #fff;
  border-color: #ccc;
  border-bottom: none;
  -moz-border-radius: 4px 4px 0 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  border-radius: 4px 4px 0 0;
  position: relative;
  z-index: 1;
}

.contextual-links-wrapper .contextual-links {
  background-color: #fff;
  border: 1px solid #ccc;
  -moz-border-radius: 4px 0 4px 4px; 
  -webkit-border-bottom-left-radius: 4px; 
  -webkit-border-bottom-right-radius: 4px; 
  -webkit-border-top-right-radius: 0; 
  -webkit-border-top-left-radius: 4px; 
  border-radius: 4px 0 4px 4px; 
  display: none;
  margin: 0;
  padding: .25em 0;
  position: absolute;
  right: 0; 
  text-align: left; 
  top: 18px;
  white-space: nowrap;
}

.contextual-links-region:hover .contextual-links-trigger,
.contextual-links-active .contextual-links-trigger,
.contextual-links-active .contextual-links {
  display: block;
}

.contextual-links li {
  line-height: 100%;
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0;
}

.contextual-links-wrapper a {
  text-decoration: none;
}

.contextual-links li a {
  color: #333 !important;
  display: block;
  margin: 0.25em 0;
  padding: 0.25em 1em 0.25em 0.5em; 
}

.contextual-links li a:hover {
  background-color: #eee;
}

/** Vertical Tabs *************************************************************/
.vertical-tabs {
  border: 1px solid #ccc;
  margin: 1em 0 1em 15em; 
  position: relative; /* IE6/7 */
}

.vertical-tabs-list {
  border-top: 1px solid #ccc;
  float: left; 
  list-style: none;
  list-style-image: none;
  margin: -1px 0 -1px -15em; 
  padding: 0;
  position: relative; /* IE6 */
  width: 15em;
}

.vertical-tabs-pane {
  border: 0;
  margin: 0 !important;
  padding: 1em 1em 0;
}

.vertical-tabs legend {
  display: none;
}

.vertical-tabs-list li {
  background: #eee;
  border: 1px solid #ccc;
  border-top: 0;
  margin: 0;
  min-width: 0; /* IE7 */
  padding: 0;
}

.vertical-tabs-list li a {
  display: block;
  padding: .5em .6em;
  text-decoration: none;
}

.vertical-tabs-list li a:focus strong,
.vertical-tabs-list li a:active strong,
.vertical-tabs-list li a:hover strong {
  text-decoration: underline;
}

.vertical-tabs-list li a:hover {
  outline: 1px dotted;
}

.vertical-tabs-list li.selected {
  background-color: #fff;
  border-right-width: 0; 
}

.vertical-tabs-list .selected strong {
  color: #000;
}

.vertical-tabs-list .summary {
  display: block;
}

.vertical-tabs .vertical-tabs .vertical-tabs-list .summary {
  line-height: normal;
  margin-bottom: 0;
}

/**
 * Prevent text inputs from overflowing when container is too narrow. "width" is
 * applied to override hardcoded cols or size attributes and used in conjunction
 * with "box-sizing" to prevent box model issues from occurring in most browsers.
*/
.vertical-tabs .form-type-textfield input {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}

.ie6 .vertical-tabs .form-type-textfield,
.ie6 .vertical-tabs .form-textarea-wrapper {
  width: 95%; /* IE6 */
}
.contextual-links-wrapper ul li,.contextual-links-trigger ul.contextual-links li a{font-family:Arial, Helvetica, sans-serif; font-size:11px}
/*forms*/
#user-login {margin-left:0px}
form#user-login label { display:block; font-weight: 700}
/*#user-login input[type="text"],#user-login input[type="password"] {  }*/
input,textarea,select {
padding:.5em;
background:#fdfefe url(../img/post-box-top.gif) repeat-x top center;
border:.1em solid #dce7ed;
font:1.2em Arial, Helvetica, sans-serif;
color:#76716c
}

input:focus,textarea:focus,select:hover {
border:.1em solid #91EAF2;
color:#111
}
.form-submit {
border: 1px solid #ccc;
background-color: #eee;
border-radius: 4px;
box-shadow: inset 0 1px 3px #fff, inset 0 -15px #fff, 0 0 3px #fff;
-o-box-shadow: inset 0 1px 3px #fff, inset 0 -15px #fff, 0 0 3px #fff;
-webkit-box-shadow: inset 0 1px 3px #fff, inset 0 -15px #eee, 0 0 3px #999;
-moz-box-shadow: inset 0 1px 3px #fff, inset 0 -15px #eee, 0 0 3px #999;
color: #666;
text-shadow: 0 1px #fff;
padding: 5px 30px;
margin:.4em 0 1em .4em;
cursor:pointer
}
.form-submit:hover {
   border-top-color: #ffffff;
   background: #ffffff;
   color: #ccc;
   }
.form-submit:active {
   border-top-color: #dee0dc;
   background: #dee0dc;
   }
 .description {font-size:11px; font-family:Arial, Helvetica, sans-serif; color:#333; margin-bottom:15px}
 .form-required {color:#900}


/*tables*/
table {
width:100%;
margin:1em 0
}
thead {background:#f5f5f5; border-top:1px solid #D7D7D7}
thead th {
border-bottom:.2em solid #e1e3e4;
color:#615F5F;
text-shadow: 1px 1px 1px #fff;
font-weight:700;
text-align:left
}

th a:link,th a:visited {
color:#30393D
}

td,th {
padding:.3em .5em
}

tr.odd,tr.info {
background-color:#eee;
border-bottom:.1em #e1e3e4 solid
}

tr.odd .form-item,tr.even .form-item {
background:none
}

tr.odd:hover,tr.info:hover {
background-color:#f9fcfe
}
.faceted-search tr:hover {background-color:#fff}
tr.even {
background-color:#fff;
border-bottom:.1em #e1e3e4 solid
}

tr.even:hover {
background-color:#FFFFF4;
color:#000
}

tr.drag {
background-color:#fffff0
}

tr.drag-previous {
background-color:#ffd
}

tr.odd td.active {
background-color:#ddecf5
}

tr.even td.active {
background-color:#e6f1f7
}

td.region,td.module,td.container,td.category {
border-top:1.5em solid #fff;
background-color:#d4e7f3;
color:#455067;
font-weight:700
}

tr:first-child td.region,tr:first-child td.module,tr:first-child td.container,tr:first-child td.category {
border-top-width:0
}

td.block {
background:none;
border:none;
padding:0
}
.element-invisible {display:none}