/* Sopme.com CSS written by Michael K. Clements */

@media screen, projection {
	
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	font-size:100%;
	margin:0;
	padding:0;
}

body {
	background:#0C1119 url(../images/bg.jpg) no-repeat top center;
}

header, footer, nav, article, section, aside {
	display:block;
}

/* Typography */

body, td, th, textarea, input, select, h2, h3, h4, h5, h6 {
	font:62.5% Helvetica, 'Helvetica Neue', Arial, sans-serif;
}

h1 {
	font-size:1.6em;
	font-weight:bold;
	letter-spacing:-0.05em;
}

h2 {
	font-size:1.1em;
	font-weight:bold;
}

.small {
	font-size:1em;
}

.bold {
	font-weight:bold;
}

.italic {
	font-style:italic;
}

.center {
	text-align:center;
}

.table {
	display:table;
}

.tablerow {
	display:table-row;
}

.tablecell {
	display:table-cell;
}

/* Colours */

.black {
	color:#000;
}

/* Tags */

a {
	color:#37b6ea;
	text-decoration:none;
	-webkit-transition: color .2s linear;
	-moz-transition: color .2s linear;
	transition: color .2s linear;
}

a:hover {
	color:#09688f;
}

p {
	text-align:justify;
	color:#000;
}

img {
	border:none;
}

ul {
	list-style:inside;
}

input, select {
	border:1px solid #d2d2d2;
	font-size:1.2em;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
}

input:focus {
	outline: none;
}

/* Wrappers */

#superwrapper {
	min-width:950px;
	max-width:1100px;
	margin:0 auto;
	padding:0 20px 0 10px;
}

#wrapper {
	width:100%;
	background:rgba(255, 255, 255, 0.3);
	box-shadow:0 0 4px rgba(0, 0, 0, 0.1);
	-moz-box-shadow:0 0 4px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow:0 0 4px rgba(0, 0, 0, 0.1);
	border-radius:0 0 15px 15px;
	-moz-border-radius:0 0 15px 15px;
	-webkit-border-radius:0 0 15px 15px;
	position:relative;
}

.clear {
	clear:both;
}

.left {
	float:left;
}

.right {
	float:right;
}

.empty {
	text-align:center;
	font-size:1.2em;
}

/* Button */

.next, .button {
	background:url(/images/button_overlay.png) repeat-x #FFB515;
	border:none;
	color:#fff;
	font-size:1.4em;
	font-weight:bold;
	cursor:pointer;
	padding:8px 15px 9px;
	margin:7px 0;
	text-align:center;
	display:inline-block;
	text-shadow:0px -1px 1px rgba(0, 0, 0, 0.3);
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 1px;
	-moz-box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 1px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 1px;
	transition:all 0.2s linear;
	-moz-transition:all 0.2s linear;
	-webkit-transition:all 0.2s linear;
}

.next:hover, .button:hover {
	background:url(/images/button_overlay.png) repeat-x #fc9200;
	color:#fff;
}

/* Header */

header {
	height:30px;
	margin:0px 0px 92px;
}

/* Logo */

#logo {
	width:317px;
	height:135px;
	background:url(/images/logo.png) 0 0;
	position:absolute;
	z-index:1;
	text-indent:-1000em;
	margin:-20px 0 0 10px;
}

#logo:hover {
	background:url(/images/logo.png) -317px 0;
}

/* Nav */

nav {
	background:url(/images/nav_bg.png) repeat-x;
	height:30px;
	border-radius:0 0 15px 15px;
	-moz-border-radius:0 0 15px 15px;
	-webkit-border-radius:0 0 15px 15px;
	text-align:right;
	font-size:1.1em;
	color:#fff;
}

nav ul {
	list-style-image:none;
	list-style-position:outside;
	list-style-type:none;
	float:right;
}

nav li {
	margin:0;
	display:inline-block;
}

nav a {
	color:#fff;
	font-weight:bold;
	display:block;
	padding:8px 10px 4px;
	height:18px;
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	transition: all .2s linear;
}

nav a:hover {
	color:#fff;
	display:block;
	background:rgba(255, 255, 255, 0.2);
}

nav .selected, nav .selected:hover {
	background:#4fcbff;
}

nav form {
	margin:4px 15px 0 10px;
	padding:3px 0 0;
	float:right;
	text-align:left;
	border:none;
	background:url(/images/search_bg.png) no-repeat;
	width:188px;
	height:16px;
}

nav .search {
	border:none;
	background:none;
	width:128px;
	float:left;
	height:15px;
	padding:0 5px;
	font-size:1em;
}

