/*
	99Lime.com HTML KickStart by Joshua Gatcke
	style.css
	
*/

/*---------------------------------
	IMPORTS
-----------------------------------*/
@import url(http://fonts.googleapis.com/css?family=Arimo:400,700);

/*---------------------------------
	OVERRIDES
-----------------------------------*/
h1, h2, h3, h4, h5, h6 {
    font-family: "Trebuchet Ms", arial, verdana, sans-serif;
}

thead th,
tbody th {
    font-family: "Trebuchet Ms", arial, verdana, sans-serif;
}

button,
a.btn,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    font-family: "Trebuchet Ms", arial, verdana, sans-serif;
}

.menu {
    font-family: "Trebuchet Ms", arial, verdana, sans-serif;
}

blockquote {
    font-family: "Trebuchet Ms", arial, verdana, sans-serif;
}

/*---------------------------------
	LAYOUT
-----------------------------------*/
body {
    margin: 0;
    padding: 0;
    color: #000;
    background: #efefef url(img/grid.png) repeat center top;
    font: normal 0.9em/150% 'Arimo', "Trebuchet MS", arial, verdana, sans-serif;
    text-shadow: 0px 0px 1px transparent; /* google font pixelation fix */
}

#header {
    padding: 10px 0 20px 0;
    margin: 0 auto;
    width: 1200px;
    text-shadow: 0px 1px 1px white;
    position: relative;
    top: 0;
    left: 0;
    height: 50px;
    text-align: center;
}

#logo {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 0.9em;
    color: #999;
    text-align: left;  
    top:2px;
}

#userdata {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 0.9em;
    color: #999;
    text-align: right;
}

#wrap {
    width: 1200px;
    background: white;
    margin: 0 auto 30px auto;
    padding: 0 20px;
    border: 1px solid #CCC;
    margin-top:8px;
}

#nav {
    margin: -1px -21px 0 -21px;
    position: relative;
    top: 0;
    left: 0;
    left: 0;
}

.menu {
    margin: -1px -1px 0 -1px;
}


#footer {
    text-align: center;
    padding: 20px;
    margin: 0;
    background: #efefef;
    border-top: 1px solid #ccc;
    color: #999;
    font-size: 0.8em;
    text-shadow: 0px 1px 1px #fff;
    position: relative;
    top: 0;
    left: 0;
}

#link-top {
    position: absolute;
    top: 10px;
    right: 10px;
    *right: 25px; /*IE 7 ONLY*/
    left: auto;
    color: #666;
    text-decoration: none;
    display: inline-block;
    padding: 5px 10px;
    background: #e5e5e5;
    line-height: 100%;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}


/*---------------------------------
	UTILITY
-----------------------------------*/
.align-left {

    text-align:left;
}
.align-right {
text-align:right;
}
.boldlabel {
    font-weight:bold;
    font-size: 1.1em;
}
.strikethrough {
text-decoration:line-through;
font-weight:bold;
}
.floatleft {
float:left;
}
.red {
color:red;
}