body {
	min-width:1024px;
	font-family: Helvetica,Arial;
	font-size:1em;
	margin:0em;
}

.smallmenu{
	background-color: #57b;
	width:100%;
	text-align: right;
	padding: 0.5em;
	color:#fff;
	position:fixed;
	top:0em;
	margin:auto;
	z-index:100000;
}

.smallmenu a{
        color:#fff;
	padding: 0.3em;
        text-decoration: none;}

.smallmenu a:hover{
	text-decoration: underline;}

.center{
        width:62em;
	padding:0em 1em;
        margin-left: auto;
        margin-right: auto;
}

#logo a img{
	margin: 4em 0em 1.5em 1em;
	border: 0em;
}

#menu{
	background: linear-gradient(top, #eee 0%, #bbbbbb 100%);  
	background: -moz-linear-gradient(top, #eee 0%, #bbbbbb 100%); 
	background: -webkit-linear-gradient(top, #eee 0%,#bbbbbb 100%); 

	overflow: auto;

	-webkit-border-radius: 0.5em;
	-moz-border-radius: 0.5em;
	border-radius: 0.5em;
}


#menu, #menu ul{
	list-style: none;
	padding: 0em;
	margin: 0;
}

#menu li{
	float: left;
}

#menu a{
	color:#000;
	display: block;
	font-size:1.1em;
	padding: 0.8em 1em;
	font-weight:bold;
	text-decoration: none;
}

#menu a:hover{
	background-color: #57b;
	color:#fff;}

#menu li ul li a{
	width:15 em;}

#menu  li ul{
	position: absolute;
	left: -999em;
}

#menu li ul li{
	float:none
}

#menu  li:hover ul {
	left: auto;
}

#slider ul {
        height:12em;
	width:100%;
	padding:0em;
	position:relative;
}

#slider li {
	width:100%;
	height:12em;
	position:absolute;
	top:0px;
	list-style:none;

        -webkit-border-radius: 0.5em;
	-moz-border-radius: 0.5em;
        border-radius: 0.5em;

        background-color:#57b;
	background-image:         linear-gradient(left , #57b 50%, #eee);
	background-image:      -o-linear-gradient(left , #57b 50%, #eee);
	background-image:    -moz-linear-gradient(left , #57b 50%, #eee);
	background-image: -webkit-linear-gradient(left , #57b 50%, #eee);
	background-image:     -ms-linear-gradient(left , #57b 50%, #eee);
	background-image:        -webkit-gradient(linear,left top,right top,color-stop(0.50, #57b),color-stop(1.0, #eee));
}

#slider li img{
	height:9em;
	float:left;
	margin:1.5em;
	vertical-align:middle;
}

#slider li h1{
        font-size:2em;
        color:#fff;
	margin-bottom: 0em;
	text-shadow: none;
}
#slider li p{
	font-size:1.1em;
	color:#fff;
	width:35em;
}

#slider li:nth-of-type(1) {
	animation:cycle 45s linear infinite;
	-moz-animation:cycle 45s linear infinite;
	-webkit-animation:cycle 45s linear infinite;
}
#slider li:nth-of-type(2) {
	animation:cycletwo 45s linear infinite;
	-moz-animation:cycletwo 45s linear infinite;
	-webkit-animation:cycletwo 45s linear infinite;
}
#slider li:nth-of-type(3) {
	animation:cyclethree 45s linear infinite;
	-moz-animation:cyclethree 45s linear infinite;
	-webkit-animation:cyclethree 45s linear infinite;
}
#slider li:nth-of-type(4) {
	animation:cyclefour 45s linear infinite;
	-moz-animation:cyclefour 45s linear infinite;
	-webkit-animation:cyclefour 45s linear infinite;
}
#slider li:nth-of-type(5) {
	animation:cyclefive 45s linear infinite;
	-moz-animation:cyclefive 45s linear infinite;
	-webkit-animation:cyclefive 45s linear infinite;
}

#slider:hover li, 
#slider:hover .progress-bar {
	-moz-animation-play-state:paused;
	-webkit-animation-play-state:paused;
}

.progress-bar { 
	position:relative;
	top:-1.5em;
	margin:0em 1em; 
	height:0.5em;
	background:#000;
	animation:fullexpand 45s ease-out infinite;
	-moz-animation:fullexpand 45s ease-out infinite;
	-webkit-animation:fullexpand 45s ease-out infinite;
}

@-keyframes cycle      { 0%,16%,100%     { opacity:1; }    20%,96% { opacity:0; }}
@-keyframes cycletwo   { 0%,16%,40%,100% { opacity:0; }    20%,36% { opacity:1; }}
@-keyframes cyclethree { 0%,36%,60%,100% { opacity:0; }    40%,56% { opacity:1; }}
@-keyframes cyclefour  { 0%,56%,80%,100% { opacity:0; }    60%,76% { opacity:1; }}
@-keyframes cyclefive  { 0%,76%,100%     { opacity:0; }    80%,96% { opacity:1; }}

