/* CSS3 Gradient Buttons 
Thanks to http://www.webdesignerwall.com/tutorials/css3-gradient-buttons/
---------------------------------------------- */
.cssbutton {
	display: inline-block;
	zoom: 1; /* zoom and *display = ie7 hack for display:inline-block */
	*display: inline;
	vertical-align: baseline;
	margin: 0 2px;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	padding: .5em 2em .55em;
	text-shadow: 0 1px 1px rgba(0,0,0,.3);
	-webkit-border-radius: .5em; 
	-moz-border-radius: .5em;
	border-radius: .5em;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	box-shadow: 0 1px 2px rgba(0,0,0,.2);
}

.cssbutton:hover {
	text-decoration: none;
}

.cssbutton:active {
	position: relative;
	top: 1px;
}


.bigrounded {
	-webkit-border-radius: 2em;
	-moz-border-radius: 2em;
	border-radius: 2em;
}


/* blue */
.blue {
	color: #fff;
	border: solid 1px #0076a3;
	background: #0095cd;
	background: -webkit-gradient(linear, left top, left bottom, from(#00adee), to(#0078a5));
	background: -moz-linear-gradient(top,  #00adee,  #0078a5);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#00adee', endColorstr='#0078a5');
}
.blue:hover {
	background: #007ead;
	background: -webkit-gradient(linear, left top, left bottom, from(#0095cc), to(#00678e));
	background: -moz-linear-gradient(top,  #0095cc,  #00678e);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#0095cc', endColorstr='#00678e');
	color: white;
}
.blue:active {
	color: #80bed6;
	background: -webkit-gradient(linear, left top, left bottom, from(#0078a5), to(#00adee));
	background: -moz-linear-gradient(top,  #0078a5,  #00adee);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#0078a5', endColorstr='#00adee');
}

/* gray */
.gray {
	color: #eee;
	border: solid 1px #555;
	background: #6e6e6e;
	background: -webkit-gradient(linear, left top, left bottom, from(#aaa), to(#888));
	background: -moz-linear-gradient(top,  #888,  #575757);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#888888', endColorstr='#575757');
}
.gray:hover {
	background: #616161;
	background: -webkit-gradient(linear, left top, left bottom, from(#757575), to(#4b4b4b));
	background: -moz-linear-gradient(top,  #757575,  #4b4b4b);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#757575', endColorstr='#4b4b4b');
}
.gray:active {
	color: #afafaf;
	background: -webkit-gradient(linear, left top, left bottom, from(#575757), to(#888));
	background: -moz-linear-gradient(top,  #575757,  #888);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#575757', endColorstr='#888888');
}

/* Coda-inspired slider */

#slider {
    width: 650px;
    margin: 0 0;
    position: relative;
}

.scroll {
    height: 500px;
    width: 582px;
    overflow: auto;
    overflow-x: hidden;
    position: relative;
    clear: left;
}

ul.navigation {
    list-style: none;
    margin: 12px 0 15px 5px;
    padding: 0;
}

ul.navigation li {
    display: inline;
    margin-right: 10px;
}

ul.navigation a {
    padding: 5px 25px 5px 25px;
    color: #000;
    background: #fff;
    text-decoration: none;
    border: 1px solid #ccc;
    -webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

ul.navigation a:hover {
    background-color: #f6f6f6;
}

ul.navigation a.selected {
    background-color: #333;
    color: #fff;
    border: 1px solid #000;

}

ul.navigation a:focus {
    outline: none;
}

.hide {
    display: none;
}

/* la petite url overrides */

h3 {
	margin: 0;
	padding: 0;
	font-size: 16px;
}

.la-petite-wrapper {
	width: 580px;
	border: 1px solid #ddd;
	margin: 0 0 0 0;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background: #fff;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fafafa));
	background: -moz-linear-gradient(top,  #fff,  #ededed);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed');
}

.la-petite-wrapper input[type=text] {
	font-size: 16px;
	width: 300px;
}

.la-petite-wrapper p {
	margin: 10px 10px 5px 10px;
}

.la-petite-wrapper ul {
	margin: 15px 0 0 25px;
}

.la-petite-wrapper ul li {
	list-style-type: square;
}

#buy-button {
	height: 40px;
	margin-right: 10px;
}

#buy-button a {
	float: right;
}

.la-petite-section-header {
	background: #eee;
	font-weight: normal;
	text-shadow: -1px 1px 1px #fff;
	-webkit-border-top-left-radius: 3px;
	-webkit-border-top-right-radius: 3px;
	-moz-border-radius-topleft: 3px;
	-moz-border-radius-topright: 3px;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	width: 570px;
	height: 30px;
	margin: 5px;
}

.la-petite-section-header h3 {
	float: left;
	margin: 0;
	padding: 5px;
}

.la-petite-section-header p {
	float: left;
	margin: 7px 5px 5px 5px;
}

.upgrade-now {
	position: absolute;
	left: 365px;
}

.upgrade-now:first-child {

}

.upgrade-now a {
	color: #000;
}

.la-petite-controls-group {
	clear: both;
	width: 580px;
	margin: 10px 0 10px 0;
	min-height: 50px;
}

.la-petite-controls-group h3 {
	margin-left: 10px;
}

.la-petite-controls-group label.radio {
	float: left;
	margin-right: 15px;
	width: 200px;
	font-size: 13px;
}

.la-petite-controls-group label {
	font-size: 14px;
}

.la-petite-controls-group label input[type=radio] {
	padding: 0;
	margin: -2px 10px 0 0;
}

#custom-domain-input, #custom-prefix-input {
	clear: both;
	padding-top: 10px;
}

.la-petite-look-like {
	clear: both;
	width: 100%;
	margin: 25px 0 15px 10px;
}

.la-petite-look-like p {
	font-size: 15px;
	margin: 0;
}

.la-petite-look-like h3 {
	float: none;
	clear: both;
}

.la-petite-save-button {
	float: right;
	clear: both;
	margin: 0 5px 10px 0;
	font-size: 14px;
}

#advanced input[type=text] {
	margin: 10px 0 10px 0;
}

#advanced label, #auto label {
	font-size: 14px;
	margin: 5px 0 10px 10px;
}

#advanced label.checkbox, #auto label.checkbox {
	clear: both;
	width: 580px;
	display: block;
	float: left;
	background: transparent;
}

#la_petite_custom_form label {
	font-weight: bold;
	display: none;
}