/** Global **/
html {
    height: 100%;   
    box-sizing: border-box;
}

body {
    background: url(../images/main_bg.jpg) no-repeat 50% 0 #f8f8f8; 
    color: #333;
    font-family: Arial, sans-serif;
    font-size: 12px;
    height: 100%; 
}

.btn {
    background-color: #3399cc;
    border: none;
    border-radius: 3px;
    color: #fff;
    height: 33px;
    width: 100px;
}

.btn:hover {
    background-color: #288abb;
}

fieldset {
    border: none;
}

input[type="text"],
input[type="password"] {
    border: 1px solid #d1d1d1;
    height: 17px; 
    padding: 5px;
}

table {
	table-layout: auto;	
}

thead {
    
}

tbody, tfoot {
    background-color: #fff;
}

tbody tr td {
    border-bottom: 1px solid #d7dce0;
}

tfoot tr td {
    border-top: 2px solid #d7dce0;
    font-weight: bold;
}

th {
    color: #3399cc;
    cursor: pointer;
    font-size: 11px;
    font-weight: normal;
    padding: 5px 0;
    text-align: center;
}

th.mouseover,
th.active {
    color: #288abb;   
}

td {
    font-size: 14px;
    padding: 10px 0;
    text-align: center;
    width: 46.3px;
}

th span.week-number {
    font-size: 14px;
    font-weight: bold;
}

tbody tr:hover {
    background-color: #faf4d4;
}

th:first-child,
td:first-child {
    color: #333;
    font-size: 14px;
    padding-left: 5px;
    text-align: left;
    width: 190px;
}

th:last-child,
td:last-child {
    width: 70px;    
}

#container {
    margin: 0 auto;
    width: 1020px;    
}

#main-content {
    background-color: #fff;
    clear: both;
    text-align: center;
}

/** Header **/

header #header-left {
    float: left;
}

header #header-right {
    float: right;
    padding: 90px 30px 0 0;
}

header #header-right a {
    color: #3399cc;
    font-size: 14px;
    text-decoration: none;
}

header h1 {
    font-size: 20px;
    margin: 11px 0 20px 20px;
    text-transform: uppercase;
}

/** Login Panel **/
#login-panel {
    padding-top: 142px;
}

#login-panel fieldset {
    padding-bottom: 37px;
}

#login-panel fieldset .group {
    display: inline-block;
    text-align: left;
}

#login-panel fieldset label {
    padding-bottom: 5px;
}

#login-panel fieldset input[type="text"],
#login-panel fieldset input[type="password"] {
    width: 150px;
    margin: 10px 22px 0 0;
}

#login-panel fieldset input[type="text"].error,
#login-panel fieldset input[type="password"].error {
    background-color: #fcf7c7; 
}

#login-panel fieldset input[type="submit"] {
    font-size: 14px;
    font-weight: bold;
}

.error-msg {
    background: url(../images/sprites.png) no-repeat 3px 3px #fbf7c7;
    color: #ca3538;
    display: inline-block;
    font-style: italic;
    height: 47px;
    line-height: 17px;
    padding: 5px 3px 0 25px;
    text-align: left;
    width: 490px;
}

.error-msg a {
    color: #ca3538;
}

/** Main page **/
#main-page #main-content {   
    padding: 30px;
    text-align: left;
    position: relative;
}

#main-page #main-content ul {
    margin: 0;
    padding: 0;
    position: relative;
}

#main-page #main-content ul li {
    background-color: #5f6d77; 
    border-bottom: 1px solid #bcc5cb;
    border-right: 1px solid #bcc5cb;
    color: #d9dee1;
    cursor: pointer;
    display: block;
    float: left;
    font-size: 14px;
    font-weight: bold;
    height: 60px;   
    line-height: 60px;
    list-style: none;
    padding: 0;
    position: relative;
    text-align: center;
    width: 160px;
}

#main-page #main-content ul li.active { 
    background-color: #e9f0f4;
    border-bottom: 1px solid #e9f0f4;
    color: #5f6d77;    
}

#main-page #main-content ul li.mouseover {
    color: #fff   
}

#main-page #main-content ul li.facebook,
#main-page #main-content ul li.twitter
{
    background-repeat: no-repeat;
    background-position: 40px 20px;
}

#main-page #main-content ul li.facebook {
    background-image: url(../images/facebook_icon.png);
}

#main-page #main-content ul li.facebook.active {
    background-position: 40px -60px;
}

#main-page #main-content ul li.facebook.mouseover {
    background-position: 40px -20px;
}

#main-page #main-content ul li.twitter {
    background-image: url(../images/twitter_icon.png);
}

#main-page #main-content ul li.twitter.active {
    background-position: 40px -60px;
}

#main-page #main-content ul li.twitter.mouseover {
    background-position: 40px -20px;
}

#main-page #tab-divider {
    border-top: 1px solid #bcc5cb;
    position: absolute;
    width: 960px;
    top: 90px;
}

#main-page .panel {
    background-color: #e9f0f4;
    clear: both;
    display: none;
    width: 960px;
}

#main-page .panel.active {
    display: block;   
}

/** Generate Reports **/
#panel-generate-report h3 {
    padding: 14px 0 0 17px;
    font-size: 14px;
    font-weight: normal;
}

#panel-generate-report #time-frame {
    background-color: #fff;
    padding-bottom: 50px;
}

#panel-generate-report #info-msg {
    color: #ff0000;
    padding: 10px;
}

#panel-generate-report input[type="text"] {
    width: 80px;
}

#panel-generate-report input[type="submit"] {
    margin-left: 30px;   
}

#panel-generate-report #reports-header {
    font-size: 14px;
    font-weight: normal;
    padding: 20px 0 10px 20px;
}

#panel-generate-report .row {
    background-color: #fff;
    border-bottom: 1px solid #d7dce0;
    clear: both;
    font-size: 14px;
    padding: 15px 0 35px 20px;
}

#panel-generate-report .col {
    float: left;
    margin-right: 100px;
}

#panel-generate-report #col-date-range {
    width: 200px;
}

#panel-generate-report #col-download-report a {
    color: #3399cc;
    text-decoration: none;
}

#panel-generate-report #col-download-report a:hover {
    color: #288abb;
}

#table-body {
    width: 976px;
    height: 315px;
    overflow-x: hidden;
    overflow-y: auto;
    background:url(../images/ajax-loader.gif) no-repeat 50% 50% #FFF;
}

.nothing-to-display {
    font-size: 14px;
    padding: 15px;
}
.downloadreport {
   position: relative;   
   left:20px;
   top:450px
}