/**
 *
 * Stylesheet
 *
 * @author  Danny Carmical <dcarmical@sans.org>
 * @sections
 *      - normalize.css
 *      - @font-face fonts
 *      - FontAwesome styles
 *      - tags
 *      - layouts
 *      - modules
 *      - special styles
 */

@import '/css2/common/libs/fontawesome5/css/all.css';

/* ==========================================================================================================
    normalize.css
   ========================================================================================================== */
/*! normalize.css v2.1.2 | MIT License | git.io/normalize */article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden],template{display:none}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}a{background:transparent}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}mark{background:#ff0;color:#000}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{line-height:normal}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}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-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}

/* ==========================================================================================================
    @font-face fonts
   ========================================================================================================== */

@font-face {
    font-family: "Diavlo Light";
    src: url('/fonts/Diavlo_LIGHT_II_37.eot'); /* Hello, IE */
    src: local("Diavlo Light"), url('/fonts/Diavlo_LIGHT_II_37.otf') format("opentype");
}

@font-face {
    font-family: "Diavlo Bold";
    src: url(/fonts/Diavlo_BOLD_II_37.eot); /* Hello, IE */
    src: local("Diavlo Bold"), url(/fonts/Diavlo_BOLD_II_37.otf) format("opentype");
}

@font-face {
    font-family: 'EntypoRegular';
    src: url('/fonts/Entypo/entypo.eot');
    src: url('/fonts/Entypo/entypo.eot?#iefix') format('embedded-opentype'),
         url('/fonts/Entypo/entypo.woff') format('woff'),
         url('/fonts/Entypo/entypo.ttf') format('truetype'),
         url('/fonts/Entypo/entypo.svg#EntypoRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'EntypoSocial';
    src: url('/fonts/Entypo/entypo-social.eot');
    src: url('/fonts/Entypo/entypo-social.eot?#iefix') format('embedded-opentype'),
         url('/fonts/Entypo/entypo-social.woff') format('woff'),
         url('/fonts/Entypo/entypo-social.ttf') format('truetype'),
         url('/fonts/Entypo/entypo-social.svg#EntypoRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FontAwesome';
    src: url('/fonts/FontAwesome/fontawesome-webfont.eot');
    src: url('/fonts/FontAwesome/fontawesome-webfont.eot?#iefix') format('embedded-opentype'),
       url('/fonts/FontAwesome/fontawesome-webfont.woff') format('woff'),
       url('/fonts/FontAwesome/fontawesome-webfont.ttf') format('truetype'),
       url('/fonts/FontAwesome/fontawesome-webfont.svg#FontAwesome') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* =====================================================
    FontAwesome styles
   ===================================================== */
/* Custom Site Specific FontAwesome Styles
   - DO NOT JUST BLINDLY OVERWRITE WHEN UPDATING FONTS */
[class^="icon-"]:before,
[class*=" icon-"]:before {
    display: inline-block;
    text-decoration: none;
}

a [class^="icon-"],
a [class*=" icon-"] {
    display: inline-block;
    text-decoration: none;
    margin-left:0.25em;
}

/* makes the font 33% larger relative to the icon container */
.icon-large:before {
    vertical-align: middle;
    font-size: 1.333357142857143em;
    line-height: 1.1249799110730165;
}

.btn [class^="icon-"],
.btn [class*=" icon-"] {
    /* keeps button heights with and without icons the same */
    line-height: .9em;
}

li .icon-large[class^="icon-"],
li .icon-large[class*=" icon-"] {
    /* 1.5 increased font size for icon-large * 1.25 width
    width: 1.875em;
    */
}

li[class^="icon-"],
li[class*=" icon-"] {
    margin-left: 0;
    list-style-type: none;
}

li[class^="icon-"]:before,
li[class*=" icon-"]:before {
    text-indent: -2em;
    text-align: center;
}

li[class^="icon-"].icon-large:before,
li[class*=" icon-"].icon-large:before {
    text-indent: -1.3333333333333333em;
}

/* ==========================================================================================================
    tags
   ========================================================================================================== */
body {
    font-family: sans-serif;
    font-size: 87.5%;
    line-height: 1.5;
    color: #292929;
}

p {
    line-height: 1.5;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}

q {
    font-style: italic;
}

small {
    font-size: 0.857142857em;
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Diavlo Light', sans-serif;
    font-weight: normal;
    color:#436184;
}

h1 + p, h1 + ul, h1 + ol,
h2 + p, h2 + ul, h2 + ol,
h3 + p, h3 + ul, h3 + ol,
h4 + p, h4 + ul, h4 + ol,
h5 + p, h5 + ul, h5 + ol,
h6 + p, h6 + ul, h6 + ol {
    margin-top: -0.75em;
}

h1 {
    font-size: 3em;
    line-height: 1.1458333333333333em;
    margin-bottom: 0.572916667em;
    margin-top: 0.572916667em;
}

p + h1,
ul + h1,
ol + h1 {
    margin-top: 1.1458333333333333em;
}

h2 {
    font-size: 2.5em;
    line-height: 1.15em;
    margin-bottom: 0.575em;
    margin-top: 0.575em;
}

p + h2,
ul + h2,
ol + h2 {
    margin-top: 1.15em;
}

h3 {
    font-size: 2.25em;
    line-height: 1.1944444444444444em;
    margin-bottom: 0.597222222em;
    margin-top: 0.597222222em;
}

p + h3,
ul + h3,
ol + h3 {
   margin-top: 1.1944444444444444em;
}

h4 {
    margin-bottom: 0.6em;
    font-size: 1.875rem;
    line-height: 1.2em;
    margin-top: 0.6em;
}

p + h4,
ul + h4,
ol + h4 {
   margin-top: 1.875em;
}

h5 {
    margin-bottom: 1.1666666666666667em;
    font-size: 1.5em;
    line-height: 1.1666666666666667em;
    margin-top: 1.1666666666666667em;
}

h6 {
    margin-bottom: 1.3333333333333333em;
    font-size: 1.125em;
    line-height: 1.3333333333333333em;
    margin-top: 1.3333333333333333em;
}

ul,
ol {
    line-height: 1.5;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
    margin-left:1.5em;
    padding: 0;
    list-style-position: outside;
}

ul {
    list-style-type: disc;
}

ul ul,
ul ol,
ol ul,
ol ol {
    margin-top: 0;
    margin-left: 1.5em;
    margin-bottom:0.5em;
}

dl {
    line-height: 1.5;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}

dt {
    font-weight: bold;
    line-height: 1.5;
}

dd {
    line-height: 1.5;
    margin-left: 1.5em;
}

dd+dt {
    margin-top: 1.5em;
}

pre,
code {
    font-size: 14;
    line-height: 1.5;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}

a:link {
    outline: 0;
    color:#38516F;
    background-color: transparent;
}

a:visited {
    color: #557090;
}

a:focus {
    color: #38516F;
    background-color: transparent;
}

a:hover {
    color: #663A09;
    background-color: transparent;
}

a:active {
    color: #676F7D;
    background-color: transparent;
}

a, object, embed {
    outline: 0;
}

h1 a:link,
h2 a:link,
h3 a:link,
h4 a:link,
h5 a:link,
h6 a:link,
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
h1 a:visited,
h2 a:visited,
h3 a:visited,
h4 a:visited,
h5 a:visited,
h6 a:visited,
h1 a:focus,
h2 a:focus,
h3 a:focus,
h4 a:focus,
h5 a:focus,
h6 a:focus {
    color:#436184;
    text-decoration: none;
}

hr {
    display: block;
    width: 100%;
    height: ;
    background-color: none;
    clear: both;
    margin: 1.5em 0;
    padding: 0.714285714em 0 0.714285714em;
    border: none;
    border-bottom: 1px solid #dfdfdf;
}

table {
    width:100%;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}

table + table {
    margin-top: -1.5em;
}

table tr th,
table tr td {
    border-right: 1px solid #d9d9d9;
    border-bottom: 1px solid #ccc;
    line-height: 1.5;
    padding: 1.5em 1.5em 1.428571429em 1.5em;
}

table tr th:first-child,
table tr td:first-child {
    border-left: 1px solid #d9d9d9;
}

table tr th {
    color: #ccc;
    font-weight:normal;
}

table thead tr td,
table tbody tr:nth-of-type(odd) td {
    background-color: #efefef;
}

table thead tr th,
table tbody tr th {
    background-color:#676F7D;
    border-bottom: 1px solid #d9d9d9;
}

table tr th a:link,
table tr th a:visited,
table tr th a:focus {
    color:#ccc;
    background-color: transparent;
}

table tr th a:hover,
table tr th a:active {
    color:#eee;
    background-color: transparent;
}

table tfoot tr td {
    background-color: #dfdfdf;
    color: #555;
    font-size: 0.857142857em;
    line-height: 1.5;
}

table tfoot tr td .footnote_mark {
    display: inline-block;
    min-width: 10px;
    text-align: right;
    margin-right: 0.25em;
}

table+h1,
table+h2,
table+h3,
table+h4,
table+h5,
table+h6 {
    margin-top: 1.5em;
}

blockquote {
    position:relative;
    display:block;
    clear:both;
    font-style:italic;
    padding:1.5em 1.5em;
    margin:1.5em 0;
    background-color:#eee;
    color:#666;
    border-left:5px solid #bbb;
    -webkit-box-shadow:  0 1px 2px 0 rgba(0,0,0,0.3);
    -moz-box-shadow:  0 1px 2px 0 rgba(0,0,0,0.3);
    -ms-box-shadow:  0 1px 2px 0 rgba(0,0,0,0.3);
    -o-box-shadow:  0 1px 2px 0 rgba(0,0,0,0.3);
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
}

blockquote > h1:first-child,
blockquote > h2:first-child,
blockquote > h3:first-child,
blockquote > h4:first-child,
blockquote > h5:first-child,
blockquote > h6:first-child {
    margin-top: 0;
}

blockquote p {
    margin-bottom: 0;
}

blockquote p:first-child {
    margin-top: 0;
}


blockquote cite {
    color:#8F8F8F;
}

fieldset {
    margin:1.5em 0;
    padding:1.5em;
    border:1px solid #C0C0C0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}

legend {
    font-size: 1.333357142857143em;
    line-height: 1.1249799110730165;
    font-family: 'Diavlo Light', sans-serif;
    font-weight: normal;
    color:#436184;
}

label {
    font-weight:bold;
    color:#444;
}

input[type="text"], input[type="password"], input[type="file"], input[type="number"] {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    border:1px solid #C0C0C0;
    padding:3px;
    height:1.5em;
}

input[type="file"] {
    background-color: #ccc;
    padding:3px;
    height:1.5em;
}

button, input[type="button"], input[type="submit"], input[type="reset"] {
    background-color:#575757;
    background-image: linear-gradient(bottom, rgb(51,51,51) 0%, rgb(123,123,123) 100%);
    background-image: -o-linear-gradient(bottom, rgb(51,51,51) 0%, rgb(123,123,123) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(51,51,51) 0%, rgb(123,123,123) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(51,51,51) 0%, rgb(123,123,123) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(51,51,51) 0%, rgb(123,123,123) 100%);
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(51,51,51)),
        color-stop(1, rgb(123,123,123))
    );
    padding:0.75em;
    border:none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    color:#fff;
}

button:hover, input[type="button"]:hover, input[type="submit"]:hover, input[type="reset"]:hover {
    background-color:#787878;
    background-image: linear-gradient(bottom, rgb(51,51,51) 0%, rgb(92,92,92) 100%);
    background-image: -o-linear-gradient(bottom, rgb(51,51,51) 0%, rgb(92,92,92) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(51,51,51) 0%, rgb(92,92,92) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(51,51,51) 0%, rgb(92,92,92) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(51,51,51) 0%, rgb(92,92,92) 100%);
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(51,51,51)),
        color-stop(1, rgb(92,92,92))
    );
}

.add_language, .remove-lang {
    padding:0;
    margin:0;
    font-size:12px;
    border:0;
}

textarea {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    border:1px solid #C0C0C0;
    padding:3px;
    min-height:6em;
    min-width:200px;
}

object,
embed {
    max-width:100%;
    max-height: 100%;
}

img {
    max-width: 100%;
}

/* =====================================================
    FontAwesome styles
   ===================================================== */
/* Custom Site Specific FontAwesome Styles
   - DO NOT JUST BLINDLY OVERWRITE WHEN UPDATING FONTS */
[class^="icon-"]:before,
[class*=" icon-"]:before {
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    text-decoration: none;
}

a [class^="icon-"],
a [class*=" icon-"] {
    display: inline-block;
    text-decoration: inherit;
    margin-left:0.25em;
}

/* makes the font 33% larger relative to the icon container */
.icon-large:before {
    vertical-align: middle;
    font-size: 1.333357142857143em;
    line-height: 1.1249799110730165;
}

.btn [class^="icon-"],
.btn [class*=" icon-"] {
    /* keeps button heights with and without icons the same */
    line-height: .9em;
}

li .icon-large[class^="icon-"],
li .icon-large[class*=" icon-"] {
    /* 1.5 increased font size for icon-large * 1.25 width
    width: 1.875em;
    */
}

li[class^="icon-"],
li[class*=" icon-"] {
    margin-left: 0;
    list-style-type: none;
}

li[class^="icon-"]:before,
li[class*=" icon-"]:before {
    text-indent: -2em;
    text-align: center;
}

li[class^="icon-"].icon-large:before,
li[class*=" icon-"].icon-large:before {
    text-indent: -1.3333333333333333em;
}

/* END Custom Site Specific FontAwesome Styles */

ul.icons {
  list-style-type: none;
  text-indent: -0.75em;
}
ul.icons li [class^="icon-"],
ul.icons li [class*=" icon-"] {
  width: .75em;
}
.icon-muted {
  color: #eeeeee;
}
.icon-light {
  color: #ffffff;
}
.icon-dark {
  color: #333333;
}
.icon-border {
  border: solid 1px #eeeeee;
  padding: .2em .25em .15em;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.icon-2x {
  font-size: 2em;
}
.icon-2x.icon-border {
  border-width: 2px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.icon-3x {
  font-size: 3em;
}
.icon-3x.icon-border {
  border-width: 3px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.icon-4x {
  font-size: 4em;
}
.icon-4x.icon-border {
  border-width: 4px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.icon-5x {
  font-size: 5em;
}
.icon-5x.icon-border {
  border-width: 5px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
}
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
[class^="icon-"].pull-left,
[class*=" icon-"].pull-left {
  margin-right: .3em;
}
[class^="icon-"].pull-right,
[class*=" icon-"].pull-right {
  margin-left: .3em;
}
/* BOOTSTRAP SPECIFIC CLASSES
 * -------------------------- */
/* Bootstrap 2.0 sprites.less reset */
[class^="icon-"],
[class*=" icon-"] {
  display: inline;
  width: auto;
  height: auto;
  line-height: normal;
  vertical-align: baseline;
  background-image: none;
  background-position: 0% 0%;
  background-repeat: repeat;
  margin-top: 0;
}
/* more sprites.less reset */
.icon-white,
.nav-pills > .active > a > [class^="icon-"],
.nav-pills > .active > a > [class*=" icon-"],
.nav-list > .active > a > [class^="icon-"],
.nav-list > .active > a > [class*=" icon-"],
.navbar-inverse .nav > .active > a > [class^="icon-"],
.navbar-inverse .nav > .active > a > [class*=" icon-"],
.dropdown-menu > li > a:hover > [class^="icon-"],
.dropdown-menu > li > a:hover > [class*=" icon-"],
.dropdown-menu > .active > a > [class^="icon-"],
.dropdown-menu > .active > a > [class*=" icon-"],
.dropdown-submenu:hover > a > [class^="icon-"],
.dropdown-submenu:hover > a > [class*=" icon-"] {
  background-image: none;
}
/* keeps Bootstrap styles with and without icons the same */
.btn [class^="icon-"].icon-large,
.nav [class^="icon-"].icon-large,
.btn [class*=" icon-"].icon-large,
.nav [class*=" icon-"].icon-large {
  line-height: .9em;
}
.btn [class^="icon-"].icon-spin,
.nav [class^="icon-"].icon-spin,
.btn [class*=" icon-"].icon-spin,
.nav [class*=" icon-"].icon-spin {
  display: inline-block;
}
.nav-tabs [class^="icon-"],
.nav-pills [class^="icon-"],
.nav-tabs [class*=" icon-"],
.nav-pills [class*=" icon-"],
.nav-tabs [class^="icon-"].icon-large,
.nav-pills [class^="icon-"].icon-large,
.nav-tabs [class*=" icon-"].icon-large,
.nav-pills [class*=" icon-"].icon-large {
  line-height: .9em;
}
.btn [class^="icon-"].pull-left.icon-2x,
.btn [class*=" icon-"].pull-left.icon-2x,
.btn [class^="icon-"].pull-right.icon-2x,
.btn [class*=" icon-"].pull-right.icon-2x {
  margin-top: .18em;
}
.btn [class^="icon-"].icon-spin.icon-large,
.btn [class*=" icon-"].icon-spin.icon-large {
  line-height: .8em;
}
.btn.btn-small [class^="icon-"].pull-left.icon-2x,
.btn.btn-small [class*=" icon-"].pull-left.icon-2x,
.btn.btn-small [class^="icon-"].pull-right.icon-2x,
.btn.btn-small [class*=" icon-"].pull-right.icon-2x {
  margin-top: .25em;
}
.btn.btn-large [class^="icon-"],
.btn.btn-large [class*=" icon-"] {
  margin-top: 0;
}
.btn.btn-large [class^="icon-"].pull-left.icon-2x,
.btn.btn-large [class*=" icon-"].pull-left.icon-2x,
.btn.btn-large [class^="icon-"].pull-right.icon-2x,
.btn.btn-large [class*=" icon-"].pull-right.icon-2x {
  margin-top: .05em;
}
.btn.btn-large [class^="icon-"].pull-left.icon-2x,
.btn.btn-large [class*=" icon-"].pull-left.icon-2x {
  margin-right: .2em;
}
.btn.btn-large [class^="icon-"].pull-right.icon-2x,
.btn.btn-large [class*=" icon-"].pull-right.icon-2x {
  margin-left: .2em;
}
/* Fixes alignment in nav lists */
.nav-list [class^="icon-"],
.nav-list [class*=" icon-"] {
  line-height: inherit;
}
/* EXTRAS
 * -------------------------- */
/* Stacked and layered icon */
.icon-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: -35%;
}
.icon-stack [class^="icon-"],
.icon-stack [class*=" icon-"] {
  display: block;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  font-size: 1em;
  line-height: inherit;
  *line-height: 2em;
}
.icon-stack .icon-stack-base {
  font-size: 2em;
  *line-height: 1em;
}
.form-section {
    margin-bottom: 10px;
}
/* Animated rotating icon */
.icon-spin {
  display: inline-block;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  -webkit-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}
/* Prevent stack and spinners from being taken inline when inside a link */
a .icon-stack,
a .icon-spin {
  display: inline-block;
  text-decoration: none;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
  }
}
@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
/* Icon rotations and mirroring */
.icon-rotate-90:before {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
}
.icon-rotate-180:before {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
}
.icon-rotate-270:before {
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}
.icon-flip-horizontal:before {
  -webkit-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.icon-flip-vertical:before {
  -webkit-transform: scale(1, -1);
  -moz-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  -o-transform: scale(1, -1);
  transform: scale(1, -1);
}
/* ensure rotation occurs inside anchor tags */
a .icon-rotate-90:before,
a .icon-rotate-180:before,
a .icon-rotate-270:before,
a .icon-flip-horizontal:before,
a .icon-flip-vertical:before {
  display: inline-block;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.icon-glass:before {
  content: "\f000";
}
.icon-music:before {
  content: "\f001";
}
.icon-search:before {
  content: "\f002";
}
.icon-envelope-alt:before {
  content: "\f003";
}
.icon-heart:before {
  content: "\f004";
}
.icon-star:before {
  content: "\f005";
}
.icon-star-empty:before {
  content: "\f006";
}
.icon-user:before {
  content: "\f007";
}
.icon-film:before {
  content: "\f008";
}
.icon-th-large:before {
  content: "\f009";
}
.icon-th:before {
  content: "\f00a";
}
.icon-th-list:before {
  content: "\f00b";
}
.icon-ok:before {
  content: "\f00c";
}
.icon-remove:before {
  content: "\f00d";
}
.icon-zoom-in:before {
  content: "\f00e";
}
.icon-zoom-out:before {
  content: "\f010";
}
.icon-power-off:before,
.icon-off:before {
  content: "\f011";
}
.icon-signal:before {
  content: "\f012";
}
.icon-gear:before,
.icon-cog:before {
  content: "\f013";
}
.icon-trash:before {
  content: "\f014";
}
.icon-home:before {
  content: "\f015";
}
.icon-file-alt:before {
  content: "\f016";
}
.icon-time:before {
  content: "\f017";
}
.icon-road:before {
  content: "\f018";
}
.icon-download-alt:before {
  content: "\f019";
}
.icon-download:before {
  content: "\f01a";
}
.icon-upload:before {
  content: "\f01b";
}
.icon-inbox:before {
  content: "\f01c";
}
.icon-play-circle:before {
  content: "\f01d";
}
.icon-rotate-right:before,
.icon-repeat:before {
  content: "\f01e";
}
.icon-refresh:before {
  content: "\f021";
}
.icon-list-alt:before {
  content: "\f022";
}
.icon-lock:before {
  content: "\f023";
}
.icon-flag:before {
  content: "\f024";
}
.icon-headphones:before {
  content: "\f025";
}
.icon-volume-off:before {
  content: "\f026";
}
.icon-volume-down:before {
  content: "\f027";
}
.icon-volume-up:before {
  content: "\f028";
}
.icon-qrcode:before {
  content: "\f029";
}
.icon-barcode:before {
  content: "\f02a";
}
.icon-tag:before {
  content: "\f02b";
}
.icon-tags:before {
  content: "\f02c";
}
.icon-book:before {
  content: "\f02d";
}
.icon-bookmark:before {
  content: "\f02e";
}
.icon-print:before {
  content: "\f02f";
}
.icon-camera:before {
  content: "\f030";
}
.icon-font:before {
  content: "\f031";
}
.icon-bold:before {
  content: "\f032";
}
.icon-italic:before {
  content: "\f033";
}
.icon-text-height:before {
  content: "\f034";
}
.icon-text-width:before {
  content: "\f035";
}
.icon-align-left:before {
  content: "\f036";
}
.icon-align-center:before {
  content: "\f037";
}
.icon-align-right:before {
  content: "\f038";
}
.icon-align-justify:before {
  content: "\f039";
}
.icon-list:before {
  content: "\f03a";
}
.icon-indent-left:before {
  content: "\f03b";
}
.icon-indent-right:before {
  content: "\f03c";
}
.icon-facetime-video:before {
  content: "\f03d";
}
.icon-picture:before {
  content: "\f03e";
}
.icon-pencil:before {
  content: "\f040";
}
.icon-map-marker:before {
  content: "\f041";
}
.icon-adjust:before {
  content: "\f042";
}
.icon-tint:before {
  content: "\f043";
}
.icon-edit:before {
  content: "\f044";
}
.icon-share:before {
  content: "\f045";
}
.icon-check:before {
  content: "\f046";
}
.icon-move:before {
  content: "\f047";
}
.icon-step-backward:before {
  content: "\f048";
}
.icon-fast-backward:before {
  content: "\f049";
}
.icon-backward:before {
  content: "\f04a";
}
.icon-play:before {
  content: "\f04b";
}
.icon-pause:before {
  content: "\f04c";
}
.icon-stop:before {
  content: "\f04d";
}
.icon-forward:before {
  content: "\f04e";
}
.icon-fast-forward:before {
  content: "\f050";
}
.icon-step-forward:before {
  content: "\f051";
}
.icon-eject:before {
  content: "\f052";
}
.icon-chevron-left:before {
  content: "\f053";
}
.icon-chevron-right:before {
  content: "\f054";
}
.icon-plus-sign:before {
  content: "\f055";
}
.icon-minus-sign:before {
  content: "\f056";
}
.icon-remove-sign:before {
  content: "\f057";
}
.icon-ok-sign:before {
  content: "\f058";
}
.icon-question-sign:before {
  content: "\f059";
}
.icon-info-sign:before {
  content: "\f05a";
}
.icon-screenshot:before {
  content: "\f05b";
}
.icon-remove-circle:before {
  content: "\f05c";
}
.icon-ok-circle:before {
  content: "\f05d";
}
.icon-ban-circle:before {
  content: "\f05e";
}
.icon-arrow-left:before {
  content: "\f060";
}
.icon-arrow-right:before {
  content: "\f061";
}
.icon-arrow-up:before {
  content: "\f062";
}
.icon-arrow-down:before {
  content: "\f063";
}
.icon-mail-forward:before,
.icon-share-alt:before {
  content: "\f064";
}
.icon-resize-full:before {
  content: "\f065";
}
.icon-resize-small:before {
  content: "\f066";
}
.icon-plus:before {
  content: "\f067";
}
.icon-minus:before {
  content: "\f068";
}
.icon-asterisk:before {
  content: "\f069";
}
.icon-exclamation-sign:before {
  content: "\f06a";
}
.icon-gift:before {
  content: "\f06b";
}
.icon-leaf:before {
  content: "\f06c";
}
.icon-fire:before {
  content: "\f06d";
}
.icon-eye-open:before {
  content: "\f06e";
}
.icon-eye-close:before {
  content: "\f070";
}
.icon-warning-sign:before {
  content: "\f071";
}
.icon-plane:before {
  content: "\f072";
}
.icon-calendar:before {
  content: "\f073";
}
.icon-random:before {
  content: "\f074";
}
.icon-comment:before {
  content: "\f075";
}
.icon-magnet:before {
  content: "\f076";
}
.icon-chevron-up:before {
  content: "\f077";
}
.icon-chevron-down:before {
  content: "\f078";
}
.icon-retweet:before {
  content: "\f079";
}
.icon-shopping-cart:before {
  content: "\f07a";
}
.icon-folder-close:before {
  content: "\f07b";
}
.icon-folder-open:before {
  content: "\f07c";
}
.icon-resize-vertical:before {
  content: "\f07d";
}
.icon-resize-horizontal:before {
  content: "\f07e";
}
.icon-bar-chart:before {
  content: "\f080";
}
.icon-twitter-sign:before {
  content: "\f081";
}
.icon-facebook-sign:before {
  content: "\f082";
}
.icon-camera-retro:before {
  content: "\f083";
}
.icon-key:before {
  content: "\f084";
}
.icon-gears:before,
.icon-cogs:before {
  content: "\f085";
}
.icon-comments:before {
  content: "\f086";
}
.icon-thumbs-up-alt:before {
  content: "\f087";
}
.icon-thumbs-down-alt:before {
  content: "\f088";
}
.icon-star-half:before {
  content: "\f089";
}
.icon-heart-empty:before {
  content: "\f08a";
}
.icon-signout:before {
  content: "\f08b";
}
.icon-linkedin-sign:before {
  content: "\f08c";
}
.icon-pushpin:before {
  content: "\f08d";
}
.icon-external-link:before {
  content: "\f08e";
}
.icon-signin:before {
  content: "\f090";
}
.icon-trophy:before {
  content: "\f091";
}
.icon-github-sign:before {
  content: "\f092";
}
.icon-upload-alt:before {
  content: "\f093";
}
.icon-lemon:before {
  content: "\f094";
}
.icon-phone:before {
  content: "\f095";
}
.icon-unchecked:before,
.icon-check-empty:before {
  content: "\f096";
}
.icon-bookmark-empty:before {
  content: "\f097";
}
.icon-phone-sign:before {
  content: "\f098";
}
.icon-twitter:before {
  content: "\f099";
}
.icon-facebook:before {
  content: "\f09a";
}
.icon-github:before {
  content: "\f09b";
}
.icon-unlock:before {
  content: "\f09c";
}
.icon-credit-card:before {
  content: "\f09d";
}
.icon-rss:before {
  content: "\f09e";
}
.icon-hdd:before {
  content: "\f0a0";
}
.icon-bullhorn:before {
  content: "\f0a1";
}
.icon-bell:before {
  content: "\f0a2";
}
.icon-certificate:before {
  content: "\f0a3";
}
.icon-hand-right:before {
  content: "\f0a4";
}
.icon-hand-left:before {
  content: "\f0a5";
}
.icon-hand-up:before {
  content: "\f0a6";
}
.icon-hand-down:before {
  content: "\f0a7";
}
.icon-circle-arrow-left:before {
  content: "\f0a8";
}
.icon-circle-arrow-right:before {
  content: "\f0a9";
}
.icon-circle-arrow-up:before {
  content: "\f0aa";
}
.icon-circle-arrow-down:before {
  content: "\f0ab";
}
.icon-globe:before {
  content: "\f0ac";
}
.icon-wrench:before {
  content: "\f0ad";
}
.icon-tasks:before {
  content: "\f0ae";
}
.icon-filter:before {
  content: "\f0b0";
}
.icon-briefcase:before {
  content: "\f0b1";
}
.icon-fullscreen:before {
  content: "\f0b2";
}
.icon-group:before {
  content: "\f0c0";
}
.icon-link:before {
  content: "\f0c1";
}
.icon-cloud:before {
  content: "\f0c2";
}
.icon-beaker:before {
  content: "\f0c3";
}
.icon-cut:before {
  content: "\f0c4";
}
.icon-copy:before {
  content: "\f0c5";
}
.icon-paperclip:before,
.icon-paper-clip:before {
  content: "\f0c6";
}
.icon-save:before {
  content: "\f0c7";
}
.icon-sign-blank:before {
  content: "\f0c8";
}
.icon-reorder:before {
  content: "\f0c9";
}
.icon-list-ul:before {
  content: "\f0ca";
}
.icon-list-ol:before {
  content: "\f0cb";
}
.icon-strikethrough:before {
  content: "\f0cc";
}
.icon-underline:before {
  content: "\f0cd";
}
.icon-table:before {
  content: "\f0ce";
}
.icon-magic:before {
  content: "\f0d0";
}
.icon-truck:before {
  content: "\f0d1";
}
.icon-pinterest:before {
  content: "\f0d2";
}
.icon-pinterest-sign:before {
  content: "\f0d3";
}
.icon-google-plus-sign:before {
  content: "\f0d4";
}
.icon-google-plus:before {
  content: "\f0d5";
}
.icon-money:before {
  content: "\f0d6";
}
.icon-caret-down:before {
  content: "\f0d7";
}
.icon-caret-up:before {
  content: "\f0d8";
}
.icon-caret-left:before {
  content: "\f0d9";
}
.icon-caret-right:before {
  content: "\f0da";
}
.icon-columns:before {
  content: "\f0db";
}
.icon-sort:before {
  content: "\f0dc";
}
.icon-sort-down:before {
  content: "\f0dd";
}
.icon-sort-up:before {
  content: "\f0de";
}
.icon-envelope:before {
  content: "\f0e0";
}
.icon-linkedin:before {
  content: "\f0e1";
}
.icon-rotate-left:before,
.icon-undo:before {
  content: "\f0e2";
}
.icon-legal:before {
  content: "\f0e3";
}
.icon-dashboard:before {
  content: "\f0e4";
}
.icon-comment-alt:before {
  content: "\f0e5";
}
.icon-comments-alt:before {
  content: "\f0e6";
}
.icon-bolt:before {
  content: "\f0e7";
}
.icon-sitemap:before {
  content: "\f0e8";
}
.icon-umbrella:before {
  content: "\f0e9";
}
.icon-paste:before {
  content: "\f0ea";
}
.icon-lightbulb:before {
  content: "\f0eb";
}
.icon-exchange:before {
  content: "\f0ec";
}
.icon-cloud-download:before {
  content: "\f0ed";
}
.icon-cloud-upload:before {
  content: "\f0ee";
}
.icon-user-md:before {
  content: "\f0f0";
}
.icon-stethoscope:before {
  content: "\f0f1";
}
.icon-suitcase:before {
  content: "\f0f2";
}
.icon-bell-alt:before {
  content: "\f0f3";
}
.icon-coffee:before {
  content: "\f0f4";
}
.icon-food:before {
  content: "\f0f5";
}
.icon-file-text-alt:before {
  content: "\f0f6";
}
.icon-building:before {
  content: "\f0f7";
}
.icon-hospital:before {
  content: "\f0f8";
}
.icon-ambulance:before {
  content: "\f0f9";
}
.icon-medkit:before {
  content: "\f0fa";
}
.icon-fighter-jet:before {
  content: "\f0fb";
}
.icon-beer:before {
  content: "\f0fc";
}
.icon-h-sign:before {
  content: "\f0fd";
}
.icon-plus-sign-alt:before {
  content: "\f0fe";
}
.icon-double-angle-left:before {
  content: "\f100";
}
.icon-double-angle-right:before {
  content: "\f101";
}
.icon-double-angle-up:before {
  content: "\f102";
}
.icon-double-angle-down:before {
  content: "\f103";
}
.icon-angle-left:before {
  content: "\f104";
}
.icon-angle-right:before {
  content: "\f105";
}
.icon-angle-up:before {
  content: "\f106";
}
.icon-angle-down:before {
  content: "\f107";
}
.icon-desktop:before {
  content: "\f108";
}
.icon-laptop:before {
  content: "\f109";
}
.icon-tablet:before {
  content: "\f10a";
}
.icon-mobile-phone:before {
  content: "\f10b";
}
.icon-circle-blank:before {
  content: "\f10c";
}
.icon-quote-left:before {
  content: "\f10d";
}
.icon-quote-right:before {
  content: "\f10e";
}
.icon-spinner:before {
  content: "\f110";
}
.icon-circle:before {
  content: "\f111";
}
.icon-mail-reply:before,
.icon-reply:before {
  content: "\f112";
}
.icon-github-alt:before {
  content: "\f113";
}
.icon-folder-close-alt:before {
  content: "\f114";
}
.icon-folder-open-alt:before {
  content: "\f115";
}
.icon-expand-alt:before {
  content: "\f116";
}
.icon-collapse-alt:before {
  content: "\f117";
}
.icon-smile:before {
  content: "\f118";
}
.icon-frown:before {
  content: "\f119";
}
.icon-meh:before {
  content: "\f11a";
}
.icon-gamepad:before {
  content: "\f11b";
}
.icon-keyboard:before {
  content: "\f11c";
}
.icon-flag-alt:before {
  content: "\f11d";
}
.icon-flag-checkered:before {
  content: "\f11e";
}
.icon-terminal:before {
  content: "\f120";
}
.icon-code:before {
  content: "\f121";
}
.icon-reply-all:before {
  content: "\f122";
}
.icon-mail-reply-all:before {
  content: "\f122";
}
.icon-star-half-full:before,
.icon-star-half-empty:before {
  content: "\f123";
}
.icon-location-arrow:before {
  content: "\f124";
}
.icon-crop:before {
  content: "\f125";
}
.icon-code-fork:before {
  content: "\f126";
}
.icon-unlink:before {
  content: "\f127";
}
.icon-question:before {
  content: "\f128";
}
.icon-info:before {
  content: "\f129";
}
.icon-exclamation:before {
  content: "\f12a";
}
.icon-superscript:before {
  content: "\f12b";
}
.icon-subscript:before {
  content: "\f12c";
}
.icon-eraser:before {
  content: "\f12d";
}
.icon-puzzle-piece:before {
  content: "\f12e";
}
.icon-microphone:before {
  content: "\f130";
}
.icon-microphone-off:before {
  content: "\f131";
}
.icon-shield:before {
  content: "\f132";
}
.icon-calendar-empty:before {
  content: "\f133";
}
.icon-fire-extinguisher:before {
  content: "\f134";
}
.icon-rocket:before {
  content: "\f135";
}
.icon-maxcdn:before {
  content: "\f136";
}
.icon-chevron-sign-left:before {
  content: "\f137";
}
.icon-chevron-sign-right:before {
  content: "\f138";
}
.icon-chevron-sign-up:before {
  content: "\f139";
}
.icon-chevron-sign-down:before {
  content: "\f13a";
}
.icon-html5:before {
  content: "\f13b";
}
.icon-css3:before {
  content: "\f13c";
}
.icon-anchor:before {
  content: "\f13d";
}
.icon-unlock-alt:before {
  content: "\f13e";
}
.icon-bullseye:before {
  content: "\f140";
}
.icon-ellipsis-horizontal:before {
  content: "\f141";
}
.icon-ellipsis-vertical:before {
  content: "\f142";
}
.icon-rss-sign:before {
  content: "\f143";
}
.icon-play-sign:before {
  content: "\f144";
}
.icon-ticket:before {
  content: "\f145";
}
.icon-minus-sign-alt:before {
  content: "\f146";
}
.icon-check-minus:before {
  content: "\f147";
}
.icon-level-up:before {
  content: "\f148";
}
.icon-level-down:before {
  content: "\f149";
}
.icon-check-sign:before {
  content: "\f14a";
}
.icon-edit-sign:before {
  content: "\f14b";
}
.icon-external-link-sign:before {
  content: "\f14c";
}
.icon-share-sign:before {
  content: "\f14d";
}
.icon-compass:before {
  content: "\f14e";
}
.icon-collapse:before {
  content: "\f150";
}
.icon-collapse-top:before {
  content: "\f151";
}
.icon-expand:before {
  content: "\f152";
}
.icon-euro:before,
.icon-eur:before {
  content: "\f153";
}
.icon-gbp:before {
  content: "\f154";
}
.icon-dollar:before,
.icon-usd:before {
  content: "\f155";
}
.icon-rupee:before,
.icon-inr:before {
  content: "\f156";
}
.icon-yen:before,
.icon-jpy:before {
  content: "\f157";
}
.icon-renminbi:before,
.icon-cny:before {
  content: "\f158";
}
.icon-won:before,
.icon-krw:before {
  content: "\f159";
}
.icon-bitcoin:before,
.icon-btc:before {
  content: "\f15a";
}
.icon-file:before {
  content: "\f15b";
}
.icon-file-text:before {
  content: "\f15c";
}
.icon-sort-by-alphabet:before {
  content: "\f15d";
}
.icon-sort-by-alphabet-alt:before {
  content: "\f15e";
}
.icon-sort-by-attributes:before {
  content: "\f160";
}
.icon-sort-by-attributes-alt:before {
  content: "\f161";
}
.icon-sort-by-order:before {
  content: "\f162";
}
.icon-sort-by-order-alt:before {
  content: "\f163";
}
.icon-thumbs-up:before {
  content: "\f164";
}
.icon-thumbs-down:before {
  content: "\f165";
}
.icon-youtube-sign:before {
  content: "\f166";
}
.icon-youtube:before {
  content: "\f167";
}
.icon-xing:before {
  content: "\f168";
}
.icon-xing-sign:before {
  content: "\f169";
}
.icon-youtube-play:before {
  content: "\f16a";
}
.icon-dropbox:before {
  content: "\f16b";
}
.icon-stackexchange:before {
  content: "\f16c";
}
.icon-instagram:before {
  content: "\f16d";
}
.icon-flickr:before {
  content: "\f16e";
}
.icon-adn:before {
  content: "\f170";
}
.icon-bitbucket:before {
  content: "\f171";
}
.icon-bitbucket-sign:before {
  content: "\f172";
}
.icon-tumblr:before {
  content: "\f173";
}
.icon-tumblr-sign:before {
  content: "\f174";
}
.icon-long-arrow-down:before {
  content: "\f175";
}
.icon-long-arrow-up:before {
  content: "\f176";
}
.icon-long-arrow-left:before {
  content: "\f177";
}
.icon-long-arrow-right:before {
  content: "\f178";
}
.icon-apple:before {
  content: "\f179";
}
.icon-windows:before {
  content: "\f17a";
}
.icon-android:before {
  content: "\f17b";
}
.icon-linux:before {
  content: "\f17c";
}
.icon-dribbble:before {
  content: "\f17d";
}
.icon-skype:before {
  content: "\f17e";
}
.icon-foursquare:before {
  content: "\f180";
}
.icon-trello:before {
  content: "\f181";
}
.icon-female:before {
  content: "\f182";
}
.icon-male:before {
  content: "\f183";
}
.icon-gittip:before {
  content: "\f184";
}
.icon-sun:before {
  content: "\f185";
}
.icon-moon:before {
  content: "\f186";
}
.icon-archive:before {
  content: "\f187";
}
.icon-bug:before {
  content: "\f188";
}
.icon-vk:before {
  content: "\f189";
}
.icon-weibo:before {
  content: "\f18a";
}
.icon-renren:before {
  content: "\f18b";
}
.icon-check-square:before {
  content: "\f14a";
}

a.icon_right span {
    display: inline-block;
    padding-left: 2px;
}

a.icon_right img {
    display: inline-block;
    padding-left: 2px;
}

a.icon_left  span {
    display: inline-block;
    padding-right: 5px;
}

a.icon_left  img {
    display: inline-block;
    padding-right: 5px;
}

.widget_box a.icon_right,
.widget_box a.icon_left,
table td a.icon_right,
table td a.icon_left {
    white-space: normal;
}

/* ==========================================================================================================
    layouts
   ========================================================================================================== */
.container,
.container-fluid {
    position:relative;
    width:960px;
    margin:0 auto;
}

/* 2 column layout, right sidebar */
.middle {
    position:relative;
}

.middle:after {
    content:"\0020";
    display:block;
    clear:both;
    height:76px;
}

.navigation {
   position:relative;
   width:200px;
   padding:0 0 0 25px;
   float:left;
   z-index:1;
   margin-top:-3.5em;
  border-width: 3px 0 3px 3px;
  border-style: solid;
  border-image: linear-gradient(to right, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0)) 1 100%;
}

.middle:before {
    position:relative;
      content:"\0020";
    display:block;
    height:68px;
    width:100%;
    clear:both;
}

.content {
    position:relative;
    margin-top:-3em;
    min-height:100px;
}

.wrapper {
    width:700px;
    padding-right:31px;
    float:left;
}

.col {
    position: relative;
    display:block;
    clear:both;
    margin-bottom:1.5em;
    width:100%;
}

.col_borderline > div {
    background-image: url(/images/design/custom/misc/col_border.png);
    background-position: -2px 0;
    background-repeat: no-repeat;
}

.col_center > div {
    text-align: center;
}

.col_center > div p,
.col_center > div ul {
    text-align: left;
}


.col:after {
    content:"\0020";
    display:block;
    clear:both;
}

.col > .col1 {
    width:100%;
    float:left;
}

.col > .col2 {
    width:47%;
    margin-left:6%;
    float:left;
}

.col_borderline > .col2 {
    width:46%;
    margin-left:3%;
    padding-left:4%;
}

.col > .col2_col1 {
    width:60%;
    margin-left:6%;
    float:left;
}

.col_borderline > .col2_col1 {
    width: 64%;
    margin-left:3%;
    padding-left:3%;
}

.col > .col1_col2 {
    width:30%;
    margin-left:6%;
    float:left;
}

.col_borderline > .col1_col2 {
    width:29%;
    margin-left:3%;
    padding-left:3%;
}



.col > .col3_col1 {
    width:70%;
    margin-left:6%;
    float:left;
}

.col_borderline > .col3_col1 {
    width: 69%;
    margin-left:3%;
    padding-left:3%;
}

.col > .col1_col3 {
    width:24%;
    margin-left:6%;
    float:left;
}

.col_borderline > .col1_col3 {
    width:23%;
    margin-left:3%;
    padding-left:3%;
}



.col > .col3 {
    width:30%;
    margin-left:5%;
    float:left;
}

.col_borderline > .col3 {
    width: 29%;
    margin-left:3%;
    padding-left:3%;
}

.col > .col4 {
    width:22%;
    margin-left:4%;
    float:left;
}

.col_borderline > .col4 {
    width:22%;
    margin-left:2%;
    padding-left:2%;
}

.col > .col5 {
    width:16%;
    margin-left:5%;
    float:left;
}

.col_borderline > .col5 {
    width:16%;
    margin-left:2%;
    padding-left:3%;
}

.col > .col6 {
    width:15%;
    margin-left:2%;
    float:left;
}

.col_borderline > .col6 {
    margin-left:1%;
    padding-left:1%;
}

.col_borderline > div:first-child {
    background-image: none;
    margin-left: 0;
    padding-left: 0;
}

.col > div:first-child {
    margin-left:0;
}

.col > .col2 img,
.col > .col3 img,
.col > .col4 img,
.col > .col5 img,
.col > .col6 img {
    max-width: 100%;
}

/* ==========================================================================================================
    modules
        - forms
        - tabs
        - slats
        - lists
        - widgets
        - boxley
        - featured_box
        - shoutbox
        - horizontal navigation
        - alertboxes
   ========================================================================================================== */
/* =====================================================
    forms
   ===================================================== */
.form_element {
    display:block;
    float:left;
    width:100%;
    margin:0.75em 0;
}

.form_element .form_element_checkbox label,
.form_element .form_element_radio label {
    display: inline;
    float:none;
    width:none;
    padding-right:none;
    text-align:left;
    margin:none;
}

.form_element_label {
    display:block;
    float:left;
    width:200px;
    text-align:right;
    margin-right:0.75em;
}

.form_element_input,
.form_element_input_full,
.form_element_radio,
.form_element_select  {
    display:block;
    float:left;
    vertical-align:middle;
}

.form_element_input_full {
    margin-left: 211px;
}

.form_validation_error .form_element_label label {
    color: #C23D2C;
}

.form_validation_icon {
    width:16px;
    height:16px;
    vertical-align:middle;
    display: none;
}

.form_validation_error .form_validation_icon {
    background:url('/images/icons/fatcow/16x16/exclamation.png') left center no-repeat;
    display: inline-block;
}

.form_validation_success .form_validation_icon {
    vertical-align:middle;
    background:url('/images/icons/silk/accept.png') left center no-repeat;
    display: inline-block;
}

.form_element_radio > div,
.form_element_radio .form_validation_icon {
    float:left;
    margin:0.75em 0;
}

.form_element textarea + .form_validation_icon {
    vertical-align:top;
}

.form_element textarea {
    min-width: 435px;
    float: left;
}

.form_validation_error .form_validation_desc {
    display:block;
    line-height:1.5;
    color:#888;
    font-style:italic;
    font-size: 0.857142857em;
    line-height: 1.5;
}

.form_validation_success .form_validation_desc {
    display:none;
}

.form_required_field {
    margin-left:0.05em;
    color:#C23D2C;
}

.form_element .captcha_box {
    margin-bottom:1.5em;
}

/* =====================================================
    forms
   ===================================================== */
.form_item {
    margin-bottom: 1.5em;
}

.form_item label {
    display: block;
}

.form_item.form_item_radio label {
    display: inline-block;
    margin-left: 5px;
}

.form_item.form_item_checkbox input[type='checkbox']+label {
    display: inline;
    margin-left: 5px;
}

.form_item.form_validation_error label {
    color: #C23D2C;
}

.form_item.captcha img {
    margin: 1.5em 0;
    display: block;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow:  0 1px 3px 0 rgba(0,0,0,1);
    -moz-box-shadow:  0 1px 3px 0 rgba(0,0,0,1);
    -ms-box-shadow:  0 1px 3px 0 rgba(0,0,0,1);
    -o-box-shadow:  0 1px 3px 0 rgba(0,0,0,1);
    box-shadow: 0 1px 1px 0 rgba(0,0,0,0.4);
}

.form_item span.note {
    display: block;
    font-size: 0.857142857em;
    line-height: 1.5;
    margin: 0;
    margin-bottom:0.75em;
}

.form_item span.note ul {
    margin-top: 0;
    margin-bottom: 0;
}

.form_items_join > div.form_item {
    float: left;
}

.form_items_join:after {
    content:"\0020";
    display:block;
    clear:both;
}

/* =====================================================
    tabs
   ===================================================== */
.tabs {
    position: relative;
}

.tabs > ul {
    margin: 0;
    padding: 0;
    display: inline-block;
    border-bottom: 3px solid #fff;
    background-image: linear-gradient(bottom, rgb(230,230,230) 0%, rgba(255,255,255,0) 10%, rgba(255,255,255,0) 100%);
    background-image: -o-linear-gradient(bottom, rgb(230,230,230) 0%, rgba(255,255,255,0) 10%, rgba(255,255,255,0) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(230,230,230) 0%, rgba(255,255,255,0) 10%, rgba(255,255,255,0) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(230,230,230) 0%, rgba(255,255,255,0) 10%, rgba(255,255,255,0) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(230,230,230) 0%, rgba(255,255,255,0) 10%, rgba(255,255,255,0) 100%);
}

.tabs > ul:after {
    content:"\0020";
    display:block;
    clear:both;
    height: 100px;
    margin-bottom: -100px;
    border-top: 1px solid #ccc;
}

.tabs > ul > li {
    display:inline-block;
    margin-right: 2px;
}

.tabs > ul > li > a {
    display: block;
    text-decoration: none;
    padding:0.75em 1.5em;
    color: #fff;
    background-image: linear-gradient(bottom, rgb(53,77,105) 25%, rgb(65,94,129) 75%);
    background-image: -o-linear-gradient(bottom, rgb(53,77,105) 25%, rgb(65,94,129) 75%);
    background-image: -moz-linear-gradient(bottom, rgb(53,77,105) 25%, rgb(65,94,129) 75%);
    background-image: -webkit-linear-gradient(bottom, rgb(53,77,105) 25%, rgb(65,94,129) 75%);
    background-image: -ms-linear-gradient(bottom, rgb(53,77,105) 25%, rgb(65,94,129) 75%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0.25, rgb(53,77,105)),
        color-stop(0.75, rgb(65,94,129))
    );
    -webkit-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    -moz-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    -ms-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    -o-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    margin-top: 1.5em;
    white-space: nowrap;
    font-size:0.857142857em;
    line-height:1.75;
}

.tabs > ul > li > a:hover {
    color:#663A09;
    background-color:#F6BE1B;
    background-image: linear-gradient(bottom, rgb(224,170,10) 25%, rgb(246,191,27) 75%);
    background-image: -o-linear-gradient(bottom, rgb(224,170,10) 25%, rgb(246,191,27) 75%);
    background-image: -moz-linear-gradient(bottom, rgb(224,170,10) 25%, rgb(246,191,27) 75%);
    background-image: -webkit-linear-gradient(bottom, rgb(224,170,10) 25%, rgb(246,191,27) 75%);
    background-image: -ms-linear-gradient(bottom, rgb(224,170,10) 25%, rgb(246,191,27) 75%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0.25, rgb(224,170,10)),
        color-stop(0.75, rgb(246,191,27))
    );
}

.tabs > ul > li.current_tab > a {
    background-color:#415e81;
    color:#fff;
    background-color:#557090;
    background-image: linear-gradient(bottom, rgb(85,112,144) 25%, rgb(102,135,173) 75%);
    background-image: -o-linear-gradient(bottom, rgb(85,112,144) 25%, rgb(102,135,173) 75%);
    background-image: -moz-linear-gradient(bottom, rgb(85,112,144) 25%, rgb(102,135,173) 75%);
    background-image: -webkit-linear-gradient(bottom, rgb(85,112,144) 25%, rgb(102,135,173) 75%);
    background-image: -ms-linear-gradient(bottom, rgb(85,112,144) 25%, rgb(102,135,173) 75%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0.25, rgb(85,112,144)),
        color-stop(0.75, rgb(102,135,173))
    );
}

.tabs > div.less_tabs,
.tabs > div.more_tabs {
    color: #000;
    display: block;
    position: absolute;
    background-color:#e1e1e1;
    background-image: linear-gradient(bottom, rgb(225,225,225) 0%, rgb(255,255,255) 100%);
    background-image: -o-linear-gradient(bottom, rgb(225,225,225) 0%, rgb(255,255,255) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(225,225,225) 0%, rgb(255,255,255) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(225,225,225) 0%, rgb(255,255,255) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(225,225,225) 0%, rgb(255,255,255) 100%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(225,225,225)),
        color-stop(1, rgb(255,255,255))
    );
    -webkit-box-shadow:  0 1px 2px 0 rgba(0,0,0,0.3);
    -moz-box-shadow:  0 1px 2px 0 rgba(0,0,0,0.3);
    -ms-box-shadow:  0 1px 2px 0 rgba(0,0,0,0.3);
    -o-box-shadow:  0 1px 2px 0 rgba(0,0,0,0.3);
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    border:1px solid rgba(255,255,255,0.5);
    bottom: 3px;
    width:1.5em;
    height: 40px;
    cursor: pointer;
}

