/* =Container
-------------------------------------------------------------- */
#liveblog-container {
	font-family: sans-serif;
	margin: 10px 0;
	width: 100%;
	display: block;
	position: relative;
}

/* =Form Actions
-------------------------------------------------------------- */
.liveblog-actions {
	display: block;
	padding: 5px 20px 16px 20px;
	border-radius: 3px;
	border: 1px solid #dfdfdf;
	background: whiteSmoke;
}
.liveblog-actions.uploading {
	border-color: #ccc;
	background: #e6e6e6;
}
.liveblog-actions legend {
	background: transparent;
	margin: 6px 0 10px;
	padding: 5px;
	float: left;
}
.liveblog-actions legend ul,
.liveblog-actions legend li {
	display: inline;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.liveblog-actions legend ul a {
	color: #21759B;
	text-decoration: none;
	border: none;
}
.liveblog-actions legend ul a:hover {
	color: #D54E21;
	text-decoration: none;
	border: none;
}
.liveblog-actions legend ul .active a {
	color: #333;
	font-weight: bold;
	cursor: text;
}
.liveblog-actions legend ul .active a:hover {
	color: #333;
}
.liveblog-form-entry {
	color: #333;
	background: #fff;
	width: 98%;
	height: 100px;
	display: inline-block;
	margin-bottom: 10px;
	padding: 5px;
	border: 1px solid #ddd;
	outline-color: #acc;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}
.liveblog-form-entry:focus {
	border-color: #AAA;
	-moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
.liveblog-form-entry.drag-over {
	background: #efe;
	color: #333;
}
.liveblog-actions .liveblog-submit-wrapper {
	position: relative;
}
.liveblog-form-entry-submit {
	margin: 0;
}
.liveblog-submit-spinner {
	padding: 0;
	position: absolute;
	top: 50%;
	right: 50%;
}
#liveblog-container .button {
	color: white;
	background-color: #21759B;
	background-image: -webkit-gradient(linear,left top,left bottom,from(#2A95C5),to(#21759B));
	background-image: -webkit-linear-gradient(top,#2A95C5,#21759B);
	background-image: -moz-linear-gradient(top,#2A95C5,#21759B);
	background-image: -ms-linear-gradient(top,#2A95C5,#21759B);
	background-image: -o-linear-gradient(top,#2A95C5,#21759B);
	background-image: linear-gradient(to bottom,#2A95C5,#21759B);
	display: inline-block;
	margin: 5px 0 0;
	padding: 0 10px;
	border-width: 1px;
	border-style: solid;
	border-color: #21759B;
	border-bottom-color: #1E6A8D;
	text-decoration: none;
	line-height: 24px;
	cursor: pointer;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: inset 0 1px 0 rgba(120, 200, 230, 0.5);
	box-shadow: inset 0 1px 0 rgba(120, 200, 230, 0.5);
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
#liveblog-container .button:hover {
	color: white;
	background-color: #278AB7;
	background-image: -webkit-gradient(linear,left top,left bottom,from(#2E9FD2),to(#21759B));
	background-image: -webkit-linear-gradient(top,#2E9FD2,#21759B);
	background-image: -moz-linear-gradient(top,#2E9FD2,#21759B);
	background-image: -ms-linear-gradient(top,#2E9FD2,#21759B);
	background-image: -o-linear-gradient(top,#2E9FD2,#21759B);
	background-image: linear-gradient(to bottom,#2E9FD2,#21759B);
	border-color: #1B607F;
	-webkit-box-shadow: inset 0 1px 0 rgba(120, 200, 230, 0.6);
	box-shadow: inset 0 1px 0 rgba(120, 200, 230, 0.6);
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
}
#liveblog-container .button:active {
	color: rgba(255, 255, 255, 0.95);
	background: #1B607F;
	background-image: -webkit-gradient(linear,left top,left bottom,from(#21759B),to(#278AB7));
	background-image: -webkit-linear-gradient(top,#21759B,#278AB7);
	background-image: -moz-linear-gradient(top,#21759B,#278AB7);
	background-image: -ms-linear-gradient(top,#21759B,#278AB7);
	background-image: -o-linear-gradient(top,#21759B,#278AB7);
	background-image: linear-gradient(to bottom,#21759B,#278AB7);
	border-color: #124560 #2382AE #2382AE #2382AE;
	-webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1);
	box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1);
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
#liveblog-container .cancel {
	margin-left: 4px;
	font-size: 85%;
}

/* =Feedback and Nags
-------------------------------------------------------------- */
.liveblog-message {
	font-size: 13px;
	font-weight: 400;
	text-align: center;
	margin-bottom: 5px;
	padding: 7px 10px;	
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	text-shadow: 1px 1px 0 #0074a2;
}

.liveblog-hidden {
	display: none;
}

/* =Entry Container
-------------------------------------------------------------- */
#liveblog-entries {
	display: block;
	padding: 10px 0 0 0;
}
.liveblog-loading {
	color: #aaa;
	background: #f9f9f9;
	border: 1px solid #ddd;
}
.liveblog-preview {
	clear: both;
}
.liveblog-archived-message {
	background-color: lightYellow;
	padding: 12px;
	border: orange;
	border-radius: 4px;
}

/* =Single Entry
-------------------------------------------------------------- */
.liveblog-entry {
	overflow: hidden;
	margin: 0;
	padding: 10px 0 0 0;
	border-top: 1px solid #dfdfdf;
}
.liveblog-entry.highlight {
	background-color: lightYellow;
}
.liveblog-entry .liveblog-entry-text {
	font-size: 18px;
	line-height: 22px;
	padding: 10px 0 0;
	margin-left: 40px;
}
.liveblog-entry .liveblog-meta .liveblog-author-name {
	font-size: 15px;
	line-height: 18px;
}
.liveblog-entry .liveblog-meta .liveblog-author-avatar {
	float: left;
	margin: 0 10px 0 0;
}
.liveblog-entry .liveblog-meta .liveblog-meta-time {
	float: right;
	margin-left: 10px;
	font-size: 10px;
	line-height: 12px;
}
.liveblog-meta-time a {
	color: #888;
	text-decoration: none;
	text-transform: uppercase;
}
.liveblog-meta-time .time:before {
	content: " - ";
}
.liveblog-entry .liveblog-entry-actions,
.liveblog-entry .liveblog-entry-actions li {
	list-style: none;
}
#liveblog-fixed-nag {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	color: white;
	text-align: center;
	-webkit-box-shadow: 0px 0px 8px 0px #000000;
	-moz-box-shadow: 0px 0px 8px 0px #000000;
	box-shadow: 0px 0px 8px 0px #000000;
	background-color: rgba(1, 1, 1, 0.6);
}
#liveblog-fixed-nag a {
	text-decoration: none;
	display: block;
	color: white;
}
#liveblog-fixed-nag a .num {
	font-size: 30px;
	margin: 0 3px;
	font-weight: bold;
	display: inline-block;
	vertical-align: middle;
}
