/*
 * HTML5 Boilerplate
 *
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 *
 * Detailed information about this CSS: h5bp.com/css
 *
 * ==|== normalize ==========================================================
 */
/* =============================================================================
   HTML5 display definitions
   ========================================================================== */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
audio:not([controls]) {
  display: none;
}
[hidden] {
  display: none;
}
/* =============================================================================
   Base
   ========================================================================== */
/*
 * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
 * 2. Prevent iOS text size adjust on device orientation change, without disabling user zoom: h5bp.com/g
 */
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
html,
button,
input,
select,
textarea {
  font-family: sans-serif;
  color: #222;
}
body {
  margin: 0;
  font-size: 1em;
  line-height: 1.4;
}
/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection declarations have to be separate
 * Also: hot pink! (or customize the background color to match your design)
 */
::-moz-selection {
  background: #682140;
  color: #fff;
  text-shadow: none;
}
::selection {
  background: #682140;
  color: #fff;
  text-shadow: none;
}
/* =============================================================================
   Links
   ========================================================================== */
a {
  color: #00e;
}
a:visited {
  color: #551a8b;
}
a:hover {
  color: #06e;
}
a:focus {
  outline: thin dotted;
}
/* Improve readability when focused and hovered in all browsers: h5bp.com/h */
a:hover,
a:active {
  outline: 0;
}
/* =============================================================================
   Typography
   ========================================================================== */
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
blockquote {
  margin: 1em 40px;
}
dfn {
  font-style: italic;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
ins {
  background: #ff9;
  color: #000;
  text-decoration: none;
}
mark {
  background: #ff0;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
/* Redeclare monospace font family: h5bp.com/j */
pre,
code,
kbd,
samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em;
}
/* Improve readability of pre-formatted text in all browsers */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}
q {
  quotes: none;
}
q:before,
q:after {
  content: "";
  content: none;
}
small {
  font-size: 85%;
}
/* Position subscript and superscript content without affecting line-height: h5bp.com/k */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* =============================================================================
   Lists
   ========================================================================== */
ul,
ol {
  margin: 1em 0;
  padding: 0 0 0 40px;
}
dd {
  margin: 0 0 0 40px;
}
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0;
}
/* =============================================================================
   Embedded content
   ========================================================================== */
/*
 * 1. Improve image quality when scaled in IE7: h5bp.com/d
 * 2. Remove the gap between images and borders on image containers: h5bp.com/i/440
 */
img {
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: middle;
}
/*
 * Correct overflow not hidden in IE9
 */
svg:not(:root) {
  overflow: hidden;
}
/* =============================================================================
   Figures
   ========================================================================== */
figure {
  margin: 0;
}
/* =============================================================================
   Forms
   ========================================================================== */
form {
  margin: 0;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
/* Indicate that 'label' will shift focus to the associated form element */
label {
  cursor: pointer;
}
/*
 * 1. Correct color not inheriting in IE6/7/8/9
 * 2. Correct alignment displayed oddly in IE6/7
 */
legend {
  border: 0;
  *margin-left: -7px;
  padding: 0;
  white-space: normal;
}
/*
 * 1. Correct font-size not inheriting in all browsers
 * 2. Remove margins in FF3/4 S5 Chrome
 * 3. Define consistent vertical alignment display in all browsers
 */
button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}
/*
 * 1. Define line-height as normal to match FF3/4 (set using !important in the UA stylesheet)
 */
button,
input {
  line-height: normal;
}
/*
 * 1. Display hand cursor for clickable form elements
 * 2. Allow styling of clickable form elements in iOS
 * 3. Correct inner spacing displayed oddly in IE7 (doesn't effect IE6)
 */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
  *overflow: visible;
}
/*
 * Re-set default cursor for disabled elements
 */
button[disabled],
input[disabled] {
  cursor: default;
}
/*
 * Consistent box sizing and appearance
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
  *width: 13px;
  *height: 13px;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
/*
 * Remove inner padding and border in FF3/4: h5bp.com/l
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/*
 * 1. Remove default vertical scrollbar in IE6/7/8/9
 * 2. Allow only vertical resizing
 */
textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}
/* Colors for form validity */
input:invalid,
textarea:invalid {
  background-color: #f0dddd;
}
/* =============================================================================
   Tables
   ========================================================================== */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td {
  vertical-align: top;
}
/* =============================================================================
   Chrome Frame Prompt
   ========================================================================== */
.chromeframe {
  margin: 0.2em 0;
  background: #ccc;
  color: black;
  padding: 0.2em 0;
}
/* ==|== primary styles =====================================================
   Author: Maciek Czerniak | m.czerniak@mojito-networks.com
   ========================================================================== */
/* =============================================================================
  BASIC Typography
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-style: italic;
}
h2 {
  font-size: 18px;
}
h3 {
  font-size: 16px;
}
h4 {
  font-size: 14px;
}
/* =============================================================================
   LESS Helpers
   ========================================================================== */
