/* 
    Document   : css
    Created on : May 10, 2013, 10:05:59 AM
    Author     : lucky
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

/*
.border {
    border-collapse:collapse;
    border:1px solid #cccccc;
    border-radius: 3px;
}
*/

h1 {
    color:#ccc;
    font-size:36px;
    text-shadow:1px 1px 1px #fff;
}

.border {
    -moz-box-shadow:0px 0px 3px #aaa;
    -webkit-box-shadow:0px 0px 3px #aaa;
    box-shadow:0px 0px 3px #aaa;
    -moz-border-radius:10px;
    -webkit-border-radius:10px;
    border-radius:10px;
    border:2px solid #fff;
    background-color:#f9f9f9;
    overflow:hidden;
}

.list {
    border-collapse:collapse;
    border:2px solid #000000;            
}

.list th {
    background-color:#047627;
    color:white;
    font-family: Arial;
    font-size: 13px;
}

.list tr td {
    padding-left: 3px;
}

.tablelist {
    margin:0px;padding:0px;
    border:1px solid #000000;
}.tablelist table {
    border-collapse: collapse;
    border-spacing: 0;
    margin:0px;padding:0px;
}.tablelist td {
    vertical-align:middle;	
    background-color:#ffffff;
    border:1px solid #000000;
    border-width:0px 1px 1px 0px;
    text-align:left;
    padding:3px;
    font-size:10px;
    font-family:Arial;
    font-weight:bold;
    color:#000000;
}.tablelist tr:last-child td {
    border-width:0px 1px 0px 0px;
}.tablelist tr td:last-child {
    border-width:0px 0px 1px 0px;
}.tablelist tr:last-child td:last-child {
    border-width:0px 0px 0px 0px;
}.tablelist tr:first-child td {
    background:-o-linear-gradient(bottom, #cccccc 5%, #b2b2b2 100%);	
    background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #cccccc), color-stop(1, #b2b2b2) );
    background:-moz-linear-gradient( center top, #cccccc 5%, #b2b2b2 100% );
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#cccccc", endColorstr="#b2b2b2");	
    background: -o-linear-gradient(top,cccccc,b2b2b2);
    background-color:#cccccc;
    border:0px solid #000000;
    text-align:center;
    border-width:0px 0px 1px 1px;
    font-size:14px;
    font-family:Arial;
    color:#000;
    text-shadow:1px 1px 1px #fff;
}.tablelist tr:first-child td:first-child {
    border-width:0px 0px 1px 0px;
}.tablelist tr:first-child td:last-child {
    border-width:0px 0px 1px 1px;
}
/*
nav ul ul {
    display: none;
    background: #cccccc; border-radius: 0px; padding: 0;
    position: absolute; top: 100%;
    color: #fff;
}

nav ul li:hover > ul {
    display: block;
}

nav ul {
    background: #00aa00;
    box-shadow: 0px 0px 9px rgba(0,0,0,0.15);
    padding: 0 10px;
    border-radius: 10px;
    list-style: none;
    position: relative;
    display: inline-table;
    color: #fff;
}

nav ul:after {
    content: ""; clear: both; display: block;
}

nav ul li {
    float: left;
    color: #fff;
    font-size: 16px;
}

nav ul li:hover {
    background: #008800;
}

nav ul li:hover a {
    color: #fff;
}
	
nav ul li a {
    display: block; padding: 10px 80px;
    color: #fff; text-decoration: none;
}

nav ul ul li {
    float: none; 
    border-top: 1px solid #6b727c;
    border-bottom: 1px solid #575f6a;
    position: relative;
}

nav ul ul li a {
    padding: 10px 34px;
    color: #fff;
}

nav ul ul li a:hover {
    background: #008800;
}

nav ul ul ul {
    position: absolute; left: 100%; top:0;
}
*/

label {
    float:left;
    text-align:left;
    margin-left:3px;
    line-height:20px;
    color:#666;
    text-shadow:1px 1px 1px #fff;
    font-weight:bold;
}

input, select  {
    font-size:12px;
}

input[type=text], input[type=password], select  {
    background: #ffffff;
    border: 1px solid #ddd;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    outline: none;
    padding-left: 5px;
    float:left;
    height:25px;
}

input:focus, textarea:focus, select:focus {
    -moz-box-shadow:0px 0px 3px #aaa;
    -webkit-box-shadow:0px 0px 3px #aaa;
    box-shadow:0px 0px 3px #aaa;
    background-color:#FFFEEF;    
}

input[disabled], select[disabled] {
    background-color:#CCCCCC;
}

input[readonly] {
    -moz-box-shadow:0px 0px 3px #047627;
    -webkit-box-shadow:0px 0px 3px #047627;
    box-shadow:0px 0px 3px #111111;
}

input[type=button].MainBtn {
    border:none;
    outline:none;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    color: #ffffff;
    display: block;
    cursor:pointer;
    clear:both;
    padding: 7px 20px;
    text-shadow: 0 1px 1px #777;
    font-weight:bold;
    font-family:"Century Gothic", Helvetica, sans-serif;
    font-size:14px;
    -moz-box-shadow:0px 0px 3px #aaa;
    -webkit-box-shadow:0px 0px 3px #aaa;
    box-shadow:0px 0px 3px #aaa;
    background:#4797ED;
}

input[type=button].MainBtn:hover {
    background:#d8d8d8;
    color:#666;
    text-shadow:1px 1px 1px #fff;
}

fieldset {
    border:1px solid #047627;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    height:70px;
}

legend {
    padding: 0.2em 0.5em;
    border:1px solid #047627;
    color:#666;
    text-shadow:1px 1px 1px #fff;
    font-weight:bold;
    font-size:90%;
}

#pop-up-list, #preview {    
    display: none; /* Hidden as default */
    float: left;
    position: fixed;
    top: 50%; left: 50%;
    background-color: #ffffff;
    border-radius: 5px;
    z-index: 99999;
    overflow-y: scroll;
    padding-bottom: 10px;
}

#pop-up-list {
    width:600px;
    height:400px;
}

#preview {
    width:650px;
    height:550px;
}

#fade {
    display: none; /* Hidden as default */
    background: #000;
    position: fixed; left: 0; top: 0;
    width: 100%; height: 100%;
    opacity: .70;
    z-index: 9999;
}
