/**
 * @file
 * Generic theme-independent base styles.
 */

/**
 * Autocomplete.
 *
 * @see autocomplete.js
 */
/* Suggestion list */
#autocomplete {
    border: 1px solid;
    overflow: hidden;
    position: absolute;
    z-index: 100;
}

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

#autocomplete li {
    background: #fff;
    color: #000;
    cursor: default;
    white-space: pre;
    zoom: 1;
    /* IE7 */
}

/* Animated throbber */
html.js input.form-autocomplete {
    background-image: url(../img/throbber-inactive.png);
    background-position: 100% center;
    /* LTR */
    background-repeat: no-repeat;
}

html.js input.throbbing {
    background-image: url(../img/throbber-active.gif);
    background-position: 100% center;
    /* LTR */
}

/**
 * Collapsible fieldsets.
 *
 * @see collapse.js
 */
html.js fieldset.collapsed {
    border-bottom-width: 0;
    border-left-width: 0;
    border-right-width: 0;
    height: 1em;
}

html.js fieldset.collapsed .fieldset-wrapper {
    display: none;
}

fieldset.collapsible {
    position: relative;
}

fieldset.collapsible .fieldset-legend {
    display: block;
}

/**
 * Resizable textareas.
 *
 * @see textarea.js
 */
.form-textarea-wrapper textarea {
    display: block;
    margin: 0;
    width: 100%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.resizable-textarea .grippie {
    background: #eee url(../img/grippie.png) no-repeat center 2px;
    border: 1px solid #ddd;
    border-top-width: 0;
    cursor: s-resize;
    height: 9px;
    overflow: hidden;
}

/**
 * TableDrag behavior.
 *
 * @see tabledrag.js
 */
body.drag {
    cursor: move;
}

.draggable a.tabledrag-handle {
    cursor: move;
    float: left;
    /* LTR */
    height: 1.7em;
    margin-left: -1em;
    /* LTR */
    overflow: hidden;
    text-decoration: none;
}

a.tabledrag-handle:hover {
    text-decoration: none;
}

a.tabledrag-handle .handle {
    background: url(../img/draggable.png) no-repeat 6px 9px;
    height: 13px;
    margin: -0.4em 0.5em;
    /* LTR */
    padding: 0.42em 0.5em;
    /* LTR */
    width: 13px;
}

a.tabledrag-handle-hover .handle {
    background-position: 6px -11px;
}

div.indentation {
    float: left;
    /* LTR */
    height: 1.7em;
    margin: -0.4em 0.2em -0.4em -0.4em;
    /* LTR */
    padding: 0.42em 0 0.42em 0.6em;
    /* LTR */
    width: 20px;
}

div.tree-child {
    background: url(../img/tree.png) no-repeat 11px center;
    /* LTR */
}

div.tree-child-last {
    background: url(../img/tree-bottom.png) no-repeat 11px center;
    /* LTR */
}

div.tree-child-horizontal {
    background: url(../img/tree.png) no-repeat -11px center;
}

.tabledrag-toggle-weight-wrapper {
    text-align: right;
    /* LTR */
}

/**
 * TableHeader behavior.
 *
 * @see tableheader.js
 */
table.sticky-header {
    background-color: #fff;
    margin-top: 0;
}

/**
 * Progress behavior.
 *
 * @see progress.js
 */
/* Bar */
.progress .bar {
    background-color: #fff;
    border: 1px solid;
}

.progress .filled {
    background-color: #000;
    height: 1.5em;
    width: 5px;
}

.progress .percentage {
    float: right;
    /* LTR */
}

/* Throbber */
.ajax-progress {
    display: inline-block;
}

.ajax-progress .throbber {
    background: transparent url(../img/throbber-active.gif) no-repeat 0px center;
    float: left;
    /* LTR */
    height: 15px;
    margin: 2px;
    width: 15px;
}

.ajax-progress .message {
    padding-left: 20px;
}

tr .ajax-progress .throbber {
    margin: 0 2px;
}

.ajax-progress-bar {
    width: 16em;
}

/**
 * Inline items.
 */
.container-inline div,
.container-inline label {
    display: inline;
}

/* Fieldset contents always need to be rendered as block. */
.container-inline .fieldset-wrapper {
    display: block;
}

/**
 * Prevent text wrapping.
 */
.nowrap {
    white-space: nowrap;
}

/**
 * For anything you want to hide on page load when JS is enabled, so
 * that you can use the JS to control visibility and avoid flicker.
 */
html.js .js-hide {
    display: none;
}

/**
 * Hide elements from all users.
 *
 * Used for elements which should not be immediately displayed to any user. An
 * example would be a collapsible fieldset that will be expanded with a click
 * from a user. The effect of this class can be toggled with the jQuery show()
 * and hide() functions.
 */
.element-hidden {
    display: none;
}

/**
 * Hide elements visually, but keep them available for screen-readers.
 *
 * Used for information required for screen-reader users to understand and use
 * the site where visual display is undesirable. Information provided in this
 * manner should be kept concise, to avoid unnecessary burden on the user.
 * "!important" is used to prevent unintentional overrides.
 */
.element-invisible {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    overflow: hidden;
    height: 1px;
}

/**
 * The .element-focusable class extends the .element-invisible class to allow
 * the element to be focusable when navigated to via the keyboard.
 */
.element-invisible.element-focusable:active,
.element-invisible.element-focusable:focus {
    position: static !important;
    clip: auto;
    overflow: visible;
    height: auto;
}

/**
 * Markup free clearing.
 *
 * @see http://perishablepress.com/press/2009/12/06/new-clearfix-hack
 */
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

/* IE6 */
* html .clearfix {
    height: 1%;
}

/* IE7 */
*:first-child+html .clearfix {
    min-height: 1%;
}


/**
 * @file
 * Styles for menus and navigation markup.
 */

/**
 * Markup generated by theme_menu_tree().
 */
ul.menu {
    border: none;
    list-style: none;
    text-align: left;
    /* LTR */
}

ul.menu li {
    margin: 0 0 0 0.5em;
    /* LTR */
}

ul li.expanded {
    list-style-image: url(../img/menu-expanded.png);
    list-style-type: circle;
}

ul li.collapsed {
    list-style-image: url(../img/menu-collapsed.png);
    /* LTR */
    list-style-type: disc;
}

ul li.leaf {
    list-style-image: url(../img/menu-leaf.png);
    list-style-type: square;
}

li.expanded,
li.collapsed,
li.leaf {
    padding: 0.2em 0.5em 0 0;
    /* LTR */
    margin: 0;
}

li a.active {
    color: #000;
}

td.menu-disabled {
    background: #ccc;
}

/**
 * Markup generated by theme_links().
 */
ul.inline,
ul.links.inline {
    display: inline;
    padding-left: 0;
}

ul.inline li {
    display: inline;
    list-style-type: none;
    padding: 0 0.5em;
}

/**
 * Markup generated by theme_breadcrumb().
 */
.breadcrumb {
    padding-bottom: 0.5em;
}

/**
 * Markup generated by theme_menu_local_tasks().
 */
ul.primary {
    border-bottom: 1px solid #bbb;
    border-collapse: collapse;
    height: auto;
    line-height: normal;
    list-style: none;
    margin: 5px;
    padding: 0 0 0 1em;
    /* LTR */
    white-space: nowrap;
}

ul.primary li {
    display: inline;
}

ul.primary li a {
    background-color: #ddd;
    border-color: #bbb;
    border-style: solid solid none solid;
    border-width: 1px;
    height: auto;
    margin-right: 0.5em;
    /* LTR */
    padding: 0 1em;
    text-decoration: none;
}

ul.primary li.active a {
    background-color: #fff;
    border: 1px solid #bbb;
    border-bottom: 1px solid #fff;
}

ul.primary li a:hover {
    background-color: #eee;
    border-color: #ccc;
    border-bottom-color: #eee;
}

ul.secondary {
    border-bottom: 1px solid #bbb;
    padding: 0.5em 1em;
    margin: 5px;
}

ul.secondary li {
    border-right: 1px solid #ccc;
    /* LTR */
    display: inline;
    padding: 0 1em;
}

ul.secondary a {
    padding: 0;
    text-decoration: none;
}

ul.secondary a.active {
    border-bottom: 4px solid #999;
}

/**
 * @file
 * Styles for system messages.
 */

div.messages {
    background-position: 8px 8px;
    /* LTR */
    background-repeat: no-repeat;
    border: 1px solid;
    margin: 6px 0;
    padding: 10px 10px 10px 50px;
    /* LTR */
}

div.status {
    background-image: url(../img/message-24-ok.png);
    border-color: #be7;
}

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

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

div.warning {
    background-image: url(../img/message-24-warning.png);
    border-color: #ed5;
}

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

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

div.error {
    background-image: url(../img/message-24-error.png);
    border-color: #ed541d;
}

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

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

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

div.messages ul {
    margin: 0 0 0 1em;
    /* LTR */
    padding: 0;
}

div.messages ul li {
    list-style-image: none;
}

/**
 * @file
 * Basic styling for common markup.
 */

/**
 * HTML elements.
 */
fieldset {
    margin-bottom: 1em;
    padding: 0.5em;
}

form {
    margin: 0;
    padding: 0;
}

hr {
    border: 1px solid gray;
    height: 1px;
}

img {
    border: 0;
}

table {
    border-collapse: collapse;
}

th {
    border-bottom: 3px solid #ccc;
    padding-right: 1em;
    /* LTR */
    text-align: left;
    /* LTR */
}

tbody {
    border-top: 1px solid #ccc;
}

tr.even,
tr.odd {
    background-color: #eee;
    border-bottom: 1px solid #ccc;
    padding: 0.1em 0.6em;
}

/**
 * Markup generated by theme_tablesort_indicator().
 */
th.active img {
    display: inline;
}

td.active {
    background-color: #ddd;
}

/**
 * Markup generated by theme_item_list().
 */
.item-list .title {
    font-weight: bold;
}

.item-list ul {
    margin: 0 0 0.75em 0;
    padding: 0;
}

.item-list ul li {
    margin: 0 0 0.25em 1.5em;
    /* LTR */
    padding: 0;
}

/**
 * Markup generated by Form API.
 */
.form-item,
.form-actions {
    margin-top: 1em;
    margin-bottom: 1em;
}

tr.odd .form-item,
tr.even .form-item {
    margin-top: 0;
    margin-bottom: 0;
    white-space: nowrap;
}

.form-item .description {
    font-size: 0.85em;
}

label {
    display: block;
    font-weight: bold;
}

label.option {
    display: inline;
    font-weight: normal;
}

.form-checkboxes .form-item,
.form-radios .form-item {
    margin-top: 0.4em;
    margin-bottom: 0.4em;
}

.form-type-radio .description,
.form-type-checkbox .description {
    margin-left: 2.4em;
}

input.form-checkbox,
input.form-radio {
    vertical-align: middle;
}

.marker,
.form-required {
    color: #f00;
}

.form-item input.error,
.form-item textarea.error,
.form-item select.error {
    border: 2px solid red;
}

/**
 * Inline items.
 */
.container-inline .form-actions,
.container-inline.form-actions {
    margin-top: 0;
    margin-bottom: 0;
}

/**
 * Markup generated by theme_more_link().
 */
.more-link {
    text-align: right;
    /* LTR */
}

/**
 * Markup generated by theme_more_help_link().
 */
.more-help-link {
    text-align: right;
    /* LTR */
}

.more-help-link a {
    background: url(../img/help.png) 0 50% no-repeat;
    /* LTR */
    padding: 1px 0 1px 20px;
    /* LTR */
}

/**
 * Markup generated by theme_pager().
 */
.item-list .pager {
    clear: both;
    text-align: center;
}

.item-list .pager li {
    background-image: none;
    display: inline;
    list-style-type: none;
    padding: 0.5em;
}

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

/**
 * Autocomplete.
 *
 * @see autocomplete.js
 */
/* Suggestion list */
#autocomplete li.selected {
    background: #0072b9;
    color: #fff;
}