.outline {
  outline: 1px solid red;
}
/*pictogram font*/
@font-face {
  font-family: 'ModernPictogramsNormal';
  src: url('../fonts/modernpics-webfont.eot');
  src: url('../fonts/modernpics-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/modernpics-webfont.woff') format('woff'), url('../fonts/modernpics-webfont.ttf') format('truetype'), url('../fonts/modernpics-webfont.svg#ModernPictogramsNormal') format('svg');
  font-weight: normal;
  font-style: normal;/*link for quick pictogram selection - http://thedesignoffice.org/project/modern-pictograms/*/
}
.picto {
  font-family: 'ModernPictogramsNormal';
  font-style: normal;
}
.serif {
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
}
.sans {
  font-family: 'PT Sans', Verdana, Tahoma, Arial, sans-serif;
}
.animate_opacity {
  -webkit-transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
  opacity: 1;
}
.radius2 {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.radius2left {
  -webkit-border-top-left-radius: 2px;
  -webkit-border-bottom-left-radius: 2px;
  -moz-border-radius-topleft: 2px;
  -moz-border-radius-bottomleft: 2px;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
.radius2top {
  -webkit-border-top-left-radius: 2px;
  -webkit-border-top-right-radius: 2px;
  -moz-border-radius-topleft: 2px;
  -moz-border-radius-topright: 2px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.violet_gradient {
  background-image: linear-gradient(bottom, #a98097 50%, #c096ae 100%);
  background-image: -o-linear-gradient(bottom, #a98097 50%, #c096ae 100%);
  background-image: -moz-linear-gradient(bottom, #a98097 50%, #c096ae 100%);
  background-image: -webkit-linear-gradient(bottom, #a98097 50%, #c096ae 100%);
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.5, #a98097), color-stop(1, #c096ae));
}
.purple_gradient {
  background-image: linear-gradient(bottom, #5e1e3a 50%, #773853 100%);
  background-image: -o-linear-gradient(bottom, #5e1e3a 50%, #773853 100%);
  background-image: -moz-linear-gradient(bottom, #5e1e3a 50%, #773853 100%);
  background-image: -webkit-linear-gradient(bottom, #5e1e3a 50%, #773853 100%);
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.5, #5e1e3a), color-stop(1, #773853));
}
.text_shadow {
  text-shadow: 1px 1px 0px #444444;
}
.box_shadow {
  -webkit-box-shadow: 0px 2px 2px 0px #cccbc9;
  box-shadow: 0px 2px 2px 0px #cccbc9;
}
/* =============================================================================
  978 GRID SYSTEM
   ========================================================================== */
.container {
  width: 978px;
  margin: 0 auto;
  overflow: auto;
}
.grid1,
.grid2,
.grid3,
.grid4,
.grid5,
.grid6,
.grid7,
.grid8,
.grid9,
.grid10,
.grid11 {
  float: left;
  display: inline;
  margin-left: 30px;
}
.grid1 {
  width: 54px;
}
.grid2 {
  width: 138px;
}
.grid3 {
  width: 222px;
}
.grid4 {
  width: 306px;
}
.grid5 {
  width: 390px;
}
.grid6 {
  width: 474px;
}
.grid7 {
  width: 558px;
}
.grid8 {
  width: 642px;
}
.grid9 {
  width: 726px;
}
.grid10 {
  width: 810px;
}
.grid11 {
  width: 894px;
}
.first {
  margin-left: 0;
  clear: left;
}
.clear {
  clear: both;
}
/* =============================================================================
   1.0 MASTER PAGE
   ========================================================================== */
body {
  font-family: 'PT Sans', Verdana, Tahoma, Arial, sans-serif;
  background: #f8f7f4 url(../img/checkered_pattern.png) top left repeat;
}
header {
  width: 100%;
  background: url(../img/bgr_header_1920.jpg) top center no-repeat;
  height: 193px;
  display: block;
  overflow: hidden;
  margin: 0;
}
header h1 {
  margin: 0;
  padding: 0;
}

.float_right {
  float: right;
}

a#logo {
  display: block;
  overflow: hidden;
  background: url(../img/logo.png) top left no-repeat;
  width: 623px;
  height: 94px;
  margin: 48px 0 0 0;
  padding: 15px 0 0 112px;
  -webkit-transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
  opacity: 1;
  color: #fff;
  text-decoration: none;
  font-style: normal;
  text-transform: uppercase;
}
a#logo .sublogo {
  display: block;
  font-size: 16px;
}
a#logo:hover {
  opacity: 0.65;
}
a#bip {
  float: right;
  display: block;
  overflow: hidden;
  text-indent: -9999px;
  background: url(../img/logo_bip.png) top left no-repeat;
  width: 33px;
  height: 37px;
  margin: 72px 0 0 0;
  -webkit-transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
  opacity: 1;
}
a#bip:hover {
  opacity: 0.65;
}
#main {
  display: block;
  overflow: auto;
  min-height: 320px;
  background: url(../img/sidebar_shadow.png) top left no-repeat;
}
#main aside#sidebar h2 {
  text-align: right;
  margin-right: 24px;
  text-transform: uppercase;
  font-style: normal;
  color: #777777;
}
#main aside#sidebar nav {
  overflow: hidden;
}
#main aside#sidebar nav ul li {
  display: block;
}
#main aside#sidebar nav ul li a {
  -webkit-border-top-left-radius: 2px;
  -webkit-border-bottom-left-radius: 2px;
  -moz-border-radius-topleft: 2px;
  -moz-border-radius-bottomleft: 2px;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  display: block;
  width: 128px;
  height: 36px;
  line-height: 36px;
  float: right;
  background: #bc8ea8;
  color: #fff;
  text-decoration: none;
  text-align: right;
  padding-right: 24px;
  margin-bottom: 1px;
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-style: italic;
  background-image: linear-gradient(bottom, #a98097 50%, #c096ae 100%);
  background-image: -o-linear-gradient(bottom, #a98097 50%, #c096ae 100%);
  background-image: -moz-linear-gradient(bottom, #a98097 50%, #c096ae 100%);
  background-image: -webkit-linear-gradient(bottom, #a98097 50%, #c096ae 100%);
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.5, #a98097), color-stop(1, #c096ae));
  text-shadow: 1px 1px 0px #444444;
}
#main aside#sidebar nav ul a:hover,
#main aside#sidebar nav ul li.active a {
  background: #682140;
  background-image: linear-gradient(bottom, #5e1e3a 50%, #773853 100%);
  background-image: -o-linear-gradient(bottom, #5e1e3a 50%, #773853 100%);
  background-image: -moz-linear-gradient(bottom, #5e1e3a 50%, #773853 100%);
  background-image: -webkit-linear-gradient(bottom, #5e1e3a 50%, #773853 100%);
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.5, #5e1e3a), color-stop(1, #773853));
}
#main aside#sidebar .records_number {
  clear: both;
  color: #777777;
  text-align: right;
  margin-right: 24px;
  font-size: 10px;
  margin-top: 72px;
}
#main aside#sidebar nav .records_number {
  clear: both;
  color: #777777;
  text-align: right;
  margin-right: 24px;
  font-size: 10px;
  margin-top: 32px;
}
footer {
  width: 100%;
  background: url(../img/bgr_footer_1920.jpg) center 132px no-repeat;
  display: block;
  clear: both;
  overflow: hidden;
  margin: 0;
  height: 357px;
  color: #fff;
  font-size: 10px;
}
footer .container {
  position: relative;
  overflow: visible;
}
footer .container #hammer {
  background: url(../img/hammer.png) top left no-repeat;
  width: 221px;
  height: 222px;
  position: absolute;
  display: block;
  right: 0;
}
footer p.copyrights {
  margin: 144px 24px 0 0;
  float: left;
}
footer a.modal-link {
  display: block;
  color: #FFF;
  text-decoration: none;
  float: left;
}

footer a.modal-link:hover {
  display: block;
  color: #FFF;
  text-decoration: underline;
  float: left;
}

footer .footer-margin {
  margin: 144px 24px 0 0;
}
/* Cookies acceptance */

#cookieInfoHeader {
  margin: 0px;
  width: 100%;
  z-index: 1001;
  background: none repeat scroll 0 0;
}
#cookieInfoHeader.fixed {
  position: fixed;
  top: 68px;
}
#cookieInfoContainer {
  margin: 0 auto;
  overflow: auto;
  width: 580px;
}
#acceptCookieButton {
  font-size: 16px;
  text-decoration: none;
}

/* =============================================================================
   2.0 SECTIONS
   ========================================================================== */
/* =============================================================================
   2.1 SIMPLE FORM
   ========================================================================== */
#content.simple {
  overflow: visible;
}
#content.simple .correct,
#content.simple .alert {
  display: block;
  padding: 24px;
  text-align: center;
  background: url("../img/bgr_item.png") repeat scroll left top transparent;
  border: 1px solid #E7E3DB;
  box-shadow: 0 2px 2px 0 #CCCBC9;
  overflow: auto;
  clear: both;
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-size: 14px;
  font-style: italic;
  margin: 24px 0;
}
#content.simple .correct a,
#content.simple .alert a {
  color: #682140;
}
#content.simple .correct a:hover,
#content.simple .alert a:hover {
  text-decoration: none;
  color: #bc8ea8;
}
#content.simple form {
  margin: 38px 0 0 0;
  overflow: visible;
  padding: 0;
}
#content.simple form .autosuggest {
  clear: both;
  position: relative;
}
#content.simple form .autosuggest .t-autocomplete-menu {
  display: none;
}
#content.simple form .autosuggest .suggest-list-title {
  display: none;
}
#content.simple form .autosuggest .suggest-list {
  top: 48px;
  z-index: 1000;
  padding: 0;
  margin: 0;
  clear: both;
  float: left;
  border: 1px solid #aaaaaa;
  background: #fff;
  width: 430px;
  list-style-type: none;
  position: absolute;
}
#content.simple form .autosuggest .suggest-list li {
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-style: italic;
  padding: 2px 0 2px 12px;
  margin-bottom: 1px;
}
#content.simple form .autosuggest .suggest-list li .match {
  background: #BA6292;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  color: #fff;
  padding: 2px;
}
#content.simple form .autosuggest .suggest-list li.selected {
  background: #682140;
  color: #fff;
}
#content.simple form input,
#content.simple form label {
  clear: left;
  display: block;
  float: left;
}
#content.simple form input[type=text] {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  border: 1px solid #acacaa;
  background: url(../img/bgr_input.jpg) top left repeat-y;
  width: 432px;
  height: 36px;
  line-height: 36px;
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 14px;
  padding-left: 12px;
  -webkit-box-shadow: 0px 2px 2px 0px #cccbc9;
  box-shadow: 0px 2px 2px 0px #cccbc9;
  margin: 0 0 12px 0;
}
#content.simple form label {
  font-size: 11px;
  color: #777777;
  opacity: 0.2;
  margin: 0 0 2px 0;
}
#content.simple form fieldset {
  float: left;
  display: inline;
}
#content.simple form .searchSubmit {
  clear: none;
  display: block;
  background: url(../img/c2a_left_submit.png) top left no-repeat;
  width: 144px;
  height: 43px;
  border: 0;
  color: #fff;
  margin: 14px 0 0 24px;
  float: left;
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-size: 16px;
  font-style: italic;
  text-shadow: 1px 1px 0px #444444;
  text-align: right;
  padding: 0 32px 0 0;
  line-height: 36px;
  text-decoration: none;
  background-color: none !important;
}
#content.simple form .searchSubmit:hover {
  background: url(../img/c2a_left_submit.png) bottom left no-repeat;
  background-color: none !important;
}
#content.simple section#sorting {
  display: block;
  overflow: hidden;
  background: url(../img/bgr_ordering_no_spacers.png) top left no-repeat;
  width: 736px;
  height: 73px;
  -webkit-box-shadow: 0px 2px 2px 0px #cccbc9;
  box-shadow: 0px 2px 2px 0px #cccbc9;
  margin-top: 24px;
}
#content.simple section#sorting .message {
  display: block;
  width: 222px;
  margin-left: 30px;
  float: left;
  font-size: 11px;
  font-family: 'PT Sans', Verdana, Tahoma, Arial, sans-serif;
  text-transform: uppercase;
  margin: 12px 0 0 24px;
}
#content.simple section#sorting .message .big_number {
  font-size: 24px;
}
#content.simple section#sorting .meta {
  display: block;
  float: left;
  width: 468px;
}
#content.simple section#sorting .meta .sorting_header {
  font-size: 11px;
  margin: 12px 0 0 0;
  text-transform: uppercase;
}
#content.simple section#sorting .meta .sorting_buttons {
  font-size: 11px;
}
#content.simple section#sorting .meta .sorting_buttons a {
  text-decoration: none;
  color: #444444;
  background: url(../img/spacer_small.png) top left no-repeat;
  display: block;
  height: 41px;
  float: left;
  line-height: 28px;
  padding-left: 12px;
}
#content.simple section#sorting .meta .sorting_buttons a:hover .text {
  text-decoration: underline;
}
#content.simple section#sorting .meta .sorting_buttons a:first-child {
  background: none;
  padding-left: 0;
}
#content.simple section#sorting .meta .sorting_buttons .ascending.inactive .picto:before {
  color: #fff;
  content: '-';
  font-size: 18px;
  padding: 0 12px;
}
#content.simple section#sorting .meta .sorting_buttons .ascending.active .picto:before {
  color: #682140;
  content: '-';
  font-size: 18px;
  padding: 0 12px;
}
#content.simple section#sorting .meta .sorting_buttons .descending.inactive .picto:before {
  color: #fff;
  content: '/';
  font-size: 18px;
  padding: 0 12px;
}
#content.simple section#sorting .meta .sorting_buttons .descending.active .picto:before {
  color: #682140;
  content: '/';
  font-size: 18px;
  padding: 0 12px;
}
/* =============================================================================
   2.2 SEARCH RESULTS
   ========================================================================== */
