/*
 * SimpleModal Basic Modal Dialog
 * http://www.ericmmartin.com/projects/simplemodal/
 * http://code.google.com/p/simplemodal/
 *
 * Copyright (c) 2010 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 * Revision: $Id: basic.css 257 2010-07-27 23:06:56Z emartin24 $
 */

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

/* Overlay */
#simplemodal-overlay
{
    background-color: #DBDBDB;
    cursor: not-allowed;
    right: 0px;
    bottom: 0px;
}

/* Container */
#simplemodal-container
{
    height: 360px;
    width: 600px;
    color: #bbb;
    background: #4c4b4b url('../Images/Reflection_Bigpanel.png') no-repeat 0 0;
    border: 1px solid #aaa;
    padding: 12px;
}
#simplemodal-container .simplemodal-data
{
    padding: 2px;
}
#simplemodal-container code
{
    background: #141414;
    border-left: 3px solid #65B43D;
    color: #bbb;
    display: block;
    font-size: 12px;
    margin-bottom: 12px;
    padding: 4px 6px 6px;
}
#simplemodal-container a
{
    color: black;
    font-weight: normal;
}
#simplemodal-container a.modalCloseImg
{
    background: url(../Images/close_popup.png) no-repeat;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    z-index: 2000;
}

#simplemodal-container div.modalTitle
{
    height: 20px;
    position: absolute;
    top: 5px;
	left: 15px;
	height: 30px;
	font-size: 15px;
    right: 35px;
    z-index: 0; /* Z-index must be less than simplemodal-wrap, otherweise Title overlaps Tabs.*/
	color: white; 
}

#simplemodal-container h3
{
    color: #84b8d9;
}

.simplemodal-wrap
{
	position: absolute;
	left: 0px; right: 0px; 
	top: 35px; bottom: 0px;
    height: auto !important;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #BF1722;
    color: white;
    padding: 8px;
    z-index: 100;
    border-bottom-right-radius: 8px;
}

.skip-link:focus {
    top: 0;
}