/* General */

html, body {
	font: normal 11px Arial, Helvetica, sans-serif;
	color: #444;
	line-height: 1.6em;
	background-color: #fff;
	font-size: 14px;
}

p {
	margin: 10px;
}

p.error {
	color: red;
}

h2 {
	font-size: 1.5em;
}

h3 {
	font-size: 24px;
}

h4 {
	font-size: 18px;
}

th {
	font-weight: bold;
}

td {
	padding: 5px;
	margin: 5px;
}

a {
    cursor: pointer; /* For when not using href */
	text-decoration: none;
	color: #599bc5;
}

a:visited {
	color: #196a91;
}

a:hover {
	text-decoration: underline;
}

strong {
	font-weight: bold;
}

ul {
	list-style: disc outside;
	padding-left: 25px;
}

label {
	display: block;
	float: left;
	width: 120px;
	text-align: right;
	margin-right: 5px;
}

input,
textarea {
	padding: 5px;
}

.formRow {
	margin-bottom: 5px;
}

.red {
	color: #c66;
}

.firstHalf,
.secondHalf {
	width: 50%;
	float: left;
}

.padLeft {
	padding-left: 20px;
}

.padRight {
	padding-right: 20px;
}

.hidden {
	display: none;
}

.toggle {
	color: #999;
	padding-left: 20px;
	cursor: pointer;
}

a.button {
	padding: 5px 10px;
	border: solid 1px #ddd;
	border-radius: 10px;
	margin: 0 5px;
	color: #414D4C;
	background: -webkit-gradient(linear, left top, left bottom, from(#efefef), to(#e6e6e6));
	background: -moz-linear-gradient(top, #efefef, #e6e6e6);
}



/* User options */

div#UserOptions {
	position: absolute;
	top: 20px;
	right: 60px;
	text-align: right;
	z-index: 2;
}

div#UserOptions a {
	color: #c66;
}

#LoginForm legend {
	display: none;
}

#LoginForm .textfield {
	border: 1px solid #ccc;
	border-radius: 15px;
	margin: 1px 0;
	padding: 3px 7px;
	width: 150px;
}

#LoginForm .textfield:hover,
#LoginForm .textfield:focus {
	border: solid 1px #999;
}

#LoginForm button {
	margin-left: 10px;
	height: 40px;
	width: 40px;
	background: none;
	background-image: url('../images/button-search.png');
	border: none;
}

#LoginForm button:hover {
	background-position: 0 -40px;
}

#LoginForm div.buttons {
	position: absolute;
	right: -42px;
	top: 5px;
}

/* Universal */

#NormalPage h3 {
	color: #444;
	margin-bottom: 20px;
}

#NormalPage .linkHeading h3 {
	margin-bottom: 0px;
} 

#NormalPage h4 {
	color: #444;
	margin-bottom: 10px;
}

#ImageText {
	display: none;
}

#Logo {
	width: 116px;
	height: 100px;
	margin: 20px 120px 0 20px;
	float: left;
	display: block;
}

#NormalPage #Menu a {
	display: block;
	float: left;
	color: #999;
	padding: 6px 16px;
	margin: 0 10px;
	font-size: 20px;
}

#NormalPage #Menu a:hover {
	color: #1368a8;
	text-decoration: none;
}

#NormalPage #Menu a.selected {
	background-color: #1368a8;
	color: #fff;
}

#NormalPage #Menu a.selected:hover {
	color: #fff;
}

#NormalPage #Content {
	margin-top: 20px;
}

#NormalPage #Content {
	padding: 20px;
	margin-bottom: 20px;
}

#NormalPage #Content h3 {
	color: #00be12;
}

#NormalPage #Content h4 {
	color: #00be12;
	margin-bottom: 20px;
}

#ShowResultsNumber {
	float: right;
	margin-bottom: 20px;
}

/* Homepage */

#WhatIsRbutr {
	font-size: 20px;
	font-weight: 200;
	line-height: 1.35em;
	margin: 0 auto;
	text-align: center;
}

#VideoContainer {
	height: 389px;
	background-image: url('../images/background-video.jpg');
	background-position: center;
}

#PlayVideoButton {
	background-image: url('../images/button-playvideo.png');
	width: 100px;
	height: 100px;
	display: block;
	margin: 0 auto;
	position: relative;
	top: 130px;
}

#PlayVideoButton:hover {
	background-position: 0 -100px;
}

