/************************************************************************************
RESET
*************************************************************************************/
html, body, address, blockquote, div, dl, form, h1, h2, h3, h4, h5, h6, ol, p, pre, table, 
dd, dt, tbody, td, tfoot, th, thead, tr, button, del, ins, map, object,
a, abbr, acronym, b, bdo, big, br, cite, code, dfn, em, i, img, kbd, q, samp, small, span,
strong, sub, sup, table, td, th, tr, tt, var, legend, fieldset {
	margin: 0;
	padding: 0;
}

img, fieldset {
	border: 0;
}

/* set image max width to 100% */
img {
	max-width: 100%;
	height: auto;
	width: auto\9; /* ie8 */
}

/* set html5 elements to block */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { 
    display: block;
}

@font-face {
    font-family: "Rockwell";
    src: url("/shared/fonts/rockwell.woff") format('woff');
    font-weight: bold;
}
@font-face {
    font-family: "Brandon";
    src: url("/shared/fonts/brandon-grotesk-medium.woff") format('woff');
}
@font-face {
    font-family: "Brandon";
    src: url("/shared/fonts/brandon-grotesk-bold.woff") format('woff');
    font-weight: bold;
}
@font-face {
    font-family: "Apres";
    src: url("/shared/fonts/apres-light.woff") format('woff');
}

body {
	background: #000 url("/shared/background.jpg") fixed no-repeat;
	font: .9em Apres, Helvetica, Arial, sans-serif;
	line-height: 1.5em;
	color: #555;
	margin: 1em 1em 2em 1em;
}
a {
	color: #026acb;
	text-decoration: none;
	outline: none;
}
a:hover {
	text-decoration: underline;
}
p {
	margin: 0 0 1.2em;
	padding: 0;
}
h1 {
	font-size: 1.5em;
	margin-bottom: 10px;
	font-family: Brandon;
}
h2 {
	font-size: 1.3em;
	line-height: 2em;
	font-family: Brandon;
}
h3, h4, h5 {
	font-size: 1em;
	font-weight: bold;
	font-family: Brandon;
}
input[type="text"] {
	width: 50%;
}
textarea {
	font-family: Apres, Helvetica, Arial, sans serif;
	height: 8em;
	width: 90%;
}
table {
	border-collapse: collapse;
}
th {
	border: 2px solid grey;
	background: #eee;
	padding: 5px;
	margin: 0px;
}
td {
	border: 1px solid grey;
	padding: 5px;
	margin: 0px;
	text-align: left;
	vertical-align: top;
}

.gravatar {
	float: left;
	margin: 0px 5px 5px 0px;
}

/************************************************************************************
DISPLAY
*************************************************************************************/

.clear {
	clear: both;
}

.half-left {
	width: 47.5%;
	float: left;
	margin-right: 10px;
}

.half-right {
	width: 48%;
	float: left;
}

.large {
	font-size: large;
}
.larger {
	font-size: larger;
}

.home {
	border: 3px solid rgb(200, 200, 200);
}
.new {
	border: 3px dashed rgb(94, 132, 255);
}
.newanswer {
	border: 3px dashed rgb(5, 121, 6);
}

/************************************************************************************
STRUCTURE
*************************************************************************************/

#masthead {
	background-color: #fff;
	padding: 20px;
	margin-bottom: 10px;
}
#masthead h1 {
	font-family: Rockwell;
	font-size: 2em;	
	margin-bottom: initial;
}

#topmenu {
	background-color: #fff;
	border: 1px solid #dedede;
	border-radius: 0px 5px 0px 5px;
	box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.055);
	color: #888;
	display: block;
	margin: 1em 0;
	overflow: hidden;
}
#topmenu ul {
	margin: 0;
	padding: 0;
}
#topmenu ul li {
		display: inline-block;
		list-style-type: none;
		
		-webkit-transition: all 0.2s;
		-moz-transition: all 0.2s;
		-ms-transition: all 0.2s;
		-o-transition: all 0.2s;
		transition: all 0.2s; 
	}
