/* CSS for a straight javascript modal popup (for users using ancient browsers which don't support EXT JS) */
.not-supported-h1{
	font-family:helvetica;
	-webkit-font-smoothing: antialiased;
	color:#404040;
    display: block;
    font-size: 26px;
	line-height:17px;
    -webkit-margin-before: 0.67em;
    -webkit-margin-after: 0.67em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    font-weight: bold;
}

.not-supported-p{
	font-family:helvetica;
	-webkit-font-smoothing: antialiased;
	color:#404040;
    display: block;
    -webkit-margin-before: 1em;
    -webkit-margin-after: 1em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
	font-size:13px;
	font-weight:300;
}

.browser-name{
	text-align:center;
	width: 150px;
	font-size:13px;
	font-weight:300;
	font-family: 'Open Sans', 'Helvetica Neue', helvetica, arial, verdana, sans-serif;
	color: #404040;
}

.browser-info{
	text-align:center;
	font-size:13px;
	font-weight:300;
	font-family: 'Open Sans', 'Helvetica Neue', helvetica, arial, verdana, sans-serif;
	color: #404040;
}

.modalBg {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    left: 0;
    top: 0;
    z-index: 9000;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    background-color: #146B75;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 10000; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 700px;
	border-radius:5px;
}

.browser-img {
    max-width:140px!important;
	max-height:140px!important;
}

.browser-image-td{
	text-align:center!important;
	max-width:160px!important;
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}