#IntroVideo {
	display: none;
	margin: 0 auto;
	width: 520px;
	position: relative;
	top: 20px;
}

#SetupSteps {
	margin: 40px auto 20px auto;
	width: 600px;
}

#SetupSteps span {
	display: block;
	float: left;
	font-size: 22px;
	color: #aaa;
	margin-bottom: 20px;
	padding: 10px;
}

#SetupSteps span:first-child {
	width: 100px;
}

#StepOneTrue,
#StepTwoTrue {
	display: none;
}

#SetupSteps .failedTest,
#SetupSteps .passedTest {
	width: 320px;
	text-align: center;
}

#SetupSteps .failedTest {
	background-color: #06c;
}

#SetupSteps .failedTest:hover {
	background-color: #1368a8;
}

#SetupSteps .failedTest,
#SetupSteps .failedTest a {
	color: #fff;
}

#SetupSteps .passedTest {
	background-color: #e6e6e6;
}

#SetupSteps .passedTest,
#SetupSteps .passedTest a {
	color: #00be12;
}

#SetupSteps div.disabled .failedTest,
#SetupSteps div.disabled .passedTest {
	background-color: #eee;
}

#SetupSteps div.disabled .failedTest,
#SetupSteps div.disabled .failedTest a,
#SetupSteps div.disabled .passedTest,
#SetupSteps div.disabled .passedTest a {
	color: #aaa;
}

#SetupSteps a {
	text-decoration: none;
}

#SetupSteps .passedTick {
	background-image: url('../images/tick.png');
	width: 16px;
	height: 16px;
	padding: 0;
	margin: 15px 0 0 15px;
	display: none;
}

#HowDoesItWork {
	width: 900px;
	margin: 0 auto;
	padding: 20px;
}

#HowDoesItWork h3 {
	color: #00be12;
}

/* Profile page */

#UserOverview {
	padding: 20px;
	margin: 0 20px 20px 20px;
	border: 1px solid #ddd;
	font-size: 16px;
}

#Subscriptions {
	margin: 0 20px 20px 20px;
	font-size: 16px;
}

.subscription {
	padding: 10px 20px;
	margin-bottom: 10px;
	border: 1px solid #ddd;
}

#Pagination {
	padding: 20px;
	font-size: 18px;
	text-align: center;
}

#Pagination a {
	padding: 3px 10px;
	border: 1px solid #ccc;
	margin: 3px;
	display: inline;
	width: 15px;
	line-height: 40px;
}

#Pagination a.selected {
	font-weight: bold;
	text-decoration: underline;
}

/* Tutorial stuff */
.tutorialHeading,
.tutorial {
    padding: 10px;
    font-size: 15px;
    line-height: 18px;
}

.tutorialHeading {
    color: #F00;
}

/* showLink Page */

.sourcePage,
.rebuttalPage,
#Information {
	margin: 0 20px 20px 20px;
	border: 1px solid #ddd;
	padding: 20px;
}

.sourcePage,
.rebuttalPage {
	min-height: 234px;
	position: relative;
}

.sourcePage {
	margin-right: 70px;
}

.firstHalf.fromPage,
.secondHalf.toPage {
	position: fixed;
}

.secondHalf.toPage {
	position: fixed;
	top: 178px;
	right: 0;
}

.firstHalf.fromPage .sourcePage {
	margin-right: 90px;
}

.rebuttalPage {
	margin-left: 70px;
}

.responseType {
	z-index: 2;
}
.sourcePage .responseType {
	position: absolute;
	right: -141px;
	width: 140px;
	text-align: center;
	font-size: 20px;
	color: #fff;
	text-transform: capitalize;
}

.rebuttalPage .responseType {
	position: absolute;
	left: -141px;
	width: 140px;
	text-align: center;
	font-size: 20px;
	color: #fff;
	text-transform: capitalize;
}

.responseType div {
	padding: 5px 0 0 0;
	text-align: center;
	font-size: 14px;
	color: #777;
}

.responseType div:first-child {
	padding: 20px;
	font-size: 20px;
	color: #fff;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.responseType.direct div:first-child {
	background-color: #68af11;
}

.responseType.general div:first-child {
	background-color: #599bc5;
}

.responseType div.upvotes {
	color: #68af11;
}

.responseType div.downvotes {
	color: #e21717;
}

.responseType div.comments {
	color: #599bc5;
}

