/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the <body> tag 
will be appended with the "custom" class, like so: <body class="custom">. You can use 
the "custom" class to override *any* CSS declarations contained in the style.css file.

For example, if you wish to change the default link color to green, you would add the 
following declarations to this file:

	.custom a, .custom a:visited { color: #090; }	<--- This makes links green
	.custom a:hover { color: #00f; }	<--- This makes links blue when you mouse over them

WHY THIS WORKS:

By using the "custom" class, you are creating more specific CSS declarations for HTML
elements. CSS styling is applied through rules of specificity, and because declarations
prepended with .custom are more specific, they get applied when the page is rendered!

More information about styling your Thesis installation using this file can be found
in the User's Guide:
	http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/
*/




form.app.generic {
	border: 5px dashed #111;
	background: #E0E0E0;
	padding: 2em 1.5em;
	color: #000;
        width : 80%;
}
form.app.generic ol,
form.app.generic ol li,
form.app.generic p {
        list-style: none !important;
	padding: 0;
	margin: 0;
}
form.app.generic p {
	color: #000;
	margin-bottom: 0.5em;
}
form.app.generic h2 {
	border: none;
	font-size: 2em;
	color: #000;
	font-weight: bold;
	margin-bottom: 0.3em;
	padding: 0;
	letter-spacing: -2px;
}
form.app.generic h2 strong {
	color: #900;
	text-decoration: underline;
}
form.app.generic ol li label,
form.app.generic ol li input {
        list-style: none !important;
	font-size: 1em;
}
form.app.generic ol li.buttons {
        list-style: none;
	text-align: center;
	padding-top: 0.5em;
	border-top: none;
}
form.app.generic ol li.buttons button {
	background: #EEE;
	border: 10px solid #900;
	padding: 11px 22px;
	letter-spacing: -1px;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	color: #000;
	font-size: 2.1em;
          list-style: none !important;
}

label.title,
form.app li span label.title {
	color: #333;
	font-weight: bold;
	font-size: 12px;
	display: block;
	padding-bottom: 1px;
        list-style: none !important;
}
label.title.required:after {
	content: ' *';
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #F00;
}
label.title.inline {
	float: left;
	text-align: left;
	width: 50%;
	margin-right: 7px;
}
label.desc {
	padding-bottom: 5px;
}
label.choice {
	font-size: 12px;
	margin:-1.55em 0pt 0pt 25px;
	padding:4px 0pt 5px;	
}

form.app li.section {
	margin-top: 9px;
	padding: 13px 5px 0 9px;	
	border-top: 1px dotted #CCC;
        list-style: none !important;
}
form.app li.section h3 {
	margin-bottom: 3px;
}
form.app li > span {
	float: left;
	margin-right: 4px;
	padding-bottom: 13px;
        list-style: none !important;
}
form.app li > span label {
	display: block;
	font-size: 11px;
	color: #444;
	padding-top: 3px;
        list-style: none;
}
form.app li span.caps {
	float: none !important;
}
/* float arrow-3D */
#aside .arrow-container {
	position:relative;
	margin-top:110px;
}
#main po-content .arrow-container,
.ppc-main .arrow-container {
	margin-top:75px;
	position:relative;
}
#aside .arrow-3d {
	position:absolute;
	border:none;
	top:-135px;
	left:185px;
	z-index:4;
}
#content_box .arrow-3d,
.ppc-main .arrow-3d {
	position: relative;
	border: none;
	top: 60px;
	left: 175px;
	z-index: 4;
}

img.no-border,
.section img.no-border,
.img-left.no-border,
.img-right.no-border,
.img-center.no-border {
	border: none !important;
}