/**
 * Collapsible fieldsets.
 *
 * @see collapse.js
 */
html.js fieldset.collapsible .fieldset-legend {
    background: url(../img/menu-expanded.png) 5px 65% no-repeat;
    /* LTR */
    padding-left: 15px;
    /* LTR */
}

html.js fieldset.collapsed .fieldset-legend {
    background-image: url(../img/menu-collapsed.png);
    /* LTR */
    background-position: 5px 50%;
    /* LTR */
}

.fieldset-legend span.summary {
    color: #999;
    font-size: 0.9em;
    margin-left: 0.5em;
}

/**
 * TableDrag behavior.
 *
 * @see tabledrag.js
 */
tr.drag {
    background-color: #fffff0;
}

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

.tabledrag-toggle-weight {
    font-size: 0.9em;
}

body div.tabledrag-changed-warning {
    margin-bottom: 0.5em;
}

/**
 * TableSelect behavior.
 *
 * @see tableselect.js
*/
tr.selected td {
    background: #ffc;
}

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

/**
 * Progress bar.
 *
 * @see progress.js
 */
.progress {
    font-weight: bold;
}

.progress .bar {
    background: #ccc;
    border-color: #666;
    margin: 0 0.2em;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.progress .filled {
    background: #0072b9 url(../img/progress.gif);
}

#comments {
    margin-top: 15px;
}

