.button {
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	-moz-box-shadow: inset 0px -1px 3px rgba(255,255,255,.5), 3px 3px 2px rgba(0,0,0,.2);
	-webkit-box-shadow: inset 0px -1px 3px rgba(255,255,255,.5), 3px 3px 2px rgba(0,0,0,.2);
	box-shadow: inset 0px -1px 3px rgba(255,255,255,.5), 3px 3px 2px rgba(0,0,0,.2);
	border: 1px solid;
	padding: 8px 12px;
	color: #fff;
	font-family: "myriad-pro",sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 11px;
	text-shadow: -1px -1px rgba(0,0,0,0.1), 0 0 15px rgba(255,255,255,0.75);
	white-space: nowrap;
	background: #777;
	border-color: #777;
	text-decoration: none;
	text-transform: none;
	position: relative;
	display: inline-block;
}

.button:hover,
.button:focus {
	background: #999;
	border-color: #999; /* Default color */
}

.button:active {
	top: 1px;
}

		
		
		/* Font Info */
		
		#cssButton .button {
	font-family: "myriad-pro",sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 11px;
	color : #ffffff;
		}		
		
		/* Colors custom class */

		#cssButton .custom {
			background: #0b3c59;
			border-color: transparent;
			border-width: 0px;
		}
		
		#cssButton .custom:hover,
		#cssButton .custom:focus {
			background: #278ec5;
			border-color: transparent;
			color: #d9eef7;
			bottom: 0px;
		}
		
		#cssButton .custom:active {
			background: #278ec5;
			border-color: transparent;
			color: #066ccf;
			top: 1px;
		}

		/* Shape */
		
		#cssButton .custom {
			-moz-border-radius: 0px;
			-webkit-border-radius: 0px;
			border-radius: 0px;
		}
		
		/* Layer */
		
		.backGroundLayer {
			margin: 5px;
			border: thin solid #666;
			padding: 5px;
		}