.tabs > div.more_tabs:hover,
.tabs > div.less_tabs:hover {
    background-color: rgba(205,205,205,0.9);
}

.tabs > div.less_tabs {
    left: 0;
}

.tabs > div.more_tabs {
    right: 0;
}

.tabs > div.more_tabs span,
.tabs > div.less_tabs span {
    position: absolute;
    display: block;
    top: 35%;
    left: 5px;
    opacity: 0.3;
    -moz-opacity: 0.3;
    filter:alpha(opacity=30);
}
/*.tabs_box {
    margin-bottom: 40px;
    width:100%;
}

.tabs_box .default-training-info table {
    background-color:#FFF;
}

.tabs_container .alt-bg {
    -webkit-border-radius: 4px;
    -webkit-border-top-left-radius: 0;
    -moz-border-radius: 4px;
    -moz-border-radius-topleft: 0;
    border-radius: 4px;
    border-top-left-radius: 0;
}

.tab_content {
    float:left;
    width:76%;
}

.tab_aside {
    float:left;
    width:21%;
    margin-left:3%;
    min-height:100px;
}

.tab_content_full {
    width:100%;
}

.tabs_nav {
    position:relative;
    z-index:1;
    margin-left:1px;
}

.tabs_container {
    position:relative;
    z-index:2;
}

.tabs_nav ul li {
    margin:0;
    list-style-type: none;
    display:inline-block;
    float:left;
    margin-right:3px;
}

.tabs_nav ul li a {
    display:block;
    color:rgba(255,255,255,0.8);
    padding:8px 20px;
    background-color:#415e81;
    background-image: linear-gradient(bottom, rgb(53,77,105) 25%, rgb(65,94,129) 75%);
    background-image: -o-linear-gradient(bottom, rgb(53,77,105) 25%, rgb(65,94,129) 75%);
    background-image: -moz-linear-gradient(bottom, rgb(53,77,105) 25%, rgb(65,94,129) 75%);
    background-image: -webkit-linear-gradient(bottom, rgb(53,77,105) 25%, rgb(65,94,129) 75%);
    background-image: -ms-linear-gradient(bottom, rgb(53,77,105) 25%, rgb(65,94,129) 75%);
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0.25, rgb(53,77,105)),
        color-stop(0.75, rgb(65,94,129))
    );
    -webkit-border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    -moz-border-radius-topleft: 3px;
    -moz-border-radius-topright: 3px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    -moz-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    -ms-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    -o-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    border:1px solid transparent;
    border-bottom:1px solid #354D69;
}

.tabs_nav ul li.current_tab a,
.tabs_nav ul li.current_tab:hover a {
    cursor:default;
    min-height:1.2em;
    padding:8px 40px;
    color:#fff;
    background: url('/images/design/custom/current-tab-arrow.png') center center no-repeat, linear-gradient(bottom, rgb(85,112,144) 25%, rgb(102,135,173) 75%);
    background: url('/images/design/custom/current-tab-arrow.png') center center no-repeat, -o-linear-gradient(bottom, rgb(85,112,144) 25%, rgb(102,135,173) 75%);
    background: url('/images/design/custom/current-tab-arrow.png') center center no-repeat, -moz-linear-gradient(bottom, rgb(85,112,144) 25%, rgb(102,135,173) 75%);
    background: url('/images/design/custom/current-tab-arrow.png') center center no-repeat, -webkit-linear-gradient(bottom, rgb(85,112,144) 25%, rgb(102,135,173) 75%);
    background: url('/images/design/custom/current-tab-arrow.png') center center no-repeat, -ms-linear-gradient(bottom, rgb(85,112,144) 25%, rgb(102,135,173) 75%);

    background: url('/images/design/custom/current-tab-arrow.png') center center no-repeat, -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0.25, rgb(85,112,144)),
        color-stop(0.75, rgb(102,135,173))
    );
    border:1px solid transparent;
    border-bottom:1px solid #557090;
}

.tabs_nav ul li.current_tab a span {
    display:none;
}


.tabs_nav ul li:hover a {
    color:#663A09;
    background-color:#F6BE1B;
    background-image: linear-gradient(bottom, rgb(224,170,10) 25%, rgb(246,191,27) 75%);
    background-image: -o-linear-gradient(bottom, rgb(224,170,10) 25%, rgb(246,191,27) 75%);
    background-image: -moz-linear-gradient(bottom, rgb(224,170,10) 25%, rgb(246,191,27) 75%);
    background-image: -webkit-linear-gradient(bottom, rgb(224,170,10) 25%, rgb(246,191,27) 75%);
    background-image: -ms-linear-gradient(bottom, rgb(224,170,10) 25%, rgb(246,191,27) 75%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0.25, rgb(224,170,10)),
        color-stop(0.75, rgb(246,191,27))
    );
    border:1px solid transparent;
    border-bottom:1px solid #E0AA0A;
}

.tabs_nav ul li a:active {
    color:#ccc;
    background-color:#333;
    background-image: linear-gradient(bottom, rgb(51,51,51) 25%, rgb(85,85,85) 75%);
    background-image: -o-linear-gradient(bottom, rgb(51,51,51) 25%, rgb(85,85,85) 75%);
    background-image: -moz-linear-gradient(bottom, rgb(51,51,51) 25%, rgb(85,85,85) 75%);
    background-image: -webkit-linear-gradient(bottom, rgb(51,51,51) 25%, rgb(85,85,85) 75%);
    background-image: -ms-linear-gradient(bottom, rgb(51,51,51) 25%, rgb(85,85,85) 75%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0.25, rgb(51,51,51)),
        color-stop(0.75, rgb(85,85,85))
    );
    border:1px solid transparent;
}*/

