/**
* CSS
* 
* @version 1.0
* @author Vaska 
* @author Gregory Cadar
*/
* {
	margin: 0;
	padding: 0;
}

body {
	font-size: 10px;
	font-family: Verdana, sans-serif;
	background: #fff;
        overflow: hidden;
        height: 100%;
        max-height: 100%;
}

body.section-1 { }
body.section-2 { }
body.section-3 { }

a:link { text-decoration: none; color: #000000; }
a:active { text-decoration: none; color: #000000; }
a:visited { text-decoration: none; color: #000000; }
a:hover { text-decoration: underline; color: #000000; }

a img { border: none; }

#menu ul {
	list-style: none;
	margin: 0 0 12px 0;
}

#menu ul li.section-title { }

#menu p {
  margin-bottom: 20px; /*margin beneath logo*/
}

p {
    margin: 0 0 9px 0;
}

h1 { font-size: 32px; }
h2 { font-size: 24px; }
h3 { font-size: 16px; }
h4 { font-size: 12px; }

#img-container { 
  padding-right: 50px; 
}

#img-container p { 
  width: 400px;
  margin-right: 25px;
  padding: 0 0 12px 0;
}

#once { 
  clear: left; 
}

#framecontent{
  position: absolute;
  top: 0;
  bottom: 0; 
  left: 0;
  width: 250px; /*Width of frame div*/
  height: 100%;
  overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
  margin-top: 0px; /*Margin for top of the page for sidebar content*/
}

#maincontent{
  position: fixed;
  top: 0; 
  left: 250px; /*Set left value to WidthOfFrameDiv*/
  right: 0;
  bottom: 0;
  overflow: auto;
  margin-top: 100px; /*Margin for top of the page for main content*/
}

.innertube{
  margin: 15px; /*Margins for inner DIV inside each DIV (to provide padding)*/
}

* html body{ /*IE6 hack*/
  padding: 0 0 0 280px; /*Set value to (0 0 0 WidthOfFrameDiv)*/
}

* html #maincontent{ /*IE6 hack*/
  height: 100%; 
  width: 100%; 
}

#maininner {
  width: 400px;
}

#maininner div#img-container {
  width: 550px;
}

