button
{
	border: 1px solid #707070;
	border-radius: 3px;
	
	background-image: 	linear-gradient(
							#f2f2f2 0%,
							#ebebeb 50%,
							#dddddd 50%,
							#cfcfcf 100%
						);
	
	box-shadow: 0 0 0 1px #f6f6f6 inset;
}

button:hover
{
	border-color: #3c7fb1;
	
	background-image:	linear-gradient(
							#eaf6fd 0%,
							#d9f0fc 50%,
							#bee6fd 50%,
							#a7d9f5 100%
						);
	
	box-shadow: 0 0 0 1px #eff9fe inset;
}

button:active
{
	border-color: #2c628b;
	
	background-image:	linear-gradient(
							#e5f4fc 0%,
							#c4e5f6 50%,
							#98d1ef 50%,
							#68b3db 100%
						);
	
	box-shadow: 0 0 0 1px #78aac5 inset;
}

button.close_button
{
	position: absolute;
	
	height: 18px;
	width: 	43px;
	
	top: 1px;
	right: 6px;
	
	border: 		none;
	border-radius: 	0 0 6px 6px;
	
	background: url("media/images/sprites/close_buttons.png") -1px -1px;
	
	box-shadow: none;
}

div.window_active > button.close_button
{
	background-position: -1px -21px;
}

div.window_active:hover > button.close_button:hover
{
	background-position: -1px -41px;
	
	box-shadow: 0 0 14px #fb8162;
}

div.window_active > button.close_button:active
{
	background-position: -1px -61px !important;
	
	box-shadow: none !important;
}