.indented {
    margin-left: 25px;
    /* LTR */
}

.comment-unpublished {
    background-color: #fff4f4;
}

.comment-preview {
    background-color: #ffffea;
}

/* Field display */
.field .field-label {
    font-weight: bold;
}

.field-label-inline .field-label,
.field-label-inline .field-items {
    float: left;
    /*LTR*/
}

/* Form display */
form .field-multiple-table {
    margin: 0;
}

form .field-multiple-table th.field-label {
    padding-left: 0;
    /*LTR*/
}

form .field-multiple-table td.field-multiple-drag {
    width: 30px;
    padding-right: 0;
    /*LTR*/
}

form .field-multiple-table td.field-multiple-drag a.tabledrag-handle {
    padding-right: .5em;
    /*LTR*/
}

form .field-add-more-submit {
    margin: .5em 0 0;
}

.node-unpublished {
    background-color: #fff4f4;
}

.preview .node {
    background-color: #ffffea;
}

td.revision-current {
    background: #ffc;
}

.search-form {
    margin-bottom: 1em;
}

.search-form input {
    margin-top: 0;
    margin-bottom: 0;
}

.search-results {
    list-style: none;
}

.search-results p {
    margin-top: 0;
}

.search-results .title {
    font-size: 1.2em;
}

.search-results li {
    margin-bottom: 1em;
}

.search-results .search-snippet-info {
    padding-left: 1em;
    /* LTR */
}

.search-results .search-info {
    font-size: 0.85em;
}

.search-advanced .criterion {
    float: left;
    /* LTR */
    margin-right: 2em;
    /* LTR */
}

.search-advanced .action {
    float: left;
    /* LTR */
    clear: left;
    /* LTR */
}

#permissions td.module {
    font-weight: bold;
}

#permissions td.permission {
    padding-left: 1.5em;
    /* LTR */
}

#permissions tr.odd .form-item,
#permissions tr.even .form-item {
    white-space: normal;
}

#user-admin-settings fieldset .fieldset-description {
    font-size: 0.85em;
    padding-bottom: .5em;
}

/**
 * Override default textfield float to put the "Add role" button next to
 * the input textfield.
 */
#user-admin-roles td.edit-name {
    clear: both;
}

#user-admin-roles .form-item-name {
    float: left;
    /* LTR */
    margin-right: 1em;
    /* LTR */
}

/**
 * Password strength indicator.
 */
.password-strength {
    width: 17em;
    float: right;
    /* LTR */
    margin-top: 1.4em;
}

.password-strength-title {
    display: inline;
}

.password-strength-text {
    float: right;
    /* LTR */
    font-weight: bold;
}

.password-indicator {
    background-color: #C4C4C4;
    height: 0.3em;
    width: 100%;
}

.password-indicator div {
    height: 100%;
    width: 0%;
    background-color: #47C965;
}

input.password-confirm,
input.password-field {
    width: 16em;
    margin-bottom: 0.4em;
}

div.password-confirm {
    float: right;
    /* LTR */
    margin-top: 1.5em;
    visibility: hidden;
    width: 17em;
}

div.form-item div.password-suggestions {
    padding: 0.2em 0.5em;
    margin: 0.7em 0;
    width: 38.5em;
    border: 1px solid #B4B4B4;
}

div.password-suggestions ul {
    margin-bottom: 0;
}

.confirm-parent,
.password-parent {
    clear: left;
    /* LTR */
    margin: 0;
    width: 36.3em;
}

/* Generated by user.module but used by profile.module: */
.profile {
    clear: both;
    margin: 1em 0;
}

.profile .user-picture {
    float: right;
    /* LTR */
    margin: 0 1em 1em 0;
    /* LTR */
}

.profile h3 {
    border-bottom: 1px solid #ccc;
}

.profile dl {
    margin: 0 0 1.5em 0;
}

.profile dt {
    margin: 0 0 0.2em 0;
    font-weight: bold;
}

.profile dd {
    margin: 0 0 1em 0;
}

#permissions td.module {
    font-weight: bold;
}

#permissions td.permission {
    padding-left: 1.5em;
    /* LTR */
}

#permissions tr.odd .form-item,
#permissions tr.even .form-item {
    white-space: normal;
}

#user-admin-settings fieldset .fieldset-description {
    font-size: 0.85em;
    padding-bottom: .5em;
}

/**
 * Override default textfield float to put the "Add role" button next to
 * the input textfield.
 */
#user-admin-roles td.edit-name {
    clear: both;
}

#user-admin-roles .form-item-name {
    float: left;
    /* LTR */
    margin-right: 1em;
    /* LTR */
}

/**
 * Password strength indicator.
 */
.password-strength {
    width: 17em;
    float: right;
    /* LTR */
    margin-top: 1.4em;
}

.password-strength-title {
    display: inline;
}

.password-strength-text {
    float: right;
    /* LTR */
    font-weight: bold;
}

.password-indicator {
    background-color: #C4C4C4;
    height: 0.3em;
    width: 100%;
}