.responseType div.clicks {
	color: #c317e2;
}

div.label,
div.information {
	float: left;
}

div.label {
	width: 150px;
}

.stats,
.toImage,
.toStats {
	float: left;
}

.stats {
	margin: 10px 0;
}

.stats a.rebutted,
.stats a.rebuts {
	display: block;
	height: 23px;
	background-repeat: no-repeat;
	float: left;
	font-size: 18px;
}

.stats a.rebutted {
	background-image: url('../images/icon-rebutted.png');
    background-position: 0% center;
    color: #06c;
    padding-left: 22px;
}

.stats a.rebuts {
	background-image: url('../images/icon-rebuts.png');
    background-position: 100% center;
    margin-bottom: 5px;
    color: #c00 !important;
    padding-right: 22px;
    margin-right: 5px;
}

/* Open Requests page */

table#OpenRequests {
	width: 100%;
}

table#OpenRequests td,
table#OpenRequests th {
	padding: 10px;
	margin: 5px;
	border: 1px solid #ccc;
}

/* qtip stuff */
/* From http://craigsworks.com/projects/qtip2/demos/#modal */
/* Add some nice box-shadow-ness to the modal tooltip */
#ui-tooltip-modal{
	max-width: 420px;
	-moz-box-shadow: 0 0 10px 1px rgba(0,0,0,.5);
	-webkit-box-shadow: 0 0 10px 1px rgba(0,0,0,.5);
	box-shadow: 0 0 10px 1px rgba(0,0,0,.5);
}
 
#ui-tooltip-modal .ui-tooltip-content{
	padding: 10px;
}

/* Browse */

#TagsContainer {
	float: left;
	width: 260px;
	margin-left: -100%;
}

#TagsContainer a,
#subscribedTags a,
.tagWrapper a {
	background-color: #cce5ff;
	border-radius: 5px;
	display: inline-table;
	margin-bottom: 4px;
	padding: 2px 8px;
	color: #000;
}

.tag {
	background-color: #E6E6E6;
	border-radius: 5px 5px 5px 5px;
	display: block;
	float: left;
	margin-right: 8px;
	padding: 2px 7px;
}

a.tag.selected {
	background-color: #ccffe6;
	background-image: url("../images/button-removetag.png");
	background-position: 4% 50%;
	background-repeat: no-repeat;
	text-align: right;
	width: 185px;
}

div.tagWrapper {
	width: 200px;
	float: left;
	margin-right: 5px;
}

#HiddenTags {
	display: none;
}

.RebuttalsContainer {
	width: 100%;
}

.RebuttalsContainer tr {
	border-bottom: 15px #fff solid;
}

.RebuttalsContainer td {
	padding: 10px;
	background-color: #f3f3f3;
	color: #a4a4a4;
	width: 50%;
	vertical-align: top;
}

#SourceTweets td {
    width: auto;
}

#SourceTweets tr {
	border-bottom: 1px #FFF solid;
}


.RebuttalsContainer thead td h3 {
	margin-bottom: 0;
}

.RebuttalsContainer td a {
	color: #06c;
}

.RebuttalsContainer .hoverUrlImage,
a.linkTitle {
	font-size: 16px;
}

.RebuttalsContainer td.middle {
	background-color: #cce5ff;
	width: 56px;
	color: #666;
	font-size: 18px;
	vertical-align: bottom;
}

.RebuttalsContainer thead td {
	background-color: #fff !important;
	padding: 0 10px;
}

.RebuttalsContainer .link {
	background-image: url('../images/link.png');
	display: block;
	width: 20px;
	height: 20px;
	margin-bottom: 10px;
}

.RebuttalsContainer .comment {
	padding-bottom: 30px;
	color: #209926;
}

.RebuttalsContainer .bottom {
	float: left;
	vertical-align: bottom;
}


.thumbsUp,
.thumbsDown {
	background-repeat: no-repeat;
	display: block;
	height: 23px;
	margin-bottom: 10px;
}

.thumbsUp {
	background-image: url('../images/thumbsUp.png');
}

.thumbsDown {
	background-image: url('../images/thumbsDown.png');
}

.thumbsUp a,
.thumbsDown a {
	padding-left: 28px;
	text-decoration: none;
}

.thumbsUp a {
	color: #3c0 !important;
}

.thumbsDown a {
	color: #f00 !important;
}

.address {
	font-size: 11px;
	position: relative;
	top: -3px;
	color: #a4a4a4 !important;
}