nav .submit {
	float:right;
	border:none;
	width:50px;
	height:15px;
	cursor:pointer;
}

#notifications {
 	display: none;
	position:absolute;
	top:30px;
	right:210px;
	color:#fff;
	width:200px;
	height:180px;
	padding:12px 15px 12px;
	background:#4fcbff;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	box-shadow:0 1px 3px rgba(0, 0, 0, 0.5);
	-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.5);
	z-index:20;
}

#notifications a {
	color:#fff;
}

#notifications #notification_pane {
	text-align:left;
	border-bottom:1px solid #5BC3EE;
	margin:5px 0;
	padding:5px 0;
}

#notifications .viewall {
	color:#09688f;
}

#notifications .bling {
	position:relative;
	display:block;
	padding:8px 0 8px 30px;
}

#notifications .b_new {
	border:1px dotted #000000;
}

#notifications .bling:hover {
	background:rgba(255,255,255,0.3);
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
}

#notifications .bling .icon {
	width:24px;
	height:24px;
	position:absolute;
	left:0;
	top:2px;
}

#notifications .b_comment .icon {
}

#login {
 	display: none;
	position:absolute;
	top:35px;
	right:141px;
	color:#fff;
	width:175px;
	padding:12px 15px 12px;
	background:#4fcbff;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	box-shadow:0 1px 3px rgba(0, 0, 0, 0.5);
	-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.5);
	z-index:10;
}

#login .attach {
	width:10px;
	height:5px;
	background:#4fcbff;
	position:absolute;
	top:-5px;
	left:50%;
}

#login .textbox input {
	display:block;
	border:none;
	width:163px;
	padding:5px;
	margin:0 0 5px;
	font-size:1em;
	box-shadow:0 -1px 1px rgba(0, 0, 0, 0.3);
	-moz-box-shadow:0 -1px 1px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow:0 -1px 1px rgba(0, 0, 0, 0.3);
}

#login label {
	display:inline-block;
	padding:0 0 3px;
	color:#fff;
	font-size:1.1em;
}

#login .next {
	padding:5px;
	font-size:1.1em;
	text-indent:0;
	margin:3px 0 5px 25px;
	box-shadow:0 0px 1px rgba(0, 0, 0, 0.3);
	-moz-box-shadow:0 0px 1px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow:0 0px 1px rgba(0, 0, 0, 0.3);
}

#login .loginremember {
	position:relative;
	height:30px;
}

#login  .loginremember #remember {
	border:none;
	background:none;
	position:absolute;
	left:0;
	top:6px;
	margin:0;
}

#login  .loginremember label {
	position:absolute;
	left:18px;
	top:6px;
}

#login  .loginremember .next {
	position:absolute;
	right:0;
	top:0;
}

#login .forgot {
	display:block;
	color:#09688f;
	line-height:1.4em;
}

#login .forgot:hover {
	text-decoration:underline;
}

#login .alternative {
	display:block;
	background:#91DFFF;
	width:205px;
	margin:10px -15px -12px;
	padding:5px 0 10px 0;
	float:left;
	border-top:2px solid #09688f;
	border-radius:0 0 5px 5px;
	-moz-border-radius:0 0 5px 5px;
	-webkit-border-radius:0 0 5px 5px;
	text-align:center;
}

#login .alternative .or {
	display:block;
	margin:0 0 5px;
	font-size:1.4em;
	font-weight:bold;
	color:#09688f;
}

/* Advert */

.top_ad_spacer {
	height:72px;
	width:612px;
	position:absolute;
	top:40px;
	right:10px;
	z-index:1;
}

/* Shout Input Box */

#page #shoutouter {
	padding:10px;
	background:#f5f5f5;
	border-radius:7px;
	-moz-border-radius:7px;
	-webkit-border-radius:7px;
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	transition: all .2s linear;
}

#page #shoutouter:hover {
	background:#ffeeca;
}

#page #shoutinput {
	width:100%;
	position:relative;
	height:33px;
	background:#fff;
	border:1px solid #ccc;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
}

#page #shoutinput input {
	background:transparent;
	border:none;
	height:25px;
	position:relative;
	top:4px;
	left:5px;
	width:80%;
	font-size:1.6em;
	color:#9f9f9f;
	-webkit-appearance:none;		
}

#page .submit {
	width:106px;
	height:35px;
	border:none;
	background:url(/images/shoutbox_submit.png) no-repeat;
	position:absolute;
	top:-1px;
	right:-1px;
	text-indent:-1000px;
	cursor:pointer;
}


#page .char_count {
	position:absolute;
	right:115px;
	z-index:10;
	top: 5px;	
}

