body{
	margin:0;
	padding:0;
	border:0;
	font-size: 100%;
	vertical-align: baseline;
	font: inherit;
	background: url('//hss.bisoft.si/cdn/bg.jpg') no-repeat top left;
}
* {
-webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
        box-sizing: border-box;
}
*:before,*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
#maincontainer  { 
	max-width:970px;
	position: relative;  
	margin: 0 auto; 
	padding: 0; 
}

#header{
	border: 0px solid red;
	height: 0px; 
	width: 100%;
}

#leftcol{
	border: 0px solid green;
	float: left;
	width: 17%; 
}

#contentcol{
	border: 0px solid blue;
	float: left;
	width: 67%;
}

#rightcol{
    border: 0px solid #FFA500;
    width: 16%;
    float: right;
}

#footer{
	border: 0px solid brown;
	clear: left;
	width: 100%;
}

#ffooter a {
	padding: 10px; 
}



/* bigger than Full HD monitor*/
@media only screen and (min-width: 1980px)  {}
/* Full HD monitor*/
@media only screen and (min-width: 1600px) and (max-width: 1979px) {}
/* normal monitor*/
@media only screen and (min-width: 1280px) and (max-width: 1599px) {}
/* old monitor */
@media only screen and (min-width: 960px) and (max-width: 1279px) {}

/* Tablet Portrait size to standard 960 (devices and browsers) */
@media only screen and (min-width: 768px) and (max-width: 959px) {
	#leftcol{ width: 10%; }
	#contentcol{ width: 80%; }
	#rightcol{ width: 10%; }
}

/* All Mobile Sizes (devices and browser) */
@media only screen and (min-width: 600px) and (max-width: 767px) {
	#leftcol{ width: 5%; }
	#contentcol{ width: 90%; }
	#rightcol{ width: 5%; }
	body{ background: white; }
}

/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
@media only screen and (min-width: 480px) and (max-width: 599px) {
	#leftcol{ width: 5%; }
	#contentcol{ width: 90%; }
	#rightcol{ width: 5%; }
	body{ background: white; }
}

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (min-width: 320px) and (max-width: 479px) {
	#leftcol{ width: 2.5%; }
	#contentcol{ width: 95%; }
	#rightcol{ width: 2.5%; }
	body{ background: white; }
}

/* Small phones portrait */
@media only screen and (max-width: 319px) {
	#leftcol{ width: 2.5%; }
	#contentcol{ width: 95%; }
	#rightcol{ width: 2.5%; }
	body{ background: white; }
}


