@charset "utf-8";
body {
	background-color: #606060;
	margin: 0;
	padding: 0;
	color: #000;
	font-family: 'Oswald', sans-serif;
	font-size: 100%;
	line-height: 1.4;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { 
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	
	padding-right: 15px;
	padding-left: 15px;
}
h1, h2, h3, h4, h5, h6, a, p, ul li {
	font-family: 'Oswald', sans-serif;
}
a img { 
	border: none;
}
a:link {
	color:#414958;
	text-decoration: none; 
}
a:visited {
	color: #4E5869;
	text-decoration: none;
}
a:hover, a:active, a:focus {
	text-decoration: none;
}

/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
	width: 100%;
	/*
	max-width: 1260px;
	min-width: 780px;
	*/
	background-color: #FFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
}

/* ~~ This is the layout information. ~~  */

.content {
	padding: 0px 0px;
	width:80%;
	margin: 0 auto;
}

.header {
	background-color: #606060;
	padding-top:10px;
	/* text-align:center; */
}
.header img {
	max-width: 140px;
	max-height: 77px;
	min-width: 110px;
	min-height: 60px;
}

.meni {
	text-align:center;
	background-color: #606060;
	display:block; 
	float: right;
	}
.meni a {
	margin-left:3%;
	margin-right:2%;
	color:#FFF;
	font-size: 100%;
	}


/* ~~ miscellaneous float/clear classes ~~ */
.fltrt { 
	float: right;
	margin-left: 8px;
}
.fltlft { 
	float: left;
	margin-right: 8px;
}
.clearfloat {
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}