/* =====================================================
    slats
   ===================================================== */
div.slats {
    border:1px solid transparent;
}

div.slats div.slat {
    border-top:1px solid #ddd;
    padding-top:1.428571429em;
}

div.slats div.slat:after {
    content:"\0020";
    display:block;
    clear:both;
}

div.slats div.slat:first-child {
    border-top:none;
    padding-top:1.5em;
}

div.slats div.slat div.slat_image {
    float:left;
    width:100px;
}

div.slats div.slat div.slat_image_double {
    float:left;
    width:200px;
}

div.slats div.slat div.slat_image img,
div.slats div.slat div.slat_image_double img {
    max-width:100%;
    margin-bottom:1.5em;
}

div.slats div.slat.slat_wrap div.slat_image,
div.slats div.slat.slat_wrap div.slat_image_double {
    margin-right:21px;
    margin-bottom:1.5em;
}

div.slats div.slat div.slat_image_border img {
    -webkit-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
    -moz-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
    -ms-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
    -o-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
    box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
}

div.slats div.slat div.slat_image + div.slat_content {
    margin-left:121px;
}

div.slats div.slat div.slat_image_double + div.slat_content {
    margin-left:221px;
}

div.slats div.slat div.slat_content_full {
    margin-left:0;
}

div.slats div.slat.slat_wrap div.slat_image + div.slat_content,
div.slats div.slat.slat_wrap div.slat_image_double + div.slat_content {
    margin-left:0;
}

div.slats div.slat div.slat_content > h1:first-child,
div.slats div.slat div.slat_content > h2:first-child,
div.slats div.slat div.slat_content > h3:first-child,
div.slats div.slat div.slat_content > h4:first-child,
div.slats div.slat div.slat_content > h5:first-child,
div.slats div.slat div.slat_content > h6:first-child,
div.slats div.slat div.slat_content_full > h1:first-child,
div.slats div.slat div.slat_content_full > h2:first-child,
div.slats div.slat div.slat_content_full > h3:first-child,
div.slats div.slat div.slat_content_full > h4:first-child,
div.slats div.slat div.slat_content_full > h5:first-child,
div.slats div.slat div.slat_content_full > h6:first-child {
    margin-top:0;
}

div.slats div.slat div.slat_content_top > ul {
    margin-top: 0;
}

#event_faculty_section.large_staff div.slats div.slat div.slat_image {
    float:left;
    width:65px;
}

#event_faculty_section.large_staff div.slats div.slat div.slat_image img {
    max-width:100%;
}

#event_faculty_section.large_staff div.slats div.slat.slat_wrap div.slat_image {
    margin-right:21px;
    margin-bottom:1.5em;
}

#event_faculty_section.large_staff div.slats div.slat div.slat_image + div.slat_content {
    margin-left:86px;
}

/* =====================================================
    lists
        - directions list
        - details list
        - details list inline
        - share list
   ===================================================== */

/* =====================================================
    directions list
   ===================================================== */
ul.directions {
    font-weight:bold;
    list-style-type: none;
    margin-left:0;
}

ul.directions li ol {
    font-weight:normal;
}

/* =====================================================
    details list
   ===================================================== */
ul.details {
    list-style-type: none;
    margin-left:0;
}

ul.poster-details {
    list-style-type: none;
    margin-left:0;
    margin-top: -5px;
}

ul.details ul.details {
    margin-left: 40px;
}

ul.details div ul.details {
    margin-left: 0px;
}

ul.details > li span.label {
    font-weight:bold;
}

ul.details > li > img,
ul.details > li > a > img {
    vertical-align:middle;
}


table ul.details {
    margin-top:0;
    margin-bottom:0;
}

ul.details.details_hr li {
    border-top:1px dotted #ccc;
    padding-top:0.5em;
    margin-top:0.5em;
}

ul.details.details_hr li:first-child {
    border-top:none;
    padding-top:0;
    margin-top:0;
}

/* =====================================================
    details list inline w/ img
   ===================================================== */
ul.details_inline {
   list-style-type: none;
   margin-left:0;
}

ul.details_inline li {
    display:inline-block;
    margin-right:3em;
    margin-bottom:1.5em;
}

ul.details_inline li img {
    vertical-align:middle;
}

/* =====================================================
    details list inline
   ===================================================== */
ul.details_line {
   list-style-type: none;
   margin-left:0;
}

ul.details_line li {
    display:inline-block;
    padding-left:0.5em;
    padding-right:0.5em;
}

/* =====================================================
    details list inline w/ border
   ===================================================== */
ul.details_borderline {
   list-style-type: none;
   margin-left:0;
}

ul.details_borderline li {
    display:inline-block;
    background-image: url(/images/design/custom/misc/col_border.png);
    background-position: -2px 0;
    background-repeat: no-repeat;
    padding-left:0.75em;
    padding-right:0.5em;
}

ul.details_borderline li:first-child {
    background-image: none;
    padding-left: 0;
}

/* =====================================================
    share list
   ===================================================== */

ul.share {
    list-style-type: none;
    margin:0 0 1.5em 0;
}

ul.share:after {
    content:"\0020";
    display:block;
    clear:both;
}

ul.share li {
    display:inline-block;
    float:none;
    margin-right:0.20em;
    margin-bottom: 0.40em;
}

ul.share li img {
    height: 20px;
}

/* =====================================================
    divider between list elements
   ===================================================== */
ul.divider > li {
    border-top:1px solid #ddd;
    padding-top:1.428571429em;
    padding-bottom: 1.5em;
}

ul.divider > li:first-child {
    border-top:none;
    padding-top:1.5em;
}

/* =====================================================
    widgets
        - widget boxes
        - widget video
   ===================================================== */
/* =====================================================
    widget boxes
   ===================================================== */
.widget_box {
    position:relative;;
    padding:1.5em 0 0;
    margin:1.428571429em 0 1.5em 0;
    border-top:1px solid #ccc;
    background-image: linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 95%, rgb(230,230,230) 100%);
    background-image: -o-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 95%, rgb(230,230,230) 100%);
    background-image: -moz-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 95%, rgb(230,230,230) 100%);
    background-image: -webkit-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 95%, rgb(230,230,230) 100%);
    background-image: -ms-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 95%, rgb(230,230,230) 100%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgba(255,255,255,0)),
        color-stop(0.98, rgba(255,255,255,0)),
        color-stop(1, rgb(230,230,230))
    );
}

.widget_box_alt {
    border-top:1px solid #ccc;
    border-bottom:1px solid #ccc;
    background-image: linear-gradient(bottom, rgba(230,230,230,1) 0%, rgba(255,255,255,0) 5%, rgba(255,255,255,0) 95%, rgb(230,230,230) 100%);
    background-image: -o-linear-gradient(bottom, rgba(230,230,230,1) 0%, rgba(255,255,255,0) 5%, rgba(255,255,255,0) 95%, rgb(230,230,230) 100%);
    background-image: -moz-linear-gradient(bottom, rgba(230,230,230,1) 0%, rgba(255,255,255,0) 5%, rgba(255,255,255,0) 95%, rgb(230,230,230) 100%);
    background-image: -webkit-linear-gradient(bottom, rgba(230,230,230,1) 0%, rgba(255,255,255,0) 5%, rgba(255,255,255,0) 95%, rgb(230,230,230) 100%);
    background-image: -ms-linear-gradient(bottom, rgba(230,230,230,1) 0%, rgba(255,255,255,0) 5%, rgba(255,255,255,0) 95%, rgb(230,230,230) 100%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgba(230,230,230,1)),
        color-stop(0.02, rgba(255,255,255,0)),
        color-stop(0.98, rgba(255,255,255,0)),
        color-stop(1, rgb(230,230,230))
    );
}

.widget_box_alt2 {
    border-top:none;
    background-image: none;
}

.widget_box_alt3 {
    border-top:none;
    background-image: none;
    padding-top: 0;
    margin-top: 0;
}

.widget_box img.widget_box_icon {
    float:right;
}

.widget_box span.widget_box_icon {
    position:absolute;
    top:34px;
    right:0;
    font-size:2em;
    color: #d5d5d5;
}

.widget_quote {
    margin:1.5em 0;
    border:1px solid transparent;
}

.widget_box ul li img {
    vertical-align: middle;
}

/* =====================================================
    widget video
   ===================================================== */
.widget_video {
    text-align: center;
}

.widget_video object {
    -webkit-box-shadow:  0 1px 3px 0 rgba(0,0,0,1);
    -moz-box-shadow:  0 1px 3px 0 rgba(0,0,0,1);
    -ms-box-shadow:  0 1px 3px 0 rgba(0,0,0,1);
    -o-box-shadow:  0 1px 3px 0 rgba(0,0,0,1);
    box-shadow: 0 1px 3px 0 rgba(0,0,0,1);
    background-color: #111;
    display: inline-block;
}

iframe.video {
    -webkit-box-shadow:  0 1px 3px 0 rgba(0,0,0,1);
    -moz-box-shadow:  0 1px 3px 0 rgba(0,0,0,1);
    -ms-box-shadow:  0 1px 3px 0 rgba(0,0,0,1);
    -o-box-shadow:  0 1px 3px 0 rgba(0,0,0,1);
    box-shadow: 0 1px 3px 0 rgba(0,0,0,1);
    background-color: #111;
    display: inline-block;
}

/* =====================================================
    boxley
   ===================================================== */

div.boxley {
    background-color:#e1e1e1;
    background-image: linear-gradient(bottom, rgb(225,225,225) 0%, rgb(255,255,255) 100%);
    background-image: -o-linear-gradient(bottom, rgb(225,225,225) 0%, rgb(255,255,255) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(225,225,225) 0%, rgb(255,255,255) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(225,225,225) 0%, rgb(255,255,255) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(225,225,225) 0%, rgb(255,255,255) 100%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(225,225,225)),
        color-stop(1, rgb(255,255,255))
    );
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow:  0 1px 2px 0 rgba(0,0,0,0.3);
    -moz-box-shadow:  0 1px 2px 0 rgba(0,0,0,0.3);
    -ms-box-shadow:  0 1px 2px 0 rgba(0,0,0,0.3);
    -o-box-shadow:  0 1px 2px 0 rgba(0,0,0,0.3);
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    padding:1.428571429em;
    margin:1.5em 0;
    border:1px solid rgba(255,255,255,0.5);
    width:94%;
    max-width:978px;
}

div.boxley:after {
    content:"\0020";
    display:block;
    clear:both;
}

div.box {
    background-color:#e1e1e1;
    background-image: linear-gradient(bottom, rgb(225,225,225) 0%, rgb(255,255,255) 100%);
    background-image: -o-linear-gradient(bottom, rgb(225,225,225) 0%, rgb(255,255,255) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(225,225,225) 0%, rgb(255,255,255) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(225,225,225) 0%, rgb(255,255,255) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(225,225,225) 0%, rgb(255,255,255) 100%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(225,225,225)),
        color-stop(1, rgb(255,255,255))
    );
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow:  0 1px 2px 0 rgba(0,0,0,0.3);
    -moz-box-shadow:  0 1px 2px 0 rgba(0,0,0,0.3);
    -ms-box-shadow:  0 1px 2px 0 rgba(0,0,0,0.3);
    -o-box-shadow:  0 1px 2px 0 rgba(0,0,0,0.3);
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    padding:1.428571429em;
    margin:1.5em 0;
    border:1px solid rgba(255,255,255,0.5);
}

div.box.wrap_right,
div.box.wrap_left {
    margin-top: 0;
}

div.box > p:first-child {
    margin-top: 0;
}

div.box > p {
    margin-bottom: 0;
}

div.box > h1:first-child,
div.box > h2:first-child,
div.box > h3:first-child,
div.box > h4:first-child,
div.box > h5:first-child,
div.box > h6:first-child {
    margin-top: 0;
}

/* =====================================================
    featured_box
   ===================================================== */
div.featured_box {
    margin-top: 1.5em;
    background-color: #e2e7eb;
    background-image: linear-gradient(bottom, rgb(226,231,235) 30%, rgb(247,247,247) 70%);
    background-image: -o-linear-gradient(bottom, rgb(226,231,235) 30%, rgb(247,247,247) 70%);
    background-image: -moz-linear-gradient(bottom, rgb(226,231,235) 30%, rgb(247,247,247) 70%);
    background-image: -webkit-linear-gradient(bottom, rgb(226,231,235) 30%, rgb(247,247,247) 70%);
    background-image: -ms-linear-gradient(bottom, rgb(226,231,235) 30%, rgb(247,247,247) 70%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0.3, rgb(226,231,235)),
        color-stop(0.7, rgb(247,247,247))
    );
}

div.featured_box > div {
    position: relative;
    z-index: 2;
    -webkit-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
    -moz-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
    -ms-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
    -o-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    border: 1px solid transparent;
}

div.featured_box:after {
    position: relative;
    z-index: 1;
    content:"\0020";
    display:block;
    clear:both;
    background:url(/images/design/custom/slider/slider-shadow.jpg) no-repeat 0 0;
    height:35px;
}

div.featured_box div.featured_box_content {
    margin:0 1.5em 0;
    padding: 0.75em;
}


/* =====================================================
    shoutbox
   ===================================================== */

div.shoutbox {
    position: relative;
    float: left;
    width: 100%;
    border-top:1px solid #ccc;
    border-bottom:1px solid #ccc;
    background-image: linear-gradient(bottom, rgba(230,230,230,1) 0%, rgba(255,255,255,0) 3%, rgba(255,255,255,0) 97%, rgb(230,230,230) 100%);
    background-image: -o-linear-gradient(bottom, rgba(230,230,230,1) 0%, rgba(255,255,255,0) 3%, rgba(255,255,255,0) 97%, rgb(230,230,230) 100%);
    background-image: -moz-linear-gradient(bottom, rgba(230,230,230,1) 0%, rgba(255,255,255,0) 3%, rgba(255,255,255,0) 97%, rgb(230,230,230) 100%);
    background-image: -webkit-linear-gradient(bottom, rgba(230,230,230,1) 0%, rgba(255,255,255,0) 3%, rgba(255,255,255,0) 97%, rgb(230,230,230) 100%);
    background-image: -ms-linear-gradient(bottom, rgba(230,230,230,1) 0%, rgba(255,255,255,0) 3%, rgba(255,255,255,0) 97%, rgb(230,230,230) 100%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(230,230,230)),
        color-stop(0.02, rgba(255,255,255,0)),
        color-stop(0.98, rgba(255,255,255,0)),
        color-stop(1, rgb(230,230,230))
    );
    margin:1.5em 0 3em;
}

div.shoutbox ul {
    list-style-type: none;
    text-align: center;
}

div.shoutbox ul li {
    display: inline-block;
}

li.shoutbox_content {
    font-family: "Diavlo Light",sans-serif;
    font-weight:normal;
    font-size: 1.5em;
    line-height: 1;
    padding: 0.5em;
}

li.shoutbox_btn {
    vertical-align: bottom;
}

/* =====================================================
    horizontal nav
   ===================================================== */
nav.horizontal ul {
    margin-left: 0;
}

nav.horizontal ul:after {
    content:"\0020";
    display:block;
    clear:both;
}

nav.horizontal ul li {
    float: left;
    margin-bottom: 0.25em;
    list-style-type: none;
}

nav.horizontal ul li a {
    padding:0 0.75em 0 0.678571429em;
    border-left: 1px solid #ccc;
    float: left;
}

nav.horizontal.alpha ul li > a,
nav.horizontal.alpha ul li > span {
    padding:0 0.5em 0 0.5em;
    border-left: 1px solid #ccc;
    float: left;
}

nav.horizontal.alpha ul li > span {
    color: #8F8F8F;
    cursor: not-allowed;
}

nav.horizontal ul li:first-child a {
    border-left: none;
    padding-left: 0;
}

nav.horizontal ul li.current a {
    text-decoration: none;
    cursor: default;
    color: #222;
}

/* =====================================================
    alertboxes
   ===================================================== */

.alertbox {
    clear:both;
    width:100%;
    border:1px solid #ccc;
    line-height:1.5em;
    background-color:#EEE;
    margin:auto auto 1.5em auto;
    -webkit-border-radius:3px;
    -moz-border-radius:3px;
    border-radius:3px;
    -webkit-box-shadow:0 0 2px 1px rgba(100,100,100,0.1);
    -moz-box-shadow:0 0 2px 1px rgba(100,100,100,0.1);
    -ms-box-shadow:0 0 2px 1px rgba(100,100,100,0.1);
    -o-box-shadow:0 0 2px 1px rgba(100,100,100,0.1);
    box-shadow:0 0 2px 1px rgba(100,100,100,0.1);
}

.alertbox > div {
    margin:0 20px 0 70px;
    padding:1.5em 0;
}

.alertbox > div p {
    display:inline;
}

.alertbox.alertbox_smaller > div {
    margin:0 20px 0 20px;
    padding:1.5em 0;
    background-image:none;
}

.alertbox.alertbox_smaller {
    background-image:none;
}

.alertbox_special {
    color:#b87131;
    border:1px solid #fb3;
    background-color:#feeda4;
    background-image:url('/images/icons/fatcow/32x32/star.png');
    background-repeat:no-repeat;
    background-position:20px 50%;
}

.alertbox_error {
    color:#333;
    border:1px solid #C77C38;
    background-color:#feeda4;
    background-image:url('/images/icons/fatcow/32x32/error.png');
    background-repeat:no-repeat;
    background-position:20px 50%;
}

.alertbox_special a {
    color:#b87131;
}

.alertbox_success {
    color:#72a308;
    border:1px solid #81bd00;
    background-color:#ebfdae;
    background-image:url('/images/icons/fatcow/32x32/tick.png');
    background-repeat:no-repeat;
    background-position:20px 50%
}

.alertbox_notice {
    color:#5D8EB9;
    border:1px solid #5D8EB9;
    background-color:#EEEEEE;
    background-image:url('/images/icons/fatcow/32x32/info_rhombus.png');
    background-repeat:no-repeat;
    background-position:20px 50%
}

.alertbox_notice a {
    color:#5D8EB9;
}

.alertbox_warning {
    color:#fff;
    border:1px solid #b73f2f;
    background-color:#f45e44;
    background-image:url('/images/icons/fatcow/32x32/exclamation.png');
    background-repeat:no-repeat;
    background-position:20px 50%;
    text-shadow:#d5311e 0 1px 1px
}

.alertbox_warning a {
    color:#fff;
}

.alertbox_5 {
    color:#ca8d36;
    border:1px solid #f1b54b;
    background-color:#fffdb2;
    background-image:url('../images/icons/fatcow-hosting-icons-2400/32x32/error.png');
    background-repeat:no-repeat;
    background-position:20px 50%
}

.alertbox_overlap {
    color:#444;
    border:1px solid #f76b3f;
    background-color:#fcfcfc;
    background-image:url('/images/icons/fatcow/32x32/blogs2.png');
    background-repeat:no-repeat;
    background-position:20px 50%
}

.alertbox_overlap a {
    color:#444;
}

.alertbox_7 {
    color:#5096d3;
    border:1px solid #67a7dc;
    background-color:#d7f4ff;
    background-image:url('../images/icons/fatcow-hosting-icons-2400/32x32/help.png');
    background-repeat:no-repeat;
    background-position:20px 50%
}

