
/*
  Общие универсальные стили
*/


	/*
	 Позиционирование
	*/

	.clr:after{
		content: "";
		display: block;
		clear: both;
		height: 0;
	}

	.l{
		float: left;
	}

	.r{
		float: right;
	}

	.rel{
		position: relative;
	}

	.strip{
		overflow: hidden;
	}


	/*
	 Разметка
	*/

	.bord{
		border: 1px solid;
	}

	.ul{
		text-decoration: underline;
	}

	.nul{
		text-decoration: none;
	}

	.ulc{
		text-decoration: none;
		border-bottom: 1px solid;
	}

	.ulc:hover{
		border-bottom: 0 none;
	}

	.nulc{
		text-decoration: none;
		border-bottom: 0 none;
	}

	.nulc:hover{
		border-bottom: 1px solid;
	}


	/*
	 Текст
	*/

	.uc{
		text-transform: uppercase;
	}

	.lc{
		text-transform: lowercase;
	}



/*
 Шрифт
*/

*{
	font-family: "Lato", sans-serif;
}

