/*
 *
 * PhotoShakr website CSS
 *
 * version 1.0
 * last revision 2006 12 18
 *  
 * Copyright (C) 2006 by Davide 'Folletto' Casali.
 *    mail: <folletto AT gmail DOT com>
 *    web: http://digitalhymn.com
 *
 */

/*
 * Color Scheme:
 *   Base:   #bad636
 *   Dimmed: #f6fbe6
 *   Links:  #2f6693
 */

body {
	font-family: Lucida, Arial, Helvetica, Verdana, sans-serif;
	font-size: 13px;
	
	font-size: 62.5%; /* Resets 1em to 10px */
	
	margin: 0;
	padding: 0; /* Opera Fix */
}

a {
	color: #2f6693;
}

a:hover {
	color: #bad636;
}

img { border: 0; }
form { margin: 0; }

/******************************************************************************************
 * Grid
 */
#all {
	width: 1000px;
	margin: 0 auto;
}
* html body { text-align: center; } /* [IEfix] IE5 alignment bug */
* html body #all { text-align: left; } /* [IEfix] IE5 alignment bug */

/******************************************************************************************
 * Basic Styling
 */
body {
	background: #bad636;
}

#all {
	background: #ffffff url(gfx/phosh_page_filler.gif) repeat-y;
}

#header {
	background: transparent url(gfx/phosh_page_up.gif) no-repeat top;
	padding: 32px 26px 10px;
}

#inside {
	background: #ffffff;
	margin: 5px 12px;
}

#footer {
	background: transparent url(gfx/phosh_page_dn.gif) no-repeat bottom;
	padding: 40px 30px 30px;
	
	clear: both;
}

/******************************************************************************************
 * Header
 */
#header h1 {
	margin: 0;
	color: #ffffff;
}

#header h1 a {
	display: block;
	text-indent: -666em;
	
	background: transparent url(gfx/phosh_logo.gif) no-repeat;
	width: 232px;
	height: 38px;
	overflow: hidden;
}

#header h2 {
	font-size: 1.1em;
	color: #cccccc;
	
	margin: 0;
	width: 224px;
	text-align: right;
}

#topbar {
	position: absolute;
	top: 0;
	right: 0;
	
	width: 200px;
	margin-top: -75px;
	margin-right: 6px;
	
	text-align: right;
}

/******************************************************************************************
 * Columns
 */
.col1,
.col2 {
	float: right;
	margin: 2.5px;
	
	position: relative;
}

.col1 {
	width: 320px;
}

.col2 {
	width: 644px;
}

.wide {
	margin: 5px 16px;
	position: relative; /* [IEfix] for magically disappearing text */
}

.message {
	margin: 5px 24px;
	text-align: center;
}

/******************************************************************************************
 * Typo
 */
h2 {
	font-size: 1.9em;
	margin: 0 0 5px;
}

h3 {
	font-size: 1.8em;
	margin: 5px 0 2px;
}

p {
	font-size: 1.4em;
	margin: 0 8px 1em;
	
	color: #666666;
}

dl {
	font-size: 1.4em;
	margin: 0 8px 1em;
	
	color: #666666;
}

dl dt {
	margin-top: .6em;
	font-weight: bold;
}

dl dd {
	font-size: .9em;
	
	margin-left: 10px;
	min-height: 26px;
}
* html dl dd { height: 26px; } /* [IEfix] for IE height == min-height */

dl dt img {
	float: left;
	margin-right: 4px;
}

/******************************************************************************************
 * Chromed Boxes
 */
.bigbox {
	background: #bad636 url(gfx/phosh_bigbox.gif) no-repeat top;
	height: 300px;
	width: 300px;
	padding: 10px; /* Padding subtracts from height/width */
	
	margin: 5px 0;
	
	overflow: hidden;
}

.col1 h2,
.col2 h2 {
	background: #bad636 no-repeat top;
	height: 30px;
	
	text-align: center;
	line-height: 28px;
	overflow: hidden;
	
	margin: 5px 0;
}

.col1 h2 {
	background-image: url(gfx/phosh_title_1col.gif);
}

.col2 h2 {
	background-image: url(gfx/phosh_title_2col.gif);
}

/******************************************************************************************
 * Inner Boxes
 */
.start {
	background: #f6fbe6;
	padding: 8px;
	margin: 15px 10px;
	
	border: 1px solid #bad636;
}

ul.related {
	float: right;
	
	list-style: none;
	padding: 0;
	margin: 0;
	
	font-size: 1.2em;
	color: #666666;
}

ul.related li {
	background: transparent url(gfx/phosh_side_box_light.gif) no-repeat top;
	width: 174px;
	height: 30px;
	overflow: hidden;
	
	margin: 5px 0;
	padding: 15px 5px; /* padding subtracts from width/height */
	
	text-align: center;
}

ul.related li a {
	font-weight: bold;
}

ul.related li strong {
	font-size: 1.6em;
}


/******************************************************************************************
 * Forms UI
 */
fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}

input.box,
textarea.box {
	background: #f6fbe6;
	border: 1px inset #666666;
}
* html textarea.box { width: 100%; } /* [IEfix] sizing funky */

input.btn {
	
}

input.bigbtn {
	padding: 5px 75px;
	
	color: #2f6693;
	background: #bad636;
	border: 2px outset #bad636;
	
	font-size: 1.5em;
	font-weight: bold;
}
* html input.bigbtn { padding: 5px 50px; } /* [IEfix] sizing funky */
*:first-child+html input.bigbtn { padding: 5px 50px; } /* [IEfix] sizing funky */

label {
	display: block;
	margin-top: .8em;
	
	font-size: 1.4em;
}

label.optional {
	color: #666666;
}

label .flag {
	color: #666666;
	font-size: .9em;
	font-variant: small-caps;
}

label .flag.required {
	color: #660000;
	font-weight: bold;
}

.hint {
	color: #666666;
	font-size: 1.1em;
}

#steps {
	list-style: none;
	margin: 1em 0;
	padding: 0;
}

.step {
	padding: 1px 20px 20px; /* Fixes accordion glitch */
}

/******************************************************************************************
 * Start Form
 */
.start {
	position: relative;
}

.start h3 {
	float: left;
	width: 18%;
	height: 45px;
	
	padding-top: 22px;
	border-right: 1px solid #bad636;
	margin-right: 1%;
	
	color: #bad636;
}

.start fieldset {
	float: left;
	width: 36%;
	
	padding: 0 10px;
}

.start .bigbtn {
	margin-top: 19px;
	margin-left: 10px;
}

.start .box {
	background: #ffffff;
	width: 200px;
}

/******************************************************************************************
 * Home Gallery
 */
#gallery {
	
}

#gallery ul {
	list-style: none;
}

#gallery ul li {
	float: left;
	width: 120px;
	height: 120px;
	margin: 10px 30px;
	
	text-align: center;
}

#gallery ul li img {
	border: 1px solid #cccccc;
}

#gallery ul li a {
	text-decoration: none;
}

/******************************************************************************************
 * Footer
 */
#footer {
	font-size: 1.1em;
	color: #cccccc;
	
	text-align: right;
}

/******************************************************************************************
 * Clearfix
 */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.clearfix { display: inline-block; }
/* Hide from IE Mac \*/
.clearfix { display: block; }
/* End hide from IE Mac */

/* There's no spoon */