.password-indicator div {
    height: 100%;
    width: 0%;
    background-color: #47C965;
}

input.password-confirm,
input.password-field {
    width: 16em;
    margin-bottom: 0.4em;
}

div.password-confirm {
    float: right;
    /* LTR */
    margin-top: 1.5em;
    visibility: hidden;
    width: 17em;
}

div.form-item div.password-suggestions {
    padding: 0.2em 0.5em;
    margin: 0.7em 0;
    width: 38.5em;
    border: 1px solid #B4B4B4;
}

div.password-suggestions ul {
    margin-bottom: 0;
}

.confirm-parent,
.password-parent {
    clear: left;
    /* LTR */
    margin: 0;
    width: 36.3em;
}

/* Generated by user.module but used by profile.module: */
.profile {
    clear: both;
    margin: 1em 0;
}

.profile .user-picture {
    float: right;
    /* LTR */
    margin: 0 1em 1em 0;
    /* LTR */
}

.profile h3 {
    border-bottom: 1px solid #ccc;
}

.profile dl {
    margin: 0 0 1.5em 0;
}

.profile dt {
    margin: 0 0 0.2em 0;
    font-weight: bold;
}

.profile dd {
    margin: 0 0 1em 0;
}

.rteindent1 {
    margin-left: 40px;
}

.rteindent2 {
    margin-left: 80px;
}

.rteindent3 {
    margin-left: 120px;
}

.rteindent4 {
    margin-left: 160px;
}

.rteleft {
    text-align: left;
}

.rteright {
    text-align: right;
}

.rtecenter {
    text-align: center;
}

.rtejustify {
    text-align: justify;
}

.ibimage_left {
    float: left;
}

.ibimage_right {
    float: right;
}

/* $Id: style.css,v 1.44.2.16 2011/01/06 09:45:33 danprobo Exp $ */

/* Body
-------------------------------------------------------------- */

body {
    background: url(../img/body-bg.gif) repeat-x #fff;
    font-size: 84%;
    font-family: Arial, Helvetica, sans-serif;
    color: #000;
    margin: 0;
    padding: 0;
    line-height: 1.5em;
}

/* Text elements
-------------------------------------------------------------- */

tr.odd td,
tr.even td {
    padding: 0.5em;
}

a {
    text-decoration: none;
}

a:link {
    color: #005a8c;
    /*#e87e17*/
    text-decoration: none;
}

a:visited {
    color: #005a8c;
    /*#e87e17*/
    text-decoration: none;
}

a:hover {
    color: #cc6600;
}

blockquote {
    background: url(../img/bq-tl.gif) no-repeat left top;
    padding-left: 30px;
    margin-left: 10px;
    font-style: italic;
}

blockquote p {
    background: url(../img/bq-br.gif) no-repeat right bottom;
}

cite {
    background: url(../img/bq-tl.gif) no-repeat left top;
    clear: both;
    display: block;
    font-style: italic;
    padding-left: 30px;
    margin-left: 10px;
}

code,
tt,
pre {
    background-color: #EDF1F3;
    font-family: "Bitstream Vera Sans Mono", Monaco, "Lucida Console", monospace;
    font-size: 0.9em;
    line-height: 1.2em;
}

/* Headings
-------------------------------------------------------------- */

h1 {
    font-size: 1.6em;
}

h2 {
    font-size: 1.5em;

}

h3 {
    font-size: 1.3em;
}

h4 {
    font-size: 1.2em;
}

h5 {
    font-size: 1.1em;
}

h6 {
    font-size: 1em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
}

/* Header regions
-------------------------------------------------------------- */

#skip-link {
    left: 50%;
    margin-left: -5.25em;
    margin-top: 0;
    position: absolute;
    width: auto !important;
    z-index: 50;
}

#skip-link a,
#skip-link a:link,
#skip-link a:visited {
    display: block;
    position: absolute;
    text-decoration: none;
    top: -10000px;
    width: 1px;
    height: 1px;
}

#header {
    height: 66px;
    position: relative;
    width: 950px;
    margin: 0 auto;
}

#logo-wrapper {
    float: left;
}

.logo {
    margin-top: 10px;
    margin-left: 15px;
}

.logo IMG {
    height: 50px;
}

#branding-wrapper {
    float: left;
    margin-top: 25px;
}

.site-name {
    display: inline;
    font-weight: bold;
    font-size: 25px;
    margin-left: 15px;
    position: relative;
    font-family: Verdana, Tahoma;
    font-style: italic;
}

.site-slogan {
    display: inline;
    font-weight: bold;
    position: relative;
    margin-left: 10px;
    font-family: Verdana, Tahoma;
}

#header-wrapper #search-box {
    margin: 4px 14px;
    position: absolute;
    right: 0;
    top: 30px;
    white-space: nowrap;
}

#header-wrapper #search-box input.form-text {
    width: 10em;
}

/* Primary menu + Superfish
-------------------------------------------------------------- */

#menu {
    height: 35px;
    background: url(../img/menu-bg.gif) repeat-x;
    width: 952px;
    margin: 0 auto;
}

#nav {
    height: 35px;
    background: url(../img/menu-bg.gif) repeat-x;
    float: left;
}

#nav li {
    float: left;
    background: url(../img/menu-separator.gif) no-repeat right top;
    height: 35px;
    padding: 0 1px 0 0;
}

#nav li a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    padding: 7px 29px 0 29px;
    display: inline-block;
    font-weight: bold;
    height: 25px;
    text-transform: uppercase;
}

#nav li a:hover {
    background: transparent url(../img/menu-hover-bg.gif) repeat-x;
}

#nav li.active-trail a {
    background: transparent url(../img/menu-hover-bg.gif) repeat-x;
}

#rounded-menu-left {
    height: 35px;
    background: transparent url(../img/menu-left-bg.gif) no-repeat;
    float: left;
    width: 1px;
    line-height: 0;
    font-size: 0;
}

#rounded-menu-right {
    height: 35px;
    background: url(../img/menu-right-bg.gif) no-repeat;
    float: right;
    width: 14px;
    line-height: 0;
    font-size: 0;
}

