html {
height:100%;
}

body {
	text-align:center;
	background-color:white;
	font-family: 'Droid Sans', arial, serif;
    margin:0px;
    height:100%;
}


h1 { 
    font-family: 'Raleway', arial, serif; 
    text-shadow: 4px 4px 4px #bbb;
}

#list {
    height:100%;
    width:15%;
    float:left;
    list-style-type: none;
    
}

#list li {

    padding: 10px;
    font-size: 15px;
    font-weight:bold;
    border-top: 1px grey dashed;
    cursor:pointer;
}

#list li:hover {
    background-color: #ddd;
    
}


#content {
	margin: 0px auto;
	width:100%;
	text-align:left;
    height:100%;
}

#viewer {
    width:80%;
    height:100%;
    float:left;
    padding-left:10px;
    border-left: 3px solid black;
    position:relative;
}

#viewer iframe {
    width:100%;
    height:100%;
}

.context {
	border: 8px solid #080120;
	background-color: #fff;
	margin-bottom: 20px;
	padding:10px;
	position:relative;
	border-radius: 10px;
	-moz-border-radius: 10px;
	
	
}

.context h2 {
	width:100%;
	position:relative;
	text-shadow: 2px 2px 2px #2d2b34;
}	

#intro {

line-height: 2em;

}

.context .author {
	font-size:small;
	position:absolute;
	right:10px;
	top: 10px;
}

.context .delete {
	font-size:small;
	position:absolute;
	left:10px;
	top: 10px;
	color:red;
	cursor:pointer;
}


.context .author:before {
	content: "Author: ";
}


