html, body {
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
	
	font-family: Tahoma;
	font-size: 13px;
}

#leftnav {
	
	text-align: center;
	box-sizing: border-box;
	display: inline-block;
	min-height: 100%;
	width: 170px;
	float: left;
	
	background-color: #82592d;
	border-right: 1px solid #000000;
	
	line-height: 30px;
	
	padding-bottom: 31px;
	
}

#leftnav img {
	
	margin-top: 10px;
	
}

#leftnav input[type=button], #leftnav button {
	
	box-sizing: border-box;
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
	width: calc(100% - 20px);
	background-color: #C6A076;
    border: none;
    color: white;
    padding: 8px 12px;
    text-decoration: none;
    cursor: pointer;
    border-radius: 5px;
	transition: background-color 0.15s;
	transition-timing-function: linear;
	
}
#leftnav button:hover {
	background-color: #ebbe8c;
}

#content {
	box-sizing: border-box;
	margin-left: 170px;
	margin-bottom: 31px;
	min-height: calc(100% - 31px);
	padding: 10px;
	background-color: #f4e8b2;
}

#taskbar {
	position: fixed;
	bottom: 0;
	background-color: #f0f0f0;
	width: 100%;
	height: 30px;
	border-top: 1px solid #000000;
	overflow: hidden;
	white-space:nowrap;
}

#taskbar div {
	box-sizing: border-box;
	display: inline-block;
	width: 33%;
	white-space: nowrap;
	overflow: hidden;
	margin-top: 7px;
	padding-left: 5px;
	border-right: 1px solid #c7c5b2;
	border-left: 1px solid #FFFFFF;
	
}

#taskbar div:first-child {
	border-left: 0px;
}

#taskbar div:last-child {
	border-right: 0px;
}

#mainwindow {
	
	box-sizing: border-box;
	width: 100%;
	min-height: 100%;
	border: 1px solid #000000;
	background-color: #FFFFFF;
	box-shadow: 4px 4px 15px -1px rgba(0,0,0,0.75);
	
}

#windowtitle {
	box-sizing: border-box;
	padding-top: 3px;
	padding-left: 5px;
	height: 25px;
	border-bottom: 1px solid #000000;

}

#windowcontent {
	padding: 5px;
}

.phrasebank {
	margin: 5px;
	margin-left: 15px;
	border: 1px solid #000000;
	height: 25px;
	border-radius: 3px;
	line-height: 25px;
	background-color: #f4e8b2;
	cursor: pointer;
	user-select: none;
	padding-left: 5px;
}

.phrasebank:hover {
	background-color: #ebbe8c;
}

.photoSelect {
	display: inline-block;
	width: 200px;
	text-align: center;
	border: 1px solid #000000;
	margin: 5px;
}
.photoSelect img {
		width: 100%;
		height: auto;
}

.prevQuote {

	background-color: #aed959;
	border: 1px solid #000000;
	line-height: 20px;
	text-align: center;
	cursor: pointer;
	
}

.prevQuote:hover {
	
	background-color: #8e7939;
	
}

.attachment {
	display: inline-block;
	padding: 5px;
	margin-right: 5px;
	margin-top: 5px;
	border: 1px solid #000000;
	border-radius: 3px;
}