#page #charsRemaining {
	font-size:2em;
	font-weight:bold;
	color:#ddd;
}

/* Commit box */

#commit {
	width:660px;
	height:350px;
	z-index:100;
	position:fixed;
	top:50%;
	left:50%;
	margin-left:-330px;
	margin-top:-175px;
}

#commit .box {
	background:#fff url(/images/commit_bg.png) repeat-x bottom;
	border-radius: 10px;
	position:relative;
	z-index:100;
}

#commit .greybg {
	background:url(/images/blackbg.png) repeat;
	position:fixed;
	top:0;
	right:0;
	bottom:0;
	left:0;
	z-index:1;
}

#commit .box .internal {
	padding:10px 15px;
	min-height:350px;
}

#commit .box h1 {
	font-size:2em;
	font-weight:bold;
	color:#000;
	display:inline;
	word-wrap:break-word;
}

#commit .box p {
	font-size:1.4em;
	color:#888;
}

#commit .box .space {
	margin:30px 0;
}

#commit .box .edit {
	font-size:1.1em;
	font-weight:bold;
	margin:0 0 0 5px;
}

#commit .box .next {
	float:right;
	margin:20px 0 10px;
}

#commit .box .selections {
	text-align:center;
}

#commit .box .selections span {
	width:185px;
	height:150px;
	margin:0 2px;
	display:inline-block;
	font-size:2em;
	font-weight:bold;
	letter-spacing:-0.05em;
	background:#7f7977 url(/images/button_overlay.png) repeat-x top;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	cursor:pointer;
}

#commit .box .selections .selected {
	background:#ffb515 url(/images/button_overlay.png) repeat-x top;
}

#commit .box .selections span a {
	width:100%;
	display:block;
	color:#fff;
	padding:115px 0 0;
	text-shadow:0px -1px 0px rgba(0, 0, 0, 0.3);
}

#commit .box .selections span #news {
	background:url(/images/selection_news.png) no-repeat center 15px;
}

#commit .box .selections span #image {
	background:url(/images/selection_image.png) no-repeat center 15px;
}

#commit .box .selections span #video {
	background:url(/images/selection_video.png) no-repeat center 15px;
}

#commit .box .nsfw {
	background:#9b2327 url(/images/button_overlay.png) repeat-x top;
	color:#fff;
	font-size: 1.3em;
	font-weight:bold;
	display:inline-block;
	padding:8px 10px 8px 26px;
	margin:20px 0 10px;
	float:left;
	position:relative;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	cursor:pointer;
}

#commit .box .nsfw input {
	position:absolute;
	top:10px;
	left:9px;
	width:10px;
	height:10px;
	margin:0;
	border:none;
	background:none;
}

#commit .box .textarea {
	width:96%;
	font-size:1.2em;
	color:#888;
	background:#fff;
	border:1px dashed #ccc;
	padding:10px;
	margin:10px 0 0;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	resize:none;
	word-wrap: break-word;
}

#commit .box div.textarea {
	cursor:pointer;
}

#commit .box .margin {
	margin:10px 0 0;
	font-size:1.4em;
	font-weight:bold;
	color:#AE2626;
}

#commit #temp_img_content {
	float:right;
	padding:10px;
	background:#fff;
	border:1px solid #eee;
}

#commit #temp_img_content img {
	float:left;
}

#commit .inputbox {
	width:85%;
	font-size:1em;
	font-weight:bold;
}

#commit #data_fetch {
	width:100%;
	text-align: center;
	margin:50px 0;
	font-size:1.4em;
	font-weight:bold;
	letter-spacing:-1px;
}

/* Filters */

.filters {
	margin:15px 0 5px;
	height:25px;
	border-bottom:1px solid #ccc;
}

.filters a {
	display:inline-block;
	font-size:1.1em;
	padding:3px 4px;
	height:14px;
	position:relative;
}

.filters a img {
	position:absolute;
	bottom:-6px;
	left:50%;
	margin-left:-3px;
}

.filters .selected {
	color:#ccc;
}

.comment_filter {
	margin:10px 0 0;
	padding:10px 0 0;
	border-top:1px solid #e3e3e4;
}

.comment_filter h1 {
	font-size:1.6em;
	float:left;
}

.comment_filter span {
	font-weight:bold;
	float:right;
}

/* Main */

#main {
	position:relative;
}

#main #page {
	background:#fff url(/images/aside_bg.png) right repeat-y;
	border-radius:15px;
	-moz-border-radius:15px;
	-webkit-border-radius:15px;
	padding:25px 310px 10px 15px;
	min-height:680px;
}