#nav ul,
#nav ul li.leaf {
    list-style-image: none;
    list-style: none;
}

#nav ul,
#nav .block ul,
#nav ol {
    margin: 0;
    padding: 0;
}

/* Superfish
-------------------------------------------------------------- */

#superfish {
    height: 35px;
    float: left;
}

#superfish .contextual-links-region {
    float: left;
    z-index: 6;
}

#superfish h2 {
    height: 0;
    overflow: hidden;
    position: absolute;
}

#superfish .menu,
#superfish .menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

#superfish .menu {
    line-height: 1.0;
}

#superfish .menu ul {
    position: absolute;
    top: -999em;
    width: 13em;
}

#superfish .menu ul li {
    width: 100%;
}

#superfish .menu li:hover {
    visibility: inherit;
}

#superfish .menu li {
    float: left;
    position: relative;
}

#superfish .menu a {
    display: block;
    position: relative;
}

#superfish .menu li:hover ul,
#superfish .menu li.sfHover ul {
    left: 0;
    top: 32px;
    z-index: 99;
}

#superfish ul.menu li:hover li ul,
#superfish ul.menu li.sfHover li ul {
    top: -999em;
}

#superfish ul.menu li li:hover ul,
#superfish ul.menu li li.sfHover ul {
    left: 13em;
    top: 0;
}

#superfish ul.menu li li:hover li ul,
#superfish ul.menu li li.sfHover li ul {
    top: -999em;
}

#superfish ul.menu li li li:hover ul,
#superfish ul.menu li li li.sfHover ul {
    left: 13em;
    top: 0;
}

#superfish .menu {
    float: left;
    margin-bottom: 1em;
}

#superfish .menu a {
    padding: .75em 1em;
    text-decoration: none;
}

#superfish .menu a.sf-with-ul {
    padding-right: 2.25em;
    min-width: 1px;
}

#superfish .menu a,
#superfish .menu a:visited {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    padding-right: 30px;
    padding-left: 30px;
    padding-top: 11px;
}

#superfish .menu li {
    background: transparent;
}

#superfish .menu li li {
    background: #3b6999;
}

#superfish .menu li li li {
    background: #3b6999;
    top: 0px;
}

#superfish .menu li:hover,
#superfish .menu li.sfHover,
#superfish .menu a:focus,
#superfish .menu a:hover,
#superfish .menu a:active {
    outline: 0;
}

#superfish .menu li:hover,
#superfish .menu li.sfHover,
#superfish .menu a:focus,
#superfish .menu a:hover,
#superfish .menu a:active {
    z-index: 10;
}

#superfish .menu li:hover {
    background: transparent url(../img/menu-hover-bg.gif) repeat-x;
}

#superfish .menu li.active-trail {
    background: transparent url(../img/menu-hover-bg.gif) repeat-x;
}

#superfish .menu li.active-trail li {
    background: #3b6999;
}

#superfish .menu li li:hover {
    background: #3b6999;
}

#superfish .menu li li li:hover {
    background: #3b6999;
}

.sf-sub-indicator {
    position: absolute;
    display: block;
    right: .75em;
    top: 1.05em;
    width: 10px;
    height: 10px;
    text-indent: -999em;
    overflow: hidden;
    background: url(../img/arrows-ffffff.png) no-repeat -10px -100px;
}

a>.sf-sub-indicator {
    top: .8em;
    background-position: 0 -100px;
}

a:focus>.sf-sub-indicator,
a:hover>.sf-sub-indicator,
a:active>.sf-sub-indicator,
li:hover>a>.sf-sub-indicator,
li.sfHover>a>.sf-sub-indicator {
    background-position: -10px -100px;
}

#superfish .menu ul .sf-sub-indicator {
    background-position: -10px 0;
}

#superfish .menu ul a>.sf-sub-indicator {
    background-position: 0 0;
}

#superfish .menu ul a:focus>.sf-sub-indicator,
#superfish .menu ul a:hover>.sf-sub-indicator,
#superfish .menu ul a:active>.sf-sub-indicator,
#superfish .menu ul li:hover>a>.sf-sub-indicator,
#superfish .menu ul li.sfHover>a>.sf-sub-indicator {
    background-position: -10px 0;
}

#superfish .sf-shadow ul {
    background: url(../img/shadow.png) no-repeat bottom right;
    padding: 0 8px 9px 0;
}

#superfish .sf-shadow ul.sf-shadow-off {
    background: transparent;
}

/* slideshow + Preface top + Slideshow
-------------------------------------------------------------- */

#slideshow-wrapper {
    width: 100%;
    background: transparent url(../img/slideshow-shadow.gif) no-repeat center bottom;
    height: 420px;
    margin-bottom: -45px;
    margin-top: 14px;
}

.slideshow-inner {
    width: 950px;
    margin: 0 auto;
    height: 355px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

#slideshow-preface {
    float: left;
    position: absolute;
    text-align: left;
    z-index: 4;
}

.slideshow {
    width: 950px;
    height: 355px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

#preface {
    margin: 20px;
    font-size: 1.2em;
    color: #fff;
    display: block;
    float: left;
}

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

#preface .block-title {
    margin-top: 20px;
}

#preface .region {
    margin: 20px 0;
}

#preface a {
    color: #fff;
    text-decoration: underline;
}

#preface a:hover {
    text-decoration: none;
}

#slideshow-bottom {
    width: 950px;
    float: left;
    background: url(../img/mission-bg.png) no-repeat center bottom;
    min-height: 65px;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: right;
    z-index: 3;
}

/* Preface first + Preface middle + Preface last regions
-------------------------------------------------------------- */

#preface-wrapper {
    width: 950px;
    margin: 5px auto 0;
}

#preface-wrapper .column {
    float: left;
}

#preface-wrapper.in1 .column {
    width: 100%;
}

#preface-wrapper.in2 .column {
    width: 50%;
}

#preface-wrapper.in3 .column {
    width: 33.3%;
}

#preface-wrapper .block {
    margin: 0 15px;
}

#preface-wrapper .block-title {
    margin-top: 15px;
}

#preface-wrapper .region {
    margin: 15px 0;
}

