/* 
    Document   : global
    Created on : Nov 13, 2013, 1:06:53 PM
    Author     : hasan
    Description:
        Purpose of the stylesheet follows.
*/

root,html,body { 
    display: block;
    margin:0;
    padding:0;
    font-family: verdana;
}

#header {
    background-image: url('/img/header.png');
    background-repeat: no-repeat;
    background-position: top right;
    height:120px;
}

.text-shadow1 { text-shadow: 3px 3px 3px red; }
.text-shadow2 { text-shadow: 3px 3px 3px blue; }
.note { color: darkgreen; font-size: 11px; font-style: italic; }
.divHead {
    border-radius: 10px 10px 0 0;
    -moz-border-radius: 10px 10px 0 0;
    -wenkit-border-radius: 10px 10px 0 0;
    border-width: 1px 1px 3px 1px;
    border-style: solid;
    border-color: #ccc;
    font-weight: bold;
    font-size:1.2em;
    background: url('/img/bg1.png') #f3f3f3 repeat-x;
    color: #5c5463;
}
.divHead div {
    padding:10px;
}

input[TYPE="TEXT"], input[TYPE="PASSWORD"], textarea  {
    padding:0.3em;
    border:1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    color:#222;
    background: url('/img/bg2.png') repeat-x;
}
input[TYPE="BUTTON"], input[TYPE="SUBMIT"], input[TYPE="RESET"] {
    color:#222;
    font-size: 1.1em;
    margin-left: 0;
    margin-right: 0;
}

a { color: darkblue; text-decoration: none; }
a:hover {
    text-decoration: underline;
}
.radius {
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
}
.login-div {
    border:1px solid #ccc;
    display: block;
    height: 18px;
    margin:3px;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    
    box-shadow: 1px 1px 3px #000;
    -webkit-box-shadow: 1px 1px 3px #000;
    -moz-box-shadow: 1px 1px 3px #000;
}

.shadow {
    box-shadow: 0px 0px 10px #888;
    -webkit-box-shadow: 0px 0px 10px #888;
    -moz-box-shadow: 0px 0px 10px #888;
}

.menu {
    /* border:1px solid #ccc; */
    width: 670px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
}

.menu-item {
    border:1px solid #ccc;
    display: inline-block;
    width: 100px;
    height:100px;
    text-align: center;
    margin:10px;
    font-size: 12px;
    float:left;
    padding:5px;
}

.container {
    width: 950px;
    min-height: 400px;
    border:1px solid #ccc;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    margin-bottom:50px;
}
.container .title {
    font-weight: bold;
    font-size: 1.3em;
    margin-bottom: 20px;
}
.container-small {
    width: 93%;
    border:1px solid #ccc;
    margin:5px;
    padding:10px;
}
.container-small .title-small {
    font-weight: bold;
    font-size: 0.9em;
    margin-bottom: 20px;
}
.container .content {
    min-height: 400px;
    border:1px solid #999;
    padding:10px;
    margin:-1px;
    border-radius: 0 0 10px 10px;
    -moz-border-radius: 0 0 10px 10px;
    -webkit-border-radius: 0 0 10px 10px;
}
.tab {
    list-style: none; 
    margin: 0; 
    padding: 0
}
.tab li {
    display: inline-block;
    border-left:1px solid #999;
    border-right:1px solid #999;
    border-top:1px solid #999;
    margin: -1px;
    padding: 5px;
    background: #eee;
    color: #999;
    cursor: pointer;
}
.tab li:first-child {
    border-radius: 10px 0 0 0;
    -moz-border-radius: 10px 0 0 0;
    -webkit-border-radius: 10px 0 0 0;
}
.tab li:last-child {
    border-radius: 0 10px 0 0;
    -moz-border-radius: 0 10px 0 0;
    -webkit-border-radius: 0 10px 0 0;
}
.tab li:not(.selected) {
    border-bottom:1px solid #999;
}
.tab li.selected {
    color: #888 !important;
    font-weight: bold;
    box-shadow: 1px -1px 5px #999;
}

.tblList {
    border-collapse: collapse;
    font-size: 12px;
}
.tblList thead tr td, .tblList tfoot tr td {
    font-weight: bold;
    text-align: center;
    background: #e3c171;
}
.top-control {
    padding: 10px;
    font-size:14px;
}

/* error and success message */
div.success {
    margin-left: auto;
    margin-right: auto;
    width: 900px;
    font-size:14px;
    color:#000;
    background: #CCFFCC;
    background-position: 12px center;
    background-repeat: no-repeat;
    background-image: url("/img/icon_success.png");
    padding:16px 10px 16px 46px;
    font-size: 12px;
    line-height: 1.3;
    border:1px solid #14e99e;
}
div.error {
    margin-left: auto;
    margin-right: auto;
    width: 900px;
    font-size:14px;
    color:#000;
    font-size:14px;
    color:#c45d51;
    background: #FFFF99;
    background-position: 12px center;
    background-repeat: no-repeat;
    background-image: url("/img/icon_error.png");
    padding:16px 10px 16px 46px;
    font-size: 12px;
    line-height: 1.3;
    border:1px solid red;
}