/**
 * @file
 * Override various default visual styles provided by the Omega theme.
 */

/**
 * Pagers Positioning
 */
.item-list .pager {
  margin: 0;
  padding: 0;
  position: relative;
  font-size: 10px;
  text-align: center;
}

.item-list .pager li,
.item-list .pager ul li {
  margin: 0;
  padding: .5em 0;
}

.pager li a {
  display: inline-block;
}

.pager li.pager-ellipsis,
.pager li.pager-current,
.pager li a {
  padding: .5em .9em;
  text-decoration: none;
  display: inline-block;
}

.pager li.pager-current {
  font-weight: bold;
}

.pager li.pager-first,
.pager li.pager-previous,
.pager li.pager-next,
.pager li.pager-last {
  padding: 0;
}
.pager li.pager-first a,
.pager li.pager-previous a,
.pager li.pager-next a,
.pager li.pager-last a {
  text-align: center;
  padding: .5em .9em;
  white-space: nowrap;
}
.pager li.pager-next {
  position: absolute;
  top: 0;
  right: 50px;
}
.pager li.pager-previous {
  position: absolute;
  top: 0;
  left: 50px;
}
.pager li.pager-first,
.pager li.pager-previous.first {
  position: absolute;
  top: 0;
  left: 0;
}
.pager li.pager-last,
.pager li.pager-next.last {
  position: absolute;
  top: 0;
  right: 0;
}
.pager li.pager-last a,
.pager li.pager-next.last a {
  border-right: 0;
}
.pager li.pager-first a,
.pager li.pager-last a {
  width: 50px;
  padding: .5em 0;
}

/**
 * Pager color.
 */
