/*
 * Stylesheet for webdevRefinery
 * Getting Started Guide
 */
 
/* Construct
 * --------------- */

* {
	padding: 0;
	margin: 0;
	}

body {
	font-size: 10px;
	font-family: Arial, sans-serif;
	background: #fff url(/forums/public/style_images/cielo/bg.jpg) top left repeat-x;
	color: #333;
	}
	
a img {
	border: 0;
	}
	

/* Header
 * --------------- */
 
#header {
	background: url(/forums/public/style_images/cielo/branding_bg.png);
	height: 100px;
	color: #fff;
	overflow: hidden;
	font-family: Verdana, Arial, sans-serif;
	}
	
#header .logo {
	position: absolute;
	top: 4px;
	left: 10px;
	}
	
#header h1 {
	position: absolute;
	top: 63px;
	left: 200px;
	font-size: 16px;
	}
	
	
/* Content
 * --------------- */
 
#content {
	padding: 95px 40px 20px 40px;
	position: relative;
	}
	
#content #back-btn {
	position: absolute;
	top: 10px;
	left: 10px;
	height: 45px;
	padding: 19px 10px 12px 68px;
	background: url(../images/back.png) no-repeat;
	font-size: 2.2em;
	cursor: pointer;
	}
	
#content #back-btn.disabled {
	visibility: hidden;
	}
	
#content #text {
	font-size: 3.1em;
	padding: 0 0 20px 150px;
	background: url(../images/prompt.png) 0 0px no-repeat;
	height: 128px;
	}
	
#content .bigtext {
	font-size: 2.5em!important;
	}
	
#content #opts {
	list-style-type: none;
	}
	
#content #opts li {
	font-size: 2.0em;
	padding: 0 0 5px 110px;
	background: url(../images/option.png) 35px 4px no-repeat;
	min-height: 68px;
	}
	
#content #opts li.gs-option {
	cursor: pointer;
	}
	
#content #opts li.gs-replaced {
	background-image: url(../images/badoption.png);
	}
	
#content #opts li.gs-link {
	background-image: url(../images/link.png);
	}
	
#content #opts li.gs-link a {
	text-decoration: none;
	color: #22a;
	}
	
#content #opts li.gs-link a:hover {
	color: #22f;
	}

.outer {
	display: block;
	position: relative;
	height: 70px;
	}
	
li > .outer {
	display: table;
	}
	
.middle {
	position: absolute;
	top: 50%;
	}
	
.outer > .middle {
	display: table-cell;
	vertical-align: middle;
	position: static;
	}
	
.inner {
	position: relative;
	top: -50%;
	}