#main #full {
	background:#fff;
	border-radius:15px;
	-moz-border-radius:15px;
	-webkit-border-radius:15px;
	padding:25px 15px 10px;
}

#main article {
	margin: 10px 0px 20px;
	padding:0 0 0 70px;
	position:relative;
	z-index:1;
}

#main article .text {
	float:left;
	width:100%;
}

#main article h1 {
	color:#003371;
	font-size:1.6em;
	font-weight:bold;
	margin:0;
	word-wrap:break-word;
	transition:0.2s color linear;
	-moz-transition:0.2s color linear;
	-webkit-transition:0.2s color linear;
}

#main article h1:hover {
	color:#37B6EA;
}

#main .shout h1, #main .shout h1:hover {
	color:#000;
}

#main article p {
	color:#000;
	font-size:1.1em;
	line-height:1.6em;
	margin: 3px 0px;
}

#main article .source {
	color:#888888;
	margin:0 10px 0 0;
	display:inline-block;
}

#main article .small {
	color:#fe9500;
	font-weight:bold;
	margin:0 10px;
}

#main article .delete {
	color:#FF3300;
	font-weight:bold;
	cursor:pointer;
	display:inline-block;
	padding:0 0 0 10px;
	background:url(/images/small_cross.png) 0 2px no-repeat;
}

#main article .thumbnail {
	float: right;
	border: 1px solid #eee;
	padding:5px;
	margin:0 0 0 10px;
}

#main article .thumbnail img {
	float:right;
}

#main article .favicon {
	width:16px;
	height:16px;
	margin:0 5px 0 0;
	float:left;
}

#main .shout {
	padding:0 0 0 70px;
}

#main .shout .shoutbox {
	background:url(/images/shout_quote1.png) top left no-repeat,
	url(/images/shout_quote2.png) bottom right no-repeat,
	url(/images/shout_bg.png) repeat-x #ffd167;
	min-height:35px;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	box-shadow:0 1px 0px rgba(0, 0, 0, 0.3);
	-moz-box-shadow:0 1px 0px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow:0 1px 0px rgba(0, 0, 0, 0.3);
	width:87%;
	padding: 20px 17px;
	margin: 2px 0px 3px;
}

#main .shout .tail {
	background:url(/images/shout_tail.png) no-repeat;
	width:36px;
	height:23px;
	float:left;
	margin:28px 0 0;
}

/* Side bar */

.triangle-br {
	border-color: #1873a6 transparent transparent transparent;
	border-style:solid;
	border-width:15px;
	height:0px;
	width:0px;
	position:absolute;
	right: 0;
	bottom: -30px;
	z-index: -1;
}

.triangle-tr {
	border-color: transparent transparent #1873a6 transparent;
	border-style:solid;
	border-width:15px;
	height:0px;
	width:0px;
	position:absolute;
	right: 0;
	top: -30px;
	z-index: -1;
}

aside {
	width:268px;
	border-radius:0 15px 15px 0;
	-moz-border-radius:0 15px 15px 0;
	-webkit-border-radius:0 15px 15px 0;
	padding:25px 0 0;
	position:absolute;
	right:0;
	top:0;
}

aside section {
	background:#37b6ea url(/images/aside_blue_bg.png) repeat-x top;
	color:#fff;
	padding:15px 10px;
	margin:0 -10px 30px;
	width:268px;
	border-radius:7px 0 0 7px;
	-moz-border-radius:7px 0 0 7px;
	-webkit-border-radius:7px 0 0 7px;
	position:relative;
}

aside .ribbon {
	min-height:10px;
}

aside .ribbon a {
	background:#37b6ea url(/images/aside_blue_bg.png) repeat-x top;
	position:absolute;
	left:0;
	top:0;
	right:0;
	bottom:0;
	padding:10px;
	font-size:1.6em;
	font-weight:bold;
	border-radius:7px 0 0 7px;
	-moz-border-radius:7px 0 0 7px;
	-webkit-border-radius:7px 0 0 7px;
	transition:all 0.2s linear;
	-moz-transition:all 0.2s linear;
	-webkit-transition:all 0.2s linear;
}

aside .ribbon a:hover {
	background:#6fd0f8;
	left:-10px;
}

aside h1 {
	font-size:1.6em;
	color:#fff;
	position:relative;
	top:-5px;
}

aside section p {
	color:#fff;
}

aside section a {
	color:#fff;
}

aside section .list a {
	float:left;
	width:214px;
	word-wrap: break-word;
	height:28px;
	display:block;
	font-size:1.1em;
}

aside section .list a:hover {
	color:#caf0ff;
}

