/**
 * The default CSS theme for Shadowbox.
 *
 * This file is part of Shadowbox.
 *
 * Shadowbox is an online media viewing application that supports all of the
 * most popular web publishing formats. Shadowbox is written entirely in
 * JavaScript and CSS and is highly customizable.
 *
 * Shadowbox is released under version 3.0 of the Creative Commons Attribution-
 * Noncommercial-Share Alike license. This means that it is absolutely free
 * for personal, noncommercial use provided that you 1) make attribution to the
 * author and 2) release any derivative work under the same or a similar
 * license.
 *
 * If you wish to use Shadowbox for commercial purposes, licensing information
 * can be found at http://mjijackson.com/shadowbox/.
 *
 * @author      Michael J. I. Jackson <mjijackson@gmail.com>
 * @copyright   2007-2008 Michael J. I. Jackson
 * @license     http://creativecommons.org/licenses/by-nc-sa/3.0/
 * @version     SVN: $Id$
 */

/*_________________________________________________________________  overlay  */
#shadowbox_overlay {
  visibility: hidden;
  position: absolute;
  display: block;
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
  z-index: 998;
}

/*_______________________________________________________________  container  */
#shadowbox_container {
  position: fixed;
  height: 0px;
  width: 100%;
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
  z-index: 999;
  text-align: center; /* centers in quirks and IE */
}

/*_______________________________________________________________  shadowbox  */
#shadowbox {
  display: none;
  visibility: hidden;
  margin: 0 auto;
  position: relative;
  text-align: left; /* reset left alignment */
  color: #fff;
/*  background-color: #000;*/
  border-bottom: 10px solid white;
}

/*___________________________________________________________________  title  */
/*
HTML snapshot:
<div id="shadowbox_title">
  <div id="shadowbox_title_inner">Title Here</div>
</div>
*/
#shadowbox_title {
  padding-left: 0;
  overflow: visible;
  background: white;
}

#shadowbox_title_close {
    float: right;
    margin: 0.5em 1em 0 0;
    position: absolute;
    top: -18px;
    right: -22px;
}

#shadowbox_title a{
    text-decoration: none;
}

#shadowbox_title_inner {
  font-family: 'Arial', 'Lucida Grande', Tahoma, sans-serif;
  font-size: 22px;
  text-align: center;
  line-height: 24px;
  padding: 18px 5px 10px 10px;
  color: #999;
}

/*____________________________________________________________________  body  */
/*
HTML snapsnot:
<div id="shadowbox_body">
  <div id="shadowbox_body_inner">
    <img src="my_image.jpg" id="shadowbox_content" height="350" width="580">
  </div>
  <div id="shadowbox_loading">
    <img src="images/loading.gif" alt="loading"></div>
    <span><a href="javascript:Shadowbox.close();">Cancel</a></span>
  </div>
</div>
*/
#shadowbox_body {
  position: relative;
  overflow: hidden;
/*  margin: 0;*/
/*  padding: 0;*/
  border: 10px solid #fff;
  background-color: #fff;
  color: #f7ebd3; 
}
#shadowbox_body_inner {
  position: relative;
  overflow: hidden;
}
#shadowbox_loading {
  position: absolute;
  top: 0;
  left: 0;
  height: 10000px; /* overflow:hidden will clip this */
  width: 100%;
  background-color: #060606;
}
#shadowbox_loading img {
  float: left;
  margin: 10px 10px 0 10px;
}
#shadowbox_loading span {
  font-family: 'Lucida Grande', Tahoma, sans-serif;
  font-size: 10px;
  float: left;
  margin-top: 16px;
}
#shadowbox_loading span a:link,
#shadowbox_loading span a:visited {
  color: #fff;
  text-decoration: underline;
}
#shadowbox_content.html { /* make html content scrollable */
  height: 100%;
  width: 100%;
  overflow: auto;
}

/*_________________________________________________________________  toolbar  */
/*
HTML snapshot:
<div id="shadowbox_toolbar">
  <div id="shadowbox_toolbar_inner">
    <div id="shadowbox_nav_close" class="shadowbox_nav">
      <a onclick="Shadowbox.close();" title="Close" style="background-image: url('/media/merengue/css/close.png'); background-repeat: no-repeat;"></a>
    </div>
    <div id="shadowbox_nav_next" class="shadowbox_nav">
      <a onclick="Shadowbox.next();" title="Next" style="background-image: url('/media/merengue/css/next.png'); background-repeat: no-repeat;"></a>
    </div>
    <div id="shadowbox_nav_previous" class="shadowbox_nav">
      <a onclick="Shadowbox.previous();" title="Previous" style="background-image: url('/media/merengue/css/previous.png'); background-repeat: no-repeat;"></a>
    </div>
    <div id="shadowbox_counter">
      <a href="javascript:Shadowbox.change(0);">1</a>
      <a href="javascript:Shadowbox.change(1);" class="shadowbox_counter_current">2</a>
      <a href="javascript:Shadowbox.change(2);">3</a>
    </div>
  </div>
</div>
*/

#shadowbox_toolbar {
/* margin: 0; */
  padding:0;
 /* padding-bottom: 5px;*/