#results {
  margin: 12px 0 0 0;
  overflow: hidden;
}
#results .pagination {
  clear: both;
  float: right;
  margin: 0 0 12px 0;
}
#results .pagination a,
#results .pagination .current {
  text-decoration: none;
  background: #bc8ea8;
  padding: 4px;
  font-size: 12px;
  display: inline-block;
  min-width: 12px;
  width: auto;
  padding: 4px 6px;
  height: 12px;
  line-height: 12px;
  text-align: center;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  color: #fff;
  margin-left: 2px;
}
#results .pagination .current,
#results .pagination a:hover {
  background: #682140;
  color: #ffffff;
}
#results .single_wrapper {
  height: 34px;
  background: url(../img/bottom_shadow.png) bottom center no-repeat;
}
#results .single_result {
  width: 733px;
  display: block;
  min-height: 238px;
  overflow: auto;
  border: 1px solid #e7e3db;
  background: url(../img/bgr_item.png) top left repeat;
}
#results .single_result .title {
  width: 222px;
  float: left;
  min-height: 238px;
  background: url(../img/spacer_big.png) right center no-repeat;
}
#results .single_result .title h4 {
  margin: 24px 0 0 24px;
}
#results .single_result .title h4 a {
  font-size: 18px;
  font-family: 'PT Sans', Verdana, Tahoma, Arial, sans-serif;
  color: #682140;
  text-decoration: underline;
  font-style: normal;
}
#results .single_result .title h4 a:hover {
  color: #bc8ea8;
  text-decoration: none;
}
#results .single_result .title p {
  font-size: 11px;
  color: #777777;
  margin: 0 0 0 24px;
}
#results .single_result .excerpt {
  float: left;
  margin: 0;
  padding: 0;
  width: 511px;
}
#results .single_result .excerpt blockquote {
  margin: 24px 24px 0;
  padding: 0;
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-size: 14px;
  line-height: 24px;
  font-style: italic;
}
#results .single_result .excerpt blockquote .strong {
  background: #BA6292;
  padding: 2px 4px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  color: #fff;
}
#results .single_result .excerpt blockquote .weak {
  background: #bc8ea8;
  padding: 2px 4px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  color: #ffffff;
}
#results .single_result .excerpt .readon, .similar .readon {
  display: block;
  overflow: hidden;
  width: 145px;
  height: 43px;
  color: #fff;
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-size: 16px;
  line-height: 43px;
  font-style: italic;
  text-decoration: none;
}
#results .single_result .excerpt .readon.right, .similar .readon.right {
  float: right;
  background: url(../img/c2a_right.png) top left no-repeat;
  margin: 12px 10px;
}
#results .single_result .excerpt .readon.right .icon, .similar .readon.right .icon {
  float: right;
  display: block;
  height: 36px;
  line-height: 36px;
  margin: 0;
  padding: 0;
  text-shadow: 1px 1px 0 #444444;
  width: 24px;
  font-style: normal;
}
#results .single_result .excerpt .readon.right .btn_text, .similar .btn_text {
  display: block;
  float: left;
  height: 36px;
  line-height: 36px;
  margin: 0 0 0 6px;
  padding: 0;
  text-shadow: 1px 1px 0 #444444;
  width: 96px;
  text-align: center;
}
#results .single_result .excerpt .readon.right:hover {
  background: url(../img/c2a_right.png) bottom left no-repeat;
  text-decoration: none;
}
/* =============================================================================
   2.3 ADVANCED SEARCH
   ========================================================================== */