#mission {
    font-size: 1.6em;
    color: #002054;
    display: block;
    float: right;
    line-height: 1.2em;
}

#mission .contextual-links {
    font-size: 84%;
}

#mission .block-title {
    margin-top: 20px;
}

#mission .region {
    margin: 20px;
}

/* Content regions
-------------------------------------------------------------- */

#wrapper {
    width: 950px;
    margin: 15px auto 0;
}

#content {
    width: 100%;
    float: left;
}

/* Sidebar regions
-------------------------------------------------------------- */

#layout-type-1 #sidebar-left {
    width: 26%;
    float: left;
    font-size: 12px;
}

#layout-type-2 #sidebar-left {
    width: 21%;
    float: left;
    margin-right: 2%;
    font-size: 12px;
}

.one-sidebar #content {
    width: 69%;
    margin-left: 25px;
    float: left;
}

.two-sidebars #content {
    width: 54%;
    float: left;
}

#layout-type-1 #sidebar-right {
    width: 26%;
    float: right;
    font-size: 12px;
}

#layout-type-2 #sidebar-right {
    width: 21%;
    float: right;
    font-size: 12px;
}

#sidebar-left h2.block-title,
#sidebar-right h2.block-title {
    background: #e6e6e6;
    margin: 0;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 1.3em;
}

#sidebar-left .content,
#sidebar-right .content {
    padding: 5px 15px;
}

.sidebar .block {
    background-color: #f4f4f4;
    border-right: 1px solid #bbb;
    border-bottom: 1px solid #bbb;
    border-left: 1px solid #ddd;
    border-top: 1px solid #ddd;
    margin: 0 0 15px;
}

.sidebar tbody {
    border: none;
}

.sidebar tr.even,
.sidebar tr.odd {
    background: none;
}

/* Misc.
-------------------------------------------------------------- */

#help {
    font-size: 0.9em;
    margin-bottom: 1em;
}

.error {
    border-color: red;
}

.terms {
    background-repeat: no-repeat;
    margin-left: 18px;
    margin-bottom: 5px;
}

#notice {
    font-size: 10px;
    text-align: center;
    margin-bottom: -10px;
}

table {
    width: 100%;
}

div.contextual-links-wrapper {
    font-size: 100%;
}

/* Nodes
-------------------------------------------------------------- */

#first-time {
    margin-bottom: 10px;
}

.node {
    border-bottom: 1px solid #bbb;
    margin: 20px 0;
    padding-bottom: 15px;
}

.content-top {
    border-bottom: 1px solid #bbb;
    border-right: 1px solid #bbb;
    border-left: 1px solid #ddd;
    border-top: 1px solid #ddd;
    background-color: #f4f4f4;
    margin: 0 0 20px;
}

.content-top .block-title {
    margin-top: 15px;
}

.content-top .region {
    margin: 15px;
}

.content-middle .block-system {
    margin: 0;
}

.content-middle .block-block {
    margin: 0;
}

.content-middle .block-block .block-title {
    margin-top: 15px;
}

.content-middle .block-block .content {
    margin: 15px 0;
}

.content-bottom {
    border-bottom: 1px solid #bbb;
    border-right: 1px solid #bbb;
    border-left: 1px solid #ddd;
    border-top: 1px solid #ddd;
    background-color: #f4f4f4;
    margin: 20px 0 0;
}

.content-bottom .block-title {
    margin-top: 15px;
}

.content-bottom .region {
    margin: 15px;
}

.title,
.title a {
    margin: 0 auto;
    line-height: 1.2em;
}

.node .content,
.comment .content {
    margin: .5em 0 .5em;
}

.node .taxonomy {
    color: #999;
    font-size: 0.9em;
    padding-left: 1em;
}

.node .user-picture,
.comment .user-picture {
    float: right;
    margin-left: 10px;
}

.node .user-picture img,
.comment .user-picture img {
    width: 60px;
}

.node-book .links {
    padding-top: 5px;
}

.preview .node,
.preview .comment {
    background-color: #f4f4f4;
    ;
    border-right: 1px solid #bbb;
    border-bottom: 1px solid #bbb;
    border-left: 1px solid #ddd;
    border-top: 1px solid #ddd;
    padding: 0.8em;
}

.submitted {
    font-size: 0.9em;
    color: #999;
}

.submitted a:hover {
    text-decoration: underline;
}

.node-sticky {
    padding: 1em;
    background-color: #f4f4f4;
    border-right: 1px solid #bbb;
    border-bottom: 1px solid #bbb;
    border-left: 1px solid #ddd;
    border-top: 1px solid #ddd;
    margin: 0;
}

.messages {
    background-color: #f4f4f4;
    border-right: 1px solid #bbb;
    border-bottom: 1px solid #bbb;
    border-left: 1px solid #ddd;
    border-top: 1px solid #ddd;
    padding: 0.3em;
    margin-bottom: 1em;
}

.breadcrumb {
    background-color: #f4f4f4;
    border-right: 1px solid #bbb;
    border-bottom: 1px solid #bbb;
    border-left: 1px solid #ddd;
    border-top: 1px solid #ddd;
    margin-bottom: 1em;
    padding: 0.3em 10px;
}

.field-type-taxonomy-term-reference .field-label,
.field-type-taxonomy-term-reference .field-items,
.field-type-taxonomy-term-reference .field-item {
    display: inline;
    float: left;
    font-weight: normal;
    padding-right: 10px;
}

/* Comments
-------------------------------------------------------------- */

.comment {
    background-color: #f4f4f4;
    border-right: 1px solid #bbb;
    border-bottom: 1px solid #bbb;
    border-left: 1px solid #ddd;
    border-top: 1px solid #ddd;
    padding: 1em;
    margin: 1em 0;
}

.comment .title {
    line-height: 1.2em;
}

.comment .new {
    text-align: right;
    font-weight: normal;
    float: right;
    color: red;
    margin: .5em;
}

/* Aggregator
-------------------------------------------------------------- */

.feed-item-body {
    border-bottom: 1px solid #bbb;
    padding-bottom: 1em;
}

#aggregator .feed-source {
    background-color: #f4f4f4;
    border-right: 1px solid #bbb;
    border-bottom: 1px solid #bbb;
    border-left: 1px solid #ddd;
    border-top: 1px solid #ddd;
    padding: 0.8em;
}

