.button{
	font:15px Calibri, Arial, sans-serif;
	text-shadow:1px 1px 0 rgba(255,255,255,0.4); /* A semi-transparent text shadow */
	
	/* 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;
	padding:9px 18px;
	
	border: 1px solid #999;/* IE */
	border: rgba(0, 0, 0, .2) 1px solid !important; /* Saf4+, Chrome, FF3.6 */
		
	/* Applying a default border raidus of 8px */
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
	border-radius: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;
	
	-moz-user-select: none;
	-webkit-user-select:none;
	-khtml-user-select: none;
	user-select: none;
	

}

.button:active{
	/* Moving the button 1px to the bottom when clicked */
	bottom:-1px;
}

/* The three buttons sizes */

.button.xlarge		{ font-size:32px;}
.button.large		{ font-size:24px;}
.button.medium		{ font-size:18px;}
.button.small		{ font-size:14px;  padding:5px 9px;}
.button.xsmall		{ font-size:12px; padding:3px 5px; }

/* A more rounded button */
.button.square{
	-moz-border-radius:0;
	-webkit-border-radius:0;
	border-radius:0;
}
.button.rounded{
	-moz-border-radius:4em;
	-webkit-border-radius:4em;
	border-radius:4em;
}


/* COLOURS */

/* [BLUE] */
.blue.button { color:#0f4b6d !important; background-color: #48b5f2; }
.blue.button:hover{ background-color:#63c7fe; }

/* [GREEN] */
.green.button { color:#345903 !important; background-color: #79be1e; }
.green.button:hover{ background-color:#89d228; }

/* [ORANGE] */
.orange.button{	color:#723d13 !important; background-color: #ff8a34; }
.orange.button:hover{ background-color:#ff984c; }

/* [PURPLE] */
.purple.button{ color:#3d2169 !important; background-color: #7c5cad; }
.purple.button:hover{ background-color:#8e6ac6;}

/* [GRAY] */
.gray.button{ color:#525252 !important; background-color: #a9adb1; }
.gray.button:hover{ background-color:#b6bbc0;}