.advanced #sidebar h3 {
  text-transform: uppercase;
  font-style: normal;
  color: #777777;
  text-align: right;
  margin: 48px 24px 0 0;
}
.advanced #sidebar h4 {
  color: #682140;
  font-size: 14px;
  text-align: right;
  margin: 12px 24px 0 0;
  clear: both;
}
.advanced #sidebar span.filter {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  background: #bc8ea8;
  display: inline-block;
  padding: 4px 12px 4px 6px;
  text-align: right;
  float: right;
  color: #fff;
  text-shadow: 1px 1px 0px #444444;
  font-size: 14px;
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-style: italic;
  margin: 0 24px 1px 0;
}
.advanced #sidebar span.filter a.remove {
  font-family: 'ModernPictogramsNormal';
  background: url(../select2-2.1/select2_2.png) top right no-repeat;
  color: #fff;
  text-shadow: 1px 1px 0px #444444;
  text-align: left;
  font-style: normal;
  display: block;
  margin-right: 6px;
  margin-top: 4px;
  float: left;
  height: 12px;
  width: 12px;
  line-height: 10px;
  cursor: pointer;
}
.advanced #sidebar span.filter a.remove:hover {
  background: url(../select2-2.1/select2_2.png) right -11px no-repeat;
}
.advanced #content.simple .grid45 {
  height: 65px;
  float: left;
  margin-left: 26px;
  width: 355px;
  display: block;
}
.advanced #content.simple .first {
  margin-left: 0;
  width: 355px;
}
.advanced #content.simple form#advancedSearchForm {
  overflow: visible;
}
.advanced #content.simple form#advancedSearchForm input[type=text] {
  width: 355px;
}
.advanced #content.simple form#advancedSearchForm fieldset {
  border-top: 1px dotted #cfc6b5;
  padding: 6px 0;
  width: 100%;
  clear: both;
}
.advanced #content.simple form#advancedSearchForm select {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  border: 1px solid #acacaa;
  background: url(../img/bgr_input.jpg) top left repeat-y;
  height: 36px;
  line-height: 36px;
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 14px;
  padding: 6px 0 0 12px;
  -webkit-box-shadow: 0px 2px 2px 0px #cccbc9;
  box-shadow: 0px 2px 2px 0px #cccbc9;
  width: 355px;
  margin-bottom: 12px;
  -moz-appearance: none;
  -webkit-appearance:none;
}
.advanced #content.simple form#advancedSearchForm select::-ms-expand {
    display: none;
}
.advanced #content.simple form#advancedSearchForm #ui-datepicker-div {
  font-size: 62.5% !important;
}
.advanced #content.simple form#advancedSearchForm .form_col {
  float: left;
  display: block;
  margin-left: 30px;
  width: 150px;
}
.advanced #content.simple form#advancedSearchForm .form_col.first {
  margin-left: 0;
}
.advanced #content.simple form#advancedSearchForm input.cal {
  width: 163px;
  background: url(../img/bgr_input_cal.jpg) -5px 0 repeat-y;
}
.advanced #content.simple form#advancedSearchForm #advancedSearchFormSubmit {
  clear: left;
  float: right;
  margin-left: 12px;
}
.advanced #content.simple form#advancedSearchForm #add_field {
  background: #bc8ea8;
  background-image: linear-gradient(bottom, #a98097 50%, #c096ae 100%);
  background-image: -o-linear-gradient(bottom, #a98097 50%, #c096ae 100%);
  background-image: -moz-linear-gradient(bottom, #a98097 50%, #c096ae 100%);
  background-image: -webkit-linear-gradient(bottom, #a98097 50%, #c096ae 100%);
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.5, #a98097), color-stop(1, #c096ae));
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  padding: 4px 6px;
  color: #fff;
  font-size: 11px;
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-style: italic;
  cursor: pointer;
  text-shadow: 1px 1px 0px #444444;
  margin: 17px 0 0 0;
  display: block;
  width: 96px;
}
.advanced #content.simple form#advancedSearchForm #add_field .picto {
  font-style: normal;
  padding: 0 6px 0 0;
}
.advanced #content.simple form#advancedSearchForm #add_field:hover {
  background: #682140;
  background-image: linear-gradient(bottom, #5e1e3a 50%, #773853 100%);
  background-image: -o-linear-gradient(bottom, #5e1e3a 50%, #773853 100%);
  background-image: -moz-linear-gradient(bottom, #5e1e3a 50%, #773853 100%);
  background-image: -webkit-linear-gradient(bottom, #5e1e3a 50%, #773853 100%);
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.5, #5e1e3a), color-stop(1, #773853));
}
.advanced #content.simple form#advancedSearchForm a#clearForm {
  background: #bc8ea8;
  background-image: linear-gradient(bottom, #a98097 50%, #c096ae 100%);
  background-image: -o-linear-gradient(bottom, #a98097 50%, #c096ae 100%);
  background-image: -moz-linear-gradient(bottom, #a98097 50%, #c096ae 100%);
  background-image: -webkit-linear-gradient(bottom, #a98097 50%, #c096ae 100%);
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.5, #a98097), color-stop(1, #c096ae));
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  padding: 4px 6px;
  color: #fff;
  font-size: 11px;
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-style: italic;
  cursor: pointer;
  text-shadow: 1px 1px 0px #444444;
  margin: 22px 0 0 0;
  display: block;
  width: 120px;
  height: 24px;
  line-height: 24px;
  text-decoration: none;
  float: right;
  text-align: center;
}
.advanced #content.simple form#advancedSearchForm a#clearForm:hover {
  background: #682140;
  background-image: linear-gradient(bottom, #5e1e3a 50%, #773853 100%);
  background-image: -o-linear-gradient(bottom, #5e1e3a 50%, #773853 100%);
  background-image: -moz-linear-gradient(bottom, #5e1e3a 50%, #773853 100%);
  background-image: -webkit-linear-gradient(bottom, #5e1e3a 50%, #773853 100%);
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.5, #5e1e3a), color-stop(1, #773853));
}
.advanced #content.simple form#advancedSearchForm .select2-search-field input[type=text] {
  border: none;
  box-shadow: none;
  padding-left: 0;
  height: 32px;
  line-height: 32px;
  margin-bottom: 0;
}
.advanced #content.simple section#sorting {
  margin: 24px 0 0 0;
  clear: both;
}
.advanced #content.simple #showForm {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  display: block;
  background: #682140;
  color: #fff;
  text-decoration: none;
  padding: 0 0 0 12px;
  height: 36px;
  line-height: 36px;
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-style: italic;
  text-shadow: 1px 1px 0px #444444;
  background-image: linear-gradient(bottom, #5e1e3a 50%, #773853 100%);
  background-image: -o-linear-gradient(bottom, #5e1e3a 50%, #773853 100%);
  background-image: -moz-linear-gradient(bottom, #5e1e3a 50%, #773853 100%);
  background-image: -webkit-linear-gradient(bottom, #5e1e3a 50%, #773853 100%);
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.5, #5e1e3a), color-stop(1, #773853));
  margin: 56px 0 0 0;
  display: none;
}
.arrow_down {
  background: url(../img/arow_down.png) 0 0 no-repeat;
  display: inline-block;
  width: 13px;
  height: 7px;
  float: right;
  margin: 16px 12px 0 0;
  margin-right: 20px;
}
.arrow_up {
  background: url(../img/arow_up.png) 0 0 no-repeat;
  display: inline-block;
  width: 13px;
  height: 7px;
  float: right;
  margin: 16px 12px 0 0;
  margin-right: 20px;
}
.advanced #content.simple #showForm:hover {
  background-image: linear-gradient(bottom, #a98097 50%, #c096ae 100%);
  background-image: -o-linear-gradient(bottom, #a98097 50%, #c096ae 100%);
  background-image: -moz-linear-gradient(bottom, #a98097 50%, #c096ae 100%);
  background-image: -webkit-linear-gradient(bottom, #a98097 50%, #c096ae 100%);
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.5, #a98097), color-stop(1, #c096ae));
}
.advanced #content.simple #select_fields label {
  margin: 0 0 2px 0;
}
.advanced .finder_list label {
  opacity: 1 !important;
}
/* =============================================================================
   2.4 SINGLE - KEY
   ========================================================================== */
.single #content h2 {
  color: #682140;
}
.single #content ul.tabs {
  padding: 0;
  margin: 0;
}
.single #content ul.tabs li {
  float: left;
  display: block;
  width: auto;
  height: 36px;
}
.single #content ul.tabs li a {
  height: 36px;
  line-height: 36px;
  overflow: hidden;
  text-align: left;
  color: #fff;
  text-shadow: 1px 1px 0px #444444;
  -webkit-border-top-left-radius: 2px;
  -webkit-border-top-right-radius: 2px;
  -moz-border-radius-topleft: 2px;
  -moz-border-radius-topright: 2px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  background: #bc8ea8;
  background-image: linear-gradient(bottom, #a98097 50%, #c096ae 100%);
  background-image: -o-linear-gradient(bottom, #a98097 50%, #c096ae 100%);
  background-image: -moz-linear-gradient(bottom, #a98097 50%, #c096ae 100%);
  background-image: -webkit-linear-gradient(bottom, #a98097 50%, #c096ae 100%);
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.5, #a98097), color-stop(1, #c096ae));
  display: block;
  margin: 0 1px 0 0;
  padding: 0 12px 0 12px;
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  text-decoration: none;
  font-style: italic;
  width: auto;
}
.single #content ul.tabs li a:hover {
  background: #682140;
  background-image: linear-gradient(bottom, #5e1e3a 50%, #773853 100%);
  background-image: -o-linear-gradient(bottom, #5e1e3a 50%, #773853 100%);
  background-image: -moz-linear-gradient(bottom, #5e1e3a 50%, #773853 100%);
  background-image: -webkit-linear-gradient(bottom, #5e1e3a 50%, #773853 100%);
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.5, #5e1e3a), color-stop(1, #773853));
}
.single #content ul.tabs li a.back {
  width: 36px !important;
  text-align: center;
  font-family: 'ModernPictogramsNormal';
  font-style: normal;
  padding: 0;
  line-height: 24px;
  font-size: 20px;
}
.single #content ul.tabs li.active a {
  backgrond: #682140;
  background-image: linear-gradient(bottom, #5e1e3a 50%, #773853 100%);
  background-image: -o-linear-gradient(bottom, #5e1e3a 50%, #773853 100%);
  background-image: -moz-linear-gradient(bottom, #5e1e3a 50%, #773853 100%);
  background-image: -webkit-linear-gradient(bottom, #5e1e3a 50%, #773853 100%);
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.5, #5e1e3a), color-stop(1, #773853));
}
.single #content .single_wrapper {
  clear: both;
  display: block;
  overflow: auto;
  height: auto;
  padding: 0 0 34px 0;
  background: url(../img/bottom_shadow.png) bottom left no-repeat;
  border-top: 2px solid #682140;
}
.single #content .single_wrapper .single_result {
  background: url(../img/bgr_item.png) top left repeat;
  margin: 0;
  padding: 0;
  border-left: 1px solid #E7E3DB;
  border-right: 1px solid #E7E3DB;
  border-bottom: 1px solid #E7E3DB;
  overflow: auto;
}
.single #content .single_wrapper .single_result dl {
  margin: 36px 24px 48px 24px;
  display: block;
  overflow: auto;
}
.single #content .single_wrapper .single_result dl dt {
  font-size: 12px;
  color: #777777;
  text-align: right;
  display: inline;
  width: 172px;
  display: block;
  float: left;
  clear: left;
  line-height: 24px;
}
.single #content .single_wrapper .single_result dl dd {
  display: block;
  width: 460px;
  float: left;
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-style: italic;
  text-align: left;
  padding-left: 12px;
  margin-left: 12px;
  line-height: 24px;
  margin-bottom: 12px;
}
.single #content .records_number {
  color: #777777;
  font-size: 10px;
  margin-top: 24px;
  text-align: left;
}
/* =============================================================================
   2.4 SINGLE - CONTENT
   ========================================================================== */
.single.content #content ul.tabs {
  width: 100%;
}
.single.content #content ul.tabs li.print_btn,
.single.content #content ul.tabs li.download_btn {
  float: right !important;
}
.single.content #content ul.tabs li.print_btn a,
.single.content #content ul.tabs li.download_btn a {
  float: right;
}
.single.content #content .single_wrapper .single_result {
  padding: 48px;
}
.single.content #content .single_wrapper .single_result .signature {
  color: #682140;
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 12px;
}
.single.content #content .single_wrapper .single_result h2 .strong {
  font-family: 'PT Sans', Verdana, Tahoma, Arial, sans-serif;
  font-size: 36px;
  line-height: 24px;
  text-transform: uppercase;
  text-align: center;
  font-style: normal;
  margin: 36px 0 12px;
  background: none !important;
  color: #222222;
  padding: 0;
}
.single.content #content .single_wrapper .single_result h3,
.single.content #content .single_wrapper .single_result h5 {
  font-family: 'PT Sans', Verdana, Tahoma, Arial, sans-serif;
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
  text-align: center;
  font-style: normal;
  margin: 12px 0;
}
.single.content #content .single_wrapper .single_result h2:first-child {
  font-size: 18px;
  text-align: center;
  font-style: italic;
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
}
.single.content #content .single_wrapper .single_result .strong {
  background: #BA6292;
  padding: 2px 4px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  color: #fff;
}
.single.content #content .single_wrapper .single_result .weak {
  background: #bc8ea8;
  padding: 2px 4px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  color: #ffffff;
}
.single.content #content .single_wrapper .single_result dl {
  margin: 36px 24px 48px 24px;
  display: block;
  overflow: auto;
}
.single.content #content .single_wrapper .single_result dl dt {
  font-size: 12px;
  color: #777777;
  text-align: right;
  width: auto;
  display: block;
  float: left;
  clear: left;
  line-height: 24px;
}
.single.content #content .single_wrapper .single_result dl dd {
  display: block;
  width: 540px;
  float: left;
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-style: italic;
  text-align: left;
  padding-left: 12px;
  margin-left: 12px;
  line-height: 24px;
  margin-bottom: 12px;
}
.single.content #content .single_wrapper .single_result dl dd p {
  margin: 0;
}
.single.content #content .single_wrapper .single_result p {
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 14px;
}
.single.content #content .single_wrapper .single_result table {
  width: 100%;
}
.single.content #content .single_wrapper .single_result table tr td {
  background: #eeeeee;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  color: #777777;
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-size: 12px;
  font-style: italic;
  padding: 2px 12px;
}
/* =============================================================================
   2.5 SUBJECT
   ========================================================================== */