#aggregator h1 .title {
    border-bottom: 1px solid #bbb;
}

#aggregator h2 {
    padding-top: 10px;
}

#aggregator .news-item .categories,
#aggregator .source,
#aggregator .age {
    color: #999;
    font-style: italic;
}

.feed-item-title {
    font-size: 1.4em;
}

#aggregator h3 a:hover {
    text-decoration: none;
}

.feed-item-meta .feed-item-source {
    font-size: 0.9em;
}

.feed-item-meta .feed-item-date {
    font-size: 0.9em;
    color: #999;
}

/* Forums
-------------------------------------------------------------- */

#forum table {
    width: 100%;
}

#forum td {
    padding: 0.5em;
}

#forum td.container {
    background-color: #e6e6e6;
}

#forum ul.links a {
    background-repeat: no-repeat;
    padding-left: 20px;
    padding-bottom: 5px;
}

#forum ul.links li.forum a {
    background-image: url(../img/post.gif);
}

#forum ul.links li.login a {
    background-image: url(../img/lock.gif);
}

#forum td.statistics,
#forum td.settings,
#forum td.pager {
    height: 1em;
    border: 1px solid #bbb;
}

#forum td .links {
    padding-top: 0.7em;
}

.block-forum h3 {
    margin-bottom: .5em;
}

dl dd {
    margin: 0 0 .5em 1em;
}

tr.odd {
    background-color: #f4f4f4;
}

tr.even {
    background-color: #fcfcfc;
}

th {
    text-align: left;
    background: #E6E6E6;
}

tr td,
tr th {
    border: 1px solid #bbb;
    padding: 0 6px;
}

/* Tracker + Profile
-------------------------------------------------------------- */

#tracker table {
    width: 100%;
}

#tracker td {
    padding: 0.5em;
}

.profile {
    clear: both;
    border-right: 1px solid #bbb;
    border-bottom: 1px solid #bbb;
    border-left: 1px solid #ddd;
    border-top: 1px solid #ddd;
    padding: .8em;
    margin: 1em 0em;
    background-color: #f4f4f4;
    ;
}

.profile h3 {
    margin-bottom: 10px;
}

/* Admin
-------------------------------------------------------------- */

div.admin-panel .body {
    background: #f4f4f4;
    border-right: 1px solid #bbb;
    border-bottom: 1px solid #bbb;
    border-left: 1px solid #ddd;
    border-top: 1px solid #ddd;
}

div.admin-panel h3 {
    background-color: #e6e6e6;
    ;
    border-right: 1px solid #bbb;
    border-bottom: 1px solid #bbb;
    border-left: 1px solid #ddd;
    border-top: 1px solid #ddd;
    padding: 5px 8px 5px;
    margin: 0;
}

div.admin {
    padding-top: 0;
}

div.admin .left,
div.admin .right {
    margin-left: 1%;
    margin-right: 1%;
}

/* Poll
-------------------------------------------------------------- */

.poll .bar {
    background: #fff url(../img/bg-bar-white.png) repeat-x 0 0;
    border: solid #f0f0f0;
    border-width: 1px 1px 1px;
}

.poll .bar .foreground {
    background: #71a7cc url(../img/bg-bar.png) repeat-x 0 100%;
}

/* Lists + Links + Pager
-------------------------------------------------------------- */

ul,
.block ul,
ol {
    margin: 0.5em 0 1em;
    padding: 0 0 0 1.5em;
}

ul,
ul li.leaf {
    list-style-image: url(../img/menu-leaf.gif);
}

ol {
    list-style-image: none;
}

ul.menu,
.item-list ul {
    margin: 0.35em 0 0 -0.5em;
}

ol li,
ul li,
ul.menu li,
.item-list ul li,
li.leaf {
    margin: 0.15em 0 0.15em .5em;
    padding-bottom: .1em;
}

ul li.expanded {
    list-style-image: url(../img/menu-expanded.gif);
}

ul li.collapsed {
    list-style-image: url(../img/menu-collapsed.gif);
    /* LTR */
}

ul li.leaf a,
ul li.expanded a,
ul li.collapsed a {
    display: block;
}

ul.inline li {
    background: none;
    margin: 0;
    padding: 0 1em 0 0;
}

ol.task-list {
    margin-left: 0;
    list-style-type: none;
    list-style-image: none;
}

ol.task-list li {
    padding: 0.5em 1em 0.5em 2em;
}

ol.task-list li.active {
    background: transparent url(../img/task-list.png) no-repeat 3px 50%;
}

ol.task-list li.done {
    color: #393;
    background: transparent url(../img/watchdog-ok.png) no-repeat 0px 50%;
}

ol.task-list li.active {
    margin-right: 1em;
}

fieldset ul.clearfix li {
    margin: 0;
    padding: 0;
    background-image: none;
}

#user-login-form {
    text-align: center;
}

#user-login-form ul {
    text-align: left;
}

ul.links li,
ul.inline li {
    background-image: none;
}

.links li {
    margin: 0;
    padding: 0;
}

.tabs li {
    margin: 0;
    padding: 0;
    background-image: none;
}

li.expanded {
    list-style-image: none;
    list-style-type: none;
    margin: 0.15em 0 0.15em 0.5em;
}

div.links ul.links a {
    background-repeat: no-repeat;
    padding-left: 20px;
}

div.comment ul.links a {
    background-repeat: no-repeat;
    padding-left: 20px;
}

div.links ul.links li.comment_forbidden a {
    padding: 0;
    margin: 0;
}

div.links ul.links li.comment_forbidden {
    padding: 0;
    margin: 0;
}

div.comment ul.links li.comment_forbidden a {
    padding: 0;
    margin: 0;
}

div.comment ul.links li.comment_forbidden {
    padding: 0;
    margin: 0;
}

div.links ul.links li.comment_forbidden span {
    background-repeat: no-repeat;
    padding-left: 20px;
    padding-right: 20px;
}

div.comment ul.links li.comment_forbidden span {
    background-repeat: no-repeat;
    padding-left: 20px;
    padding-right: 20px;
}