aside .shadow {
	background:url(/images/aside_shadow.png) no-repeat right;
	height:30px;
	width:268px;
	position:absolute;
	bottom:-30px;
	left:10px;
}

aside #submitter {
	background:#37b6ea url(/images/aside_blue_bg.png) repeat-x top;
	padding:15px 10px;
	margin:0 -10px;
	width:268px;
	min-height:557px;
	border-radius:7px 0 0 7px;
	-moz-border-radius:7px 0 0 7px;
	-webkit-border-radius:7px 0 0 7px;
}

aside #submitter .name {
	color:#fff;
	font-size:1em;
	font-weight:bold;
}

aside #submitter .recent h1 {
	margin: 10px 0px 5px;
}

/* Count */

.count {
	width:55px;
	height:40px;
	background:url(/images/count_bg.png) no-repeat 0 0;
	text-align:center;
	position:absolute;
	top:0;
	left:0;
}

.count:hover {
	background:url(/images/count_bg.png) no-repeat 0 -80px;
}

.count:hover span {
	display:none;
}

.count span {
	color:#fff;
	font-size:2em;
	font-weight:bold;
	position:absolute;
	left:0;
	top:0;
	width:55px;
	height:33px;
	padding:7px 0 0;
}

.count .downvote {
	width:28px;
	height:40px;
	position:absolute;
	left:0;
	top:0;
	z-index:1;
}

.count .downvote:hover {
	background:url(/images/count_bg.png) no-repeat 0 -120px;
}

.count .upvote {
	width:27px;
	height:40px;
	position:absolute;
	right:0;
	top:0;
	z-index:1;
}

.count .upvote:hover {
	background:url(/images/count_bg.png) no-repeat -28px -120px;
}

.hot {
	background:url(/images/count_bg.png) no-repeat 0 -40px;
}

.greyed, .greyed:hover {
	background:url(/images/count_bg.png) no-repeat 0 -160px;
}

.greyed span {
	font-size:1em;
	color:#F9F9F9;
	text-shadow: #333 0px -1px 2px;
	cursor:default;
}

.greyed:hover span {
	display:block;
}

.greyed a {
	display:none;
}

.microvoteup {
    background:url(/images/minivote.png) no-repeat 0 -80px;
    width:10px;
    height:10px;
    display:inline-block;
    text-indent:-1000px;
    margin:0 0 0 5px;
    position:relative;
    top:1px;
	overflow:hidden;
}

.microvotedown {
    background:url(/images/minivote.png) no-repeat 0 -90px;
    width:10px;
    height:10px;
    display:inline-block;
    text-indent:-1000px;
    margin:0 0 0 5px;
    position:relative;
    top:1px;
	overflow:hidden;
}

.shout .count {
	top:50px;
}

.user {
	width:55px;
	height:55px;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
}

.shout .user {
	margin:0 15px 0 0;
	position:absolute;
	top:0;
	left:0;
}

.shout .user .link {
	height:55px;
	width:55px;
	display:block;
}

.minicount {
	background:url(/images/minicount_bg.png) no-repeat 0 0;
	width:34px;
	height:22px;
	text-align:center;
	padding:5px 0 0;
	margin:0 10px 0 0;
	float:left;
}

.minicount span {
	color:#fff;
	font-size:1.2em;
	font-weight:bold;
}

.remove_vote {
	position:absolute;
	left:0;
	top:100px;
	display:none !important;
}

aside .list {
	border-top:1px solid #5bc3ee;
	border-bottom:1px solid #34a4d3;
	height:32px;
	padding:5px 0 0;
}

aside .list:first-child {
	border-top:none;
}

aside .list:last-child {
	border-bottom:none;
}

aside .top {
	border-top:none;
}

/* Paging */

.paging {
	margin:20px 0 10px;
	text-align:center;
	font-size:1.3em;
	font-weight:bold;
}

.paging a {
	display:inline-block;
	margin:0 2px;
	border-bottom:2px solid #37B6EA;
}

.paging .selected {
	background:#37B6EA;
	color:#fff;
	padding:2px 3px;
}

/* Comments */

.comment {
	padding:10px 0 10px 75px;
	border-bottom:1px solid #e3e3e4;
	position:relative;
	font-size:1.1em;
	line-height:1.4em;
	min-height: 57px;
	word-wrap:break-word;
}

.comment .small {
	color:#fe9500;
	font-weight:bold;
	font-size:0.9em;
	margin:0 10px 0 0;
}

.comment .delete {
	color:#FF3300;
	font-weight:bold;
	font-size:0.9em;
	cursor:pointer;
	display:inline-block;
	padding:0 0 0 10px;
	background:url(/images/small_cross.png) 0 3px no-repeat;
}

