/*
    ColorBox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:visible;}
#cboxOverlay{position:fixed; width:100%; height:100%;}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative;}
#cboxLoadedContent{overflow:auto;}
#cboxTitle{margin:0;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
.cboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none;}
.cboxIframe{width:100%; height:100%; display:block; border:0;}
#colorbox, #cboxContent, #cboxLoadedContent{box-sizing:content-box;}

/* 
    User Style:
    Change the following styles to modify the appearance of ColorBox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay{background:#f7f4ed;}
#colorbox{}
  #cboxContent{
    overflow:visible;
  }
  .cboxIframe{background:#fff;}
  #cboxError{
    padding:50px; 
    border:1px solid #ccc;
  }
  #cboxLoadedContent{
    -moz-box-shadow:0 0 5px #000;
    -webkit-box-shadow:0 0 5px #000;
    box-shadow:0 0 5px #000;
  }
  #cboxLoadingOverlay{
    background:#fff;
    border-radius:10px;
    width:50px;
    height:50px;
    left:50%; top:50%;
    margin:-25px 0 0 -25px;
    -moz-box-shadow:0 0 5px #000;
    -webkit-box-shadow:0 0 5px #000;
    box-shadow:0 0 5px #000;
  }
  #cboxLoadingGraphic{
    background:url(/css/colorbox/images/loading.gif) no-repeat center center;
  }
  #cboxTitle{
    position:fixed;
    top:0; left:0;
    width:90%;
    padding:0 5%;
    text-align:center;
    font-family:Chaparral;
    font-size:2.4em;
    color:#475b67;
    line-height:1.4em
  }
  #cboxCurrent{
    position:fixed;
    left:50%; bottom:0;
    width:100px;
    margin-left:-50px;
    font-size:.8em;
    color:#666;
    text-align:center;
  }

  #cboxSlideshow,
  #cboxPrevious, 
  #cboxNext, 
  #cboxClose{
    position:fixed !important;
    top:50%;
    margin-top:-27px;
    font-family:Entypo;
    font-size:7.5em;
    line-height:.4em;
    padding:5px;
    color:#9c968e;
    -moz-opacity:.8;
    -webkit-opacity:.8;
    filter:alpha(opacity=80);
    opacity:.8;
  }
    #cboxPrevious{
      left:0;
    }
    #cboxNext{
      right:0;
    }
    #cboxClose{
      top:5px; right:5px;
      margin-top:0;
      font-size:4.5em;
      color:#7f2e02;
    }
      #cboxPrevious:hover,
      #cboxNext:hover,
      #cboxClose:hover{
        -moz-opacity:1;
        -webkit-opacity:1;
        filter:alpha(opacity=100);
        opacity:1;
      }