@charset "UTF-8";
/* CSS Document */

body  {
	background: #FFFFF0;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-family: "Courier New", Courier, monospace;
	font-size: 100%;
}
.twoColElsRtHdr #container { 
	width: 65em;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFF0;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

/* Start header where the logo lives and top right links */

.twoColElsRtHdr #header { 
	background: #FFFFF0; 
	padding: 0 10px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
.twoColElsRtHdr #header h1 {
	margin: 0px 0px 5px 0px;
	padding: 10px 0px 0px 0px;/* this is just styling for the logo "Storyory.com" */
}
.twoColElsRtHdr #header h1 a {
	text-decoration: none;
        color: #000000;        
}
.twoColElsRtHdr #links {/* this is just styling for the links in the top right: help, forums, about, and someday log-in */
	margin: 0px;
	padding: 0px;
	float: right; /* Changing this would be unwise... I think */
	width:336px; /*222px;*/  /* To display the propre header once Facebook login. Added by ALLERIN - Jun 17, 2009 */
} 

.twoColElsRtHdr #links a {/* this is just more styling for the links in the top right: help, forums, about, and someday log-in */
	display: inline;
	margin: 0px;
	padding: 0px;
	font-size: 11px;
	font-weight: bold;
	color: #000000;
	text-decoration: none;
}
.twoColElsRtHdr #links a {/* this is just more styling for the links in the top right: help, forums, about, and someday log-in */
        display: inline;
        margin: 0px;
        padding: 0px;
        font-size: 11px;
        font-weight: bold;
        color: #000000;
        text-decoration: none;
}
.twoColElsRtHdr #sharedlinks a {/* this is just more styling for the links in the top right: help, forums, about, and someday log-in */
        display: inline;
        margin: 0px;
        padding: 0px;
        font-size: 11px;
        font-weight: bold;
        color: #000000;
        text-decoration: none;
}

.twoColElsRtHdr #links a:hover { /* settings for hover effect for the links in the top right: help, forums, about, and someday log-in */
	color: #666; /* set unselected tab link color as desired */
	background: #FFFFF0; /* set desired hover color */
}

/* Start header where the logo lives and top right links */
/* Start tabs */

ul#tabnav { /* general settings */
	text-align: center; /* set to left, right or center */
	font: bold 12px "Courier New", Courier, monospace; /* set font as desired */
	list-style-type: none;
	padding: 0px; /* THIRD number must change with respect to padding-top (X) below */
	margin: 0px;
}

ul#tabnav li { /* do not change */
	display: inline;
}
body#tab1 li.tab1, body#tab2 li.tab2, body#tab3 li.tab3, body#tab4 li.tab4 { /* settings for selected tab. Body must have "id=tab(tab number)" */
	background-color: #FFFFF0; /* set background color to match above border color */
	color: #000;
}
body#tab1 li.tab1 a, body#tab2 li.tab2 a, body#tab3 li.tab3 a, body#tab4 li.tab4 a { /* settings for selected tab link. Body must have "id=tab(tab number)"*/
	background-color: #FFFFF0; /* set selected tab background color as desired */
	color: #000; /* set selected tab link color as desired */
	position: relative;
}
ul#tabnav li a { /* settings for all tab links */
	padding: 0px; /* set padding (tab size) as desired; FIRST number must change with respect to padding-top (X) above */
	background-color: #FFFFF0; /* set unselected tab background color as desired */
	color: #008000; /* set unselected tab link color as desired */
	text-decoration: none;
	border-bottom: none;
	margin: 0px; /* set additional spacing between tabs as desired */
}
ul#tabnav a:hover { /* settings for hover effect */
	color: #000; /* set unselected tab link color as desired */
	background: #FFFFF0; /* set desired hover color */
}

/* End tabs */
/* Start side bar for advertisments */

.twoColElsRtHdr #sidebar1 { /* Stylings for ad sidebar */
	float: right;
	width: 14.5em; /* since this element is floated, a width must be given */
	background: #FFFFF0; /* top and bottom padding create visual space within this div */
	border: thin solid #000000;
	padding: 2px 0px 15px 0px;
	margin: 8px 0px 0px 0px;
	font-weight: bold;
	color: #666666;
}
.twoColElsRtHdr #sidebar1 h3, .twoColElsRtHdr #sidebar1 p { /* More stylings for ad sidebar */
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
	color: #666666;
}

/* End side bar for advertisments */

.twoColElsRtHdr #mainContent {
  	margin: 0 13em 0 10px; /* the left margin will look best if you match the padding amount to the header and footer. */
} 

.twoColElsRtHdr #noadsmaincontent {
  	margin: 0 10px 0 10px; /* This is for pages with no adds so there isn't a space to the right. */
}

.twoColElsRtHdr #selectedtext {
  	color: #333366
} 

/* Start: The last 3 or 4 sentences that were commited are shown here so that users have context for their submissions */

.twoColElsRtHdr #endstory {
	font-weight: bold;
	color: #333333;
} 

/* End: The last 3 or 4 sentences that were commited are shown here so that users have context for their submissions */
/* Start: This is the form text field where people write their submissions. The box has a character limit and alert that can be changed in the xhtml */