.subjects #content .single_wrapper .single_result {
  padding: 48px 24px !important;
}
.subjects .column {
  float: left;
  width: 212px;
  display: block;
  margin: 1px 0 12px 12px;
  font-size: 14px;
}
.subjects .column a {
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  color: #682140;
  text-decoration: none;
  font-style: italic;
}
.subjects .column a:hover {
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  color: #bc8ea8;
  text-decoration: none;
  font-style: italic;
}
.subjects .first.column {
  margin-left: 0 !important;
}
/* =============================================================================
   2.6 INTRO
   ========================================================================== */
.intro #accordion {
  margin: 54px 0 0 0;
}
.intro #accordion .court {
  display: block;
  width: 702px	;
  background: url("../img/bgr_ordering_no_spacers.png") no-repeat scroll left top transparent;
  height: 36px;
  line-height: 36px;
  color: #682140;
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-style: italic;
  padding-left: 24px;
  cursor: pointer;
  text-decoration: none;
  margin: 0 0 1px 0;
}
.intro #accordion .court:hover {
  color: #bc8ea8;
  background: url("../img/bgr_ordering_no_spacers.png") no-repeat scroll 6px 0 transparent;
}
/* =============================================================================
   2.7 COURT STATS
   ========================================================================== */
div.courts {
  padding: 24px;
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-size: 14px;
  font-style: italic;
}
div.courts .key {
  display: block;
  overflow: auto;
}
div.courts span.icon {
  display: block;
  width: 21px;
  height: 21px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
div.courts .purple_plus {
  background: url(../img/sprite_icons.png) 0 0 no-repeat !important;
}
div.courts .purple_minus {
  background: url(../img/sprite_icons.png) 0 -22px no-repeat !important;
}
div.courts .purple_go {
  background: url(../img/sprite_icons.png) 0 -44px no-repeat !important;
  cursor: auto;
}
div.courts .violet_plus {
  background: url(../img/sprite_icons.png) -22px 0 no-repeat !important;
}
div.courts .violet_minus {
  background: url(../img/sprite_icons.png) -22px -22px no-repeat !important;
}
div.courts .violet_go {
  background: url(../img/sprite_icons.png) -22px -44px no-repeat !important;
  cursor: auto;
}
div.courts .orange_plus {
  background: url(../img/sprite_icons.png) -44px 0 no-repeat !important;
}
div.courts .orange_minus {
  background: url(../img/sprite_icons.png) -44px -22px no-repeat !important;
}
div.courts .orange_go {
  background: url(../img/sprite_icons.png) -44px -44px no-repeat !important;
  cursor: auto;
}
div.courts span.purple {
  margin-right: 24px;
  display: block;
  float: left;
}
div.courts span.purple span.icon {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  display: block;
  width: 21px;
  height: 21px;
  background: #682140;
  float: left;
  margin-right: 12px;
}
div.courts span.violet {
  margin-right: 24px;
  display: block;
  float: left;
}
div.courts span.violet span.icon {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  display: block;
  width: 21px;
  height: 21px;
  background: #bc8ea8;
  float: left;
  margin-right: 12px;
}
div.courts span.orange {
  margin-right: 24px;
  display: block;
  float: left;
}
div.courts span.orange span.icon {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  display: block;
  width: 21px;
  height: 21px;
  background: #e55639;
  float: left;
  margin-right: 12px;
}
.courts_tree {
  clear: both;
}

.courts_tree ul {
  list-style-type: none;
  display: block;
  overflow: auto;
  clear: both;
}
.courts_tree ul li {
  clear: both;
  display: block;
  overflow: auto;
  margin-bottom: 4px;
}
.courts_tree ul li a {
  color: #682140;
  font-weight: 700;
  font-size: 14px;
  float: left;
}
.courts_tree ul li a.go {
  font-weight: normal;
  font-size: 11px;
  font-family: 'PT Sans', Verdana, Tahoma, Arial, sans-serif;
  font-style: normal;
  margin-left: 24px;
  float: left;
  line-height: 21px;
  display: block;
  width: 60px;
}
.courts_tree ul li a.go .ico {
  display: block;
  width: 13px;
  height: 13px;
  background: url(../img/sprite_icons.png) -66px 0 #682140 no-repeat;
  float: right;
  margin-left: 6px;
  margin-top: 5px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.courts_tree span.icon.purple_go,
.courts_tree span.icon.orange_go,
.courts_tree span.icon.violet_go {
  cursor: default !important;
}

.courts_tree ul li span.icon {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  display: block;
  width: 21px;
  height: 21px;
  background: #682140 url(../img/sprite_icons.png) 0 0 no-repeat;
  float: left;
  margin-right: 12px;
  cursor: pointer;
}
.courts_tree ul li ul {
  margin-top: 36px;
}
.courts_tree ul li li span.icon {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  display: block;
  width: 21px;
  height: 21px;
  background: #bc8ea8 url(../img/sprite_icons.png) -22px 0 no-repeat;
  float: left;
  margin-right: 12px;
}
.courts_tree ul li li li span.icon {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  display: block;
  width: 21px;
  height: 21px;
  background: #e55639 url(../img/sprite_icons.png) -44px 0 no-repeat;
  float: left;
  margin-right: 12px;
}
.courts_tree ul.level .active,
.courts_tree ul.level1 .active {
  background: #682140 url(../img/sprite_icons.png) 0 -22px no-repeat !important;
}
.courts_tree ul.level2 .active {
  background: #682140 url(../img/sprite_icons.png) -22px -22px no-repeat !important;
}
.courts_tree ul.level3 .active {
  background: url(../img/sprite_icons.png) no-repeat -44px 0 #e55639 !important;
}

div#similarityTree {
  border-top: none;
  margin: 0px;
  padding: 10px;
}

div#similarityTree ul {
  padding: 0 0 0 20px;
}