.comment .minicount {
	position:absolute;
	top:40px;
	left:0;
	z-index:10;
}

.comment .user {
	width:34px;
	height:34px;
	position:absolute;
	top:10px;
	left:0;
	z-index:1;
}

.comment .upvote {
	background:url(/images/minivote.png) no-repeat 0 0;
	width:20px;
	height:20px;
	position:absolute;
	top:10px;
	left:45px;
}

.comment .downvote {
	background:url(/images/minivote.png) no-repeat 0 -20px;
	width:20px;
	height:20px;
	position:absolute;
	top:47px;
	left:45px;
}

.comment .text {
	min-height:42px;
}

#commentform {
	background:#fff5e7;
	border:1px solid #ffe7c4;
	margin:10px 0 0;
	padding:15px 120px 15px 15px;
	position:relative;
}

#commentform .input {
	width:100%;
	min-height:100px;
	padding:10px;
	font-size:1.2em;
	border:1px solid #ccc;
	resize:none;
	overflow:auto;
}

#commentform .submit {
	position:absolute;
	right:16px;
	top:17px;
}

#commentform .char_count {
	position:absolute;
	right:10px;
	top:60px;
}

#commentform .char_count span {
	font-weight:bold;
	font-size:2em;
}

/* Submitter info */

#submitter .user {
	position:absolute;
	left:10px;
}

#submitter .userinfo {
	padding: 0px 0px 0px 65px;
}

#submitter .userinfo p {
	line-height:1.3em;
}

#submitter .track {
	background:url(/images/button_overlay.png) repeat-x #FFB515;
	color:#fff;
	font-size:1.4em;
	font-weight:bold;
	width:100%;
	padding:8px 0 9px;
	margin:7px 0;
	text-align:center;
	display:block;
	cursor:pointer;
	text-shadow:0px -1px 1px rgba(0, 0, 0, 0.3);
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 1px;
	-moz-box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 1px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 1px;
	transition: background .1s linear;
	-moz-transition: background .1s linear;
	-webkit-transition: background .1s linear;
}

#submitter .track:hover {
	background:url(/images/button_overlay.png) repeat-x #fc9200;
}

/* Footer */

footer {
	min-width: 960px;
	max-width:1100px;
	margin:20px 0 10px;
	color:#fff;
	font-size:1.2em;
	position:relative;
}

footer a {
	color:#fff;
	font-weight:bold;
}

footer a:hover {
	color:#c6eeff;
}

footer .logo {
	font-size:1.8em;
	color:#5bc3ee;
}

footer .small {
	font-size:0.75em;
	width:268px;
	position:absolute;
	right:0;
	top:0;
	text-align:right;
}

footer .line {
	border-left:1px solid #fff;
	padding:0 2px 0 5px;
}

/* Signup Register */

#register {
	position:relative;
	min-height:570px;
}

#register h1 {
	font-size:1.6em;
	font-weight:bold;
	letter-spacing:-1px;
	color:#000;
	display:block;
	margin:3px 0;
}

#register h2 {
	display:block;
	width:100%;
	margin:10px 0 0;
	font-size:1.2em;
}

#register .input {
	float:right;
	width:65%;
	padding:5px;
	margin:5px 0;
}

#register .select {
	float:right;
	width:65%;
	padding:5px;
	margin:0;
}

#register .failed {
	background:#bb0f0f;
	color:#fff;
	font-size:1.2em;
	padding:10px;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

#register .signup {
	width:450px;
	margin:0 auto;
}

#register .signup .text, #register .login label {
	float:left;
	font-size:1.4em;
	font-weight:bold;
	letter-spacing:-1px;
	color:#333;
	display:block;
	margin:8px 0 0;
}

#register .or {
	font-size:4em;
	font-weight:bold;
	letter-spacing:-2px;
	position:absolute;
	left:47%;
	top:20px;
}

#register .login {
	width:450px;
	margin:20px auto 0;
}

#register .login div {
	padding:0 10px;
}

#register .login .text {
	margin:0 0 10px;
}

#register .login #signin_remember {
	margin: 10px;
}

#register .login .next {
	float:right;
}

#register .login .forgot {
	display:block;
	color:#09688f;
	line-height:1.4em;
}

#register .login .forgot:hover {
	text-decoration:underline;
}

#register .submit {
	float:right;
}

#register .joinus {
	width:40%;
	position:absolute;
	right:10px;
	top:210px;
	margin:10px 0 0;
	padding:10px;
	background:#f5f5f5;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
}

#register .joinus h1 {
	display:block;
	width:100%;
}

#register .joinus h2 {
	font-size:1.4em;
}