/* ==========================================================================================================
    special styles
        - header styles
        - announcement bar
        - header navigation
        - sidebar navigation
        - icons
        - buttons
        - table mini navigation
        - register countdown classes
        - register upgrade ondemand classes
        - misc
   ========================================================================================================== */
div#header, div.header {
    height:135px;
    position:relative;
}

.search-form {
    float:right;
    margin:1.5em 0 0 0;
}

.search-form input[type="text"]{
    margin:0;
    width:150px;
}

.search-submit {
    float:right;
    background:none;
    height:auto;
    border:none;
    margin:0 0 0 -40px;
    padding:0 7px 0 0;
    top:7px;
    position:relative;
}

#login-status {
    position:relative;
    z-index:9999;
    margin:1.5em 0 0 0;
    float:right;
    padding-top:3px;
    padding-right:2px;
}

#login-status ul.dropdown ul {
   top:1.4em;
}

.logo {
    float:left;
    margin-top:25px;
}

input#_website {
   display:none;
}

div.vcard {
    padding:1.5em;
    margin-bottom:1.5em;
    background-color:#eee;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    -moz-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    -ms-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    -o-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}

/* =====================================================
    announcement bar
   ===================================================== */
#announcement-bar {
   font:bold italic 15pt/16pt   Arial,'trebuchet ms',verdana;
   background-color: #e06b1b;
   letter-spacing:1px;
   color: #FFF;
   text-align:center;
   padding:10px;
   background-image: url('/images/design/custom/announcement-bar/orange-gradient-bg.jpg');
   background-repeat: repeat-x;

   /*font:bold italic 15pt Arial,'trebuchet ms',verdana;
   background-color: #e06b1b;
   letter-spacing:1px;
   color: #FFF;
   text-align:center;
   padding:10px;
   background-image: url('/images/design/custom/announcement-bar/orange.jpg');
   background-repeat: repeat-x;*/
}

#announcement-bar a {
   color:#FFF
}

#announcement-bar a:hover {
   text-decoration:underline
}

/* =====================================================
    header navigation
   ===================================================== */
.default-navigation-all {
    z-index:5000;
}

.top-menu {
    float:right;
    font-family: "Diavlo Light",sans-serif;
    font-weight:normal;
}

#main_navigation {
    display:block;
    clear:both;
    margin-top:1.5em;
}

ul.dropdown {
   position: relative;
   z-index: 999;
   margin-left:0;
   margin-top:0;
   margin-bottom:0;
}

ul.dropdown li {
   margin:0;
   display:block;
}

ul.dropdown li.hover,
ul.dropdown li:hover {
   position: relative;
   z-index: 9;
   cursor: default;
}

ul.dropdown ul {
   visibility: hidden;
   position: absolute;
   top:2.4em;
   z-index: 8;
   width: 143px;
   font-family:sans-serif;
   font-size:0.857142857em;
   line-height:1.75;
   margin:0;
   -webkit-box-shadow:  0 1px 3px 0 rgba(0,0,0,0.5);
   -moz-box-shadow:  0 1px 3px 0 rgba(0,0,0,0.5);
   -ms-box-shadow:  0 1px 3px 0 rgba(0,0,0,0.5);
   -o-box-shadow:  0 1px 3px 0 rgba(0,0,0,0.5);
   box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
}

ul.dropdown ul ul {
   top: 0;
   left: 99%;
   font-size:1em;
}

ul.dropdown li:hover > ul {
   visibility: visible;
}

#main_navigation ul.dropdown .root-item {
   display:block;
   float:left;
   border-left:1px solid #ddd;
}

#login-status ul.dropdown .root-item {
   display:block;
   float:left;
}

#login-status ul.dropdown {
    margin-bottom:-1.5em;
}

#main_navigation ul.dropdown .root-item:first-child {
   border-left:none;
}

ul.dropdown .root-item > a,
ul.dropdown .root-item > li.dropdown_submenu span {
    color:#38516F;
   -webkit-transition: color .3s ease-in-out;
   -moz-transition: color .3s ease-in-out;
   transition: color .3s ease-in-out;
   float:left;
   font-size: 1.214em; /* 17px */
   line-height: 1.235294118; /* 21px */
   display:block;
   text-decoration:none;
   padding:0.30882353em 0.617647059em;
}

ul.dropdown:hover .root-item > a {
   color:#ccc;
}

ul.dropdown:hover .root-item:hover > a {
   color:#00577d;
}

ul.dropdown .root-item > a {
   float:left;
   font-size: 1.214em; /* 17px */
   line-height: 1.235294118; /* 21px */
   display:block;
   text-decoration:none;
   padding:0.30882353em 0.617647059em;
}

ul.dropdown .root-item:hover > a {

}

ul.dropdown .root-item ul a,
ul.dropdown .root-item ul li.dropdown_submenu span,
ul.dropdown li.active ul a {
   display:block;
   float:none;
   padding:5px 5px 5px 15px;
   height: auto;
   background:none;
   color:#666;
   text-decoration:none;
}

ul.dropdown .root-item ul {
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   -ms-border-radius: 3px;
   -o-border-radius: 3px;
   border-radius: 3px;
}

ul.dropdown .root-item ul .first a,
ul.dropdown .root-item ul .first a:hover,
ul.dropdown .root-item ul li.dropdown_submenu.first > span {
   -moz-border-radius-topleft:3px; /* FireFox 1+ */
   -webkit-border-top-left-radius:3px; /* Safari 3+, Chrome */
   border-top-left-radius:3px; /* Opera 10.5, IE 9 */
   -moz-border-radius-topright:3px; /* FireFox 1+ */
   -webkit-border-top-right-radius:3px; /* Safari 3+, Chrome */
   border-top-right-radius:3px; /* Opera 10.5, IE 9 */
}

ul.dropdown .root-item ul .last a,
ul.dropdown .root-item ul .last a:hover,
ul.dropdown .root-item ul li.dropdown_submenu.last > span {
   -moz-border-radius-bottomleft:3px; /* FireFox 1+ */
   -webkit-border-bottom-left-radius:3px; /* Safari 3+, Chrome */
   border-bottom-left-radius:3px; /* Opera 10.5, IE 9 */
   -moz-border-radius-bottomright:3px; /* FireFox 1+ */
   -webkit-border-bottom-right-radius:3px; /* Safari 3+, Chrome */
   border-bottom-right-radius:3px; /* Opera 10.5, IE 9 */
}

ul.dropdown .root-item ul .only a,
 ul.dropdown .root-item ul .only a:hover,
 ul.dropdown .root-item ul li.dropdown_submenu.only > span {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}

ul.dropdown .root-item ul li a,
ul.dropdown .root-item ul .no-top-radius a,
ul.dropdown .root-item ul lli.dropdown_submenu > span,
ul.dropdown .root-item ul .no-top-radius a:hover {
   -moz-border-radius-topleft:0; /* FireFox 1+ */
   -webkit-border-top-left-radius:0; /* Safari 3+, Chrome */
   border-top-left-radius:0; /* Opera 10.5, IE 9 */
   -moz-border-radius-topright:0; /* FireFox 1+ */
   -webkit-border-top-right-radius:0; /* Safari 3+, Chrome */
   border-top-right-radius:0; /* Opera 10.5, IE 9 */
}

ul.dropdown .root-item ul li a,
ul.dropdown .root-item ul .no-bottom-radius a,
ul.dropdown .root-item ul li.dropdown_submenu > span,
ul.dropdown .root-item ul .no-bottom-radius a:hover {
   -moz-border-radius-bottomleft:0; /* FireFox 1+ */
   -webkit-border-bottom-left-radius:0; /* Safari 3+, Chrome */
   border-bottom-left-radius:0; /* Opera 10.5, IE 9 */
   -moz-border-radius-bottomright:0; /* FireFox 1+ */
   -webkit-border-bottom-right-radius:0; /* Safari 3+, Chrome */
   border-bottom-right-radius:0; /* Opera 10.5, IE 9 */
}

ul.dropdown ul.last-menu {
   margin-left: -72px;
}

ul.dropdown .root-item ul li a {
   color:#fff;
   background-color:#415e81;
   background-image: linear-gradient(bottom, rgb(53,77,105) 25%, rgb(65,94,129) 75%);
   background-image: -o-linear-gradient(bottom, rgb(53,77,105) 25%, rgb(65,94,129) 75%);
   background-image: -moz-linear-gradient(bottom, rgb(53,77,105) 25%, rgb(65,94,129) 75%);
   background-image: -webkit-linear-gradient(bottom, rgb(53,77,105) 25%, rgb(65,94,129) 75%);
   background-image: -ms-linear-gradient(bottom, rgb(53,77,105) 25%, rgb(65,94,129) 75%);

   background-image: -webkit-gradient(
       linear,
       left bottom,
       left top,
       color-stop(0.25, rgb(53,77,105)),
       color-stop(0.75, rgb(65,94,129))
   );
}

ul.dropdown .root-item ul li a,
ul.dropdown .root-item ul li.dropdown_submenu span {
   color:#fff;
   background-color:#415e81;
   background-image: linear-gradient(bottom, rgb(53,77,105) 25%, rgb(65,94,129) 75%);
   background-image: -o-linear-gradient(bottom, rgb(53,77,105) 25%, rgb(65,94,129) 75%);
   background-image: -moz-linear-gradient(bottom, rgb(53,77,105) 25%, rgb(65,94,129) 75%);
   background-image: -webkit-linear-gradient(bottom, rgb(53,77,105) 25%, rgb(65,94,129) 75%);
   background-image: -ms-linear-gradient(bottom, rgb(53,77,105) 25%, rgb(65,94,129) 75%);

   background-image: -webkit-gradient(
       linear,
       left bottom,
       left top,
       color-stop(0.25, rgb(53,77,105)),
       color-stop(0.75, rgb(65,94,129))
   );
}

ul.dropdown .root-item ul li.dropdown_submenu:hover > span,
ul.dropdown .root-item ul li.dropdown_submenu:focus > span,
ul.dropdown .root-item ul li.dropdown_submenu:hover > a,
ul.dropdown .root-item ul li.dropdown_submenu:focus > a {
   color:#314761;
   background-color:#dfdfdf;
   background-image: linear-gradient(bottom, rgb(223,223,223) 0%, rgb(255,255,255) 100%);
   background-image: -o-linear-gradient(bottom, rgb(223,223,223) 0%, rgb(255,255,255) 100%);
   background-image: -moz-linear-gradient(bottom, rgb(223,223,223) 0%, rgb(255,255,255) 100%);
   background-image: -webkit-linear-gradient(bottom, rgb(223,223,223) 0%, rgb(255,255,255) 100%);
   background-image: -ms-linear-gradient(bottom, rgb(223,223,223) 0%, rgb(255,255,255) 100%);

   background-image: -webkit-gradient(
       linear,
       left bottom,
       left top,
       color-stop(0, rgb(223,223,223)),
       color-stop(1, rgb(255,255,255))
   );
}

ul.dropdown .root-item ul li a:hover,
ul.dropdown .root-item ul li a:focus,
ul.dropdown .root-item ul li.dropdown_submenu:hover > a:hover,
ul.dropdown .root-item ul li.dropdown_submenu:focus > a:focus {
   color:#663A09;
   background-color:#F6BE1B;
   background-image: linear-gradient(bottom, rgb(224,170,10) 25%, rgb(246,191,27) 75%);
   background-image: -o-linear-gradient(bottom, rgb(224,170,10) 25%, rgb(246,191,27) 75%);
   background-image: -moz-linear-gradient(bottom, rgb(224,170,10) 25%, rgb(246,191,27) 75%);
   background-image: -webkit-linear-gradient(bottom, rgb(224,170,10) 25%, rgb(246,191,27) 75%);
   background-image: -ms-linear-gradient(bottom, rgb(224,170,10) 25%, rgb(246,191,27) 75%);

   background-image: -webkit-gradient(
       linear,
       left bottom,
       left top,
       color-stop(0.25, rgb(224,170,10)),
       color-stop(0.75, rgb(246,191,27))
   );
}

/* header login */
ul.dropdown.user-menu {
   float:right;

}

ul.dropdown.user-menu .root-item > a {
   z-index:1001;
   margin:0;
   font-family:sans-serif;
   font-size:0.857142857em;
   line-height:1.75;
   text-decoration:underline;
   padding:0;
   -webkit-box-shadow: 0 0 0 0 rgba(0,0,0,0);
   -moz-box-shadow:  0 0 0 0 rgba(0,0,0,0);
   -ms-box-shadow:  0 0 0 0 rgba(0,0,0,0);
   -o-box-shadow:  0 0 0 0 rgba(0,0,0,0);
   box-shadow: 0 0 0 0 rgba(0,0,0,0);
}

.last-menu {
    margin-left: -89px;
}

#ribbon {
    position:relative;
    color:#fff;
    height:88px;
}

.no_navigation #ribbon h1 {
    line-height:1.6;
}

#ribbon h1 {
    margin-top:0;
    margin-bottom:0;
    line-height:2;
    color:#fff;
    display:inline-block;
}

#ribbon h1.with_tagline {
    margin-top: 0.15em;
    margin-bottom: 0.15em;
    line-height:1.5;
    color:#fff;
}

#ribbon + div.container {
    position:relative;
    display:block;
    clear:both;
}

#ribbon_tagline {
    position:absolute;
    display:block;
    margin-top:-1em;
}

#minimal {
    position:relative;
    color:#fff;
    height:11px;
}

body.sans #minimal {
    height: 6px;
}

#ribbon_featured > h1 {
    color: #fff;
    text-align: center;
    margin: 0.25em 0;
}

/* =====================================================
    sidebar navigation
   ===================================================== */

.widget_pages {
    margin:1.5em 0;
    font-family:'Diavlo Light', sans-serif;
    font-weight:normal;
}

.widget_pages ul {
    display:block;
    clear:both;
    margin-left:-25px;
    padding-top:1.5em;
}

.widget_pages li {
    font-size: 1.5em;
    line-height: 1;
    border-bottom:1px solid #ccc;
    padding:0.714285714em 0 0.714285714em 27px;
    list-style-type: none;
    background-image: linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 95%, rgb(230,230,230) 100%);
    background-image: -o-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 95%, rgb(230,230,230) 100%);
    background-image: -moz-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 95%, rgb(230,230,230) 100%);
    background-image: -webkit-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 95%, rgb(230,230,230) 100%);
    background-image: -ms-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 95%, rgb(230,230,230) 100%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgba(255,255,255,0)),
        color-stop(0.98, rgba(255,255,255,0)),
        color-stop(1, rgb(230,230,230))
    );
}

.widget_pages li:first-child {
    background-image:none;
    border-top:1px solid #ccc;
}

.widget_pages li a {
    color:#38516F;
    text-decoration:none;
}

.widget_pages li a:hover {
    color: #663A09;
}

.widget_pages li a:active {
    color: #676F7D;
}

.widget_pages li.active {
    background-position:left top;
    background-repeat:no-repeat;
    background-color:#fff;
    border-bottom:1px solid #ccc;
    padding:0.75em 0 0.714285714em 27px;
}

.widget_pages li.active a {
    text-decoration:none;
    cursor: default;
}

.widget_pages li.active a {
    color:#bbb;
}

.widget_pages li.alt {
    border-top:1px solid #ccc;
    background-image: linear-gradient(bottom, rgb(230,230,230) 0%, rgba(255,255,255,0) 5%, rgba(255,255,255,0) 95%, rgb(230,230,230) 100%);
    background-image: -o-linear-gradient(bottom, rgb(230,230,230) 0%, rgba(255,255,255,0) 5%, rgba(255,255,255,0) 95%, rgb(230,230,230) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(230,230,230) 0%, rgba(255,255,255,0) 5%, rgba(255,255,255,0) 95%, rgb(230,230,230) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(230,230,230) 0%, rgba(255,255,255,0) 5%, rgba(255,255,255,0) 95%, rgb(230,230,230) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(230,230,230) 0%, rgba(255,255,255,0) 5%, rgba(255,255,255,0) 95%, rgb(230,230,230) 100%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(230,230,230))
        color-stop(0.02, rgba(255,255,255,0)),
        color-stop(0.98, rgba(255,255,255,0)),
        color-stop(1, rgb(230,230,230))
    );
}

/* =====================================================
    icons
   ===================================================== */
#ribbon_icon > a,
#ribbon_icon > span,
#ribbon_icon > img {
    position:absolute;
    top:25px;
    right:50px;
    display:block;
    width:100px;
    height:100px;
    z-index:999;
}

#ribbon_icon.ribbon_icon_course > img {
}


#ribbon_icon > a span,
#ribbon_icon > span span {
    display:none;
}

.ribbon_icon_rss > a,
.ribbon_icon_rss > span {
    background:url(/images/design/custom/icons/training/medium/rss-emblem.png) bottom no-repeat;
}

.ribbon_icon_private > a,
.ribbon_icon_private > span {
    background:url(/images/design/custom/icons/training/medium/private-emblem.png) bottom no-repeat;
}

.ribbon_icon_mentor > a,
.ribbon_icon_mentor > span {
    background:url(/images/design/custom/icons/training/medium/mentor-emblem.png) bottom no-repeat;
    }

.ribbon_icon_vlive > a,
.ribbon_icon_vlive > span {
    background:url(/images/design/custom/icons/training/medium/vlive-emblem.png) bottom no-repeat;
    }

.ribbon_icon_simulcast > a,
.ribbon_icon_simulcast > span {
    background:url(/images/design/custom/icons/training/medium/simulcast-emblem.png) bottom no-repeat;
    }

.ribbon_icon_audiovideo > a,
.ribbon_icon_audiovideo > span {
    background:url(/images/design/custom/icons/training/medium/audio-visual-emblem.png) bottom no-repeat;
}

.ribbon_icon_community > a,
.ribbon_icon_community > span {
    background:url(/images/design/custom/icons/training/medium/community-emblem.png) bottom no-repeat;
    }

.ribbon_icon_cyber_ranges > a,
.ribbon_icon_cyber_ranges > span {
    background:url(/images/design/custom/icons/training/medium/cyber-ranges-emblem.png) bottom no-repeat;
    }

.ribbon_icon_cyber_guardian > a,
.ribbon_icon_cyber_guardian > span {
    background:url(/images/design/custom/icons/misc/medium/cyber-emblem.png) bottom no-repeat;
}

.ribbon_icon_selfstudy > a,
.ribbon_icon_selfstudy > span {
    background:url(/images/design/custom/icons/training/medium/selfstudy-emblem.png) bottom no-repeat;
    }

.ribbon_icon_summit > a,
.ribbon_icon_summit > span {
    background:url(/images/design/custom/icons/training/medium/summit-emblem.png) bottom no-repeat;
    }

.ribbon_icon_partnership > a,
.ribbon_icon_partnership > span {
    background:url(/images/design/custom/icons/training/medium/partnership-emblem.png) bottom no-repeat;
    }


.ribbon_icon_ondemand > a,
.ribbon_icon_ondemand > span {
    background:url(/images/design/custom/icons/training/medium/ondemand-emblem.png) bottom no-repeat;
    }

.ribbon_icon_vouchers > a,
.ribbon_icon_vouchers > span {
    background:url(/images/design/custom/icons/training/medium/voucher-emblem.png) bottom no-repeat;
}


.ribbon_icon_private > a,
.ribbon_icon_private > span {
    background:url(/images/design/custom/icons/training/medium/private-emblem.png) bottom no-repeat;
    }

.ribbon_icon_hacker_guard > a,
.ribbon_icon_hacker_guard > span {
    background:url(/images/design/custom/icons/training/medium/hacker-guard.png) bottom no-repeat;
    }

.ribbon_icon_training > a,
.ribbon_icon_training > span {
    background:url(/images/design/custom/icons/training/medium/training-emblem.png) bottom no-repeat;
}

.ribbon_icon_simulcast > a,
.ribbon_icon_simulcast > span {
    background:url(/images/design/custom/icons/training/medium/simulcast-emblem.png) bottom no-repeat;
}

.ribbon_icon_coins > a,
.ribbon_icon_coins > span {
    background:url(/images/design/custom/icons/training/medium/coins-emblem.png) bottom no-repeat;
}

.ribbon_icon_cybercon > a,
.ribbon_icon_cybercon > span {
    background:url(/images/design/custom/icons/training/medium/cybercon-emblem2.png) bottom no-repeat;
}

.ribbon_icon_webcasts > a,
.ribbon_icon_webcasts > span {
    background:url(/images/design/custom/icons/training/medium/webcasts-emblem.png) bottom no-repeat;
}

.ribbon_icon_rr > a,
.ribbon_icon_rr > span {
    background:url(/images/design/custom/icons/training/medium/reading-room-emblem.png) bottom no-repeat;
}
.ribbon_icon_cyber_academy > a,
.ribbon_icon_cyber_academy > span {
    background:url(/images/design/custom/icons/training/medium/cyber-academy-emblem.png) bottom no-repeat;
}
.ribbon_icon_awards > a,
.ribbon_icon_awards > span {
    background:url(/images/design/custom/icons/training/medium/best-of-awards-emblem.png) bottom no-repeat;
}

#ribbon_icon.ribbon_icon_netwars > a,
#ribbon_icon.ribbon_icon_netwars > span,
#ribbon_icon.ribbon_icon_netwars > img {
    position:absolute;
    top:25px;
    right:25px;
    display:block;
    width:150px;
    height:83px;
    z-index:999;
    -webkit-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
    -moz-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
    -ms-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
    -o-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
    box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
}

.ribbon_icon_netwars > a,
.ribbon_icon_netwars > span {
    background:url(/images/design/custom/icons/training/large/netwars-emblem.png) bottom no-repeat;
}

#ribbon_icon.ribbon_icon_apac_brochure > a,
#ribbon_icon.ribbon_icon_apac_brochure > span,
#ribbon_icon.ribbon_icon_apac_brochure > img {
    position:absolute;
    top:20px;
    right:57px;
    display:block;
    width:70px;
    height:120px;
    z-index:999;
    -webkit-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
    -moz-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
    -ms-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
    -o-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
    box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
}

.ribbon_icon_apac_brochure > a,
.ribbon_icon_apac_brochure > span {
    background:url(/images/misc/apac_course_catalog_cover_2014.png) bottom no-repeat;
}

#ribbon_icon.ribbon_icon_ics > a,
#ribbon_icon.ribbon_icon_ics > span,
#ribbon_icon.ribbon_icon_ics > img {
    position:absolute;
    top:15px;
    right:50px;
    display:block;
    width:100px;
    height:137px;
    z-index:999;
    -webkit-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
    -moz-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
    -ms-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
    -o-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
    box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
}

.ribbon_icon_ics > a,
.ribbon_icon_ics > span {
    background:url(/images/design/custom/icons/training/large/ics-emblem.png) bottom no-repeat;
}

#ribbon_icon.ribbon_icon_cybertalent > a,
#ribbon_icon.ribbon_icon_cybertalent > span,
#ribbon_icon.ribbon_icon_cybertalent > img {
    position:absolute;
    top:15px;
    right:0;
    display:block;
    width:150px;
    height:103px;
    z-index:999;
    -webkit-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
    -moz-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
    -ms-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
    -o-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
    box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
}

.ribbon_icon_cybertalent > a,
.ribbon_icon_cybertalent > span {
    background:url(/images/design/custom/icons/training/large/cybertalent-emblem.png) bottom no-repeat;
}

.ribbon_icon_cyberstart > a,
.ribbon_icon_cyberstart > span {
    background:url(/images/design/custom/icons/training/medium/cyberstart-emblem.png) bottom no-repeat;
}

/* =====================================================
    buttons (DO NOT ADD TO THESE BUTTONS, SEE UNDERSCORE BUTTON STYLES BELOW)
   ===================================================== */

a.add-ondemand-button, a.add-to-cart-button, a.apply-now-button, a.contact-us-button, a.download-now-button, a.find-training-button, a.free-trial-button, a.get-certified-button, a.get-registered-button , a.get-registered-shadowless-button , a.learn-more-button, a.purchase-button, a.register-button, a.register-now-button, a.register-now-shadowless-button, a.place-order-button, a.get-newsletter-button, a.waiting-list-button, a.availability-button, a.find-summits-button, a.client-login-button, a.my-account-button, a.get-free-poster-button, a.join-community-button, a.join-forum-button, a.get-quote-button, a.order-now-button, a.register-now-shadowless-disabled-button {

   width:197px;
   height:52px;
   visibility:visible;
   float:right;
}


a.add-ondemand-button span, a.add-to-cart-button span, a.apply-now-button span, a.contact-us-button span, a.download-now-button span, a.find-training-button span, a.free-trial-button span, a.get-certified-button span, a.get-registered-button span , a.get-registered-shadowless-button span , a.learn-more-button span, a.purchase-button span, a.register-button span, a.register-now-button span, a.register-now-shadowless-button span, a.place-order-button span, a.get-newsletter-button span, a.waiting-list-button span, a.availability-button span, a.find-summits-button span, a.client-login-button span, a.my-account-button span, a.get-free-poster-button span, a.join-community-button span, a.join-forum-button span, a.get-quote-button span, a.order-now-button span, a.register-now-shadowless-disabled-button span {

    display:none;
}

a.add-ondemand-button {
   background:url(/images/buttons/add-ondemand.png) no-repeat left top;
}

a.add-to-cart-button {
   background:url(/images/buttons/add-to-cart.png) no-repeat left top;
}

a.apply-now-button {
   background:url(/images/buttons/apply-now.png) no-repeat left top;
}

a.contact-us-button {
   background:url(/images/buttons/contact-us.png) no-repeat left top;
}

a.download-now-button {
   background:url(/images/buttons/download-now.png) no-repeat left top;
}

a.find-training-button {
   background:url(/images/buttons/find-training.png) no-repeat left top;
}

a.free-trial-button {
   background:url(/images/buttons/free-trial.png) no-repeat left top;
}

a.get-certified-button {
   background:url(/images/buttons/get-certified.png) no-repeat left top;
}