div#similarityTree ul li ul {
  margin-top: 10px;
}

/* =============================================================================
   3.0 Modal box
   ========================================================================== */
/*	--------------------------------------------------
	Reveal Modals
	-------------------------------------------------- */
.reveal-modal-bg {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
  z-index: 100;
  display: none;
  top: 0;
  left: 0;
}
.reveal-modal {
  visibility: hidden;
  top: 100px;
  left: 50%;
  margin-left: -300px;
  width: 520px;
  background: #eeeeee url(../img/checkered_pattern.png) repeat top left;
  position: absolute;
  z-index: 101;
  padding: 30px 40px 34px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  -box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
.reveal-modal.small {
  width: 200px;
  margin-left: -140px;
}
.reveal-modal.medium {
  width: 400px;
  margin-left: -240px;
}
.reveal-modal.large {
  width: 600px;
  margin-left: -340px;
}
.reveal-modal.xlarge {
  width: 800px;
  margin-left: -440px;
}
.reveal-modal .close-reveal-modal {
  font-size: 22px;
  line-height: .5;
  position: absolute;
  top: 8px;
  right: 11px;
  color: #aaa;
  text-shadow: 0 -1px 1px rbga(0, 0, 0, 0.6);
  font-weight: bold;
  cursor: pointer;
}
#myModal input,
#myModal label {
  clear: left;
  display: block;
  float: left;
}
#myModal input[type=text] {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  border: 1px solid #acacaa;
  background: url(../img/bgr_input.jpg) top left repeat-y;
  width: 432px;
  height: 36px;
  line-height: 36px;
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 14px;
  padding-left: 12px;
  -webkit-box-shadow: 0px 2px 2px 0px #cccbc9;
  box-shadow: 0px 2px 2px 0px #cccbc9;
  margin: 12px 0;
}
#myModal textarea {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  border: 1px solid #acacaa;
  background: url(../img/bgr_input.jpg) top left repeat-y;
  width: 432px;
  height: 96px;
  line-height: 36px;
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 14px;
  padding-left: 12px;
  -webkit-box-shadow: 0px 2px 2px 0px #cccbc9;
  box-shadow: 0px 2px 2px 0px #cccbc9;
  margin: 0 0 12px 0;
  clear: left;
  float: left;
}
#myModal label {
  font-size: 11px;
  color: #777777;
  margin: 0 0 12px 0;
}
#myModal #modalSubmit {
  clear: left;
  display: block;
  background: url(../img/c2a_right_send.png) top left no-repeat;
  width: 144px;
  height: 43px;
  border: 0;
  color: #fff;
  margin: 12px 0 0 0;
  float: left;
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-size: 16px;
  font-style: italic;
  text-shadow: 1px 1px 0px #444444;
  text-align: left;
  padding: 0 0 0 32px;
  line-height: 36px;
}
#myModal #modalSubmit:hover {
  background: url(../img/c2a_right_send.png) bottom left no-repeat;
}