#register .joinus p {
	font-size:1.2em;
	line-height:1.6em;
}

#register .space {
	margin:20px 0;
}

#register #username_avail {
	position:absolute;
	right:125px;
	margin:9px 0 0;
}

/* Re-captcha */

#recaptcha_area, #recaptcha_table {
	margin:20px auto;
	height:129px;
}

.recaptcha_input_area label {
	float:none;
	font-size:inherit;
	font-weight:normal;
	letter-spacing:0;
	color:#000;
	display:inline;
	margin:0;
}

/* Forgot */

#forgot {
	margin:10px 0;
	min-height:250px;
}

#forgot h1 {
	font-size:1.8em;
}

#forgot p {
	font-size:1.2em;
	line-height:1.6em;
	margin:5px 0;x
}

#forgot label {
	float:left;
	font-size:1.4em;
	font-weight:bold;
	letter-spacing:-1px;
	color:#333;
	display:block;
	margin:8px 0 0;
}

#forgot .input {
	float:right;
	width:65%;
	padding:5px;
	margin:5px 0;
}

#forgot .username {
	float:left;
	width:45%;
	padding:20px;
	background:#f5f5f5;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
}

#forgot .password {
	float:right;
	width:45%;
	padding:20px;
	background:#f5f5f5;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
}

#forgot .info {
	display:inline;
}

/* Search */

#search {
	padding:5px 15px 10px 310px;
	min-height:680px;
}

#search h1 {
	font-size:2em;
	margin:0 0 20px;
}

#search aside {
	background:#eee;
	width:254px;
	min-height:300px;
	top:30px;
	left:25px;
	border-radius:10px 0 0 10px;
	-moz-border-radius:10px 0 0 10px;
	-webkit-border-radius:10px 0 0 10px;
	padding:10px;
}

#search aside h1 {
	color:#666;
	margin:0;
}

#search aside a {
	padding:10px 0;
	height:14px;
	text-indent:12px;
	width:100%;
	border-bottom:1px solid #ddd;
	border-top:1px solid #fff;
	font-size:1.2em;
	display:block;
	position:relative;
}

#search aside a .icon {
	float:left;
	margin:-5px 0 0;
	width:24px;
	height:24px;
}

#search aside a .chevron {
	width:24px;
	height:37px;
	background:url(/images/search_icons.png) no-repeat 0 -384px;
	position:absolute;
	right:-24px;
	top:-2px;
}

#search aside .selected {
	background:#f9f9f9;
}

#search aside #all .icon {
	background:url(/images/search_icons.png) no-repeat 0 0;
}

#search aside #hottest .icon {
	background:url(/images/search_icons.png) no-repeat 0 -24px;
}

#search aside #coldest .icon {
	background:url(/images/search_icons.png) no-repeat 0 -48px;
}

#search aside #newest .icon {
	background:url(/images/search_icons.png) no-repeat 0 -72px;
}

#search aside #commented .icon {
	background:url(/images/search_icons.png) no-repeat 0 -96px;
}

#search aside #day .icon {
	background:url(/images/search_icons.png) no-repeat 0 -120px;
}

#search aside #week .icon {
	background:url(/images/search_icons.png) no-repeat 0 -144px;
}

#search aside #month .icon {
	background:url(/images/search_icons.png) no-repeat 0 -168px;
}

#search aside #year .icon {
	background:url(/images/search_icons.png) no-repeat 0 -192px;
}

#search aside #custom .icon {
	background:url(/images/search_icons.png) no-repeat 0 -216px;
}

#search aside #articles .icon {
	background:url(/images/search_icons.png) no-repeat 0 -240px;
}

#search aside #images .icon {
	background:url(/images/search_icons.png) no-repeat 0 -264px;
}

#search aside #video .icon {
	background:url(/images/search_icons.png) no-repeat 0 -288px;
}

#search aside #shouts .icon {
	background:url(/images/search_icons.png) no-repeat 0 -312px;
}

#search aside #user .icon {
	background:url(/images/search_icons.png) no-repeat 0 -336px;
}

#search aside #source .icon {
	background:url(/images/search_icons.png) no-repeat 0 -360px;
}

#search aside .top {
	border-top:none;
}

#search aside .bottom {
	border-bottom:none;
	margin:0 0 15px;
}

/* Profile */

#profile {
	min-height:650px;
}

#track {
	position:relative;
	left:50%;
	margin-bottom:0;
	margin-left:-100px;
	width:170px;
	font-size:2em;
	padding:7px 15px;
}

.userinfo {
	position:relative;
	padding:0 0 0 65px;
	margin:2px 0 10px;
}