a.get-registered-button {
   background:url(/images/buttons/get-registered.png) no-repeat left top;
}

a.get-registered-shadowless-button {
   background:url(/images/buttons/get-registered-shadowless.png) no-repeat left top;
}


a.learn-more-button {
   background:url(/images/buttons/learn-more.png) no-repeat left top;
}

a.request_info_button {
    background: url('/images/buttons/request-info.png') no-repeat scroll left top transparent;
}

a.purchase-button {
   background:url(/images/buttons/purchase-now.png) no-repeat left top;
}

a.place-order-button {
   background:url(/images/buttons/place-order.png) no-repeat left top;
}

a.register-button {
   background:url(/images/buttons/register-now.png) no-repeat left top;
}

a.get-newsletter-button {
   background:url(/images/buttons/get-newsletters.png) no-repeat left top;
}

a.register-now-button {
   background:url(/images/buttons/register-now.png) no-repeat left top;
}

a.register-now-shadowless-button {
   background:url(/images/buttons/register-now-shadowless.png) no-repeat left top;
}

a.register-now-shadowless-disabled-button {
   background:url(/images/buttons/register-now-shadowless-disabled.png) no-repeat left top;
}

a.waiting-list-button {
   background:url(/images/buttons/waiting-list.png) no-repeat left top;
}

a.availability-button {
    background:url(/images/buttons/availability.png) no-repeat left top;
}

a.find-summits-button {
    background:url(/images/buttons/find-summits.png) no-repeat left top;
}

a.client-login-button {
    background:url(/images/buttons/client-login.png) no-repeat left top;
}

a.my-account-button {
    background:url(/images/buttons/my-account.png) no-repeat left top;
}

a.get-free-poster-button {
    background:url(/images/buttons/get-free-poster.png) no-repeat left top;
}

a.join-community-button {
    background:url(/images/buttons/join-community.png) no-repeat left top;
}

a.join-forum-button {
    background:url(/images/buttons/join-forum.png) no-repeat left top;
}

a.get-quote-button {
    background:url(/images/buttons/get-quote.png) no-repeat left top;
}

a.order-now-button {
    background:url(/images/buttons/order-now.png) no-repeat left top;
}

a.add-ondemand-button:hover, a.add-to-cart-button:hover, a.apply-now-button:hover, a.contact-us-button:hover, a.download-now-button:hover, a.find-training-button:hover, a.free-trial-button:hover, a.get-certified-button:hover, a.get-registered-button:hover, a.get-registered-shadowless-button:hover , a.learn-more-button:hover, a.purchase-button:hover, a.place-order-button:hover, a.register-button:hover, a.register-now-button:hover, a.register-now-shadowless-button:hover, a.get-newsletter-button:hover, a.waiting-list-button:hover, a.availability-button:hover, a.find-summits-button:hover, a.client-login-button:hover, a.my-account-button:hover, a.get-free-poster-button:hover, a.join-community-button:hover, a.join-forum-button:hover, a.get-quote-button:hover, a.order-now-button:hover  {

   background-position:-197px 0pt;
}

a.add-to-cart-button-small, a.apply-now-button-small, a.contact-us-button-small, a.download-now-button-small, a.find-training-button-small, a.free-trial-button-small, a.get-certified-button-small, a.affiliate-info-button-small, a.get-registered-button-small, a.learn-more-button-small, a.purchase-button-small, a.register-button-small, a.register-now-button-small, a.read-now-button-small, a.place-order-button-small, a.get-newsletters-button-small, a.waiting-list-button-small, a.availability-button-small {
    width:137px;
    height:36px;
    visibility:visible;
    float:right;
    }

    a.add-to-cart-button-small {
        background:url(/images/buttons/add-to-cart-small.png) no-repeat left top;
        }

    a.apply-now-button-small {
        background:url(/images/buttons/apply-now-small.png) no-repeat left top;
        }

    a.contact-us-button-small {
        background:url(/images/buttons/contact-us-small.png) no-repeat left top;
        }

    a.download-now-button-small {
        background:url(/images/buttons/download-now-small.png) no-repeat left top;
        }

    a.find-training-button-small {
        background:url(/images/buttons/find-training-small.png) no-repeat left top;
        }

    a.free-trial-button-small {
        background:url(/images/buttons/free-trial-small.png) no-repeat left top;
        }

    a.get-certified-button-small {
        background:url(/images/buttons/get-certified-small.png) no-repeat left top;
        }

    a.affiliate-info-button-small {
        background:url(/images/buttons/affiliate-info-small.png) no-repeat left top;
        }

    a.get-registered-button-small {
        background:url(/images/buttons/get-registered-small.png) no-repeat left top;
        }

    a.learn-more-button-small {
        background:url(/images/buttons/learn-more-small.png) no-repeat left top;
        }

    a.purchase-button-small {
        background:url(/images/buttons/purchase-now-small.png) no-repeat left top;
        }

    a.place-order-button-small {
        background:url(/images/buttons/place-order-small.png) no-repeat left top;
        }

    a.register-button-small {
        background:url(/images/buttons/register-now-small.png) no-repeat left top;
        }

    a.register-now-button-small {
        background:url(/images/buttons/register-now-small.png) no-repeat left top;
        }

    a.read-now-button-small {
        background:url(/images/buttons/read-now-small.png) no-repeat left top;
    }

    a.get-newsletters-button-small {
        background:url(/images/buttons/get-newsletters-small.png) no-repeat left top;
    }

    a.waiting-list-button-small {
        background:url(/images/buttons/waiting-list-small.png) no-repeat left top;
    }

    a.availability-button-small {
        background:url(/images/buttons/availability-small.png) no-repeat left top;
    }


    a.add-to-cart-button-small:hover, a.apply-now-button-small:hover, a.contact-us-button-small:hover, a.download-now-button-small:hover, a.find-training-button-small:hover, a.free-trial-button-small:hover, a.get-certified-button-small:hover, a.affiliate-info-button-small:hover, a.get-registered-button-small:hover, a.learn-more-button-small:hover, a.purchase-button-small:hover, a.register-button-small:hover, a.register-now-button-small:hover, a.place-order-button-small:hover, a.read-now-button-small:hover, a.get-newsletters-button-small:hover, a.waiting-list-button-small:hover, a.availability-button-small:hover {
        background-position:-137px 0px;
        }

        a.add-to-cart-button-small span, a.apply-now-button-small span, a.contact-us-button-small span, a.download-now-button-small span, a.find-training-button-small span, a.free-trial-button-small span, a.get-certified-button-small span, a.affiliate-info-button-small span, a.get-registered-button-small span, a.learn-more-button-small span, a.purchase-button-small span, a.register-button-small span, a.register-now-button-small span, a.read-now-button-small span, a.place-order-button-small span, a.get-newsletters-button-small span, a.waiting-list-button-small span, a.availability-button-small span {
            display:none;
        }

a.add-to-cart-button-tiny, a.apply-now-button-tiny, a.contact-us-button-tiny, a.download-now-button-tiny, a.find-training-button-tiny, a.free-trial-button-tiny, a.get-certified-button-tiny, a.get-registered-button-tiny, a.learn-more-button-tiny, a.purchase-button-tiny, a.register-button-tiny, a.register-now-button-tiny, a.read-now-button-tiny, a.place-order-button-tiny, a.get-newsletters-button-tiny, a.waiting-list-button-tiny, a.availability-button-tiny {
    width:100px;
    height:27px;
    visibility:visible;
    float:right;
    }

    a.find-training-button-tiny {
        background:url(/images/buttons/find-training-tiny.png) no-repeat left top;
        }

    a.get-demo-button-tiny {
        background:url(/images/buttons/get-demo-tiny.png) no-repeat left top;
        }

    a.register-button-tiny {
        background:url(/images/buttons/register-tiny.png) no-repeat left top;
        }

    a.get-demo-button-tiny {
        background:url(/images/buttons/get-demo-tiny.png) no-repeat left top;
        }

    a.learn-more-button-tiny {
        background:url(/images/buttons/learn-more-tiny.png) no-repeat left top;
        }

    a.waiting-list-button-tiny {
        background:url(/images/buttons/waiting-list-tiny.png) no-repeat left top;
        }

    a.availability-button-tiny {
        background:url(/images/buttons/availability-tiny.png) no-repeat left top;
        }

    a.add-to-cart-button-tiny:hover, a.apply-now-button-tiny:hover, a.contact-us-button-tiny:hover, a.download-now-button-tiny:hover, a.find-training-button-tiny:hover, a.free-trial-button-tiny:hover, a.get-certified-button-tiny:hover, a.get-registered-button-tiny:hover, a.learn-more-button-tiny:hover, a.purchase-button-tiny:hover, a.register-button-tiny:hover, a.register-now-button-tiny:hover, a.place-order-button-tiny:hover, a.read-now-button-tiny:hover, a.get-newsletters-button-tiny:hover, a.waiting-list-button-tiny:hover, a.availability-button-tiny:hover {
        background-position:-100px 0px;
        }

        a.add-to-cart-button-tiny span, a.apply-now-button-tiny span, a.contact-us-button-tiny span, a.download-now-button-tiny span, a.find-training-button-tiny span, a.free-trial-button-tiny span, a.get-certified-button-tiny span, a.get-registered-button-tiny span, a.learn-more-button-tiny span, a.purchase-button-tiny span, a.register-button-tiny span, a.register-now-button-tiny span, a.read-now-button-tiny span, a.place-order-button-tiny span, a.get-newsletters-button-tiny span, a.waiting-list-button-tiny span, a.availability-button-tiny span {
            display:none;
        }

/* =====================================================
     buttons
     - underscore button classes to eventually replace
       hyphen button classes
   ===================================================== */

a.add_ondemand_button, a.add_to_cart_button, a.apply_now_button, a.contact_us_button, a.download_now_button, a.find_training_button, a.free_trial_button, a.get_certified_button, a.get_registered_button , a.get_registered_shadowless_button , a.learn_more_button, a.purchase_button, a.register_button, a.register_now_button, a.register_now_shadowless_button, a.register_now_shadowless_disabled_button, a.place_order_button, a.get_newsletter_button, a.waiting_list_button, a.availability_button, a.find_summits_button, a.client_login_button, a.free_demo_button, a.account_login_button, a.webcast_live_button, a.webcast_archive_button, a.webcast_test_button, a.request_info_button {
   display: block;
   width:197px;
   height:52px;
}


a.add_demand_button span, a.add_to_cart_button span, a.apply_now_button span, a.contact_us_button span, a.download_now_button span, a.find_training_button span, a.free_trial_button span, a.get_certified_button span, a.get_registered_button span , a.get_registered_shadowless_button span , a.learn_more_button span, a.purchase_button span, a.register_button span, a.register_now_button span, a.register_now_shadowless_button span, a.register_now_shadowless_disabled_button span, a.place_order_button span, a.get_newsletter_button span, a.waiting_list_button span, a.availability_button span, a.find_summits_button span, a.client_login_button span, a.free_demo_button span, a.account_login_button span, a.webcast_live_button span, a.webcast_archive_button span, a.webcast_test_button span, a.request_info_button span {
    display:none;
}

a.add_ondemand_button {
   background:url(/images/buttons/add-to-cart.png) no-repeat left top;
}

a.add_to_cart_button {
   background:url(/images/buttons/add-to-cart.png) no-repeat left top;
}

a.apply_now_button {
   background:url(/images/buttons/apply-now.png) no-repeat left top;
}

a.contact_us_button {
   background:url(/images/buttons/contact-us.png) no-repeat left top;
}

a.download_now_button {
   background:url(/images/buttons/download-now.png) no-repeat left top;
}

a.find_training_button {
   background:url(/images/buttons/find-training.png) no-repeat left top;
}

a.free_trial_button {
   background:url(/images/buttons/free-trial.png) no-repeat left top;
}

a.free_demo_button {
   background:url(/images/buttons/free-demo.png) no-repeat left top;
}

a.get_certified_button {
   background:url(/images/buttons/get-certified.png) no-repeat left top;
}

a.get_registered_button {
   background:url(/images/buttons/get-registered.png) no-repeat left top;
}

a.get_registered_shadowless_button {
   background:url(/images/buttons/get-registered-shadowless.png) no-repeat left top;
}

a.learn_more_button {
   background:url(/images/buttons/learn-more.png) no-repeat left top;
}

a.purchase_button {
   background:url(/images/buttons/purchase-now.png) no-repeat left top;
}

a.place_order_button {
   background:url(/images/buttons/place-order.png) no-repeat left top;
}

a.register_button {
   background:url(/images/buttons/register-now.png) no-repeat left top;
}

a.get_newsletter_button {
   background:url(/images/buttons/get-newsletters.png) no-repeat left top;
}

a.register_now_button {
   background:url(/images/buttons/register-now.png) no-repeat left top;
}

a.register_now_shadowless_button {
   background:url(/images/buttons/register-now-shadowless.png) no-repeat left top;
}

a.register_now_shadowless_disabled_button {
   background:url(/images/buttons/register-now-shadowless-disabled.png) no-repeat left top;
}

a.waiting_list_button {
   background:url(/images/buttons/waiting-list.png) no-repeat left top;
}

a.availability_button {
    background:url(/images/buttons/availability.png) no-repeat left top;
}

a.find_summits_button {
    background:url(/images/buttons/find-summits.png) no-repeat left top;
}

a.client_login_button {
    background:url(/images/buttons/client-login.png) no-repeat left top;
}

a.account_login_button {
    background:url(/images/buttons/account-login.png) no-repeat left top;
}

a.webcast_live_button {
    background:url(/images/buttons/webcast-live.png) no-repeat left top;
}

a.webcast_archive_button {
    background:url(/images/buttons/webcast-archive.png) no-repeat left top;
}

a.webcast_test_button {
    background:url(/images/buttons/webcast-test.png) no-repeat left top;
}

a.request_info_button {
    background:url(/images/buttons/request-info.png) no-repeat left top;
}

a.add_ondemand_button:hover, a.add_to_cart_button:hover, a.apply_now_button:hover, a.contact_us_button:hover, a.download_now_button:hover, a.find_training_button:hover, a.free_trial_button:hover, a.get_certified_button:hover, a.get_registered_button:hover, a.get_registered_shadowless_button:hover , a.learn_more_button:hover, a.purchase_button:hover, a.place_order_button:hover, a.register_button:hover, a.register_now_button:hover, a.register_now_shadowless_button:hover, a.get_newsletter_button:hover, a.waiting_list_button:hover, a.availability_button:hover, a.find_summits_button:hover, a.client_login_button:hover, a.free_demo_button:hover, a.account_login_button:hover, a.webcast_live_button:hover, a.webcast_archive_button:hover, a.webcast_test_button:hover, a.request_info_button:hover  {
   background-position:-197px 0;
}

a.add_to_cart_button_small, a.apply_now_button_small, a.contact_us_button_small, a.download_now_button_small, a.find_training_button_small, a.free_trial_button_small, a.get_certified_button_small, a.get_registered_button_small, a.learn_more_button_small, a.purchase_button_small, a.register_button_small, a.register_now_button_small, a.read_now_button_small, a.place_order_button_small, a.get_newsletters_button_small, a.waiting_list_button_small, a.availability_button_small, a.free_demo_button_small,  {
    width:137px;
    height:36px;
    display: block;
}

a.add_to_cart_button_small {
    background:url(/images/buttons/add-to-cart-small.png) no-repeat left top;
}

a.apply_now_button_small {
    background:url(/images/buttons/apply-now-small.png) no-repeat left top;
}

a.contact_us_button_small {
    background:url(/images/buttons/contact-us-small.png) no-repeat left top;
}

a.download_now_button_small {
    background:url(/images/buttons/download-now-small.png) no-repeat left top;
}

a.find_training_button_small {
    background:url(/images/buttons/find-training-small.png) no-repeat left top;
}

a.free_trial_button_small {
    background:url(/images/buttons/free-trial-small.png) no-repeat left top;
}

a.free_demo_button_small {
    background:url(/images/buttons/free-demo-small.png) no-repeat left top;
}

a.get_certified_button_small {
    background:url(/images/buttons/get-certified-small.png) no-repeat left top;
}

a.affiliate-info-button-small {
    background:url(/images/buttons/affiliate-info-small.png) no-repeat left top;
}

a.get_registered_button_small {
    background:url(/images/buttons/get-registered-small.png) no-repeat left top;
}

a.learn_more_button_small {
    background:url(/images/buttons/learn-more-small.png) no-repeat left top;
}

a.purchase_button_small {
    background:url(/images/buttons/purchase-now-small.png) no-repeat left top;
}

a.place_order_button_small {
    background:url(/images/buttons/place-order-small.png) no-repeat left top;
}

a.register_button_small {
    background:url(/images/buttons/register-now-small.png) no-repeat left top;
}

a.register_now_button_small {
    background:url(/images/buttons/register-now-small.png) no-repeat left top;
}

a.read_now_button_small {
    background:url(/images/buttons/read-now-small.png) no-repeat left top;
}

a.get_newsletters_button_small {
    background:url(/images/buttons/get-newsletters-small.png) no-repeat left top;
}

a.waiting_list_button_small {
    background:url(/images/buttons/waiting-list-small.png) no-repeat left top;
}

a.availability_button_small {
    background:url(/images/buttons/availability-small.png) no-repeat left top;
}


a.add_to_cart_button_small:hover, a.apply_now_button_small:hover, a.contact_us_button_small:hover, a.download_now_button_small:hover, a.find_training_button_small:hover, a.free_trial_button_small:hover, a.get_certified_button_small:hover, a.get_registered_button_small:hover, a.learn_more_button_small:hover, a.purchase_button_small:hover, a.register_button_small:hover, a.register_now_button_small:hover, a.place_order_button_small:hover, a.read_now_button_small:hover, a.get_newsletters_button_small:hover, a.waiting_list_button_small:hover, a.availability_button_small:hover, a.free_demo_button_small:hover {
    background-position:-137px 0;
}

a.add_to_cart_button_small span, a.apply_now_button_small span, a.contact_us_button_small span, a.download_now_button_small span, a.find_training_button_small span, a.free_trial_button_small span, a.get_certified_button_small span, a.get_registered_button_small span, a.learn_more_button_small span, a.purchase_button_small span, a.register_button_small span, a.register_now_button_small span, a.read_now_button_small span, a.place_order_button_small span, a.get_newsletters_button_small span, a.waiting_list_button_small span, a.availability_button_small span, a.free_demo_button_small span {
    display:none;
}

a.add_to_cart_button_tiny, a.apply_now_button_tiny, a.contact_us_button_tiny, a.download_now_button_tiny, a.find_training_button_tiny, a.free_trial_button_tiny, a.get_certified_button_tiny, a.get_registered_button_tiny, a.learn_more_button_tiny, a.purchase_button_tiny, a.register_button_tiny, a.register_now_button_tiny, a.read_now_button_tiny, a.place_order_button_tiny, a.get_newsletters_button_tiny, a.waiting_list_button_tiny, a.availability_button_tiny, a.free_demo_button_tiny {
    width:100px;
    height:27px;
    display: block;
}

a.find_training_button_tiny {
    background:url(/images/buttons/find-training-tiny.png) no-repeat left top;
}

a.get_demo_button_tiny {
    background:url(/images/buttons/get-demo-tiny.png) no-repeat left top;
}

a.register_button_tiny {
    background:url(/images/buttons/register-tiny.png) no-repeat left top;
}

a.get_demo_button_tiny {
    background:url(/images/buttons/get-demo-tiny.png) no-repeat left top;
}

a.free_demo_button_tiny {
    background:url(/images/buttons/free-demo-tiny.png) no-repeat left top;
}

a.learn_more_button_tiny {
    background:url(/images/buttons/learn-more-tiny.png) no-repeat left top;
}

a.waiting_list_button_tiny {
    background:url(/images/buttons/waiting-list-tiny.png) no-repeat left top;
}

a.availability_button_tiny {
    background:url(/images/buttons/availability-tiny.png) no-repeat left top;
}
a.contact_us_button_tiny {
    background:url(/images/buttons/contact-us-tiny.png) no-repeat left top;
}

a.add_to_cart_button_tiny:hover, a.apply_now_button_tiny:hover, a.contact_us_button_tiny:hover, a.download_now_button_tiny:hover, a.find_training_button_tiny:hover, a.free_trial_button_tiny:hover, a.get_certified_button_tiny:hover, a.get_registered_button_tiny:hover, a.learn_more_button_tiny:hover, a.purchase_button_tiny:hover, a.register_button_tiny:hover, a.register_now_button_tiny:hover, a.place_order_button_tiny:hover, a.read_now_button_tiny:hover, a.get_newsletters_button_tiny:hover, a.waiting_list_button_tiny:hover, a.availability_button_tiny:hover, a.free_demo_button_tiny:hover {
    background-position:-100px 0;
}

a.add_to_cart_button_tiny span, a.apply_now_button_tiny span, a.contact_us_button_tiny span, a.download_now_button_tiny span, a.find_training_button_tiny span, a.free_trial_button_tiny span, a.get_certified_button_tiny span, a.get_registered_button_tiny span, a.learn_more_button_tiny span, a.purchase_button_tiny span, a.register_button_tiny span, a.register_now_button_tiny span, a.read_now_button_tiny span, a.place_order_button_tiny span, a.get_newsletters_button_tiny span, a.waiting_list_button_tiny span, a.availability_button_tiny span, a.free_demo_button_tiny span {
    display:none;
}

/* =====================================================
    table mini navigation
   ===================================================== */

div.table_mini_nav {
    display:inline-block;
    width:94%;
    padding:0 3%;
    background-color:#415e81;
    background-image: linear-gradient(bottom, rgb(53,77,105) 25%, rgb(65,94,129) 75%);
    background-image: -o-linear-gradient(bottom, rgb(53,77,105) 25%, rgb(65,94,129) 75%);
    background-image: -moz-linear-gradient(bottom, rgb(53,77,105) 25%, rgb(65,94,129) 75%);
    background-image: -webkit-linear-gradient(bottom, rgb(53,77,105) 25%, rgb(65,94,129) 75%);
    background-image: -ms-linear-gradient(bottom, rgb(53,77,105) 25%, rgb(65,94,129) 75%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0.25, rgb(53,77,105)),
        color-stop(0.75, rgb(65,94,129))
    );
    -webkit-border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    -moz-border-radius-topleft: 3px;
    -moz-border-radius-topright: 3px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    -moz-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    -ms-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    -o-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    margin-top:1.5em;
}

div.table_mini_nav + table {
    margin-top:0;
}

div.table_mini_nav.table_mini_nav_detached {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

div.table_mini_nav.sec_mini_nav,
div.table_mini_nav.security_mini_nav {
    background-color:#8D0000;
    background-image: linear-gradient(bottom, rgb(110,0,0) 0%, rgb(171,0,0) 100%);
    background-image: -o-linear-gradient(bottom, rgb(110,0,0) 0%, rgb(171,0,0) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(110,0,0) 0%, rgb(171,0,0) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(110,0,0) 0%, rgb(171,0,0) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(110,0,0) 0%, rgb(171,0,0) 100%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(110,0,0)),
        color-stop(1, rgb(171,0,0))
    );
    margin-top:1.5em;
}

div.table_mini_nav.mgt_mini_nav,
div.table_mini_nav.management_mini_nav {
    background-color:#2D4663;
    background-image: linear-gradient(bottom, rgb(31,48,68) 0%, rgb(58,91,128) 100%);
    background-image: -o-linear-gradient(bottom, rgb(31,48,68) 0%, rgb(58,91,128) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(31,48,68) 0%, rgb(58,91,128) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(31,48,68) 0%, rgb(58,91,128) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(31,48,68) 0%, rgb(58,91,128) 100%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(31,48,68)),
        color-stop(1, rgb(58,91,128))
    );
    margin-top:1.5em;
}

div.table_mini_nav.leg_mini_nav,
div.table_mini_nav.legal_mini_nav {
    background-color:#811DA1;
    background-image: linear-gradient(bottom, rgb(122,24,158) 0%, rgb(145,34,175) 100%);
    background-image: -o-linear-gradient(bottom, rgb(122,24,158) 0%, rgb(145,34,175) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(122,24,158) 0%, rgb(145,34,175) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(122,24,158) 0%, rgb(145,34,175) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(122,24,158) 0%, rgb(145,34,175) 100%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(122,24,158)),
        color-stop(1, rgb(145,34,175))
    );
    margin-top:1.5em;
}

div.table_mini_nav.aud_mini_nav,
div.table_mini_nav.audit_mini_nav {
    background-color:#006357;
    background-image: linear-gradient(bottom, rgb(0,69,60) 0%, rgb(0,130,115) 100%);
    background-image: -o-linear-gradient(bottom, rgb(0,69,60) 0%, rgb(0,130,115) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(0,69,60) 0%, rgb(0,130,115) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(0,69,60) 0%, rgb(0,130,115) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(0,69,60) 0%, rgb(0,130,115) 100%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(0,69,60)),
        color-stop(1, rgb(0,130,115))
    );
    margin-top:1.5em;
}

div.table_mini_nav.dev_mini_nav,
div.table_mini_nav.developer_mini_nav {
    background-color:#E63A00;
    background-image: linear-gradient(bottom, rgb(230,58,0) 0%, rgb(246,139,0) 100%);
    background-image: -o-linear-gradient(bottom, rgb(230,58,0) 0%, rgb(246,139,0) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(230,58,0) 0%, rgb(246,139,0) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(230,58,0) 0%, rgb(246,139,0) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(230,58,0) 0%, rgb(246,139,0) 100%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(230,58,0)),
        color-stop(1, rgb(246,139,0))
    );
    margin-top:1.5em;
}