#content form input#captchaSubmit.forward-submit {
  clear: none;
  display: block;
  background: url(../img/c2a_right_send.png) top left no-repeat;
  width: 144px;
  height: 43px;
  border: 0;
  color: #fff;
  margin: 14px 0 0 24px;
  float: left;
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-size: 16px;
  font-style: italic;
  text-shadow: 1px 1px 0px #444444;
  text-align: left;
  padding: 0 0 0 32px;
  line-height: 36px;
}

#content form input#captchaSubmit.forward-submit:hover {
  background: url(../img/c2a_right_send.png) bottom left no-repeat;
}

#content .alert ul li {
  text-align: left;
}


/* =============================================================================
   4.0 Error 404
   ========================================================================== */
.error h3 a {
  color: #682140;
  text-decoration: underline;
}
.error h3 a:hover {
  color: #bc8ea8;
  text-decoration: none;
}
/*sticky footer fix*/
html,
body,
#wrap {
  height: 100%;
}
body > #wrap {
  height: auto;
  min-height: 100%;
}
#main {
  padding-bottom: 357px;
}
footer {
  position: relative;
  margin-top: -357px;
  /* negative value of footer height */

  height: 357px;
  clear: both;
}
/* =============================================================================
   5.0 IE Bugs
   ========================================================================== */
.ie #content.simple form .searchSubmit {
  background: url("../img/c2a_left_submit.png") no-repeat scroll left top none;
  clear: none;
  color: #FFFFFF;
  display: block;
  float: left;
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-size: 16px;
  font-style: italic;
  height: 43px;
  line-height: 36px;
  margin: 14px 0 0 24px;
  padding: 0 32px 0 0;
  text-align: right;
  text-decoration: none;
  text-shadow: none;
  width: 144px;
  border-radius: none	 !important;
  background-color: none !important;
  border: none;
}
.simple#content form .searchSubmit {
  background-color: none !important;
}
.ie .simple#content form .searchSubmit {
  background-color: none !important;
  box-shadow: none;
}
/* ==|== media queries ======================================================
   EXAMPLE Media Query for Responsive Design.
   This example overrides the primary ('mobile first') styles
   Modify as content requires.
   ========================================================================== */