#topmenu > ul > li > a {
			color: #444;
			display: block;
			line-height: 56px;
			padding: 0 24px;
			text-decoration: none;
		}
#topmenu > ul > li:hover {
          background-color: rgb( 40, 44, 47 );
        }
#topmenu > ul > li:hover > a {
          color: rgb( 255, 255, 255 );
        }

#topmenu > ul > li:hover > a > .caret {
          border-top-color: rgb( 255, 255, 255 );
        }

#main {
	width: 1200px;
	margin: 0 auto;
}

#intro {
	background-color: #fff;
	padding: 10px;
	margin-bottom: 10px;
	border-radius: 0px 10px 0px 10px;
}

#questions h2 {
	display: none;
}

.question {
	background-color: #fff;
	margin-bottom: 10px;
	padding: 10px;
	border-radius: 0px 10px 0px 10px;
}
.question p {
	margin-bottom: 0px;
}

#ask {
	background-color: #fff;
	margin-bottom: 10px;
	padding: 10px;
	border-radius: 0px 10px 0px 10px;
}

#categories {
	background-color: #fff;
	margin-bottom: 10px;
	padding: 10px;
	border-radius: 0px 10px 0px 10px;
}

#login {
	background-color: #fff;
	margin-bottom: 10px;
	padding: 10px;
	border-radius: 0px 10px 0px 10px;
}

#register {
	background-color: #fff;
	margin-bottom: 10px;
	padding: 10px;
	border-radius: 0px 10px 0px 10px;
}

#colophon {
	clear: both;
	background-color: #fff;
	padding: 10px;
	border-radius: 0px 10px 0px 10px;
}

/************************************************************************************
Show/hide content
*************************************************************************************/

.showhide {
	display: none;
}

/************************************************************************************
Tabbed content
*************************************************************************************/

/* $Id: example.css,v 1.5 2006/03/27 02:44:36 pat Exp $ */

/*--------------------------------------------------
  REQUIRED to hide the non-active tab content.
  But do not hide them in the print stylesheet!
  --------------------------------------------------*/
.tabberlive .tabbertabhide {
 display:none;
}

/*--------------------------------------------------
  .tabber = before the tabber interface is set up
  .tabberlive = after the tabber interface is set up
  --------------------------------------------------*/
.tabber {
}
.tabberlive {
 margin-top:1em;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
 margin:0;
 padding: 3px 0;
 border-bottom: 1px solid #778;
 font: bold 13px Helvetica, Arial, sans-serif;
}

ul.tabbernav li
{
 list-style: none;
 margin: 0;
 display: inline;
}

ul.tabbernav li a
{
 padding: 3px 0.5em;
 margin-left: 3px;
 border: 1px solid #778;
 border-bottom: none;
 background: #788efc;
 text-decoration: none;
}

ul.tabbernav li a:link { color: #fff; }
ul.tabbernav li a:visited { color: #fff; }

ul.tabbernav li a:hover
{
 color: #000;
 background: #AAE;
 border-color: #227;
}

ul.tabbernav li.tabberactive a
{
 background-color: #fff;
 border-bottom: 1px solid #fff;
 color: #4c66e7;
}

ul.tabbernav li.tabberactive a:hover
{
 color: #788efc;
 background: white;
 border-bottom: 1px solid white;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 padding:5px;
 border:1px solid #aaa;
 border-top:0;

 /* If you don't want the tab size changing whenever a tab is changed
    you can set a fixed height */

 /* height:200px; */

 /* If you set a fix height set overflow to auto and you will get a
    scrollbar when necessary */

 /* overflow:auto; */
}

/* If desired, hide the heading since a heading is provided by the tab */
.tabberlive .tabbertab h2 {
 display:none;
}
.tabberlive .tabbertab h3 {
 display:none;
}

/* Example of using an ID to set different styles for the tabs on the page */
.tabberlive#tab1 {
}
.tabberlive#tab2 {
}
.tabberlive#tab2 .tabbertab {
 height:200px;
 overflow:auto;
}