.pager li.pager-ellipsis,
.pager li.pager-current,
.pager li a {
  color: #0b223a;
}
.pager li {
  border: none;
  color: #333;
  font: bold 12px/1.2 Arial, sans-serif;
  outline: 0;
  margin:0 0 0 -1px !important;
}
.pager li a {
  border-right: 1px solid;
  border-left: 1px solid;
  border-color: #cddcea;
  background: #edf3f8;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(1, #edf3f8));
  background: -moz-linear-gradient(top center, #fff 0%, #edf3f8 100%);
  cursor: pointer;
}
.pager li a:hover {
  background:#FFF;
  color:#454545;
}
.pager li a:focus,
.pager li a:active,
.pager li.pager-current {
  background: #1a1a1a;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #1a1a1a), color-stop(1, #5a5a5a));
  background: -moz-linear-gradient(top center, #1a1a1a 0%, #5a5a5a 100%);
  color: #FFF;
  outline: 0;
}

/*
 * Pager border radius adjustments.
 */
.pager {
  background: #edf3f8;
  border:1px solid;
  border-color: #cddcea;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
.pager li.first,
.pager li.first a,
.pager li.first a:hover {
  border-radius: 5px 0 0 5px;
  -moz-border-radius: 5px 0 0 5px;
  -webkit-border-radius: 5px 0 0 5px;
}
.pager li.pager-current.first,
.pager li.pager-current.first a,
.pager li.pager-current.first a:hover {
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
}
.pager li.last,
.pager li.last a,
.pager li.last a:hover {
  border-radius: 0 5px 5px 0;
  -moz-border-radius: 0 5px 5px 0;
  -webkit-border-radius: 0 5px 5px 0;
}

/**
 * Ajax pagers.
 */
.pager li.first .ajax-progress {
    position: absolute;
    left: .5em;
    top: .2em;
}
.pager li.last .ajax-progress {
    position: absolute;
    right: .4em;
    top: .2em;
}


/**
 * Default table styles.
 */
table {
  border: none;
  width: 100%;
}
thead th, th {
  background: -webkit-gradient(linear, left top, left bottom, from(#05426e), to(#03253e));
  background: -moz-linear-gradient(top center, #05426e, #03253e);
  background-color: #002744;
  color: #fff;
  font-weight: bold;
  border-bottom: none;
  margin: 0 0 5px;
  padding: 10px;
  line-height: 1;
  text-transform: none;
}
thead th:first-child, th:first-child {
  border-radius: 5px 0 0 2px;
}
thead th:last-child, th:last-child {
  border-radius: 0 5px 2px 0;
}
thead th:first-child:last-child, th:first-child:last-child {
  border-radius: 5px 5px 2px 2px;
}
td, th {
  padding: 4px 8px;
  vertical-align: middle;
}
td {
  background: #f6f8f9;
}
th.active,
th:hover {
  -webkit-box-shadow: inset 0 0 1em .2em rgba(255, 255, 255, .1);
  -moz-box-shadow: inset 0 0 1em .2em rgba(255, 255, 255, .1);
  box-shadow: inset 0 0 1em .2em rgba(255, 255, 255, .1);
  background: -webkit-gradient(linear, left top, left bottom, from(#184f84), to(#0e2f50));
  background: -moz-linear-gradient(top center, #184f84, #0e2f50);
  background-color: #0e2b4a;
  text-decoration: none;
  /*border-left: 1px solid #486A81;
  border-right: 1px solid #486A81;*/
}
th a {
  display: block;
}
th a, th a:link, th a:visited {
  text-decoration: none;
  color: #b4d6ec;
}
th a:hover,
th a:active,
th a:focus,
th:hover a {
  color: #89c7f4;
}
th.active a {
  color: #89c7f4;
}
th a img {
  margin: 0 0 0 5px;
}
thead .views-field a {
  padding-right: 18px;
  background: url(../images/icon_sortable_table_column.png) no-repeat 100% 50%;
}
thead .views-field.active a {
  padding-right: 0;
  background: none;
}


/**
 * Odd & Even Styles
 */
tr:nth-child(even), tr:nth-child(odd) {
  background-color: #f6f8f9;
  border-bottom: 1px solid #cddcea;
  padding: 0.1em 0.6em;
}
tr:nth-child(even) td {
  background: #e7edf3;
}
tr:nth-child(odd) td{
  background: #f6f8f9;
}

/**
 * Active row/cell styles.
 */
td.active {
  border-left: 1px solid #cddcea;
  border-right: 1px solid #cddcea;
}
tr:nth-child(even) td.active,
tr:nth-child(odd) td.active {
  background: #d9e6f4;
}
tr:hover td,
tbody tr:hover th,
tr:nth-child(even):hover td.active,
tr:nth-child(odd):hover td.active,
tbody tr:nth-child(even):hover th,
tbody tr:nth-child(odd):hover th {
  background: #e0eef9;
  border-color: #b5cbde;
  border-top: 1px solid #b5cbde;
}
tr:first-child:hover td {
  border-top: none;
}
tr:hover,
tr:nth-child(even):hover,
tr:nth-child(odd):hover  {
  border-color: #b5cbde;
}

td ul.links {
  margin-bottom: 0;
}

.node-links ul li a {
  text-transform: lowercase;
  display: block;
  float: left;
  text-decoration: none;
  -moz-background-clip: padding;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  margin: 0 0.5em 0.5em 0;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-border-radius: 11px;
  -webkit-border-radius: 11px;
  border-radius: 11px;
  background: #edf3f8 url(../images/button.png) repeat-x;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(1, #edf3f8));
  background: -moz-linear-gradient(top center, #fff 0%, #edf3f8 100%);
  border: 1px solid;
  border-color: #cddcea;
  cursor: pointer;
  color: #333;
  font: bold 12px/1.2 Arial, sans-serif;
  outline: 0;
  overflow: visible;
  padding: 4px 10px 3px;
  text-shadow: #fff 0 1px 1px;
  width: auto;

  /* IE7 */
  *padding-top: 2px;
  *padding-bottom: 0px;
}
.node-links ul li a:hover {
  background: #FFF;
}

/* Comments */

.comment {
  margin: 0 0 20px;
}
.comment header {
  display: none;
}
.comment .user-picture {
  float: left;
  margin-right: 5px;
}
.field-name-comment-body {
  margin: 5px 0;
}
.field-name-comment-body p {
  margin: 5px 0;
}
.pane-node-comments, .pane-node-comment-form {
  background: #f3f3f3;
  padding: 10px;
  margin-top: 10px;
}
.comment-links ul {
  margin: 5px 0;
  padding: 0;
  display: block;
}
.comment-links ul li {
  margin: 0;
  padding: 0;
  font-size: .9em;
}
.comment-links ul li:before {
  content: " | ";
}
.comment-links ul li:first-child:before {
  content: "";
}
.comment-links ul li a {
  text-transform: capitalize;
}
.comment-submitted {
  font-size: 15px;
}
#edit-notify-type, 
#edit-notify-type--2 {
  margin-bottom: 1em;
}
#edit-notify-type .form-item-notify-type,
#edit-notify-type--2 .form-item-notify-type {
  display: block;
  margin-left: 1.5em;
}

.filter-help {
  display: none;
}
.filter-wrapper {
  border-top: 1px solid #c0c0c0;
}
.ckeditor_links {
  position: relative;
  bottom: -.75em;
  right: -.75em;
  background: #f3f3f3;
}


/* */
.tips,
.description {
  font-size: 10px;
  color: #283c68;
}