div.links ul.links li.comment-add a {
    background-image: url(../img/commentadd.gif);
}

div.links ul.links li.comment-comments a {
    background-image: url(../img/comments.gif);
}

div.links ul.links li.comment-new-comments a {
    background-image: url(../img/comments.gif);
}

div.comment ul.links li.comment-edit a {
    background-image: url(../img/commentedit.gif);
}

div.comment ul.links li.comment-delete a {
    background-image: url(../img/commentdelete.gif);
}

div.comment ul.links li.comment-reply a {
    background-image: url(../img/commentadd.gif);
}

div.links ul.links li.node-readmore a {
    background-image: url(../img/readmore.gif);
}

div.links ul.links li.blog_usernames_blog a {
    background-image: url(../img/user.gif);
}

div.links ul.links li.comment_forbidden span {
    background-image: url(../img/lock.gif);
}

div.comment ul.links li.comment_forbidden span {
    background-image: url(../img/lock.gif);
}

div.links ul.links li.upload_attachments a {
    background-image: url(../img/photo.gif);
}

div.links ul.links li.book_printer a {
    background-image: url(../img/print.gif);
}

div.links ul.links li.book_add_child a {
    background-image: url(../img/add.gif);
}

ul.pager li.pager-current {
    background-color: #005a8c;
    color: #FFFFFF;
    padding-left: 4px;
    padding-right: 4px;
    padding-top: 1px;
    padding-bottom: 1px;
}

.item-list .pager li {
    padding: 0px;
}

.item-list .pager li a {
    padding-left: 4px;
    padding-right: 4px;
    padding-top: 1px;
    padding-bottom: 1px;
    background-color: #f4f4f4;
    ;
}

.item-list .pager li a:hover {
    background-color: #005a8c;
    color: #FFFFFF;
}

ul.links li,
ul.inline li {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 1em;
    background-image: none;
}

.node .links,
.comment .links {
    text-align: left;
    padding-left: 0;
    padding-top: 5px;
}

ul.primary li a {
    background-color: #f4f4f4;
    border-color: #ccc;
    border-style: solid solid none;
    border-width: 1px;
    height: auto;
    margin-right: 0.5em;
    padding: 0 1em;
    text-decoration: none;
}

.book-navigation .menu {
    border-top: 1px solid #bbb;
    margin: 0;
    padding: 10px 20px;
}

.book-navigation .page-links {
    border-bottom: 1px solid #bbb;
    border-top: 1px solid #bbb;
    padding: 0.5em;
    text-align: center;
}

.filter-wrapper {
    border: 1px solid #bbb;
    border-top: none;
}

.search-advanced {
    border: 1px solid #bbb;
}

.compose-tips {
    margin-top: 10px;
}


/* Login + Register + RSS
-------------------------------------------------------------- */



#authorize {
    float: right;
    margin: 5px 10px 0;
}

#authorize ul {
    display: inline;
}

#authorize ul li {
    margin: 0 10px 0 0;
    padding: 0 0 0 10px;
    display: inline;
    list-style: none;
    border-left: 1px #5a5a5a solid;
    background-image: none;
}

#authorize ul li.first {
    border: 0;
}

#authorize ul li,
#authorize ul li a {
    font-size: 12px;
    line-height: 13px;
}

.feed-wrapper {
    float: right;
    margin-top: 7px;
    margin-right: 20px;
}

/* Bottom teaser
-------------------------------------------------------------- */

#bottom-teaser {
    width: 950px;
    margin: 15px auto 0;
}

#bottom-teaser .column {
    float: left;
}

#bottom-teaser.in1 .column {
    width: 100%;
}

#bottom-teaser.in2 .column {
    width: 50%;
}

#bottom-teaser.in3 .column {
    width: 33.3%;
}

#bottom-teaser .block {
    margin: 0 15px;
}

#bottom-teaser .block-title {
    margin-top: 15px;
}

#bottom-teaser .region {
    margin: 15px 0;
}


/* Bottom region
-------------------------------------------------------------- */

#bottom-wrapper {
    background-color: #f4f4f4;
    ;
    border-right: 1px solid #bbb;
    border-left: 1px solid #ddd;
    border-top: 1px solid #ddd;
    margin: 20px auto 0;
    text-align: left;
    width: 950px;
    position: relative;
}

#bottom-wrapper .column {
    float: left;
}

#bottom-wrapper.in1 .column {
    width: 100%;
}

#bottom-wrapper.in2 .column {
    width: 50%;
}

#bottom-wrapper.in3 .column {
    width: 33.3%;
}

#bottom-wrapper.in4 .column {
    width: 25%;
}

#bottom-wrapper .block {
    margin: 0 15px;
}

#bottom-wrapper .block-title {
    margin-top: 15px;
    font-size: 1.3em;
}

#bottom-wrapper .region {
    margin: 15px 0;
}

/* Footer region
-------------------------------------------------------------- */

#footer-wrapper {
    width: 950px;
    margin: 0 auto;
    position: relative;
    border-top: 1px solid #bbb;
    padding: 10px 0 0;
}

#footer {
    width: 950px;
    font-size: 12px;
}

#footer .block-title {
    margin-top: 15px;
}

#footer .region {
    margin: 15px 0;
}

/* Secondary menu
-------------------------------------------------------------- */

#subnav {
    font-size: 12px;
}

#subnav li {}

#subnav li a {
    font-weight: normal;
}

#subnav li a:hover {
    color: #cc6600;
}

#subnav-wrapper {
    text-align: right;
}

#subnav-wrapper ul {
    display: inline;
}

#subnav-wrapper ul li {
    display: inline;
    list-style: none;
    background-image: none;
    padding-left: 5px;
}

#subnav-wrapper ul li,
#subnav-wrapper ul li a {
    font-size: 12px;
    line-height: 13px;
}

/* Overlay
-------------------------------------------------------------- */

.overlay #header,
.overlay #menu,
.overlay .block-block,
.overlay #bottom-teaser,
.overlay #bottom-wrapper,
.overlay #footer-wrapper {
    display: none;
}

.overlay #wrapper {
    width: 98%;
}

.theme-info ul {
    list-style-image: none;
}