/*   overflow: hidden; */
  width:100%;
  border-collapse:collapse;
}

#shadowbox_toolbar .shadowbox_nav_caption {
  float: left;
  padding: 0px 10px;
  text-align: left;
  color: #a0a0a0;
  background-color: white;
  font-weight: bold;
}

#shadowbox_toolbar_inner {
  font-family: 'Lucida Grande', Tahoma, sans-serif;
  font-size: 12px;
  color: #000;
  background-color: white;
  margin: 0;
  padding: 15px 0 15px 10px;
  overflow: auto;
}

#shadowbox_toolbar_inner span {
  vertical-align: middle;
}

#shadowbox_nav_buttons {
  text-align: right;
}

#shadowbox_toolbar_inner span span.shortcut {
  text-decoration: underline;
  font-weight: bold;
  display: inline;
}

#shadow_conter{
    padding-left: 10px;
}

#shadowbox_counter {
    margin-top: 10px;
    padding-top: 0px;
}

#shadowbox_counter a {
    border-right: 2px solid #dddddd;
    border-top: 2px solid #dddddd;
    margin-right: 4px;
}

#shadowbox_counter a:visited,
#shadowbox_counter a:hover,
#shadowbox_counter a,
#shadowbox_toolbar_inner span a {
  text-decoration: none;
  color: #3fb2c9;
}



.shadowbox_nav {
  float: right;
  display: inline;
  margin-left: 3px;
}

.shadowbox_nav_close {
  float:right;
  margin-top: 2px;
  margin-left: 20px;
}

#shadowbox_nav_buttons{
  padding-right: 10px;
  float:right;
  width: 130px;
}


.shadowbox_nav a {
  display: block;
  height: 16px;
  width: 16px;
  cursor: pointer;
}
#shadowbox_counter a {
  padding: 2px 4px 0 0;
  cursor: pointer;
}
#shadowbox_counter a.shadowbox_counter_current {
  text-decoration: underline;
  color: #a6a6a6;
  border: none;
}

/*________________________________________________________________  messages  */
div.shadowbox_message {
  font-family: 'Lucida Grande', Tahoma, sans-serif;
  font-size: 12px;
  padding: 10px;
  text-align: center;
}
div.shadowbox_message a:link,
div.shadowbox_message a:visited {
  color: #fff;
  text-decoration: underline;
}


/* shadow box form */
#shadowbox_body form div.field {
    margin-bottom: 1em;
}

#shadowbox_body form label {
    display: block;
    vertical-align: top;
    margin-bottom: 0.5em;
}

#shadowbox_body form span.helptext {
    display: block;
}

#shadowbox_body form ul {
    list-style: none;
    padding-left: 0;
}
.collaborative-comments-hidden-parameters {
    display: none;
}

.collaborative-comments-ui {
    display: none;
}

.collaborative-comments-outer-zone {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: black;
    filter: alpha(opacity=65);
    -moz-opacity: 0.65;
    opacity: 0.65;
}

.collaborative-comments-main {
    position: fixed;
    width: 50%;
    height: 80%;
    border: 1px solid black;
    top: 10%;
    left: 25%;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
    background: white;
    overflow: hidden;
    z-index: 20;
}

.collaborative-comments-main .collaborative-comments-title {
    padding: 0px 40px 10px;
    border-bottom: 1px dotted #CCCCCC;
}

.collaborative-comments-main .collaborative-comments-title h1 {
    line-height: 1.2em;
    height: 1.2em;
    overflow: hidden;
    margin-bottom: 0px;
}

.collaborative-comments-main .collaborative-comments-title h2 {
    margin: 0px;
}

.collaborative-comments-folder-selector {
    border-bottom: 1px solid #cccccc;
    padding: 0px;
    margin: 0px;
    position: absolute;
    width: 100%;
    top: 90px;
    height: 20px;
}

.collaborative-comments-folder-selector ul {
    position: absolute;
    bottom: 0px;
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}

.collaborative-comments-folder-selector ul li {
    display: inline;
    margin: 0px;
    padding: 0px;
}

.collaborative-comments-folder-selector ul li a {
    border: 1px solid #CCC;
    padding: 2px 30px;
    margin-left: 10px;
}

.collaborative-comments-folder-selector ul li.selected a {
    background: #E9EFF5;
    border-bottom: 1px solid #E9EFF5;
}

.collaborative-comments-item {
    background: white;
    border: 1px solid #ccc;
    margin: 10px 10px;
    padding: 10px 20px;
}

.collaborative-comments-main-close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-weight: bold;
    font-size: 1.5em;
}

.collaborative-comments-folder-active {
    background: #E9EFF5;
    position: absolute;
    overflow: auto;
    top: 111px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    height: auto;
}

.collaborative-comments-list {
    padding-bottom: 10px;
}

.collaborative-comments-add-comment {
    display: none;
    padding: 10px 20px;
}

.collaborative-comments-item-status {
    display: none;
}

.collaborative-comments-current-status {
    float: right;
    padding: 0px 0px 20px 10px;
}