div.table_mini_nav.for_mini_nav,
div.table_mini_nav.forensics_mini_nav {
    background-color:#333;
    background-image: linear-gradient(bottom, rgb(0,0,0) 0%, rgb(70,68,68) 100%);
    background-image: -o-linear-gradient(bottom, rgb(0,0,0) 0%, rgb(70,68,68) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(0,0,0) 0%, rgb(70,68,68) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(0,0,0) 0%, rgb(70,68,68) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(0,0,0) 0%, rgb(70,68,68) 100%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(0,0,0)),
        color-stop(1, rgb(70,68,68))
    );
    margin-top:1.5em;
}

div.table_mini_nav.ics_mini_nav,
div.table_mini_nav.industrial_control_systems_mini_nav {
    background-color:#bbb19f;
    background-image: linear-gradient(bottom, rgb(118,99,81) 0%, rgb(187,177,159) 100%);
    background-image: -o-linear-gradient(bottom, rgb(118,99,81) 0%, rgb(187,177,159) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(118,99,81) 0%, rgb(187,177,159) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(118,99,81) 0%, rgb(187,177,159) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(118,99,81) 0%, rgb(187,177,159) 100%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(118,99,81)),
        color-stop(1, rgb(187,177,159))
    );
    margin-top:1.5em;
}

div.table_mini_nav.sp_mini_nav,
div.table_mini_nav.spc_mini_nav,
div.table_mini_nav.special_mini_nav,
div.table_mini_nav.hosted_mini_nav {
    background-color:#737273;
    background-image: linear-gradient(bottom, rgb(81,80,81) 0%, rgb(150,150,150) 100%);
    background-image: -o-linear-gradient(bottom, rgb(81,80,81) 0%, rgb(150,150,150) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(81,80,81) 0%, rgb(150,150,150) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(81,80,81) 0%, rgb(150,150,150) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(81,80,81) 0%, rgb(150,150,150) 100%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(81,80,81)),
        color-stop(1, rgb(150,150,150))
    );
    margin-top:1.5em;
}

div.table_mini_nav div.table_mini_nav_title {
    float:left;
    width:20%;
    margin-right:3%;
    color:#fff;
}

div.table_mini_nav div.table_mini_nav_title span {
    display:block;
    padding:1em 0;
    font-family:"Diavlo Light",sans-serif;
    font-weight:normal;
    font-size: 1.333357142857143em;
    color:#fff;
}

div.table_mini_nav div.table_mini_nav_title span a,
div.table_mini_nav div.table_mini_nav_title_full span a,
div.table_mini_nav div.table_mini_nav_title_half span a {
    color:#fff;
}

div.table_mini_nav div.table_mini_nav_title span a:hover,
div.table_mini_nav div.table_mini_nav_title_full span a:hover,
div.table_mini_nav div.table_mini_nav_title_half span a:hover {
    color:#ddd;
}

div.table_mini_nav div.table_mini_nav_title_full,
div.table_mini_nav div.table_mini_nav_title_half {
    width:100%;
    margin-right:0;
    display:block;
    padding:1em 0;
    font-family:"Diavlo Light",sans-serif;
    font-weight:normal;
    font-size: 1.333357142857143em;
    color:#fff;
}

div.table_mini_nav div.table_mini_nav_title_half {
    float:left;
    margin-right:3%;
    width:47%;
}

div.table_mini_nav div.table_mini_nav_title h2,
div.table_mini_nav div.table_mini_nav_title_full h2,
div.table_mini_nav div.table_mini_nav_title h3,
div.table_mini_nav div.table_mini_nav_title_full h3,
div.table_mini_nav div.table_mini_nav_title h4,
div.table_mini_nav div.table_mini_nav_title_full h4,
div.table_mini_nav div.table_mini_nav_title h5,
div.table_mini_nav div.table_mini_nav_title_full h5,
div.table_mini_nav div.table_mini_nav_title h6,
div.table_mini_nav div.table_mini_nav_title_full h6 {
    color:#fff;
}

div.table_mini_nav div.table_mini_nav_links,
div.table_mini_nav div.table_mini_nav_links_half {
    float:left;
    width:77%;
    text-align:right;
}

div.table_mini_nav div.table_mini_nav_links_half {
    width:50%;
}

div.table_mini_nav div.table_mini_nav_links_full {
    text-align:center;
}


div.table_mini_nav ul {
    float: right;
    padding:1.25em 0;
    margin:0;
}

div.table_mini_nav div.table_mini_nav_links_full ul {
    float: none;
    display: inline-block;
    margin: 0 auto;
}

div.table_mini_nav div.table_mini_nav_links_full ul:after {
    content:"\0020";
    display:block;
    clear:both;
}


div.table_mini_nav ul li {
    margin: 0 1px;
    float: left;
    display:inline;
    white-space: nowrap;
    list-style-type: none;
    font-size:0.857142857em;
    line-height:1.75;
}

div.table_mini_nav ul li.mini_nav_info > span {
    display: inline-block;
    padding:0.5em 10px 0.5em 11px;
    color:#fff;
    color:rgba(255,255,255,0.8);
    text-decoration:none;
    border-left:1px solid rgba(255,255,255,0.1);
}

div.table_mini_nav ul li:first-child.mini_nav_info > span {
    border-left:none;
}

div.table_mini_nav ul li a {
    display: inline-block;
    padding:0.5em 10px 0.5em 11px;
    color:#fff;
    color:rgba(255,255,255,0.8);
    text-decoration:none;
    border-left:1px solid rgba(255,255,255,0.1);
}

div.table_mini_nav ul li:first-child a {
    border-left:none;
}

div.table_mini_nav ul li a:hover {
    color:#663A09;
    background-color:#F6BE1B;
    background-image: linear-gradient(bottom, rgb(224,170,10) 25%, rgb(246,191,27) 75%);
    background-image: -o-linear-gradient(bottom, rgb(224,170,10) 25%, rgb(246,191,27) 75%);
    background-image: -moz-linear-gradient(bottom, rgb(224,170,10) 25%, rgb(246,191,27) 75%);
    background-image: -webkit-linear-gradient(bottom, rgb(224,170,10) 25%, rgb(246,191,27) 75%);
    background-image: -ms-linear-gradient(bottom, rgb(224,170,10) 25%, rgb(246,191,27) 75%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0.25, rgb(224,170,10)),
        color-stop(0.75, rgb(246,191,27))
    );
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    -moz-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    -ms-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    -o-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
}

div.table_mini_nav ul li:hover + li.mini_nav_info > span,
div.table_mini_nav ul li:hover + li a {
    border-left:1px solid rgba(255,255,255,0);
}

div.table_mini_nav ul li.mini_nav_info:hover + li a {
    border-left:1px solid rgba(255,255,255,0.1);
}

div.table_mini_nav ul li a:active {
    color:#ccc;
    background-color:#333;
    background-image: linear-gradient(bottom, rgb(51,51,51) 25%, rgb(85,85,85) 75%);
    background-image: -o-linear-gradient(bottom, rgb(51,51,51) 25%, rgb(85,85,85) 75%);
    background-image: -moz-linear-gradient(bottom, rgb(51,51,51) 25%, rgb(85,85,85) 75%);
    background-image: -webkit-linear-gradient(bottom, rgb(51,51,51) 25%, rgb(85,85,85) 75%);
    background-image: -ms-linear-gradient(bottom, rgb(51,51,51) 25%, rgb(85,85,85) 75%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0.25, rgb(51,51,51)),
        color-stop(0.75, rgb(85,85,85))
    );
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    -moz-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    -ms-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    -o-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
}


div.table_mini_nav ul li.current a {
    border-left:1px solid rgba(255,255,255,0);
    color:#fff;
    background-color:#557090;
    background-image: linear-gradient(bottom, rgb(85,112,144) 25%, rgb(102,135,173) 75%);
    background-image: -o-linear-gradient(bottom, rgb(85,112,144) 25%, rgb(102,135,173) 75%);
    background-image: -moz-linear-gradient(bottom, rgb(85,112,144) 25%, rgb(102,135,173) 75%);
    background-image: -webkit-linear-gradient(bottom, rgb(85,112,144) 25%, rgb(102,135,173) 75%);
    background-image: -ms-linear-gradient(bottom, rgb(85,112,144) 25%, rgb(102,135,173) 75%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0.25, rgb(85,112,144)),
        color-stop(0.75, rgb(102,135,173))
    );
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    -moz-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    -ms-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    -o-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    cursor:default;
}

div.table_mini_nav ul li.current + li a {
    border-left:none;
}

/* =====================================================
    register countdown classes
   ===================================================== */
.countdown {
    text-align:center;
    color:#666;
    background-color:#e1e1e1;
    background-image: linear-gradient(bottom, rgb(225,225,225) 0%, rgb(255,255,255) 100%);
    background-image: -o-linear-gradient(bottom, rgb(225,225,225) 0%, rgb(255,255,255) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(225,225,225) 0%, rgb(255,255,255) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(225,225,225) 0%, rgb(255,255,255) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(225,225,225) 0%, rgb(255,255,255) 100%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(225,225,225)),
        color-stop(1, rgb(255,255,255))
    );
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow:  0 1px 2px 0 rgba(0,0,0,0.3);
    -moz-box-shadow:  0 1px 2px 0 rgba(0,0,0,0.3);
    -ms-box-shadow:  0 1px 2px 0 rgba(0,0,0,0.3);
    -o-box-shadow:  0 1px 2px 0 rgba(0,0,0,0.3);
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    padding:1.5em;
    border:1px solid rgba(255,255,255,0.5);
    width:140px;
}

.countdown_days {
    display:block;
    font-size: 1.6em;
    line-height: 1.5;
}

.countdown_message {
    display:block;
    font-size: 1.333357142857143em;
    line-height: 1.1249799110730165;
}

#countdown_section {
    margin:0 0 -15px 8px;
}

#register_message {
    position: relative;
    float:left;
    margin:-25px 0 0 6px;
    padding-top:3em;
    z-index:1;
}

#register_message.countdown {
    font-family: sans-serif;
}

#register_message.countdown_icon_link img {
    vertical-align:middle;
    margin-right:5px;
    max-width:30px;
}

#register_message.countdown_icon_link {
    text-align:left;
    font-family:sans-serif;
}

#register_message.countdown_icon_link div {
    vertical-align:middle;
    margin-right:5px;
}

a.countdown_button{
    position: relative;
    z-index:100;
}

a.cta_button {
    position: relative;
    z-index:100;
}

a.countdown_button span {
    margin-bottom:0;
}

.session_closed_notice {
    display:block;
    text-align:center;
    color:#666;
    background-color:#EEEEEE;
    padding:1.5em;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    -moz-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    -ms-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    -o-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    font-family:sans-serif;
}

/* =====================================================
    register message
   ===================================================== */

.register_message {
    text-align:center;
    color:#666;
    background-color:#e1e1e1;
    background-image: linear-gradient(bottom, rgb(225,225,225) 0%, rgb(255,255,255) 100%);
    background-image: -o-linear-gradient(bottom, rgb(225,225,225) 0%, rgb(255,255,255) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(225,225,225) 0%, rgb(255,255,255) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(225,225,225) 0%, rgb(255,255,255) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(225,225,225) 0%, rgb(255,255,255) 100%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(225,225,225)),
        color-stop(1, rgb(255,255,255))
    );
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow:  0 1px 2px 0 rgba(0,0,0,0.3);
    -moz-box-shadow:  0 1px 2px 0 rgba(0,0,0,0.3);
    -ms-box-shadow:  0 1px 2px 0 rgba(0,0,0,0.3);
    -o-box-shadow:  0 1px 2px 0 rgba(0,0,0,0.3);
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    padding:1.5em;
    border:1px solid rgba(255,255,255,0.5);
    width:140px;
    margin:0 0 -15px 6px;
}

.register_message span {
    display:block;
    text-align:left;
    font-family:sans-serif;
}

/* =====================================================
    register upgrade ondemand classes
   ===================================================== */

.upgrade_ondemand {
    position:relative;
    z-index:1;
    text-align:center;
    float:left;
    color:#555555;
    background-color:#e1e1e1;
    background-image: linear-gradient(bottom, rgb(225,225,225) 0%, rgb(255,255,255) 100%);
    background-image: -o-linear-gradient(bottom, rgb(225,225,225) 0%, rgb(255,255,255) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(225,225,225) 0%, rgb(255,255,255) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(225,225,225) 0%, rgb(255,255,255) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(225,225,225) 0%, rgb(255,255,255) 100%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(225,225,225)),
        color-stop(1, rgb(255,255,255))
    );
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow:  0 1px 2px 0 rgba(0,0,0,0.3);
    -moz-box-shadow:  0 1px 2px 0 rgba(0,0,0,0.3);
    -ms-box-shadow:  0 1px 2px 0 rgba(0,0,0,0.3);
    -o-box-shadow:  0 1px 2px 0 rgba(0,0,0,0.3);
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    padding:1.5em 0.75em;
    border:1px solid rgba(255,255,255,0.5);
    margin:-15px 0 0 8px;
    width:163px;
}

.upgrade_ondemand_message {
    float:left;
    font-size:120%;
    line-height:1.3;
    text-align:left;
    width:105px;
    margin-left:8px;
    margin-top:0.75em;
}

.upgrade_ondemand_message a {
    text-decoration:none;
}

.upgrade_ondemand img {
    margin-top:0.65em;
    vertical-align:middle;
    float:left;
}

a.upgrade_ondemand_button {
    position:relative;
    z-index:2;
}

.navigation a.upgrade_ondemand_button span {
    margin-bottom:0;
}

/* =====================================================
    misc
   ===================================================== */
.hideme {
    display:none;
}

.tipsytip {
    cursor: pointer;
}

.more {
    float: right;
}

.subtext {
    color:#8F8F8F;
}

div.wrap_right,
img.wrap_right {
    float:right;
    margin-left:1.5em;
    margin-bottom:1.5em;
}

img.image_border {
    -webkit-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
    -moz-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
    -ms-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
    -o-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
    box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
}

.slide_border {
    -webkit-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
    -moz-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
    -ms-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
    -o-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
    box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
}

div.wrap_left,
img.wrap_left {
    float:left;
    margin-right:1.5em;
    margin-bottom:1.5em;
}

div.wrap_right,
div.wrap_left {
    max-width: 50%;
}

a.button {
    background-color:#575757;
    background-image: linear-gradient(bottom, rgb(51,51,51) 0%, rgb(123,123,123) 100%);
    background-image: -o-linear-gradient(bottom, rgb(51,51,51) 0%, rgb(123,123,123) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(51,51,51) 0%, rgb(123,123,123) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(51,51,51) 0%, rgb(123,123,123) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(51,51,51) 0%, rgb(123,123,123) 100%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(51,51,51)),
        color-stop(1, rgb(123,123,123))
    );
    padding:0.75em;
    display:inline-block;
    color:#eee;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    text-decoration:none;
    margin-bottom: 0.5em;
}

a.button_blue {
  background-color: #4CAF50; /* Green */
  background: rgb(74,97,145);
background: -moz-linear-gradient(top,  rgba(74,97,145,1) 0%, rgba(33,48,65,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  rgba(74,97,145,1) 0%,rgba(33,48,65,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  rgba(74,97,145,1) 0%,rgba(33,48,65,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

    border: none;
    color: white;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 2.25em;
    width: 400px;
    border-radius: 4px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    font-family: "Diavlo Light"
   }

    a.button_red {
    background: rgb(120,20,0);
    border: none;
    color: white;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 2.25em;
    width: 280px;
    border-radius: 2px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    font-family: "Crimson Text"
   }

    a.button_red2 {
    background: rgb(120,20,0);
    border: none;
    color: white;
    padding: 20px 40px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 150%;
    border-radius: 2px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    font-family: "Crimson Text"
   }


a.button_alt {
    background-color:#e1e1e1;
    background-image: linear-gradient(bottom, rgb(225,225,225) 0%, rgb(255,255,255) 100%);
    background-image: -o-linear-gradient(bottom, rgb(225,225,225) 0%, rgb(255,255,255) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(225,225,225) 0%, rgb(255,255,255) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(225,225,225) 0%, rgb(255,255,255) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(225,225,225) 0%, rgb(255,255,255) 100%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(225,225,225)),
        color-stop(1, rgb(255,255,255))
    );
    padding:0.75em;
    display:inline-block;
    color:#575757;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    text-decoration:none;
    margin-bottom: 0.5em;
    border: 1px solid #bbb;
}

a.button:hover,
a.button_alt:hover {
    background-color:#787878;
    background-image: linear-gradient(bottom, rgb(51,51,51) 0%, rgb(92,92,92) 100%);
    background-image: -o-linear-gradient(bottom, rgb(51,51,51) 0%, rgb(92,92,92) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(51,51,51) 0%, rgb(92,92,92) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(51,51,51) 0%, rgb(92,92,92) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(51,51,51) 0%, rgb(92,92,92) 100%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(51,51,51)),
        color-stop(1, rgb(92,92,92))
    );
    color:#fff;
}

a.button_blue:hover {
background: rgb(33,48,65); /* Old browsers */
background: -moz-linear-gradient(top,  rgba(33,48,65,1) 0%, rgba(74,97,145,1) 100%);
background: -webkit-linear-gradient(top,  rgba(33,48,65,1) 0%,rgba(74,97,145,1) 100%);
background: linear-gradient(to bottom,  rgba(33,48,65,1) 0%,rgba(74,97,145,1) 100%);

    color: white;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 2.25em;
    width: 400px;
    border-radius: 4px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    font-family: "Diavlo Light"

    );
    color:#fff;
}

a.button_red:hover {

  background-color: #830808; /* Green */
background: rgb(98,6,6);
background: -moz-linear-gradient(top,  rgba(125,185,232,1) 0%, rgba(157,10,10,1) 0%, rgba(98,6,6,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  rgba(125,185,232,1) 0%,rgba(157,10,10,1) 0%,rgba(98,6,6,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  rgba(125,185,232,1) 0%,rgba(157,10,10,1) 0%,rgba(98,6,6,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

    color: white;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 2.25em;
    width: 280px;
    border-radius: 2px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    font-family: "Crimson Text"
    color:#fff;
}

a.button_red2:hover {
  background-color: #830808; /* Green */
background: rgb(98,6,6);
background: -moz-linear-gradient(top,  rgba(125,185,232,1) 0%, rgba(157,10,10,1) 0%, rgba(98,6,6,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  rgba(125,185,232,1) 0%,rgba(157,10,10,1) 0%,rgba(98,6,6,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  rgba(125,185,232,1) 0%,rgba(157,10,10,1) 0%,rgba(98,6,6,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-radius: 2px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    font-family: "Crimson Text"
    color:#fff;
}


span.label {
    font-weight:bold;
}

span.label_alt {
    font-style:italic;
}

.content > h1:first-child,
.content > h2:first-child,
.content > h3:first-child,
.content > h4:first-child,
.content > h5:first-child,
.content > h6:first-child {
    margin-top:0;
}

/* for use when you need @font-face styles */
.main_font {
    font-family:"Diavlo Light",sans-serif;
    font-weight:normal;
    color:#436184;
}

li.alt_item1 {
    margin-top: 0.5em;
    padding-top: 0.5em;
    border-top: 1px dotted #ccc;
}

table tr th a div.arrow {
    text-decoration:none;
    color:#fff;
    float:right;
}

table tr th a div.arrow span.icon_sort {
    position:absolute;
}

table tr th a div.arrow span.icon_sort_off {
    color:#aaa;
}

table tr th a.sorted:link,
table tr th a.sorted {
    color:#fff;
}

body table tr th.alt_table_head,
body table thead tr th.alt_table_head,
body table tr td.alt_table_cell,
body table thead tr td.alt_table_cell {
    background-color:#373f4c;
}

th.table_data_level,
td.table_data_level,
td.table_data_abbreviation {
    width:65px;
    text-align: center;
}

td.table_data_abbreviation {
    text-align:center;
}

th.table_data_title,
td.table_data_title {
    text-align:left;
    min-width:150px;
}

td.table_data_location {
    text-align:left;
    min-width: 100px;
}

td.table_data_date {
    min-width:95px;
}

td.table_data_single_date {
    text-align: center;
}

td.table_data_certification,
td.table_data_cert {
    min-width:85px;
    text-align:center;
}

td.table_data_percentage {
    text-align: center;
}

td.table_data_id {
    text-align: center;
}

td.table_data_checkbox {
    text-align: center;
    width: 75px;
}

td.table_data_opt,
td.table_data_option,
td.table_data_options,
td.table_data_programs {
    min-width:75px;
}

td.table_data_method {
    width:45px;
}

td.table_data_register,
td.table_data_button {
    width:45px;
}

td.table_data_instructor,
td.table_data_instructors {
    text-align:left;
}

td.table_data_credits {
    text-align:center;
}

td.table_data_mdash {
    text-align:center;
}

td.table_data_outof {
    text-align:center;
}

td.table_data_checkbox {
    text-align:center;
    width: 10px;
}

td.table_data_score {
    text-align:center;
}

td.table_data_rank {
    text-align:center;
    width: 50px;
}

td.table_data_sections {
    min-width:75px;
    text-align:center;
}

td.table_data_included {
    min-width:75px;
}

td.table_data_type {
    text-align:center;
}

td.table_data_icon {
    text-align:center;
}

td.table_data_icon span {
    color: #373F4C;
}

td.table_data_button {
    text-align:center;
}

td.table_data_button a {
    float: none;
    display: inline-block;
}


th.table_data_total,
td.table_data_total,
th.table_data_price,
td.table_data_price {
    text-align: right;
}

th.table_data_total_single,
td.table_data_total_single,
th.table_data_price_single,
td.table_data_price_single {
    text-align: center;
}

div.table_data_title_location,
div.table_data_title_instructor,
div.table_data_stacked {
    border-top:1px dotted #ccc;
    padding-top:0.5em;
    margin-top:0.5em;
}

td div.table_data_stacked:first-child {
    border-top:none;
    padding-top:0;
    margin-top:0;
}

td.table_data_methods ul {
    margin-top:0;
    margin-bottom:0;
}

table tbody tr td.table_data_special{
    background-color: #FEEDA4;
    font-weight: bold;
    border-right: 1px solid #fb3;
    border-bottom: 1px solid #fb3;
}

td.table_data_analyst_num {
    text-align: center;
}

td.table_data_numbers {
    text-align: center;
}

td.table_data_team {
    width:200px;
}

table.sorted_course div.table_data_title_course,
table.sorted_coursealt div.table_data_title_course,
table.sorted_location div.table_data_title_location,
table.sorted_locationalt div.table_data_title_location,
table.sorted_instructor div.table_data_title_instructor,
table.sorted_instructoralt div.table_data_title_instructor {
    background-color:#FEEDA4;
    padding:5px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    border-top:none;
}

table.sorted_location div.table_data_title_instructor,
table.sorted_locationalt div.table_data_title_instructor,
table.sorted_course div.table_data_title_location,
table.sorted_coursealt div.table_data_title_location {
    border-top:none;
    padding-top:0;
}

div.course_list_simulcast {
    display: block;
    border-top:1px dotted #ccc;
    padding-top:0.5em;
    margin-top:0.5em;
}

div.course_list_simulcast a span {
    margin-left:-0.025em;
}

div.course_list_simulcast.course_list_simulcast_highlight a {
    color: #9B1E2D;
    font-weight: bold;
}

div#event_schedule {
    position:relative;
    float:left;
}

div#event_schedule_header {
    float:left;
    background-color:#676F7D;
    color:#ccc;
    position:relative;
    top:0;
    z-index:222;
}

div#event_schedule_header div#event_schedule_header_title {
    float:left;
    padding:42px 21px;
    text-align:center;
    border-right: 1px solid #d9d9d9;
    border-left: 1px solid #d9d9d9;
    border-bottom: 1px solid #ccc;
    max-width: 607px;
}

div#event_schedule_header div#event_schedule_header_span {
    float:left;
}

div#event_schedule_header div#event_schedule_header_span div.esh_dates {
    float:left;
}

div#event_schedule_header div#event_schedule_header_span div.esh_month_head {
    padding:10px;
    border-right: 1px solid #d9d9d9;
    border-bottom: 1px solid #ccc;
    text-align:center;
}

@media all and (-webkit-min-device-pixel-ratio:0) {
    div#event_schedule_header div#event_schedule_header_span div.esh_month_head {
        padding:12px 10px 11px;
    }
}

div#event_schedule_header div#event_schedule_header_span div.esh_month_head.esh_month_head_one {
    max-width: 9px;
    overflow: hidden;
}

div#event_schedule_header div#event_schedule_header_span div.esh_month_head.esh_month_head_one span {
    visibility: hidden;
}

div#event_schedule_header div#event_schedule_header_span div.esh_day_head {
    float:left;
    width:21px;
    padding:10px 4px 11px;
    border-right: 1px solid #d9d9d9;
    border-bottom: 1px solid #ccc;
    text-align:center;
}

div#event_schedule_header div#event_schedule_header_span div.esh_day_head.esh_day_head_only_one_day {
    padding: 10px 13px 11px;
}

div#event_schedule_courses {
    padding-top:0;
}

div#event_schedule_courses div.event_schedule_course {
    float:left;
    position:relative;
    z-index:111;
}

div#event_schedule_courses div.course_list_instructors {
    display: block;
    border-top:1px dotted #ccc;
    padding-top:0.5em;
    margin-top:0.5em;
}

div#event_schedule_courses div.course_list_instructors a span {
    margin-left:-0.025em;
}

div#event_schedule_courses div.event_schedule_course:nth-of-type(odd) div.event_schedule_course_title {
    background-color: #efefef;
}

div#event_schedule_courses div.event_schedule_day {
    float:left;
    width:21px;
    padding:21px 4px;
    border-right: 1px solid #d9d9d9;
    border-bottom: 1px solid #ccc;
    text-align:center;
}

div#event_schedule_courses div.event_schedule_day.event_schedule_day_one_day_only {
    padding:21px 13px;
}

