/* @override http://www.andrewmilk.com/ndxz-studio/site/sample/style.css */

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

body {
	font: 14px "Courier New", Courier, monospace;
	background: #fff;
	text-transform: lowercase;
}

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

a:link, a:active, a:visited { text-decoration: none; color: #fff; background-color: #000; }
a:hover { text-decoration: underline; }

a img { border: none; }

#menu {
    width: 280px;
    overflow: auto;
    padding-top: 26px;
    top: 0px;
    bottom: 0;
	left: 10px;
    position: absolute;
    height: 100%;
	background-color: #fff;
}
#menu a, #menu a:link, #menu a:visited{
    background:#0a0a0a;
    color:#fff;
    text-decoration:none;
    padding:5px 10px;
    border:none;
    border-radius: 5px; 
    -moz-border-radius: 5px; 
    -webkit-border-radius: 5px;
     
    /* Add the transition properties! */
    -webkit-transition-property: background-color, color;
    -webkit-transition-duration: 600ms;
    /* you can control the acceleration curve here */
    -webkit-transition-timing-function: ease-in-out; 
}
#menu a:hover{
	background:#333;
    color:#eee;
}

#menu ul li{
	list-style: none;
	margin: 10px 0px 20px 0;
	font-size: 22px;
	width: 120px;
	text-align: center;
	padding: 10px 44px;
}

#menu ul li.section-title { }

#content {
    height: 100%;
    margin: 42px 0 0 270px;
    top: 0;
    width: 650px;
}

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

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

p {
    margin: 0 0 9px 0;
}

.title a, .title a:link, .title a:visited {
	text-transform: lowercase;
	border-bottom: 1px dotted #000;
	font-weight: bold;
	background-color: #fff;
	color: #000;
	display: block;
}
.title a:hover {
	color: #999;
	text-decoration: none;
}

p span.date {
	font-size: 11px;
	color: #999;
}

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

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

#once { clear: left; }