.userinfo h1 {
	font-size:3.2em;
	font-weight:normal;
	top:0;
}

.userinfo .user {
	position:absolute;
	left:0;
	top:50%;
	margin:-28px 0 0;
}

#profile .container {
	margin:20px 0 0;
}

#profile .container .submissions {
}

#profile .container .bar .block {
	display:block;
	margin:0 0 10px;
	padding:0 15px;
	min-height:150px;
	line-height:1.6em;
	color:#fff;
	word-wrap:break-word;
}

#profile .container .bar .block h1 {
	margin:0 0 7px;
}

#profile .shout .count {
	top:7px;
}

aside section .user {
	display:block;
	float:left;
	width:55px;
	height:55px;
	text-align:center;
	margin:5px 6px 20px;
}

aside section .user span {
	display:block;
	margin:57px 0 0;
}

/* About */

#about {
	width:70%;
	margin:10px 0;
}

#about h1 {
	font-size:2em;
}

#about h2 {
	font-size:1.6em;
	color:#ae2626;
}

#about p {
	font-size:1.2em;
	line-height:1.4em;
	margin:15px 0;

}

#about .founder {
	float:right;
	margin: 0 0 15px 15px;
	width:225px;
	height:300px;
}

/* Contact Us */

#contact {
	width:70%;
	margin:10px 0;
}

#contact h1 {
	font-size:2em;
}

#contact p {
	font-size:1.2em;
	line-height:1.4em;
	margin:15px 0;
}

#contact .text {
	float:left;
	font-size:1.4em;
	font-weight:bold;
	letter-spacing:-1px;
	color:#333;
	display:block;
	margin:8px 0 0;
}

#contact .input {
	float:right;
	width:65%;
	height:25px;
	margin:5px 0;
	text-indent:5px;
}

#contact #contact_reason {
	float:right;
	width:65%;
	height:25px;
	margin:5px 0;
}

#contact #contact_message {
	float:right;
	width:64%;
	min-height:200px;
	margin:5px 0;
	font-size:1.2em;
}

#contact #recaptcha_widget_div {
	float:right;
	width:51%;
}

#contact #recaptcha_area, #recaptcha_table {
	margin:10px 0 0;
}

#contact .next {
	float:right;
	margin:10px 0 0;
}

/* Setting */

#settings {
	padding:10px;
}

#settings label {
	display:block;
	font-size:1.4em;
	font-weight:bold;
	color:#666;
	margin:15px 0 5px;
}

#settings input {
	padding:3px;
}

#settings .table {
	width:100%;
	margin:20px 0;
}

#settings .tablecell {
	padding:3px 0;
}

#settings .tablecell.fifteen {
	width:15%;
}

#settings .user {
	float:left;
}

#settings .avatar_actions {
	float:left;
	margin:10px;
}

#settings .avatar_actions .button {
	margin:0 5px 0 0;
}

#settings #microbio {
	font-size:1.2em;
	width:80%;
	border:1px solid #d2d2d2;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
}

#settings .button {
	padding:8px 15px 9px;
	margin:20px 0 0;
	border:none;
}

/* Error */

#error {
	text-align:center;
	font-size:1.4em;
	line-height:2em;
	padding:0 0 10px;
}

#error img {
	width:480px;
	height:270px;
}

#error h1 {
	font-size:3em;
	margin:10px 0;
}

#error a {
	display:block;
}

/* Check Login */

#checklogin h1 {
	display:block;
	text-align:center;
	font-size:4em;
	margin:50px 0 0;
}

/* Notifications */

#allnotifications {
	font-size:1.2em;
	line-height:1.6em;
}

#allnotifications h1 {
	font-size:2em;
}

/* Autcomplete */
.ac_results {
	padding: 0px;
	border: 1px solid black;
	background-color: white;
	overflow: hidden;
	z-index: 99999;
}

.ac_results ul {
	width: 100%;
	list-style-position: outside;
	list-style: none;
	padding: 0;
	margin: 0;
}

.ac_results li {
	margin: 0px;
	padding: 2px 5px;
	cursor: default;
	display: block;
	/* 
	if width will be 100% horizontal scrollbar will apear 
	when scroll mode will be used
	*/
	/*width: 100%;*/
	font: menu;
	font-size: 12px;
	/* 
	it is very important, if line-height not setted or setted 
	in relative units scroll will be broken in firefox
	*/
	line-height: 16px;
	overflow: hidden;
}

.ac_loading {
	background: white url('indicator.gif') right center no-repeat;
}

.ac_odd {
	background-color: #eee;
}

.ac_over {
	background-color: #0A246A;
	color: white;
}
