/**
 * @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(../../misc/throbber-inactive.png);
    background-position: 100% center;
    /* LTR */
    background-repeat: no-repeat
    }
html.js input.throbbing {
    background-image: url(../../misc/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(../../misc/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(../../misc/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(../../misc/tree.png) no-repeat 11px center;
    /* LTR */
    }
div.tree-child-last {
    background: url(../../misc/tree-bottom.png) no-repeat 11px center;
    /* LTR */
    }
div.tree-child-horizontal {
    background: url(../../misc/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(../../misc/throbber-active.gif) no-repeat 0 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(../../misc/menu-expanded.png);
    list-style-type: circle
    }
ul li.collapsed {
    list-style-image: url(../../misc/menu-collapsed.png);
    /* LTR */
    list-style-type: disc
    }
ul li.leaf {
    list-style-image: url(../../misc/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(../../misc/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(../../misc/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(../../misc/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
    }