/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Mar 11, 2015, 9:52:39 AM
    Author     : jhenniger
*/
.paging {
  display: block;
  position: relative;
  width: 100%;
  padding: 5px 0 5px 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  border-top: 2px solid #efefef;
  border-bottom: 1px solid #cbcbcb;
}
.paging a {
  text-decoration: none;
  color: #369fbf;
}
.paging a:hover {
  color: #3388aa;
  text-decoration: underline;
}
.paging .direct {
  text-align: center;
}
.paging .direct a,
.paging .direct strong {
  display: inline-block;
  border-left: 1px solid #369fbf;
  padding: 0 5px 0 5px;
}
.paging .direct a:first-child,
.paging .direct strong:first-child {
  border-left: none;
}
.paging .previous,
.paging .next {
  text-transform: lowercase;
  position: absolute;
  top: 0;
  padding-top: 5px;
}
.paging .previous {
  left: 0;
}
.paging .previous:before {
  content: '\25C4 \00a0';
}
.paging .next {
  right: 0;
}
.paging .next:after {
  content: '\00a0 \25BA';
}