/*tablet*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .container {
    width: 726px;
  }
  .grid1,
  .grid2,
  .grid3,
  .grid4,
  .grid5,
  .grid6,
  .grid7,
  .grid8,
  .grid9,
  .grid10,
  .grid11,
  .grid12 {
    margin-left: 0;
  }
  header {
    background: url(../img/bgr_header_simple.jpg) top center no-repeat;
    height: 179px;
  }
  header .grid8 {
    width: 500px;
  }
  header .grid8 #logo {
    width: 400px;
  }
  header .grid4 {
    width: 200px;
    margin-left: 0;
  }
  #main {
    background: none;
  }
  #main aside#sidebar {
    width: 726px;
  }
  #main aside#sidebar h2 {
    text-align: left;
  }
  #main aside#sidebar nav ul li {
    float: left;
    margin-right: 1px;
  }
  #main aside#sidebar nav ul li a {
    text-align: left;
    padding-left: 24px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
  }
  #main aside#sidebar .records_number {
    margin-top: 6px;
    text-align: left;
  }
  #main aside#sidebar .records_number br {
    display: block;
  }
  .advanced #sidebar h3 {
    text-align: left;
    margin: 24px 0 0 0;
  }
  .advanced #sidebar h4 {
    text-align: left;
    margin-top: 6px;
  }
  .advanced #sidebar span.filter {
    float: left;
    margin-right: 2px;
  }
  .advanced #sidebar .records_number {
    margin-top: 36px !important;
  }
  
  .advanced #content.simple form#advancedSearchForm input[type=text] {
    width: 350px;
  }
  
}
/*mobile*/
@media only screen and (max-width: 767px) {
  body {
    width: 100%;
  }
  #wrap {
    width: 100%;
  }
  .container {
    width: 300px;
    margin: 0 auto;
  }
  .grid1,
  .grid2,
  .grid3,
  .grid4,
  .grid5,
  .grid6,
  .grid7,
  .grid8,
  .grid9,
  .grid10,
  .grid11,
  .grid12 {
    margin-left: 0;
    width: 300px;
  }
  header {
    background: url(../img/bgr_header_simple.jpg) top center no-repeat;
    height: 300px;
    width: 100%;
  }
  .wcag {
    display: block;
    float: none;
  }
  .wcag .wcag__buttons {
    color:#000;
  }
  .contrast-step-1 .wcag .wcag__buttons {
    color:#fff;
  }
  .wcag .wcag__buttons button {
    color: #fff;
    background:#000;
  }
  header .grid6:first-child {
    width: 300px;
  }
  header .grid6:first-child h1 {
    font-size: 24px;
  }
  header .grid6:first-child #logo {
    width: 300px;
    background: url("../img/logo_small.png") no-repeat scroll center top transparent;
    margin: 12px 0;
    padding: 88px 0 0 0;
    text-align: center;
    height: 54px;
  }
  header .grid6:last-child {
    clear: left;
    width: 300px;
    margin-left: 0;
  }
  header .grid6:last-child #bip {
    margin: 24px auto 0;
    float: none;
  }
  #main {
    background: none;
    width: 300px;
    padding: 0 10px;
  }
  #main aside#sidebar {
    width: 300px;
  }
  #main aside#sidebar h2 {
    text-align: center;
    padding: 0;
    margin: 0 0 12px 0;
  }
  #main aside#sidebar nav ul li {
    float: left;
    margin-right: 1px;
    width: 300px;
  }
  #main aside#sidebar nav ul li a {
    text-align: center;
    padding: 0;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    width: 300px;
  }
  #main aside#sidebar .records_number {
    margin-top: 6px;
    text-align: left;
  }
  #main aside#sidebar .records_number br {
    display: block;
  }
  .advanced #sidebar h3 {
    text-align: left;
    margin: 24px 0 0 0;
  }
  .advanced #sidebar h4 {
    text-align: left;
    margin-top: 6px;
  }
  .advanced #sidebar span.filter {
    float: left;
    margin-right: 2px;
  }
  .advanced #sidebar .records_number {
    margin-top: 36px !important;
  }
  #content.simple form input[type="text"] {
    width: 300px;
  }
  #content.simple form fieldset {
    float: none;
    display: block;
  }
  #content.simple form .searchSubmit {
    margin: 12px auto;
  }
    .jurisdictionMapContainer {
        display: none;
    }
  #content.simple section#sorting {
    height: 260px;
    width: 300px;
    background: url(../img/brg_ordering_small.png) repeat;
  }
  #content.simple section#sorting .meta .sorting_header {
    margin-left: 24px;
  }
  #content.simple section#sorting .meta .sorting_buttons {
    margin-left: 24px;
  }
  #content.simple section#sorting .meta .sorting_buttons a {
    float: left;
    display: block;
    clear: left;
    background: none;
    padding-left: 0;
  }
  #results .single_result .title {
    min-height: 0;
    background: none;
  }
  #results .single_result .excerpt {
    width: auto;
  }
  /*subjects*/
  .single #content ul.tabs li a {
    width: 147px;
  }
  .subjects .column {
    margin-left: 0;
  }
  /*single key*/
  .single #content ul.tabs li a {
    width: 128px;
  }
  .single #content .single_wrapper .single_result dl dt {
    width: 100%;
    text-align: center;
  }
  .single #content .single_wrapper .single_result dl dd {
    width: 100%;
    text-align: center;
    margin-left: 0;
    padding-left: 0;
  }
  /*single content*/
  .single #content ul.tabs li a {
    width: auto;
  }
  .single.content #content .single_wrapper .single_result dl {
    margin: 0;
  }
  .single.content #content .single_wrapper .single_result dl dd {
    width: 172px;
    margin-left: 10;
  }
  /*advanced form*/
  .advanced #content.simple form#advancedSearchForm input[type="text"] {
    width: 300px;
  }
  .advanced #content.simple form#advancedSearchForm input.cal {
    width: 163px;
  }
  .advanced #content.simple .grid45 {
    margin-left: 0;
    width: 300px;
    clear: both;
  }
  .advanced #content.simple form#advancedSearchForm .form_col {
    width: 145px !important;
    margin-left: 0;
  }
  .select2-container-multi .select2-choices {
    width: 300px;
  }
  .advanced #content.simple form#advancedSearchForm select {
    width: 300px;
  }
  .select2-container-multi .select2-choices {
    width: 286px;
  }
  div.selector {
    width: 300px;
  }
  div.selector span {
    width: 266px;
  }
  footer .container #hammer {
    display: none;
  }
  footer {
    margin-top: 0;
  }
  footer a.modal-link {
    display: none;
  }
  .single.content #content .single_wrapper .single_result {
    padding: 48px 24px !important;
  }
  .advanced #content.simple form#advancedSearchForm fieldset {
    width: 300px !important;
  }
  .advanced #content.simple .grid45 {
    clear: left;
    margin-left: 0 !important;
  }
  .advanced #content.simple form#advancedSearchForm {
    overflow-x: hidden;
    overflow-y: visible;
  }
  /*courts_tree*/
  div.courts .courts_tree ul {
    padding-left: 6px;
    font-size: 11px;
  }
  div.courts .courts_tree ul li a {
    font-size: 11px;
    max-width: 198px;
  }
  div.courts .courts_tree ul li a.go {
    clear: both;
    display: block;
    font-size: 11px;
    font-style: normal;
    font-weight: normal;
    line-height: 21px;
    margin-left: 32px;
    width: 60px;
  }
  /*single view tabs width issue*/
  .single #content ul.tabs li {
    width: 100%;
  }
  .single #content ul.tabs li a {
    width: 300px !important;
    padding: 0;
    text-align: center;
  }
  .single.content #content ul.tabs li.print_btn a,
  .single.content #content ul.tabs li.download_btn a {
    float: left;
  }
  .single #content ul.tabs li a.back {
    width: 300px !important;
  }
  
  #cookieInfoContainer {
    width: 300px;
  }
  #cookieInfoHeader.fixed {
    position: fixed;
    top: 80px;
  }
  
}
/* ==|== non-semantic helper classes ========================================
   Please define your styles before this section.
   ========================================================================== */
/* For image replacement */
.ir {
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
  *line-height: 0;
}
.ir br {
  display: none;
}
/* Hide from both screenreaders and browsers: h5bp.com/u */
.hidden {
  display: none !important;
  visibility: hidden;
}
/* Hide only visually, but have it available for screenreaders: h5bp.com/v */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: h5bp.com/p */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
/* Hide visually and from screenreaders, but maintain layout */
.invisible {
  visibility: hidden;
}
/* Contain floats: h5bp.com/q */
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  *zoom: 1;
}

p.center {text-align: center}
/* ==|== print styles =======================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */
@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }
  /* Black prints faster: h5bp.com/s */
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  /* Don't show links for images, or javascript/internal links */
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  /* h5bp.com/t */
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page  {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  header,
  #sidebar,
  footer,
  ul.tabs {
    display: none;
  }
  #content {
    width: 90%;
  }
  .single #content .single_wrapper .single_result {
    border: 0;
    background: 0;
  }
  * {
    font-family: Georgia, 'Times New Roman', serif !important;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: Verdana, Geneva, sans-serif !important;
  }
}

.font-step-2 .wcag,
.font-step-3 .wcag {
  margin-top: 20px!important;
}

.phrase-inline {
   float: none !important;
}