/*
 * SimpleModal Basic Modal Dialog
 * http://simplemodal.com
 *
 * Copyright (c) 2013 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 */

#basic-modal-content {display:none;}

/* Overlay */
#simplemodal-overlay {
    background-color:#000;
}

/* Container */
#simplemodal-container { 
    width:640px;
    height:370px;
    background-color:#ffffff; 
    border:none; 
    padding:0px;
    
    background: #ffffff;

}

#simplemodal-container .simplemodal-data {

}

#simplemodal-container code {
    background:#ffffff;
    border-left:3px solid #65B43D; 
    color:#bbb; 
    display:block; 
    font-size:12px; 
    margin-bottom:12px; 
    padding:4px 6px 6px;
}

#simplemodal-container a.modalCloseImg {
    background:url("../images/close.png") no-repeat;
    width:32px; height:32px;
    display:inline; 
    z-index:3200;
    position:absolute; 
    top:16px; 
    right:16px;
    cursor:pointer;
}

#simplemodal-container a.modalCloseImg:hover {
    background:url("../images/close_hover.png") no-repeat;
}

#simplemodal-container a.modalCloseImg:active {
    background:url("../images/close_active.png") no-repeat;
}


/* Container */
#simplemodal-playback-container { 
    width: 680px;
    height: 360px;
    
    background-color:#ffffff; 
    border:none; 
    padding:10px;
    padding-right:0px;
    
    background: #ffffff; /* Old browsers */
    background: -moz-linear-gradient(top,  #ffffff 0%, #e5e5e5 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e5e5e5)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #ffffff 0%,#e5e5e5 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #ffffff 0%,#e5e5e5 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #ffffff 0%,#e5e5e5 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #ffffff 0%,#e5e5e5 100%); /* W3C */

    border-radius: 6px;
}

#simplemodal-playback-container code {
    background:#ffffff;
    border-left:3px solid #65B43D; 
    color:#bbb; 
    display:block; 
    font-size:12px; 
    margin-bottom:12px; 
    padding:4px 6px 6px;
}

#simplemodal-playback-container a.modalCloseImg {
    background:url("../images/button_close_negative.png") no-repeat;
    width:39px; height:35px;
    display:inline; 
    z-index:3200;
    position:absolute; 
    top:0px; 
    right:0px;
    cursor:pointer;
}


#simplemodal-playback-container .simplemodal-playback-data {

}