.linkBy {
	float: right;
	vertical-align: bottom;
}

input#FilterInput {
	background-color: #e6e6e6 !important;
	border: 2px #cdcdcd solid !important;
	border-radius: 1px;
	font-size: 18px !important;
	padding: 3px 6px !important;
	margin: 10px 0 25px 0;
}

ul#TagsList,
ul#TagsListClear {
	list-style: none;
	padding-left: 0;
}

ul#TagsListClear {
	display: none;
}

ul#TagsList li.selected a,
ul#TagsListClear li.selected a {
	width: 190px;
}

#subscribedTags a.selected,
.tagWrapper a.selected {
	width: 180px;
}

ul#TagsList li.selected a,
ul#TagsListClear li.selected a,
#subscribedTags a.selected,
.tagWrapper a.selected {
	background-color: #ccffe6;
	background-image: url('../images/button-removetag.png');
	background-position: 4% 50%;
	background-repeat: no-repeat;
	text-align: right;
}

.RebuttalsContainerSorting {
	margin-bottom: 20px;
}

.RebuttalsContainerSorting a {
	margin: 0 15px;
	color: #06c;
}

.RebuttalsContainerSorting a:first-child {
	margin-left: 0;
}

.RebuttalsContainerSorting a:last-child {
	margin-right: 0;
}

.RebuttalsContainerSorting div {
	float: right;
}

.RebuttalsContainerSorting div a,
.RebuttalsContainerSorting div form,
.RebuttalsContainerSorting div select {
	float: left;
}

#TagsContainerSorting {
	margin-bottom: 20px;
}

#TagsContainerSorting a {
	margin: 0 15px;
	color: #06c;
	background: none;
	padding: 0;
}

#TagsContainerSorting a:first-child {
	margin-left: 0;
}

#TagsContainerSorting a:last-child {
	margin-right: 0;
}

#BrowseRebuttalsHeading,
#BrowseRequestsHeading {
	float: left;
}

#BrowseRebuttalsHeading a,
#BrowseRequestsHeading a {
	color: #00be12;
}

#BrowseRebuttalsHeading a:hover,
#BrowseRequestsHeading a:hover {
	text-decoration: none;
}

#BrowseRebuttalsHeading a.link,
#BrowseRequestsHeading a.link {
	color: #aaa;
}

/* Google Custom Search styles override */

td.gsc-input {
	padding: 9px 5px 20px 0 !important;
}

input.gsc-input {
	border: 2px #cdcdcd solid !important;
	border-radius: 1px;
	font-size: 18px !important;
	padding: 3px 6px !important;
	background: url("http://www.google.com/cse/intl/en/images/google_custom_search_watermark.gif") no-repeat scroll 5px center #e6e6e6 !important;
}

input.gsc-input:focus {
	background: #e6e6e6 !important;
}

.gsc-control-cse {
	padding: 0 !important;
}

input.gsc-search-button {
	height: 21px !important;
	width: 21px !important;
	background: url('../images/button-search2.png') no-repeat !important;
	margin-left: 5px !important;
	color: transparent !important;
	border: none !important;
	padding: 0 !important;
	position: relative;
	top: -5px;
}

div.gsc-clear-button {
	position: relative !important;
	top: -5px;
	left: -97px;
}

/* Footer */

#Footer {
	background-color: #eee;
	margin: 10px auto;
	width: 900px;
	padding: 20px;
}

#Footer h3 {
	color: #00be12;
}

#Footer div.half {
	width: 50%;
	float: left;
}

#Footer span.title,
#Footer span.username {
	color: #1368a8;
}

#Footer span.description {
	color: #000;
}

#Footer span.username {
	color: #1368a8;
	font-size: 10px;
}

#Footer #ArrowLeft,
#Footer #ArrowRight {
	display: block;
	width: 16px;
	height: 16px;
	float: left;
}

#Footer #ArrowLeft {
	margin-top: 10px;
	background-image: url('../images/arrow-left.png');
}

#Footer #ArrowRight {
	margin: 10px 0 0 10px;
	background-image: url('../images/arrow-right.png');
}

#Footer #BrowseMoreRebuttalsButton {
	float: right;
	background-color: #1368a8;
	color: #fff;
	padding: 5px 10px;
	font-size: 12px;
	font-weight: bold;
}

.filterTagsList {
	display: none;
}


