/**
 * @author: 		m1chu
 * @copyright: 		m1chu (http://m1chu.eu)
 * @version: 		1.0
 * @email:			m1chu@m1chu.eu
 * @description:	Filtrowanie - przyklad dla artykulu o budowaniu wtyczek w jQuery
 */
 
body {
	background-color: #F5F4EF;
	color: #000305;
	font-size: 87.5%;
	font-family: 'Trebuchet MS', Trebuchet, 'Lucida Sans Unicode', 'Lucida Sans', Arial, sans-serif;
	line-height: 1.429;
	margin: 30px 0;
	padding: 0;
	text-align: center;
}
header, 
footer,
aside {
	display: block;
	clear: both;
}
aside {
	margin: 10px auto;
	background: #FFFFFF none repeat scroll 0 0;
	overflow: hidden;
	padding: 20px;
	width: 390px;
	
	-moz-background-clip: border;
	-moz-background-inline-policy: continuous;
	-moz-background-origin: padding;
	-moz-border-radius-bottomleft: 10px;
	-moz-border-radius-bottomright: 10px;
	-moz-border-radius-topleft: 10px;
	-moz-border-radius-topright: 10px;
}
footer {
	padding: 5px;
	width: 352px;
	background-color: #FCFBFA;
	margin: 0 auto;
	
	-moz-background-clip: border;
	-moz-background-inline-policy: continuous;
	-moz-background-origin: padding;
	-moz-border-radius-bottomleft: 10px;
	-moz-border-radius-bottomright: 10px;
}

input[type='text'] {
	background-color: #fff;
	border: 1px solid #eee;
	color: #999;
	font-family: inherit;
	font-size: inherit;
	padding: 5px;
	width: 350px;
}
input[type='text']:hover, 
input[type='text']:focus {
	background-color: #F1D1D5;
	border-color: #C74451;
	color: #C74451;
	cursor: text;
}