textarea {
	background-color: #FFFFF0;
	color: #666;
	font-family: "Courier New", Courier, monospace;
	font-size: 12pt;
	font-weight: bold;
	width: 95%;
	height: 4em;
}

/* End the form text field for user submissions */
/* Start "Submit" and "End it!" button styling */

input.btn { /* Much of what is here is uneeded unless we decide to style the buttons further in the future. Good to just leave it for now */
	color:#000000;
	background-color:#FFFFF0;
	border: 1px solid;
	border-color: #FFFFF0;
	filter:progid:DXImageTransform.Microsoft.Gradient  /* Do not change this it is an IE5 hack */
	(GradientType=0,StartColorStr='#FFFFF0',EndColorStr='#ffeeddaa'); 
	font-family: "Courier New", Courier, monospace;
	font-size: 100%;
	font-weight: bold;
}
input.btnhov { 
	  border-color: #666;
}
.twoColElsRtHdr #buttons{
	
} 
.twoColElsRtHdr #buttons h4 {
	margin: 0px;
	display: inline; /* You probably shouldn't change this */
	padding: 0px 15px 0px 15px;
}

/* End "Submit" and "End it!" button styling */
/* Start the sentences users have recently been submited and can be voted on. I tried not to use tables and then just said fuck it! My CSS master taught me better than that but Darth Sidious had such convincing areguments why I should use them. Oh, I'm so torn. */

table.sorry {
	margin-bottom: 20px;
}

.twoColElsRtHdr #number { /* This is just the number to the right of each submission that can be voted on */
	font-family: "Courier New", Courier, monospace;
	font-size: 16px;
	font-weight: bold;
	color: #333333;
	text-decoration: none;	
	padding: 0px 0px 35px 0px;
}

.twoColElsRtHdr #arrows { /* These are the vote up and vote down arrows next to each submission */
	margin: 3px;
	padding: 3px;		
} 
.twoColElsRtHdr #arrows a { /* settings for hover effect */
	color: #000; /* set unselected tab link color as desired */
	background: #FFFFF0; /* set desired hover color */
	margin: 0px;
	padding: 3px 5px 3px 0px;
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
	display: block;
}
.twoColElsRtHdr #arrows a:hover { /* settings for hover effect */
	color: #666; /* set unselected tab link color as desired */
	background: #FFFFF0; /* set desired hover color */
}
.twoColElsRtHdr #submissions {
	font-weight: bold;
	color: #333333;	
} 

.twoColElsRtHdr #submissions a:link {
	font-weight: bold;
	color: #333333;	
} 
.twoColElsRtHdr #submissions a:hover {
	font-weight: bold;
	color: #333333;	
} 
.twoColElsRtHdr #submissions a:visited {
	font-weight: bold;
	color: #333333;	
} 

.twoColElsRtHdr #submissions a:active {
	font-weight: bold;
	color: #333333;
}

.twoColElsRtHdr #score {
        font-style: italic;
        color: #333333;
}

.twoColElsRtHdr #fbphoto {
	float:left;
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
}

/* End the sentences users have recently been submited and can be voted on. */
/* Start footer where we have copyright note and pagination... when we have pagination */

.twoColElsRtHdr #footer { 
} 
.twoColElsRtHdr #pagination { /* This is really just styling and some space for pagination */ 
	font-family: "Courier New", Courier, monospace;
	font-size: 16px;
	font-weight: bold;
	color: #000000;
	text-decoration: none;
	text-align: center;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}
.twoColElsRtHdr #copyright {/* this is just styling for the links in the top right: help, forums, about, and someday log-in */
	margin: 0px;
	padding: 0px;
	text-align: center;
} 
.twoColElsRtHdr #copyright a {/* this is just more styling for the links in the top right: help, forums, about, and someday log-in */
	margin: 0px;
	padding: 0px;
	font-size: 11px;
	font-weight: bold;
	color: #000000;
	text-decoration: none;
	text-align: center;
}
/* End footer */

/* Miscellaneous classes for reuse important for ad sidebar. Don't mess with */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}


/* Start: Added by ALLERIN - Jun 17, 2009 */
#header-profilepic {
border:1px solid #7E8F45;
float:right;
margin:0 0 0 5px;
}

#header-account {
clear:none;
font-size:11px;
padding:5px 5px 0 10px;
text-align:right;
}
/* End: Added by ALLERIN */

/*
.accepted_sentence {
	background: yellow;
	color: blue;
}
*/

/* Start : Highlight 'sentence' which is accepted as a part of Story - by ALLERIN - Jun 23, 2009 */
div.accepted_sentence{
    position:relative; /*this is the key*/
    z-index:24; background-color:#ccc;
    color:#000;
    text-decoration:none}

div.accepted_sentence:hover{z-index:25; background-color:#ff0}

/*
div.accepted_sentence span{display: none}
*/

/*the span will display just on :hover state*/
/*
div.accepted_sentence:hover span{ 
    display:block;
    position:absolute;
    top:2em; left:2em; width:15em;
    border:1px solid #0cf;
    background-color:#cff; color:#000;
    text-align: center}
*/
/* End : Highlight 'sentence' which is accepted as a part of Story - by ALLERIN - Jun 23, 2009 */
