/** Import Google Font */
@import url('https://fonts.googleapis.com/css?family=Ubuntu+Condensed');

h1, h2, h3, h4, h5 {
	font-family: 'Ubuntu Condensed', sans-serif;
}

/** Override Boostrap */

.container {
	
	width: 940px;
	margin: 0 auto;
	position: relative;
}

#error, 
#success {
	position: fixed;
	bottom: 10px;
	z-index: 100;
	width:889px;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.5);
}


#header {
	background: #f5f5f5;
	margin-bottom: 50px;
}

#footer {
	margin-top: 50px;
	text-align: right;
}
#footer .container {
	border-top: 1px solid #f5f5f5;
	padding-top: 20px;
	color: #b3b3b3;
}

.navbar .container {
	width: 940px;
	margin: 0 auto;
	
}

/** Override Boostrap */
.navbar .nav {
	width: 100%;	/* was causing few elements in nav to be seen */
}


#dashboard-side {
	background: #f2f2f2;
	min-height: 500px;
}

#dashboard-main {
	background: #f2f2f2;
	min-height: 500px;
}

.todo_complete {
	color: #b3b3b3;
	/*background: #ffffff; */
}

#list_todo, 
#list_note {
	margin: 0 15px 0 15px;
}

#list_todo div, 
#list_note div {
	padding: 3px 2px; /* (topbottom, leftright) */
	border-radius: 3px;
	overflow: auto;
	clear: both;
}

#list_todo div:hover, 
#list_note div:hover {
	background: rgba(255, 255, 255, 0.8);
}

#list_todo span:first-child {
	width: 222px;
	float: left;
	display: block;
	overflow: auto;
}

#list_todo span.options, 
#list_note span.options {
	float: right;
}

#list_todo span.options a, 
#list_note span.options a {
	margin-left: 4px;
}

#list_todo span.options a:hover, 
#list_note span.options a:hover {
	background: rgba(0,0,0,0.3);
}


/** Form Creates */
#create_todo, 
#create_note {
	padding: 5px 0 5px 5px; /* top, right, bottom, left */
	
}


/** Generic Stuff */

.ajax-loader, .ajax-loader-gray {
	background: url('../img/ajax-loader-white.gif');
	width: 32px;
	height: 32px;
	display: inline-block;
}

.ajax-loader-gray {
	background: url('../img/ajax-loader-gray.gif');
}

.hide {
	display:none;
}

iframe {
    overflow: scroll;
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: 1px solid black;
}