/* ------------------------------
	File: style.css
	Description: Style settings
	Project: Hydraulic.RU
	URL: http://hydraulic.ru/
	Update: 17.06.2014
------------------------------ */

/* BODY */
body {
	background-color: #000;
	font: 12px Tahoma, Arial, Sans-Serif;
	line-height: 1.4em;
	color: #999
}

	/* Links */
	a { 
		color: #aaa;
		text-decoration: none
	}
		a:link, a:visited {
			color: #aaa
		}
		a:hover {
			text-decoration: underline;
			color: #d93800
		}

	/* Headlines */
	h1 { 
		font-family: 'boblic', Arial, Sans-Serif;
		font-size: 1.5em;
		line-height: 1.3em;
		color: #bbb;
		margin-bottom: 10px
	}
	
	/* Button */
	.button {
		cursor: pointer;
		padding: 6px 11px;
		margin: 0px;
		border-radius: 3px;
		border: 1px solid #555;
		background: #444;
		vertical-align: middle;
		white-space: normal;
		font-family: 'boblic', Arial;
		font-size: 1.3em;
		color: #fff
	}
		.button:hover, .button:focus {
			border-color: #888;
			background: #777
		}
		.button:active {
			border: 1px solid #aaa;
			background: #ccc
		}