/* Buttons 
*/

#content .button{
	margin:5px;
}

.button {
	display: inline-block;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	font: 11px Arial, Helvetica, sans-serif;
	font-weight:bold;
	padding: 10px 25px 10px ;
	text-shadow: 0 1px 1px rgba(0,0,0,.3);
	-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);

}
.button:hover {
	text-decoration: none;
	color: white;
}
.button:active {
	position: relative;
}

.large{
	font-size: 16px;
	font-weight: bold;
	padding-top:15px;
	padding-bottom:15px;
	padding-left:20px;
	padding-right:20px;
}


/* color styles 
---------------------------------------------- */

/* black */
.black {
	color: #ffffff;
	background: #333;

}
.black:hover {
	background: #000;
}
.black:active {
	color: white;
}
.black:visited {
	color: white;
}

a.black, a.gray, a.orange, a.red, a.blue, a.rosy, a.green, a.pink {
	color:white;
}

a.white, a.white:hover{
	color:#606060;
}

/* gray */
.gray {
	color: #e9e9e9;
	background: #6e6e6e;
}
.gray:hover {
	background: #616161;
}
.gray:active {
	color: white;
}

/* white */
.white {
	color: #606060;
	background: #fff;
}
.white:hover {
	background: #ededed;
}
.white:active {
	color: #999;
}


/* orange */
.orange {
	color: white;
	background: #f78d1d;
}
.orange:hover {
	background: #f78d1d;
}
.orange:active {
	color: white;
	background: #f78d1d;
}

/* red */
.red {
	color: #faddde;
	background: #FF0000;
}
.red:hover {
	background: #b61318;
}
.red:active {
	color: white;
}

/* blue */
.blue {
	color: #d9eef7;
	background: #0095cd;
}
.blue:hover {
	background: #007ead;
}
.blue:active {
	color: white;
}

/* rosy */
.rosy {
	color: #fae7e9;
	background: #da5867;
}
.rosy:hover {
	background: #ba4b58;
}
.rosy:active {
	color: white;
}

/* green */
.green {
	color: white;
	background: #008000;
}
.green:hover {
	background: #009E00;
}
.green:active {
	color: white;
}

/* pink */
.pink {
	color: #feeef5;
	background: #f895c2;
}
.pink:hover {
	background: #d57ea5;
}
.pink:active {
	color: white;
}
	