.button{
	font:15px Calibri, Arial, sans-serif;

	/* A semi-transparent text shadow */
	text-shadow:1px 1px 0 rgba(255,255,255,0.4);
	
	/* Overriding the default underline styling of the links */
	text-decoration:none !important;
	white-space:nowrap;
	
	display:inline-block;
	vertical-align:baseline;
	position:relative;
	cursor:pointer;
	
	
	background-repeat:no-repeat;

	/* The following two rules are fallbacks, in case
	   the browser does not support multiple backgrounds. */

	/* background-image:url('button_bg.png'); */
	
	/* Applying a default border raidus of 8px */
	
	/* A 1px highlight inside of the button */
	
	-moz-box-shadow:0 0 1px #fff inset;
	-webkit-box-shadow:0 0 1px #fff inset;
	box-shadow:0 0 1px #fff inset;
	
	/* Animating the background positions with CSS3 */
	/* Currently works only in Safari/Chrome */
	
	-webkit-transition:background-position 1s;
	-moz-transition:background-position 1s;
	transition:background-position 1s;
}

.button:hover{
	
	/* The first rule is a fallback, in case the browser
	   does not support multiple backgrounds
	*/
	
	background-position:top left;
	background-position:top left, bottom right, 0 0, 0 0;
}

.button:active{
	/* Moving the button 1px to the bottom when clicked */
	bottom:-1px;
}

/* The three buttons sizes */

.button.big		{width:360px;height:223px;font-size:30px;padding:10px 20px;	-moz-border-radius:8px;	-webkit-border-radius:8px;	border-radius:8px;}
.button.medium	{ width:180px;height:60px;font-size:20px;text-align:center;	-moz-border-radius:8px;	-webkit-border-radius:8px;	border-radius:8px;}
.button.small	{ font-size:13px;padding:10px 20px;	-moz-border-radius:6px;	-webkit-border-radius:6px;	border-radius:6px;}
.button.xsmall	{ font-size:13px;padding:5px 10px;	-moz-border-radius:3px;	-webkit-border-radius:3px;	border-radius:3px;}
.button.expert	{ width:190px;height:48px;font-size:18px;text-align:center;	-moz-border-radius:8px;	-webkit-border-radius:8px;	border-radius:8px;}

/* A more rounded button */

.button.rounded{
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	border-radius:4px;
}


/* Defining four button colors */


/* BlueButton */

.blue.button{
	color:#0f4b6d !important;
	border:1px solid #84acc3 !important;
	/* A fallback background color */
	background-color: #48b5f2;
}

.blue.button:hover{
	background-color:#63c7fe;
}

/* Green Button */

.green.button{
	color:#345903 !important;
	border:1px solid #96a37b !important;	
	background-color: #79be1e;
}

.green.button:hover{
	background-color:#89d228;
}

/* Orange Button */

.orange.button{
	color:#693e0a !important;
	border:1px solid #bea280 !important;	
	background-color: #e38d27;
}

.orange.button:hover{
	background-color:#ec9732;
}

.gray.button{
	color:#525252 !important;
	border:1px solid #a5a5a5 !important;
	background-color: #a9adb1;
}

.gray.button:hover{
	background-color:#b6bbc0;
}
