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

body {
	color:black;
	font-size: 11px;
	font-family: Georgia, "Times New Roman", Times, serif;
	background: #FFF;
}

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

a:link { text-decoration: none; color:blue;}
a:active { text-decoration: none; color:blue;}
a:visited { text-decoration: none; color:blue;}
a:hover { text-decoration: none; color:blue; border-bottom:1px solid red;}

a img { border: none; }
a:hover img{ border:none;}


#menu {
	width: 120px;
	padding-left:10px;
    overflow: auto;
    top: 0;
    bottom: 0;
    position: fixed;
    height:100%;
	z-index:2;
	}

#menu:hover {
	background: #FFF;}

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

#menu ul li.section-title { font-weight:bold; }

#menu2 {
	z-index:1;
    width: 100%;
	padding-right:10px;
	padding-top:1px;
    overflow: auto;
    top: 0;
    bottom: 0;
    position: fixed;
    height:87px;
	}

#menu2:hover {
	background: #FFF;
	}

#content {
    height: 100%;
    margin: 50 0 0 110px;
	text-align:center;
	top: 0;
}

.container {
    padding: 15px 5px 25px 5px;
}

#content p { width:100%; margin-bottom: 9px; }

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-top:90px; padding-bottom:10px; text-align:center;}
#img-container p	{ width:100%; margin: 0; padding: 0 0 12px 0; }
#img-container img	{ padding: 0 0 12px 0; }

#once { clear: left; }

/* Para Safari */
::selection {
background: red;
}

/* Para Firefox */
::-moz-selection {
background: red;
}