@import "reset.css";

body {
	
	font-family: verdana, arial, sans-serif; 
	font-size: 12px;
	background-color: #ffffff;
	
}

img.bg {
    /* Set rules to fill background */
    min-height: 100%;
    min-width: 1024px;
    
    /* Set up proportionate scaling */
    width: 100%;
    height: auto;
    
    /* Set up positioning */
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

@media screen and (max-width: 1024px) { /* Specific to this particular image */
    img.bg {
        left: 50%;
        margin-left: -512px;   /* 50% */
    }
}

p {
    margin: 5px 0;
}

#content{
    margin:0 auto;
    width: 950px;
    height: 520px;
    top: 50%; 
    left: 50%; 
    margin-left: -475px;  
    margin-top: -300px; 
    position: absolute;
}

#slider  {
    height: 420px;
    margin: 0 auto;
    overflow: hidden;
    text-align: left;
    width: 950px;
}

#slider .left, #slider .right, span.center {
    color: #444444;
    font-weight: bold;
    height: 20px;
    width: 80px;
    line-height: 20px;
}

.arrow-left {
    width: 0; 
    height: 0; 
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent; 
    display: inline;
    float: left;
    border-right:10px solid #444444;
    margin-right: 10px;
}

.arrow-right {
    width: 0; 
    height: 0; 
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #444444;;
    display: inline;
    float: right;
    margin-left: 10px;
}

#slider .left {
    float: left;
}

#slider .right {
    float: right;
    text-align: right;
}

span.center {
    text-align: center;
    width: 730px;
    display: inline-block;
}

ul#list  {
	display: block;
	margin: 20px auto;
    padding: 0;
    width: 53940px;
    list-style: none;
    overflow: hidden;
    position: relative;
    font-size: 0;
}

ul#list li {
    display: inline-block;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border: 5px solid #404040;
    margin-right: 40px;
    padding: 0;
    width: 640px;
    height: 250px;
    font-size: small;
    padding: 25px 10px;
    display: inline-block;
    float: left; 
    background-color: #ffffff;
}

ul#list li img {
    margin: 0 10px;
    opacity:0.6;
    filter:alpha(opacity=60); /* For IE8 and earlier */
    float: left;
}

ul#list li img:hover {
    opacity: 1;
    filter:alpha(opacity=100); /* For IE8 and earlier */
}

#contact {
	margin: 20px auto 0;
	padding: 10px 20px;
	width: 900px;
	height: 100px;
	font-size: 100%;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border: 5px solid #404040;
    background-color: #ffffff;
}

#contact .left {
    display: inline;
    float: left;
}

#contact .right {
    display: inline;
    float: right;
    text-align: right;
}

#menu {
    margin: 20px auto;
    padding: 10px 20px;
    width: 900px;
    font-size: 100%;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border: 5px solid #404040;
    background-color: #ffffff;
}

a {
	color: #464671;
}

.clr {
	clear: both;
}