/**
* CSS
* 
* @version 1.0
* @author Vaska 
* @author Gregory Cadar
*/
* {
	margin: 0;
	padding: 0;
}

body {
	font-size: 14px;
	font-family: Times New Roman, Times, Arial, Helvetica, sans-serif;
	background: #fff;
}

body.section-1 { }
body.section-2 { }
body.section-3 { }

a:link { text-decoration: none; color:#00f;}
a:active { text-decoration: none; }
a:visited { text-decoration: none; color: #666; }
a:hover { text-decoration: underline; }

a img { border: none; }

#menu {
	padding: 20px 0 20px 20px;
    width: 225px;
    padding: none;
    margin: none;
    position: absolute;
    display: block;
    z-index: 2;
    background: #fff;
}

#content {
	position: absolute;
	margin: 20px 0 0 245px;
    display: block;
    z-index: 1;
}

.container {
    padding: 20px 20px 25px 20px;
}

#choices {
	margin-top: 45px;
	position: relative;
	display: block;
	}

#belowchoices {
	margin-top: 25px;
	position: relative;
	display: block;
	}

#menu ul {
	list-style: none;
	margin: 0 0 12px 0;
}

#menu ul li.section-title {margin-left: 0;}
#menu ul li.active a {font-weight: bold;}
#menu ul li {margin-left: 10px;}
#menu ul li a {background:#fff;}



#content p {max-width: 550px; margin:0 20px 9px 0;}

p {
    margin: 0 0 9px 0;
}

h1 { font-size: 32px; }
h2 { font-size: 24px; }
h3 { font-size: 16px; }
h4 { font-size: 12px; }

#img-container	{
	margin: 0;
	padding: 0;
	}
	
#img-container-slide	{
	margin: 0;
	padding: 0;
	}
	
#img-container p	{/*width: 400px; margin: 0; padding: 0 0 12px 0;*/}

#once { clear: left; }

/* bonus styles */

a.home {text-decoration: none;
		color:#000;
		font-weight: bold;}
		
a.home:hover {text-decoration: underline;}

a.announcement {
	text-decoration:none;
	color:#000;
	font-size: 20px;
	padding: 2px;
	margin-top: 20px;
	margin-left: 20px;
	display:block;
	font-weight:normal;
	}

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

/* spinners! */

#spinner {margin: 60px 60px;}

#spinner a {display: block; background: url('/img/khole.png') no-repeat; height: 0; padding-top: 264px; width: 273px; overflow: hidden;}

#spinner a {
  -webkit-animation-name: rotateThis;
  -webkit-animation-duration:20s;
  -webkit-animation-iteration-count:infinite;
  -webkit-animation-timing-function:linear;
  -moz-transition-duration: 2s;
  -moz-transform:rotate(-10deg);
}
@-webkit-keyframes rotateThis {
  from {-webkit-transform:rotate(0deg);}
  to {-webkit-transform:rotate(360deg);}
}
#spinner a:hover{
-moz-transform:  rotate(700deg);
}