/*
 * 
 * ROUNDED CORNERS
 * 
 */

/* ALL CORNERS 5px  */
#salon_nav, #contentStage{
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

/*  ALL CORNERS ONLY 15 */
{
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
}

/*  LEFT ONLY 5px  */
.spacer {
    -moz-border-radius-bottomleft: 5px;
    -webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-topleft: 5px;
    -webkit-border-top-left-radius: 5px;
}

/*  RIGHT ONLY 15px  */ /*.style_current,*/
 {
    -moz-border-radius-bottomright: 15px;
    -webkit-border-bottom-right-radius: 15px;
	-moz-border-radius-topright: 15px;
    -webkit-border-top-right-radius: 15px;
}

{
    -moz-border-radius-bottomright: 12px;
    -webkit-border-bottom-right-radius: 12px;
	-moz-border-radius-topright: 12px;
    -webkit-border-top-right-radius: 12px;
}
/*  TOP RIGHT ONLY 5px  */
 {
	-moz-border-radius-topright: 5px;
    -webkit-border-top-right-radius: 5px;
}
/*  BOTTOM ONLY 5px  */
#login_menu {
    -moz-border-radius-bottomleft: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    -webkit-border-bottom-right-radius: 5px;
}
/*  BOTTOM ONLY 15px  */
 {
    -moz-border-radius-bottomleft: 15px;
    -webkit-border-bottom-left-radius: 15px;
    -moz-border-radius-bottomright: 15px;
    -webkit-border-bottom-right-radius: 15px;
}
/*  .subnav ONLY 5px  */
.subnav {
    -moz-border-radius-bottomleft: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    -webkit-border-bottom-right-radius: 5px;
	-moz-border-radius-topright: 5px;
    -webkit-border-top-right-radius: 5px;
}

/*  TOP ONLY 15px  */
 {
    -moz-border-radius-topleft: 15px;
    -webkit-border-top-left-radius: 15px;
    -moz-border-radius-topright: 15px;
    -webkit-border-top-right-radius: 15px;
}
/*  TOP ONLY 5px  */
#feedbacker_tab, #feedbacker_body, #feedbacker_thankyou {
    -moz-border-radius-topleft: 5px;
    -webkit-border-top-left-radius: 5px;
    -moz-border-radius-topright: 5px;
    -webkit-border-top-right-radius: 5px;
}

/*
 *  TEXT SHADOWS
 */
 {
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}
 {
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}

/*
 *  BOX SHADOWS
 */
 {
	box-shadow:1px 1px 5px #333;
	-webkit-box-shadow:1px 1px 5px #333;
	-moz-box-shadow: 1px 1px 5px #333;
}

/*
 * 
 * Gradient Joy
 * 
 */
 {
	background:-moz-linear-gradient(-90deg,#6e9f2c,#314714);
	background:-webkit-gradient(linear, left top, left bottom, from(#6e9f2c), to(#314714));

}



/*
 * Polaroids
 * 
 */

.polaroid {
	position:relative;
	display:inline-block;
	width:176px;
	height:190px;
	background:#fff;
	text-align:center;
	font-weight:bold;
	font-size:90%;
	margin:10px;
	color:#999;
	cursor:pointer;
	border:1px solid #ddd;
	float:left;
	padding:0;
	
}
.polaroid br {
	height:0px;
}
.polaroid:hover, .polaroid:nth-child(even):hover{
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
}
.polaroid img {
	position:relative;
	border:3px solid #333;
	width:150px;
	height:150px;
	margin-top:10px;
	margin-left:10px;
	margin-right:10px;
	margin-bottom:0;
}
.polaroid p { 
	text-align:center;
	font-family:Georgia,serif;
	font-size:15px;
	color:#2E2E2E;
	margin-top:0px;
}
.polaroid {
	-webkit-transform: rotate(-4deg);
	-moz-transform: rotate(-4deg);
}
.polaroid:nth-child(even) {
	-webkit-transform: rotate(3deg);
	-moz-transform: rotate(3deg);
}