/*
File:			custom.css
Description:	Custom styles for the Thesis Theme that you define

Use:

If you have enabled the custom stylesheet in the Thesis options panel, the <body> tag 
will be appended with the "custom" class, like so: <body class="custom">. You can use 
the "custom" class to overwrite *any* CSS declarations contained in the style.css file.

For example, if you wish to change the default link color to green, you would add the 
following declarations to this file:

	.custom a, .custom a:visited { color: #090; } <--- This makes links green
	
	.custom a:hover { color: #00f; } <--- This makes links blue when you mouse over them

Why this works:

By using the "custom" class, you are creating more specific CSS declarations for HTML
elements. CSS styling is applied through rules of specificity, and because declarations
prepended with .custom are more specific, they get applied when the page is rendered!
*/

body {
font-family:calibri,helvetica,arial,verdana;
background: #9bc0db url(images/container.gif) repeat-y top center;
font: 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
}

img {
	border: none;
}

a {color: #c02e59; text-decoration: none;}
a:link {color: #c02e59; text-decoration: none;}
a:visited {color: #c02e59; text-decoration: none;}
a:hover {color: #716F7D; text-decoration: none;}

h1, h2, h3, h4, h5, h6 {
font-weight: normal;

}

#container {
background: #ffffff ;
margin: -5px auto -5px auto;
width: 870px;
text-align: center;
}


#header {
float: left;
width: 860px;
height: 190px;
}

#header h1 {
text-indent: -9999px;
font-size: 1px;
height: 1px;
}
#content {
float: left;
padding: 20px 0 0 40px;
width: 808px;
}
form#form-username {
position: relative;
}

input, textarea, select {
border: 1px solid #9bc0dd;
}

input.button-calculate {
padding: 0;
position: relative;
top: 6px;
border: 0;
margin: 0;
}

ul.list-scores {
margin: 0;
padding: 10px 0;
}

ul.list-scores li {
display: inline;
margin: 0 5px;}

ul.list-scores li img {
padding: 5px;
background: #5d3a14;
}
ul.list-scores li img:hover {
background: #9bc0db;
}

.user {
padding-top: 20px;
}
.user img {
float: left;
padding: 5px;
background: #5d3a14;
margin-right: 10px;
}

.user ul.list-userinfo {
margin: 0;
padding: 0;
list-style: none;
text-align: left;
}

.user ul.list-userinfo li span {
text-transform: uppercase;
color: #585858;
padding-right: 10px;
}

ul.list-fame {
list-style: none;
margin: 0;
padding: 0;
text-align: left;
padding-right: 20px;
}

ul.list-fame li {
border-bottom: 1px solid #5f3914;
padding: 15px 0 30px 0;
clear: left;
}

ul.list-fame li p {
margin: 0;
padding: 0;
}

ul.list-fame span.rank-title {
text-transform: uppercase;
color: #585858;
padding-right: 10px;
}

ul.list-fame span.rank-number {
font-weight: bold;
}


ul.list-fame li img {
float: left;
padding: 5px;
background: #5d3a14;
margin-right: 10px;
}



#footer {
text-align: center;
margin: 0 auto;
width: 878px;
padding: 10px 0;
}

#footer p {
text-align: center;
padding: 0;
}

#frame {
	margin: 0;
}

#frame li {
	position: fixed;
	list-style: none;
	margin: 0;
	background-color:#c12e5a;
	z-index: 75;
}

li#top {
	height: 10px;
	left: 0;
	right: 0;
	top: 0;
}

li#right {
	width: 10px;
	bottom: 10px;
	right: 0;
	top: 10px;
}

li#bottom {
	height: 10px;
	left: 0;
	right: 0;
	bottom: 0;
}

li#left {
	width: 10px;
	bottom: 10px;
	left: 0;
	top: 10px;
}