@-moz-keyframes cycle {
        0%,16%,100%	{ opacity:1; }    20%,96% { opacity:0; }
}
@-moz-keyframes cycletwo {
        0%,16%,40%,100%	{ opacity:0; }    20%,36% { opacity:1; }
}
@-moz-keyframes cyclethree {
        0%,36%,60%,100%	{ opacity:0; }    40%,56% { opacity:1; }
}
@-moz-keyframes cyclefour {
        0%,56%,80%,100%	{ opacity:0; }    60%,76% { opacity:1; }
}
@-moz-keyframes cyclefive {
        0%,76%,100%	{ opacity:0; }    80%,96% { opacity:1; }
}

@-webkit-keyframes cycle {
        0%,16%,100%     { opacity:1; }    20%,96% { opacity:0; }
}
@-webkit-keyframes cycletwo {
        0%,16%,40%,100% { opacity:0; }    20%,36% { opacity:1; }
}
@-webkit-keyframes cyclethree {
        0%,36%,60%,100% { opacity:0; }    40%,56% { opacity:1; }
}
@-webkit-keyframes cyclefour {
        0%,56%,80%,100% { opacity:0; }    60%,76% { opacity:1; }
}
@-webkit-keyframes cyclefive {
        0%,76%,100%     { opacity:0; }    80%,96% { opacity:1; }
}

keyframes fullexpand {

    0%, 20%, 40%, 60%, 80%, 100% { width:0%; opacity:0; }
    1%, 21%, 41%, 61%, 81% { width:0%; opacity:0.3; }
   17%, 37%, 57%, 77%, 97% { width:60em; opacity:0.3; }
   18%, 38%, 58%, 78%, 98% { width:60em; opacity:0; }
}

@-moz-keyframes fullexpand {

    0%, 20%, 40%, 60%, 80%, 100% { width:0%; opacity:0; }
    1%, 21%, 41%, 61%, 81% { width:0%; opacity:0.3; }
   17%, 37%, 57%, 77%, 97% { width:60em; opacity:0.3; }
   18%, 38%, 58%, 78%, 98% { width:60em; opacity:0; }	
}

@-webkit-keyframes fullexpand {
    0%, 20%, 40%, 60%, 80%, 100% { width:0%; opacity:0; }
    1%, 21%, 41%, 61%, 81% { width:0%; opacity:0.3; }
   17%, 37%, 57%, 77%, 97% { width:60em; opacity:0.3; }
   18%, 38%, 58%, 78%, 98% { width:60em; opacity:0; }	
}

#main {
	margin: 2em 0em 5em 0em;
	color: #777;
}

#main h1{
	font-size:2em;
	color:#57b;
	text-shadow: 0.1em 0.1em 0.05em #ddd;
}

#main h2{
	font-size:1.4em;
	color: #555;
	text-shadow: 0.1em 0.1em 0.05em #ddd;
}

.box{
	width: 17em;
	float: left;
	margin: 1em 2em 1em 1em;
}

.box h3{
	font-size:1.1em;
	margin:0em;
}

.boxheader{
	color:#fff;
	background-color: #57b;
	width: 100%;
        padding:0.7em 1em 0.7em 1em;
        font-weight:bold;
        text-align:center;

        -webkit-border-radius: 0.5em 0.5em 0em 0em;
	-moz-border-radius: 0.5em 0.5em 0em 0em;
        border-radius: 0.5em 0.5em 0em 0em;
}

.boxfooter{
        width: 100%;
	height: 8em;
	line-height: 1.7em;
        background-color:#eee;
        padding:0.5em 1em 1em 1em;

	-webkit-border-radius: 0em 0em 0.5em 0.5em;
        -moz-border-radius: 0em 0em 0.5em 0.5em;
        border-radius: 0em 0em 0.5em 0.5em;
}

.footermenu{
        background-color: #57b;
        width:100%;
        text-align: right;
        padding: 0.5em 0em;
        color:#fff;
}

#footer{
	background-color: #9ae;
	width:100%;
	overflow: auto;
}

.footerblock{
	min-height:11em;
	float: left;
	margin: 0.5em 0em;
	padding: 0em 2.5em;
	color: #fff;
	line-height:1.5em;
        border-right-width:thin;
        border-right-style:solid;
        border-color:#57b;
}

.footerblockfirst{
        margin-left:-2em;
}

.footerblocklast{
	border-right-width:0;
}

.footerblock h3{
	 font-size:1em;
	 color:#57b;
	 margin: 0.2em 0em 0.2em -0.5em;
}

.footerblock a{
        color:#fff;
        text-decoration: none;}

.footerblock a:hover{
        text-decoration: underline;}