.collaborative-comments-item-author {
    font-size: 0.8em;
    font-style: italic;
    margin-bottom: 1em;
}

.collaborative-comments-item-status-history {
    font-size: 0.8em;
    border: 1px solid #dddddd;
    margin: 1em 0px;
}

.collaborative-comments-item-status {
    margin: 1em 20px;
}


.collaborative-comments-item-status-short-comment,
.collaborative-comments-item-status-date {
    display: inline;
}

.collaborative-comments-item-status-date {
    color: gray;
}

.collaborative-comments-ui input,
.collaborative-comments-ui textarea,
.collaborative-comments-ui select {
    border: 1px solid #ccc;
    background: #FCF8E1;
}

.collaborative-comments-ui table th,
.collaborative-comments-ui table td {
    vertical-align: top;
    padding-bottom: 1em;
}

.collaborative-comments-ui table th {
    text-align: right;
}


.collaborative-comments-ui table {
    background: white;
    border: 1px solid #ccc;
    width: 100%;
    margin: 1em 0px;
    padding: 1em 0px;
}

.collaborative-comments-folder {
    font-size: 0.8em;
}

.collaborative-comments-ui table ul.errorlist{
    color: red;
}

.collab-comments-add-comment-form-message {
    color: green;
}

.collaborative-comments-item h1 {
    font-size: 1em;
    padding: 0px;
    margin: 0px;
}

.document-section-actions {
    display: none;
}

.document-section-actions-menu {
    width: 24px; 
    height: 24px;
    float: left;
    margin: 0px 0.5em 0px 0px;
    position: relative;
    overflow: hidden;
}

.document-section-actions-icons span,
.document-section-actions-icons a {
    display: block;
    text-align: center;
    width: 24px; 
    height: 24px;
    overflow: hidden;
}

.document-section-active .document-section-actions-menu {
    overflow: visible;
}

.document-section-active .document-section-actions-icons span,
.document-section-active .document-section-actions-icons a {
    background: white;
    border: 1px solid black;
    border-right-color: white;
    z-index: 30;
    position: relative;
}

.document-section-active .document-section-actions-icons .document-section-move-trigger {
    border-right-color: black;
    cursor: pointer;
}

.document-section-active .document-section-actions-icons .document-section-move-trigger img {
    margin-top: 4px;
}

.document-section {
    clear: left;
}

.document-section .mceEditor  {
    clear: both;
}

.document-section-actions {
    position: absolute;
    left: 25px;
    top: 0px;
    width: 300px;
    border: 1px solid black;
    background-color: white;
    padding: 1em;
    z-index: 10;
}

.document-section-actions ul li,
.document-section-actions ul {
    list-style-type: none;
    padding: 0px !important;
    margin: 0px !important;
}

.document-section-actions ul li {
    height: 25px;
    line-height: 25px;
}

.document-section-actions ul li a {
    padding-left: 25px;
    text-decoration: none !important;
}

.document-section-active {
    border: 1px solid #ffaa55;
    background-color: #ffeeaa;
}

.document-section-dragging .document-section-actions {
    display: none !important;
}

.document-section-dragging .document-section-actions-icons a {
    border-right-color: black;
}
    
.document-section-dragging .document-section-actions-icons .document-section-move-trigger img {
    position: absolute;
    bottom: 0px;
    left: 5px;
}

.document-section-place-holder {
    background-color: #ffeecc;
    border: 1px dashed #eeddbb;
}

.document-section-edit {
    background: url('/media/merengue/img/section/section_edit.png?564e9cb840ae') no-repeat center left;
}

.document-section-delete {
    background: url('/media/merengue/img/section/section_delete.png?564e9cb840ae') no-repeat center left;
}

.document-section-insert {
    background: url('/media/merengue/img/section/section_insert.png?564e9cb840ae') no-repeat center left;
}

.document-section-comments-wrap1 {
    float: left;
    background: url('/media/merengue/img/section/section_comment2.gif?564e9cb840ae') no-repeat top right;
    margin-right: 1em;
}

.document-section-comments-wrap2 {
    float: left;
    height: 24px;
    background: url('/media/merengue/img/section/section_comment1.gif?564e9cb840ae') no-repeat top left;
    text-align: center;
    padding: 0px 8px;
    font-size: 12px;
    line-height: 18px;
}

.collab-comment-trigger {
}

.collab-translation-trigger a {
    background: url('/media/merengue/img/section/section_translate.png?564e9cb840ae') no-repeat center left;
}

.document-section-body-editable-over {
    background-color: #ccf4ff;
    cursor: pointer;
}

#oldbrowser {
    /*background: #EEEF4A;*/
    background: #3A9EBE;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 65px;
    z-index: 999;
    border-bottom: 1px solid #022859;
}

#oldbrowser p {
    padding: 0 0.5em;
    text-align: center;
}

#oldbrowser ul {
    list-style-type: none;
    margin: 0 auto;
    width: 80%;
    text-align: center;
}
#oldbrowser li {
    display: inline;
}

#oldbrowser a { color: white; }
#oldbrowser a:hover { color: #003366; }

pre {
    white-space: normal;
}

#wrapper {
    margin-top: 65px;
}