div#event_schedule_courses div.event_schedule_course_title {
    float:left;
    border-right: 1px solid #d9d9d9;
    border-left: 1px solid #d9d9d9;
    border-bottom: 1px solid #ccc;
}

div#event_schedule div.event_schedule_course_1 {
    width:626px;
    padding:21px;
}

div#event_schedule div.event_schedule_course_2 {
    width:596px;
    padding:21px;
}

div#event_schedule div.event_schedule_course_3 {
    width:566px;
    padding:21px;
}

div#event_schedule div.event_schedule_course_4 {
    width:536px;
    padding:21px;
}

div#event_schedule div.event_schedule_course_5 {
    width:506px;
    padding:21px;
}

div#event_schedule div.event_schedule_course_6 {
    width:476px;
    padding:21px;
}

div#event_schedule div.event_schedule_course_7 {
    width:446px;
    padding:21px;
}

div#event_schedule div.event_schedule_course_8 {
    width:416px;
    padding:21px;
}

div#event_schedule div.event_schedule_course_9 {
    width:386px;
    padding:21px;
}

div#event_schedule div.event_schedule_course_10 {
    width:356px;
    padding:21px;
}

div#event_schedule div.event_schedule_course_11 {
    width:326px;
    padding:21px;
}

div#event_schedule div.event_schedule_course_12 {
    width:296px;
    padding:21px;
}

div#event_schedule div.event_schedule_course_13 {
    width:266px;
    padding:21px;
}

div#event_schedule div.event_schedule_course_14 {
    width:236px;
    padding:21px;
}

div#event_schedule div.event_schedule_course_15 {
    width:206px;
    padding:21px;
}

div#event_schedule div.event_schedule_course_16 {
    width:176px;
    padding:21px;
}

div#event_schedule div.event_schedule_course_17 {
    width:146px;
    padding:21px;
}

div#event_schedule div.event_schedule_course_18 {
    width:116px;
    padding:21px;
}

div#event_schedule div.event_schedule_course_19 {
    width:86px;
    padding:21px;
}

div#event_schedule div.event_schedule_course_20 {
    width:56px;
    padding:21px;
}

div#event_schedule div#event_schedule_courses div.event_schedule_course_title_one_day_only {
    max-width: 607px;
}

div#event_schedule div.discipline_day_security,
div#event_schedule div.discipline_day_sec,
table tbody tr td.discipline_cell_security,
table#event_schedule tbody tr td.discipline_cell_security,
table tbody tr td.discipline_cell_sec,
table#event_schedule tbody tr td.discipline_cell_sec {
    background-color:#8D0000;
    color:#fff;
}

div#event_schedule div.discipline_day_management,
div#event_schedule div.discipline_day_mgt,
table tbody tr td.discipline_cell_management,
table tbody tr td.discipline_cell_mgt {
    background-color:#2D4663;
    color:#fff;
}

div#event_schedule div.discipline_day_legal,
div#event_schedule div.discipline_day_leg,
table tbody tr td.discipline_cell_legal,
table tbody tr td.discipline_cell_leg {
    background-color:#811DA1;
    color:#fff;
}

div#event_schedule div.discipline_day_audit,
div#event_schedule div.discipline_day_aud,
table tbody tr td.discipline_cell_audit,
table tbody tr td.discipline_cell_aud {
    background-color:#006357;
    color:#fff;
}

div#event_schedule div.discipline_day_developer,
div#event_schedule div.discipline_day_dev,
table tbody tr td.discipline_cell_developer,
table tbody tr td.discipline_cell_dev {
    background-color:#E63A00;
    color:#fff;
}

div#event_schedule div.discipline_day_forensics,
div#event_schedule div.discipline_day_for,
table tbody tr td.discipline_cell_forensics,
table tbody tr td.discipline_cell_for {
    background-color:#333;
    color:#fff;
}

div#event_schedule div.discipline_day_industrial_control_systems,
div#event_schedule div.discipline_day_ics,
table tbody tr td.discipline_cell_industrial_control_systems,
table#event_schedule tbody tr td.discipline_cell_industrial_control_systems,
table tbody tr td.discipline_cell_ics,
table#event_schedule tbody tr td.discipline_cell_ics {
    background-color:#766351;
    color:#fff;
}

div#event_schedule div.discipline_day_hosted,
div#event_schedule div.discipline_day_summit,
div#event_schedule div.discipline_day_special,
div#event_schedule div.discipline_day_other,
div#event_schedule div.discipline_day_spc,
div#event_schedule div.discipline_day_spe,
div#event_schedule div.discipline_day_oth,
div#event_schedule div.discipline_day_,
table tbody tr td.discipline_cell_hosted,
table tbody tr td.discipline_cell_summit,
table tbody tr td.discipline_cell_special,
table tbody tr td.discipline_cell_other,
table tbody tr td.discipline_cell_spc,
table tbody tr td.discipline_cell_spe,
table tbody tr td.discipline_cell_oth,
table tbody tr td.discipline_cell_ {
    background-color:#737273;
    color:#fff;
}

table tbody tr td.discipline_cell_sec a,
table tbody tr td.discipline_cell_mgt a,
table tbody tr td.discipline_cell_leg a,
table tbody tr td.discipline_cell_aud a,
table tbody tr td.discipline_cell_dev a,
table tbody tr td.discipline_cell_for a,
table tbody tr td.discipline_cell_spc a,
table tbody tr td.discipline_cell_spe a,
table tbody tr td.discipline_cell_oth a,
table tbody tr td.discipline_cell_ a {
    color:#fff;
}

div.corner_soldout,
table td.corner_soldout {
    background-image:url('/images/design/custom/icons/training/corner-soldout.png');
    background-repeat:no-repeat;
    background-position:top right;
}

div.corner_beta,
table td.corner_beta {
    background-image:url('/images/design/custom/icons/training/corner-beta.png');
    background-repeat:no-repeat;
    background-position:top right;
}

div.corner_new,
table td.corner_new {
    background-image:url('/images/design/custom/icons/training/corner-new.png');
    background-repeat:no-repeat;
    background-position:top right;
}

div.corner_waitlist,
table td.corner_waitlist {
    background-image:url('/images/design/custom/icons/training/corner-waitlist.png');
    background-repeat:no-repeat;
    background-position:top right;
}

div.corner_private,
table td.corner_private {
    background-image:url('/images/design/custom/icons/training/corner-private.png');
    background-repeat:no-repeat;
    background-position:top right;
}

div.corner_online,
table td.corner_online {
    background-image:url('/images/design/custom/icons/training/corner-online.png');
    background-repeat:no-repeat;
    background-position:top right;
}

div#course_corner_notice {
    position:absolute;
    width:46px;
    height:46px;
    top:-3.35em;
    right:-2.45em;
}

div#course_corner_notice + div#course_content {
    margin-top:-42px;
}

div.has_event_notice div#course_corner_notice {
    top:-1.9em;
}

div.has_event_notice div#course_corner_notice + div#course_content {
    margin-top:0;
}

table td span.course_status {
    display:none;
}

table tr.secret_row {
    display:none;
}

table tr.additional_secret_row td {
    position: absolute;
    height: 0px;
    padding: 0;
    border: 0;
}


div.top {
    display:block;
    clear:both;
    width:100%;
    text-align:right;
    margin: 1.5em 0;
}

div.top + hr {
    margin-top: -1.5em;
}

span.entypo_icon {
    font-family:'EntypoRegular';
    color:#ccc;
}

span.entypo_social_icon {
    font-family:'EntypoSocial';
    color:#ccc;
}

#course_highlights_section #highlights_details {
    float:left;
    width:100%;
}

#course_highlights_section #highlights_details .highlights_list_icon {
    color:#bbb;
}

#course_highlights_section #highlights_details .highlights_list_icon_laptop:before {
    color:#D12B17;
/*    margin-left:-0.2em; // for smaller icon */
    margin-top:0.1em;
    margin-left:-0.3em;
    font-size: 1.25em;
}

#course_sections_section tr#section_with_details_laptop_description .sections_show_icon:before {
    color:#D12B17;
/*    margin-left:-0.2em; // for smaller icon */
    margin-top:0.1em;
    margin-left:-0.1em;
    margin-right:-0.1em;
    font-size: 1.25em;
}

#course_sections_section tr#section_with_details_laptop_description a,
#course_highlights_section #highlights_details #highlights_list_laptop a {
    color:#D12B17;
}


#course_highlights_section #highlights_details .highlights_details_col {
    float:left;
    width:25%;
    margin-left:2%;
    padding-left:2%;
    border-left:1px solid #ddd;
    padding-top:0.5em;
    padding-bottom:0.5em;
    margin-bottom:1.5em;
}

#course_highlights_section #highlights_details .highlights_details_col:first-child {
    margin-left:0;
    width:35%;
}

#course_highlights_section #highlights_details .highlights_details_col ul {
    margin-top:0;
    margin-bottom:0;
}

#course_highlights_section #highlights_details .highlights_details_col+.highlights_details_col+.highlights_details_col {
}

#course_blurb,
#course_image {
    float:right;
    max-width:250px;
    margin-left:1.5em;
    -webkit-box-shadow:  0 1px 2px 0 rgba(0,0,0,0.3);
    -moz-box-shadow:  0 1px 2px 0 rgba(0,0,0,0.3);
    -ms-box-shadow:  0 1px 2px 0 rgba(0,0,0,0.3);
    -o-box-shadow:  0 1px 2px 0 rgba(0,0,0,0.3);
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    margin-bottom:1.5em;
}

#course_video {
    float:right;
    max-width:400px;
    margin-left:1.5em;
    -webkit-box-shadow:  0 1px 2px 0 rgba(0,0,0,0.3);
    -moz-box-shadow:  0 1px 2px 0 rgba(0,0,0,0.3);
    -ms-box-shadow:  0 1px 2px 0 rgba(0,0,0,0.3);
    -o-box-shadow:  0 1px 2px 0 rgba(0,0,0,0.3);
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    margin-bottom:1.5em;
    background-image: url(/images/design/custom/misc/video_loader.gif);
    background-repeat: no-repeat;
    background-position: 50% 90px;
}

#course_image img {
    max-width:100%;
    min-width:250px;
}

#course_video object,
#course_video embed,
#course_video iframe {
    float: left;
    max-width:100%;
    min-height:240px;
}


#course_blurb #highlights_presented_by,
#course_blurb #highlights_pmp_blurb,
#course_image #highlights_presented_by,
#course_image #highlights_pmp_blurb {
    float:left;
    padding:1.5em;
    width:210px;
    border-top:1px solid #ccc;
    background-image: linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 95%, rgb(230,230,230) 100%);
    background-image: -o-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 95%, rgb(230,230,230) 100%);
    background-image: -moz-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 95%, rgb(230,230,230) 100%);
    background-image: -webkit-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 95%, rgb(230,230,230) 100%);
    background-image: -ms-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 95%, rgb(230,230,230) 100%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgba(255,255,255,0)),
        color-stop(0.98, rgba(255,255,255,0)),
        color-stop(1, rgb(230,230,230))
    );
}

#course_video #highlights_presented_by,
#course_video #highlights_pmp_blurb {
    float:left;
    padding:1.5em;
    width:360px;
    border-top:1px solid #ccc;
    background-image: linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 95%, rgb(230,230,230) 100%);
    background-image: -o-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 95%, rgb(230,230,230) 100%);
    background-image: -moz-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 95%, rgb(230,230,230) 100%);
    background-image: -webkit-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 95%, rgb(230,230,230) 100%);
    background-image: -ms-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 95%, rgb(230,230,230) 100%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgba(255,255,255,0)),
        color-stop(0.98, rgba(255,255,255,0)),
        color-stop(1, rgb(230,230,230))
    );
}

#course_blurb #highlights_presented_by img ,
#course_blurb #highlights_pmp_blurb img,
#course_image #highlights_presented_by img ,
#course_image #highlights_pmp_blurb img,
#course_video #highlights_presented_by img ,
#course_video #highlights_pmp_blurb img {
    max-width:100%;
    min-width:1px;
}

#course_blurb #highlights_presented_by > p,
#course_blurb #highlights_pmp_blurb > p,
#course_image #highlights_presented_by > p,
#course_image #highlights_pmp_blurb > p,
#course_video #highlights_presented_by > p,
#course_video #highlights_pmp_blurb > p {
    margin-top:0;
    margin-bottom:0;
}

#course_update_notice_section p,
#course_assessment_available_section p {
    display:inline;
}

#course_update_notice_section,
#course_assessment_available_section {
    margin-top:1.5em;
    margin-bottom:1.5em;
}

#course_sections_section .sections_show_icon{
    text-decoration:none;
}

#course_sections_section .sections_no_icon {
    margin-left:3px;
    color:#ccc;
}

#course_sections_section .section_details_overview,
#course_sections_section .section_details_who_should_attend,
#course_sections_section .section_details_topics {
    margin-top:1.5em;
}

.section_details_overview_topics_section .section_details_overview_section {
    float:left;
    width:47%;
}

.section_details_overview_topics_section .section_details_topics_section {
    float:left;
    width:48%;
    margin-left:5%;
}


#course_overview_section .overview_more_icon {
    margin-left:3px;
    text-decoration:none;
}

#course_overview_section .course_extended_overview_option {
    border-top:1px dotted #ccc;
    padding-top:0.5em;
    border-top:1px solid #ccc;
    background-image: linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 95%, rgb(230,230,230) 100%);
    background-image: -o-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 95%, rgb(230,230,230) 100%);
    background-image: -moz-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 95%, rgb(230,230,230) 100%);
    background-image: -webkit-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 95%, rgb(230,230,230) 100%);
    background-image: -ms-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 95%, rgb(230,230,230) 100%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgba(255,255,255,0)),
        color-stop(0.98, rgba(255,255,255,0)),
        color-stop(1, rgb(230,230,230))
    );
    margin-bottom:1.5em;
    width:100%;
    min-height:10px;
    float:left;
}

#find_training_selector_basic,
#find_training_selector_advanced {
    position:relative;
}

#find_training_selector_basic div.col,
#find_training_selector_advanced div.col {
    margin-top:1.5em;
    margin-bottom:1.5em;
}


#find_training_selector_options {
    position:absolute;
    right:21px;
    bottom:21px;
}

#find_training_selector_options a {
    font-size: 0.857142857em;
    line-height: 1.5;
    color:#999;
}

#find_training_selector_options a:hover {
    color:#38516F;
}

#find_training_selector_options a span {
    font-size: 1.15em;
    line-height: 1.5;
}

#find_training_selector_options .icon_option {
    display:inline-block;
    margin-right:5px;
    vertical-align:middle;
}


#find_training_selector_basic h4,
#find_training_selector_advanced h4 {
    text-align:center;
    margin-top:0;
}

#find_training_selector_basic #find_training_selector_basic_submit,
#find_training_selector_advanced #find_training_selector_basic_submit  {
    text-align:center;
}

#find_training_selector_basic select,
#find_training_selector_advanced select {
    width:100%;
}

#share_results_section {
    float:left;
    width:100%;
    border-top:1px solid #ccc;
    padding-top:1.428571429em;
    border-bottom:1px solid #ccc;
    padding-bottom:1.428571429em;
    background-image: linear-gradient(bottom, rgba(230,230,230,1) 0%, rgba(255,255,255,0) 5%, rgba(255,255,255,0) 95%, rgb(230,230,230) 100%);
    background-image: -o-linear-gradient(bottom, rgba(230,230,230,1) 0%, rgba(255,255,255,0) 5%, rgba(255,255,255,0) 95%, rgb(230,230,230) 100%);
    background-image: -moz-linear-gradient(bottom, rgba(230,230,230,1) 0%, rgba(255,255,255,0) 5%, rgba(255,255,255,0) 95%, rgb(230,230,230) 100%);
    background-image: -webkit-linear-gradient(bottom, rgba(230,230,230,1) 0%, rgba(255,255,255,0) 5%, rgba(255,255,255,0) 95%, rgb(230,230,230) 100%);
    background-image: -ms-linear-gradient(bottom, rgba(230,230,230,1) 0%, rgba(255,255,255,0) 5%, rgba(255,255,255,0) 95%, rgb(230,230,230) 100%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(230,230,230)),
        color-stop(0.02, rgba(255,255,255,0)),
        color-stop(0.98, rgba(255,255,255,0)),
        color-stop(1, rgb(230,230,230))
    );
}

#share_results_section > div {
    float:left;
}

#share_results_section #share_results_title {
    font-family:"Diavlo Light",sans-serif;
    font-weight:normal;
    color:#436184;
    font-size: 1.333357142857143em;
    line-height: 1.1249799110730165;
    margin-top: 0.562489956em;
    margin-bottom: 0.562489956em;
    width:17%;
    margin-left:5%;
    text-align:right;
    margin-right:1%;
}

#share_results_section #share_results_input {
    width:50%;
    margin-right:2%;
    margin-top:6px;
}

#share_results_section #share_results_input input {
    width:100%;
}

#share_results_section #share_results_buttons {
    width:17%;
    margin-right:5%;
    margin-top:4px;
}

#online_training_promo,
#online_training_promo_mini {
    float:left;
    width: 912px;
    margin-left: 2px;
    clear: both;
    margin-bottom: -70px;
    padding-bottom: 3em;
    padding-top: 0;
}

#online_training_promo_mini {
    width: 654px;
}

#online_training_promo > div,
#online_training_promo_mini > div {
    float:left;
}

#online_training_promo #online_training_promo_title,
#online_training_promo_mini #online_training_promo_title {
    font-family:"Diavlo Light",sans-serif;
    font-weight:normal;
    color:#436184;
    font-size: 1.333357142857143em;
    line-height: 94px;
    width:48%;
    text-align:right;
}

#online_training_promo_mini #online_training_promo_title {
    width:28%;
}

#online_training_promo #online_training_promo_links {
    text-align: left;
    width: 51%;
}

#online_training_promo_mini #online_training_promo_links {
    text-align: left;
    width: 71%;
}

#online_training_promo.online_training_promo_count_2 #online_training_promo_title {
    width:55%;
}

#online_training_promo.online_training_promo_count_2 #online_training_promo_links {
    width: 44%;
}

#online_training_promo_mini.online_training_promo_count_2 #online_training_promo_title {
    width:52%;
}

#online_training_promo_mini.online_training_promo_count_2 #online_training_promo_links {
    width: 47%;
}

#online_training_promo.online_training_promo_count_1 #online_training_promo_title {
    width:60%;
}

#online_training_promo.online_training_promo_count_1 #online_training_promo_links {
    width: 39%;
}

#online_training_promo_mini.online_training_promo_count_1 #online_training_promo_title {
    width:65%;
}

#online_training_promo_mini.online_training_promo_count_1 #online_training_promo_links {
    width: 34%;
}

#online_training_promo #online_training_promo_links ul,
#online_training_promo_mini #online_training_promo_links ul {
    margin-left: 0;
}

#online_training_promo #online_training_promo_links ul li,
#online_training_promo_mini #online_training_promo_links ul li {
    display: inline-block;
    margin-left: 2em;
    text-align: center;
}

#online_training_promo #online_training_promo_links ul li img,
#online_training_promo_mini #online_training_promo_links ul li img {
  /*  display: block;*/
  vertical-align: middle;
  margin-right: 0.5em;
}

#find_training_upcoming_table {
    float:left;
    width:578px;
    margin-right:1.5em;
}

#find_training_upcoming_ad {
    float:left;
    width:360px;
    margin-top:1.5em;
}

div#new-slider.event_slider {
    font-size:100%;
}

div#new-slider ul {
    display:inline-block;
}

#instructor_video_url object,
#instructor_video_url embed {
    max-width:100%;
    min-width:400px;
    min-height:240px;
}

/* =====================================================
    reading room
   ===================================================== */
a.rr_paper_title {
    text-decoration: none;
    color: #292929;
}

a.rr_paper_title:hover {
    text-decoration: none;
    color: #663A09;
}

.rr_category_updated {
    margin-bottom: 1.5em;
    display: block;
}

.rr_paper_links ul {
    margin-bottom: 0;
}

.rr_paper_author {
    margin-bottom: 1.5em;
    display: block;
}

.rr_paper_author + .rr_paper_sponsors {
    margin-bottom: 1.5em;
    display: block;
}

.rr_paper_author + .rr_paper_webcasts,
.rr_paper_sponsors + .rr_paper_webcasts {
    margin-bottom: 1.5em;
    display: block;
}

.rr_paper_overview {
    padding: 1.5em;
    background-color:#eee;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    -moz-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    -ms-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    -o-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}

.rr_paper .show_overview {
    display: none;
}

a.rr_vendor {
    border:1px solid #fb3;
    background-color:#feeda4;
    padding: 1px 4px 1px 13px;
    border:1px solid #fb3;
    background-image:url('/images/icons/fatcow/star10x10.png');
    background-repeat:no-repeat;
    background-position:2px 2px;
    text-decoration: none;
    color: #292929;
}

a.rr_vendor:hover {
    -webkit-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    -moz-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    -ms-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    -o-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
}

.rr_vendor_overview.rr_paper_overview {
    border:1px solid #fb3;
    background-color:#fcfcfc;
}

a.rr_analyst {
    color: #24A71B;
    text-decoration: none;
    font-weight: bold;
}

.rr_analyst_overview.rr_paper_overview,
.rr_analyst_overview.rr_paper_overview:first-child {
    border:1px solid #24A71B;
    background-color:#fcfcfc;
}

a.rr_masters{
    color: #DE4713;
    text-decoration: none;
    font-weight: bold;
}

.rr_masters_overview.rr_paper_overview,
.rr_masters_overview.rr_paper_overview:first-child {
    border:1px solid #DE4713;
    background-color:#fcfcfc;
}

/* =====================================================
    vendor list
   ===================================================== */
ul.vendor_list {
    list-style-type: none;
    margin:0;
    display:block;
}

ul.vendor_list li {
    display:inline-block;
    float:left;
    width:33%;
    min-height:110px;
    margin:1.5em 0;
    text-align:center;
}

/* =====================================================
    search results
   ===================================================== */

#search_box input[type="text"] {
    width: 50%;
    margin-right:1.5em;
}

#search_box input[type="submit"] {
    margin-right:1.5em;
}

#search_box select {
    width:212px;
}

#search_results_total {
    text-align: right;
    color:#8F8F8F;
    margin: 1.5em 0;
}

#search_results .result_item {
    display: block;
    padding-bottom: 1.5em;
    margin-bottom: 1.428571429em;
    border-bottom: 1px dotted #ccc;
}

#promo_results .result_item p,
#search_results .result_item p {
    margin: 0;
}

#promo_results .result_item .result_logo,
#search_results .result_item .result_logo {
    display: block;
    float: right;
    margin: 0 0 1.5em 1.5em;
}

#promo_results .result_item .result_title,
#search_results .result_item .result_title {
    font-size: 1.333357142857143em;
    line-height: 1.1249799110730165;
}

#promo_results .result_item .result_link,
#search_results .result_item .result_link {
    color:#8F8F8F;
}

#search_page_nav ul {
    margin: 0;
}

#search_page_nav ul li {
    display: inline;
    margin:0 0.25em;
}

#search_page_nav ul li:first-child {
    margin-left: 0;
}

#search_page_nav ul li a {
    display: inline-block;
    padding: 0.25em 0.5em 0.2em;
    background-color: #eee;
    text-decoration: none;
    color: #555;
}

#search_page_nav ul li a:hover {
    background-color: #ccc;
    text-decoration: none;
    color: #555;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}

#search_page_nav ul li#current_page {
    display: inline-block;
    padding: 0.25em 0.5em 0.2em;
    background-color: #ccc;
    text-decoration: none;
    color: #555;
    cursor: default;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}

#promo_results {
    background-color:#FEEDA4;
    padding:1.5em;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    margin-bottom: 1.5em;
}

#mobile-register {
    display: none;
}

/*
 * jQuery UI CSS Framework @VERSION
 *
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Theming/API
 */

/* Layout helpers
----------------------------------*/
.ui-helper-hidden { display: none; }
.ui-helper-hidden-accessible { position: absolute; left: -99999999px; }
.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
.ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.ui-helper-clearfix { display: inline-block; }
/* required comment for clearfix to work in Opera \*/
* html .ui-helper-clearfix { height:1%; }
.ui-helper-clearfix { display:block; }
/* end clearfix */
.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }


/* Interaction Cues
----------------------------------*/
.ui-state-disabled { cursor: default !important; }


/* Icons
----------------------------------*/

/* states and images */
.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }


/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }


/*
 * jQuery UI CSS Framework @VERSION
 *
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Theming/API
 *
 */


