body {
	background-color: #ccc;
	margin: 0;
	padding: 0;
	height: 100%;
	font-family: 'Merriweather', serif;
}
header {
    margin-top: 6px;
    margin-bottom: 12px;
}
header p {
    font-size: 1.1em;
}
p {
    font-family: 'Merriweather', serif;
    color: #666;
}
.container,
.container-fluid {
    background-color: #eee;
    margin: 0 auto;
    padding: 0 10px 10px 10px;
	/*width: 950px;
	margin: 0 auto;
	background-color: #eee;
	height: 100%;
	padding: 8px;*/
}
.container-fluid {
	width: 95%;
}
h1, h2, h3 {
	font-size: 30px;
    line-height: 1.2;
	display: inline;
	font-family: 'Merriweather', serif;
	font-weight: 900;
}
h1 {
	color: #aaa;
}
h1 span {
	color: #aaa;
}
h2 {
	color: hsl(200, 60%, 44%);
}
h2 span {
    color: hsl(200, 100%, 44%);
}

header h3 {
    display: none;
    margin-left: 16px;
    color: #990000;
}
.admin header h3 { display: inline; }

#timeline.activity > p {
    background: transparent url(../img/loader.gif) no-repeat 65px 0;
}
#timeline ul {
    overflow: hidden;
    list-style-type: none;
    margin: 0;
}
#timeline .body > li {
    display: none;
    width: 106px;
    height: 60px;
    float: left;
    background-color: #aaa;
    margin-right: 2px;
    margin-bottom: 2px;
    overflow: hidden;
    position: relative;
    opacity: 0;
    cursor: pointer;
    border: 2px solid #eee;
    -webkit-transition: opacity 0.2s ease-in-out;
}
.admin #timeline li.accepted { border-color: green; background-color: green; }
.admin #timeline li.rejected { border-color: red; background-color: red; }
#timeline li.recent {
    border-color: orange;
}
#timeline li:hover {
    opacity: 1 !important;
}
#timeline .body > li span {
    opacity: 0;
    font-family: arial, sans-serif;
    font-size: 0.8em;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.5);
    color: #fff;
    padding: 2px;
    line-height: 1;
}
#timeline .body > li:hover span {
    opacity: 1;
    -webkit-transition: opacity 0.2s ease-in-out;
}
#timeline li img {
    width: 106px;
    max-width: none;
}
.admin #timeline li img {
    opacity: 0.7;
}
.admin #timeline li:hover img {
    opacity: 1;
}

#timeline li .options {
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    padding: 2px;
    opacity: 0;
    -webkit-transition: opacity 0.2s ease-in-out;
}
#timeline li:hover .options {
    opacity: 1;
}
#timeline li .options li {
    display: block;
    width: 16px;
    height: 16px;
    margin-right: 2px;
    float: left;
}
#timeline li .options .accept { background: transparent url(../img/accept.png) no-repeat 0 0; }
#timeline li .options .reject { background: transparent url(../img/reject.png) no-repeat 0 0; }



#detail {
    overflow: hidden;
}
#detail .body {
    /*height: 214px;*/
    overflow: hidden;
    display: block;
    margin: 0;
    list-style-type: none;
    position: relative;
}
#detail li {
    float: left;
    margin-right: 8px;
}

/*
.row-fluid div {
    height: 50px;
    background: green;
}
.row-fluid .span5 { background: orange; }
*/