/* Component containers
----------------------------------*/
.ui-widget { font-family: sans-serif; font-size: 1.1em; }
.ui-widget .ui-widget { font-size: 1em; }
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: sans-serif; font-size: 1em; }
.ui-widget-content { border: 1px solid #dddddd; background: #eeeeee url(images/ui-bg_highlight-soft_100_eeeeee_1x100.png) 50% bottom repeat-x; color: #333333; }
.ui-widget-header { border: 1px solid #e78f08; background: #f6a828 url(images/ui-bg_gloss-wave_35_f6a828_500x100.png) 50% 50% repeat-x; color: #ffffff; font-weight: bold; }
.ui-widget-header a { color: #ffffff; }

/* Interaction states
----------------------------------*/
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #cccccc; background: #f6f6f6 url(images/ui-bg_glass_100_f6f6f6_1x400.png) 50% 50% repeat-x; font-weight: bold; color: #1c94c4; }
.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #1c94c4; text-decoration: none; }
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { border: 1px solid #fbcb09; background: #fdf5ce url(images/ui-bg_glass_100_fdf5ce_1x400.png) 50% 50% repeat-x; font-weight: bold; color: #c77405; }
.ui-state-hover a, .ui-state-hover a:hover { color: #c77405; text-decoration: none; }
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #fbd850; background: #ffffff url(images/ui-bg_glass_75_dadada_1x400.png) 50% 50% repeat-x; font-weight: bold; color: #eb8f00; }
.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #eb8f00; text-decoration: none; }
.ui-widget :active { outline: none; }

/* Interaction Cues
----------------------------------*/
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight  {border: 1px solid #fed22f; background: #ffe45c url(images/ui-bg_highlight-soft_75_ffe45c_1x100.png) 50% top repeat-x; color: #363636; }
.ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636; }
.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #cd0a0a; background: #b81900 url(images/ui-bg_diagonals-thick_18_b81900_40x40.png) 50% 50% repeat; color: #ffffff; }
.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #ffffff; }
.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #ffffff; }
.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; }
.ui-priority-secondary, .ui-widget-content .ui-priority-secondary,  .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }

/* Icons
----------------------------------*/

/* states and images */
.ui-icon { width: 16px; height: 16px; background-image: url(images/ui-icons_222222_256x240.png); display: none; }
.ui-widget-content .ui-icon {background-image: url(images/ui-icons_222222_256x240.png); }
.ui-widget-header .ui-icon {background-image: url(images/ui-icons_ffffff_256x240.png); }
.ui-state-default .ui-icon { background-image: url(images/ui-icons_ef8c08_256x240.png); }
.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(images/ui-icons_ef8c08_256x240.png); }
.ui-state-active .ui-icon {background-image: url(images/ui-icons_ef8c08_256x240.png); }
.ui-state-highlight .ui-icon {background-image: url(images/ui-icons_228ef1_256x240.png); }
.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(images/ui-icons_ffd27a_256x240.png); }

/* positioning */
.ui-icon-carat-1-n { background-position: 0 0; }
.ui-icon-carat-1-ne { background-position: -16px 0; }
.ui-icon-carat-1-e { background-position: -32px 0; }
.ui-icon-carat-1-se { background-position: -48px 0; }
.ui-icon-carat-1-s { background-position: -64px 0; }
.ui-icon-carat-1-sw { background-position: -80px 0; }
.ui-icon-carat-1-w { background-position: -96px 0; }
.ui-icon-carat-1-nw { background-position: -112px 0; }
.ui-icon-carat-2-n-s { background-position: -128px 0; }
.ui-icon-carat-2-e-w { background-position: -144px 0; }
.ui-icon-triangle-1-n { background-position: 0 -16px; }
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-se { background-position: -48px -16px; }
.ui-icon-triangle-1-s { background-position: -64px -16px; }
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
.ui-icon-triangle-1-w { background-position: -96px -16px; }
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
.ui-icon-arrow-1-n { background-position: 0 -32px; }
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
.ui-icon-arrow-1-e { background-position: -32px -32px; }
.ui-icon-arrow-1-se { background-position: -48px -32px; }
.ui-icon-arrow-1-s { background-position: -64px -32px; }
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
.ui-icon-arrow-1-w { background-position: -96px -32px; }
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
.ui-icon-arrow-4 { background-position: 0 -80px; }
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
.ui-icon-extlink { background-position: -32px -80px; }
.ui-icon-newwin { background-position: -48px -80px; }
.ui-icon-refresh { background-position: -64px -80px; }
.ui-icon-shuffle { background-position: -80px -80px; }
.ui-icon-transfer-e-w { background-position: -96px -80px; }
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
.ui-icon-folder-collapsed { background-position: 0 -96px; }
.ui-icon-folder-open { background-position: -16px -96px; }
.ui-icon-document { background-position: -32px -96px; }
.ui-icon-document-b { background-position: -48px -96px; }
.ui-icon-note { background-position: -64px -96px; }
.ui-icon-mail-closed { background-position: -80px -96px; }
.ui-icon-mail-open { background-position: -96px -96px; }
.ui-icon-suitcase { background-position: -112px -96px; }
.ui-icon-comment { background-position: -128px -96px; }
.ui-icon-person { background-position: -144px -96px; }
.ui-icon-print { background-position: -160px -96px; }
.ui-icon-trash { background-position: -176px -96px; }
.ui-icon-locked { background-position: -192px -96px; }
.ui-icon-unlocked { background-position: -208px -96px; }
.ui-icon-bookmark { background-position: -224px -96px; }
.ui-icon-tag { background-position: -240px -96px; }
.ui-icon-home { background-position: 0 -112px; }
.ui-icon-flag { background-position: -16px -112px; }
.ui-icon-calendar { background-position: -32px -112px; }
.ui-icon-cart { background-position: -48px -112px; }
.ui-icon-pencil { background-position: -64px -112px; }
.ui-icon-clock { background-position: -80px -112px; }
.ui-icon-disk { background-position: -96px -112px; }
.ui-icon-calculator { background-position: -112px -112px; }
.ui-icon-zoomin { background-position: -128px -112px; }
.ui-icon-zoomout { background-position: -144px -112px; }
.ui-icon-search { background-position: -160px -112px; }
.ui-icon-wrench { background-position: -176px -112px; }
.ui-icon-gear { background-position: -192px -112px; }
.ui-icon-heart { background-position: -208px -112px; }
.ui-icon-star { background-position: -224px -112px; }
.ui-icon-link { background-position: -240px -112px; }
.ui-icon-cancel { background-position: 0 -128px; }
.ui-icon-plus { background-position: -16px -128px; }
.ui-icon-plusthick { background-position: -32px -128px; }
.ui-icon-minus { background-position: -48px -128px; }
.ui-icon-minusthick { background-position: -64px -128px; }
.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-key { background-position: -112px -128px; }
.ui-icon-lightbulb { background-position: -128px -128px; }
.ui-icon-scissors { background-position: -144px -128px; }
.ui-icon-clipboard { background-position: -160px -128px; }
.ui-icon-copy { background-position: -176px -128px; }
.ui-icon-contact { background-position: -192px -128px; }
.ui-icon-image { background-position: -208px -128px; }
.ui-icon-video { background-position: -224px -128px; }
.ui-icon-script { background-position: -240px -128px; }
.ui-icon-alert { background-position: 0 -144px; }
.ui-icon-info { background-position: -16px -144px; }
.ui-icon-notice { background-position: -32px -144px; }
.ui-icon-help { background-position: -48px -144px; }
.ui-icon-check { background-position: -64px -144px; }
.ui-icon-bullet { background-position: -80px -144px; }
.ui-icon-radio-off { background-position: -96px -144px; }
.ui-icon-radio-on { background-position: -112px -144px; }
.ui-icon-pin-w { background-position: -128px -144px; }
.ui-icon-pin-s { background-position: -144px -144px; }
.ui-icon-play { background-position: 0 -160px; }
.ui-icon-pause { background-position: -16px -160px; }
.ui-icon-seek-next { background-position: -32px -160px; }
.ui-icon-seek-prev { background-position: -48px -160px; }
.ui-icon-seek-end { background-position: -64px -160px; }
.ui-icon-seek-start { background-position: -80px -160px; }
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first { background-position: -80px -160px; }
.ui-icon-stop { background-position: -96px -160px; }
.ui-icon-eject { background-position: -112px -160px; }
.ui-icon-volume-off { background-position: -128px -160px; }
.ui-icon-volume-on { background-position: -144px -160px; }
.ui-icon-power { background-position: 0 -176px; }
.ui-icon-signal-diag { background-position: -16px -176px; }
.ui-icon-signal { background-position: -32px -176px; }
.ui-icon-battery-0 { background-position: -48px -176px; }
.ui-icon-battery-1 { background-position: -64px -176px; }
.ui-icon-battery-2 { background-position: -80px -176px; }
.ui-icon-battery-3 { background-position: -96px -176px; }
.ui-icon-circle-plus { background-position: 0 -192px; }
.ui-icon-circle-minus { background-position: -16px -192px; }
.ui-icon-circle-close { background-position: -32px -192px; }
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
.ui-icon-circle-zoomin { background-position: -176px -192px; }
.ui-icon-circle-zoomout { background-position: -192px -192px; }
.ui-icon-circle-check { background-position: -208px -192px; }
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
.ui-icon-circlesmall-close { background-position: -32px -208px; }
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
.ui-icon-squaresmall-close { background-position: -80px -208px; }
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }


/* Misc visuals
----------------------------------*/

/* Corner radius */
.ui-corner-tl { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; }
.ui-corner-tr { -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; }
.ui-corner-bl { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; }
.ui-corner-br { -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; }
.ui-corner-top { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; }
.ui-corner-bottom { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; }
.ui-corner-right {  -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; }
.ui-corner-left { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; }
.ui-corner-all { -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; }

/* Overlays */
.ui-widget-overlay { background: #666666 url(images/ui-bg_diagonals-thick_20_666666_40x40.png) 50% 50% repeat; opacity: .50;filter:Alpha(Opacity=50); }
.ui-widget-shadow { margin: -5px 0 0 -5px; padding: 5px; background: #000000 url(images/ui-bg_flat_10_000000_40x100.png) 50% 50% repeat-x; opacity: .20;filter:Alpha(Opacity=20); -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; }/*
 * jQuery UI Accordion @VERSION
 *
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Accordion#theming
 */
/* IE/Win - Fix animation bug - #4615 */
.ui-accordion { width: 100%; }
.ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; }
.ui-accordion .ui-accordion-li-fix { display: inline; }
.ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; }
.ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em .7em; }
.ui-accordion-icons .ui-accordion-header a { padding-left: 2.2em; }
.ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; }
.ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; }
.ui-accordion .ui-accordion-content-active { display: block; }
/*
body div.accordion > h3.ui-accordion-header {
    font-family:sans-serif;
    font-weight:normal;
}

body .ui-state-default {
    background-color:#e1e1e1;
    background-image: linear-gradient(bottom, rgb(225,225,225) 0%, rgb(255,255,255) 100%);
    background-image: -o-linear-gradient(bottom, rgb(225,225,225) 0%, rgb(255,255,255) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(225,225,225) 0%, rgb(255,255,255) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(225,225,225) 0%, rgb(255,255,255) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(225,225,225) 0%, rgb(255,255,255) 100%);

    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(225,225,225)),
        color-stop(1, rgb(255,255,255))
    );
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow:  0 1px 2px 0 rgba(0,0,0,0.3);
    -moz-box-shadow:  0 1px 2px 0 rgba(0,0,0,0.3);
    -ms-box-shadow:  0 1px 2px 0 rgba(0,0,0,0.3);
    -o-box-shadow:  0 1px 2px 0 rgba(0,0,0,0.3);
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
    border:1px solid rgba(255,255,255,0.5);
}
*/

#pre_footer {
    position: relative;
    display: block;
    clear: both;
    padding:1.5em 0;
    margin-top: 3em;
}

#pre_footer a {
    color: #fff;
}

.footer-column {
    float:left;
    width:300px;
    padding-top:1.5em;
    margin-left:1.5em;
}

.footer-column:first-child {
    margin-left:0;
}

.footer-column a {
    color:#ccc;
    text-decoration:underline;
}

#pre_footer h1,
#pre_footer h2,
#pre_footer h3,
#pre_footer h4,
#pre_footer h5,
#pre_footer h6,
.footer-column h1,
.footer-column h2,
.footer-column h3,
.footer-column h4,
.footer-column h5,
.footer-column h6 {
    color:#fff;
}

#pre_footer .col {
    margin-bottom: 1.5emF;
}

.footer-quote-box {
    border-top: 1px #666666 dotted;
    padding:1.5em 0;
    min-height:50px
}

.footer-quote-box p {
    margin:0 0 0 1.5em;
    padding:0px;
    font-size:8pt;
    float:left;
    text-align:center;
    color:#cdcdcd;
    width:300px;
}

.footer-quote-box p:first-child {
    margin:0;
}


   body #footer {
        float: left;
        width: 100%;
        background-color: #262626;
        background-image: url(/images/design/custom/misc/footer_fade.png);
        background-repeat: repeat-x;
        background-position:0 0;
        clear:both;
        color:#aaa;
        border-top:1px solid #0f161f;
        }

    .logo-footer {
        float:left;
        margin-top:12px;
        }

    .latest-icons {
        float:left;
        margin:1.5em 0 0 12%;
        }

    .latest-icons a > img {
        border:0;
        margin:0 4px;
        }

    body .bottom-nav {
        font-size:11px;
        float:right;
        text-align:right;
        color:#fff;
        }
    body .bottom-nav a,
    body .bottom-nav ul li {
        color:#aaa;
    }

        .bottom-nav ul {
            margin:0;
            margin-top:1.5em;
        }

    .bottom-nav ul li {
        display:inline;
        border-right:1px solid #333333;
        padding:0 5px 0 2px;
        margin:0;
        }

    .bottom-nav ul li.last {
        border:none;
        padding-right:0;
        }


body .copyright {
    color:#aaa;
    margin:0;
    }

.bottom-nav ul li, .bottom-nav ul li.last {
    margin-left:0;
    }

.clear {
    clear:both;
}

ul.site-selector,
body ul.site-selector ul {
    margin-left:0;
}

body ul.site-selector ul {
    left:-118px;
}

body.sans #footer ul.site-selector ul {
    left:-75px;
}

a.site_logo {
    height: 80px;
    margin: 25px 0;
}

a.site_logo_small {
    height: 45px;
    margin: 15px 0;
}

a.site_logo span,
a.site_logo_small span {
    display: none;
}

body.cyber_defense a.site_logo {
    float: left;
    background-image: url(/images/design/custom/logos/sites/cyber_defense_logo.png);
    background-repeat: no-repeat;
    background-position: 0 0;
    width:208px;
}

body.cyber_defense a.site_logo_small {
    float: left;
    background-image: url(/images/design/custom/logos/sites/cyber_defense_small_logo.png);
    background-repeat: no-repeat;
    background-position: 0 0;
    width:124px;
}

body.cyber_defense ul.site-selector ul {
    left:-208px;
}

body.cyber_defense #footer ul.site-selector ul {
    top:-510px;
    left:-124px;
}

.bodywrap {
    height:100%;
    background:url(/images/design/standard/topbg_black.gif) top repeat-x;
    }

.featurewrap    {
    background:url(/images/design/standard/topbg_home_black.gif) top repeat-x;
}

.noheader {
    background:url(/images/design/standard/topbg2_black.gif) top repeat-x;
    }

.lt-ie8 div.top-menu div#main_navigation {
    float:right;
}

.lt-ie8 div.top-menu div#login-status {
    position:absolute;
    right:155px;
    top:21px;
    margin:0;
}

.lt-ie8 div.top-menu div.search-form input#q{
    float:right;
    margin:0;
}

.lt-ie8 div.top-menu div.search-form input#search-button{
    position:absolute;
    right:0;
    top:27px;
    margin:0;
}

.lt-ie8 div#main_navigation ul.dropdown li.root-item > ul {
    margin-left:0;
    position:absolute;
    left:0;
}

.lt-ie8 .col > .col3 {
    width:30%;
    margin-left:4%;
    float:left;
}

.lt-ie8 .col > div:first-child {
    margin-left:0;
}

.lt-ie8 div#ribbon {
    margin-bottom:4.5em;
}

.lt-ie9 div.table_mini_nav ul li a {
    color:#fff;
}

body .feed {
    background-image: none;
}

.pill-label {
    margin-bottom: 0.5em;
}

.pill-label span {
    display:inline-block;
    background-color:#eee;
    border-radius:3px;
    min-width:40px;
    text-align:center;
}

/**
 * jQuery lightBox plugin
 * This jQuery plugin was inspired and based on Lightbox 2 by Lokesh Dhakar (http://www.huddletogether.com/projects/lightbox2/)
 * and adapted to me for use like a plugin from jQuery.
 * @name jquery-lightbox-0.5.css
 * @author Leandro Vieira Pinho - http://leandrovieira.com
 * @version 0.5
 * @date April 11, 2008
 * @category jQuery plugin
 * @copyright (c) 2008 Leandro Vieira Pinho (leandrovieira.com)
 * @license CC Attribution-No Derivative Works 2.5 Brazil - http://creativecommons.org/licenses/by-nd/2.5/br/deed.en_US
 * @example Visit http://leandrovieira.com/projects/jquery/lightbox/ for more informations about this jQuery plugin
 */
#jquery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999999;
    width: 100%;
    height: 500px;
}
#jquery-lightbox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999999;
    text-align: center;
    line-height: 0;
}
#jquery-lightbox a img { border: none; }
#lightbox-container-image-box {
    position: relative;
    background-color: #fff;
    width: 250px;
    height: 250px;
    margin: 0 auto;
}
#lightbox-container-image { padding: 10px; }
#lightbox-loading {
    position: absolute;
    top: 40%;
    left: 0%;
    height: 25%;
    width: 100%;
    text-align: center;
    line-height: 0;
}
#lightbox-nav {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
}
#lightbox-container-image-box > #lightbox-nav { left: 0; }
#lightbox-nav a { outline: none; height:90% !important; }
#lightbox-nav-btnPrev, #lightbox-nav-btnNext {
    width: 49%;
    height: 100%;
    zoom: 1;
    display: block;
}
#lightbox-nav-btnPrev {
    left: 0;
    float: left;
}
#lightbox-nav-btnNext {
    right: 0;
    float: right;
}
#lightbox-container-image-data-box {
    font: 10px Verdana, Helvetica, sans-serif;
    background-color: #fff;
    margin: 0 auto;
    line-height: 1.4em;
    overflow: auto;
    width: 100% !important;
}
#lightbox-container-image-data {
    padding: 0 10px;
    color: #666;
}
#lightbox-container-image-data #lightbox-image-details {
    width: 70%;
    float: left;
    text-align: left;
}
#lightbox-image-details-caption { font-weight: bold; }
#lightbox-image-details-currentNumber {
    display: block;
    clear: left;
    padding-bottom: 1.0em;
}
#lightbox-secNav-btnClose {
    width: 66px;
    float: right;
    padding-bottom: 0.7em;
}

#lightbox-container-image-box {
    max-width: 80%;
    max-height: 90%;
    height:auto !important;
}

#lightbox-container-image-box img{
    max-width: 100%;
    max-height: 100%;
}

.underdash {
    border-bottom: 1px dashed #999;
}

/* =====================================================
    security training
   ===================================================== */

#sectraining_homepage_banner img {
    margin-left: -1.9em;
    margin-top: 1.5em;
}

#event_archives_months {
    position:relative;
    border-bottom:1px solid #ccc;
    z-index:5;
}

/* =====================================================
    cyber guardian
   ===================================================== */

body table tbody tr td.cyber_guardian_red span {
    display: block;
    background-color: #A91C20;
    color: #fff;
    text-align: center;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    padding: 0.5em;
    margin: 0 auto;
}

body table tbody tr td.cyber_guardian_blue span {
    display: block;
    background-color: #006AB6;
    color: #fff;
    text-align: center;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    padding: 0.5em;
    margin: 0 auto;
}

body table tbody tr td.cyber_guardian_blue_red span {
    display: block;
    background-color: #006AB6;
    color: #fff;
    text-align: center;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    padding: 0.5em;
    max-width: 79px;
}

body table tbody tr td.cyber_guardian_blue_red span + span {
    background-color: #A91C20;
    margin-left: 1em;
}

body table tbody tr td.cyber_guardian_red_blue span {
    display: block;
    background-color: #A91C20;
    color: #fff;
    text-align: center;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    padding: 0.5em;
    max-width: 79px;
}

body table tbody tr td.cyber_guardian_red_blue span + span {
    background-color: #006AB6;
    margin-left: 1em;
}

body table tbody tr td.cyber_guardian_blue_red span,
body table tbody tr td.cyber_guardian_red_blue span {
    float: left;
    display: block;
    width: 100px;
}

div.cyber_guardian_block_red,
div.cyber_guardian_block_blue {
    background-color: #A91C20;
    color: #fff;
    text-align: center;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    padding: 1.5em;
    margin: 0 auto;
    font-weight: bold;
    font-size: 1.5em;
    line-height: 1.1666666666666667em;
    background-image:url(/images/design/custom/icons/misc/large/cyber-emblem-mono.png);
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
    -moz-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
    -ms-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
    -o-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
    box-shadow: 0 1px 3px 0 rgba(0,0,0,0.5);
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    margin-left: 0.5em;
}

div.cyber_guardian_block_blue {
    background-color: #006AB6;
}

/* =====================================================
    blog
   ===================================================== */

.alignleft {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}

/* =====================================================
    webcast
   ===================================================== */
#webcast_success_message {
    color:#fff;
    border:1px solid #b73f2f;
    background-color:#f45e44;
    text-shadow:#d5311e 0 1px 1px
    font-size: 80%;
    padding: 1.5em;
    border-radius: 3px;
    margin-top: 1.5em;
    display: none;
}

#webcast_success_message.webcast_suggest_success {
    color:#b87131;
    border:1px solid #fb3;
    background-color:#feeda4;
    text-shadow:none;
}

/* =====================================================
    by location states
   ===================================================== */

#state_select {
    -webkit-border-bottom-right-radius: 3px;
    -webkit-border-bottom-left-radius: 3px;
    -moz-border-radius-bottomright: 3px;
    -moz-border-radius-bottomleft: 3px;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    border: 1px solid #D9D9D9;
    border-top: none;
}

/* =====================================================
    fix for google+ button layout issue
   ===================================================== */
iframe[id^="oauth2relay"] { position: fixed !important; }

.tooltipsy {
    font-size: 0.857142857em;
    line-height: 1.5;
    padding: 0.75em 1.5em;
    max-width: 200px;
    color:#ccc;
    border:1px solid #262626;
    background-color:#262626;
    -webkit-border-radius:3px;
    -moz-border-radius:3px;
    border-radius:3px;
    -webkit-box-shadow:0 0 2px 1px rgba(100;100;100;0.1);
    -moz-box-shadow:0 0 2px 1px rgba(100;100;100;0.1);
    -ms-box-shadow:0 0 2px 1px rgba(100;100;100;0.1);
    -o-box-shadow:0 0 2px 1px rgba(100;100;100;0.1);
    box-shadow:0 0 2px 1px rgba(100;100;100;0.1);
    text-shadow: none
}

/* =====================================================
    View video interface styles
   ===================================================== */

.video_preview_ui {
    width: 100%;
    height:600px;
    padding:9px;
    border:1px solid #aaa;
    background-color: #eee;
}

.video_textbox {
    height: 280px;
    max-height: 280px;
    padding:5px;
}

.video_section {
    padding-bottom: 10px;
}

.all_video_box {
    float: left;
    width: 450px;
}

.all_video_modules {
    float: left;
    width: 270px;
    height: 560px;
    max-height: 560px;
    overflow-y: scroll;
    padding-left: 10px;
    padding-top: 10px;
    margin-left:10px;
    background-color:#ddd;
}

.all_video_languages {
    float: left;
    width: 200px;
    height: 300px;
    max-height: 300px;
    overflow-y: scroll;
    padding-left:10px;
    padding-top: 10px;
    margin-left:10px;
    background-color:#ddd;
}

.video_header {
    float: left;
    width: 270px;
    height: 30px;
    margin-left:10px;
}

.languages_header {
    float: left;
    width: 200px;
    height: 30px;
    margin-left:20px;
}

.video_header h5, .languages_header h5 {
    margin:0;
    padding:0;
}

.video_list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.video_list li {
    padding:3px 0;
}

.video_list li a {
    text-decoration: none;
}

.video_list li a img {
    display: inline-block;
    vertical-align: top;
    height: 25px;
}

.video_list li a span {
    display: inline-block;
    vertical-align: middle;
}

/* quote button */

.disableable_button:disabled {
    opacity: .5;
}

.ukgrad {
    background-image: url('/images/ukca_grads/hover.png');
    background-position: 0 0;
    background-repeat: no-repeat;
    display: inline-block;
    cursor: pointer;
}

.ukgrad:hover img {
    opacity: 0.25;
    -moz-opacity: 0.25;
    filter:alpha(opacity=25);
    cursor: pointer;
}

.ukgrad-current {
    background-color: #000000;
    display: inline-block;
}

.ukgrad-current img {
    border: 1px solid #47B6D0;
    opacity: 0.75;
    -moz-opacity: 0.75;
    filter:alpha(opacity=75);
}

/************** Cert history Page Renewal Buttons **************/

table.blank-table {
    margin-bottom: 0;
}

table.blank-table tbody tr td {
    background-color: #fff;
    border: 0 none;
    padding: 0 3px;
    width: 50%;
}

.renewals-button {
    padding: 30px 0;
    font-family: "Diavlo Light";
    width: 100%;
    font-size: 1.333357142857143em;
}

.big-alt-link-button {
    background: #d9d9d9;
    color: #292929;
}

.small-alt-link-button {
    background: #d9d9d9;
    color: #292929;
    padding: 0.5em;
    font-size: 0.85em
}

.alt-button-hover:hover {
    color: #fff;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 10000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: clip;
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.popup {
    background-color: #fefefe;
    margin: 10% auto; /* 10% from the top and centered */
    border: 1px solid #888;
    border-radius: 5px;
    width: 50%; /* Could be more or less, depending on screen size */
}

.popupHeader {
    height: 40px;
    padding: 5px 10px 0px 20px;
    background-color: #737273;
    color: #fff;
    border-radius: 5px 5px 0px 0px;
    font-size: larger;
}

.popupTitle {
    font-size: 24px;
    float: left;
}

.popupClose {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.popupClose:hover,
.popupClose:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.popupContent {
    margin: 0px 20px 20px 20px;
}

.popupNote {
    border: 1px solid #0a0a0a;
    border-radius: 5px;
    background-color: #ffffe0;
    font-weight: bold;
    margin-top: 20px;
    padding: 20px;
}
.popupAction {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    margin: 20px 0px 20px 0px;
}

.popupButton {
    width: 180px;
}


/************** Retakes and Extensions Overrides **************/

.retakes-extensions-list > li {
    margin-top: 20px;
}

.retakes-extensions-list > li > ul {
  list-style-type: circle;
}