/* Barry de Graaff's Skeleton Project a generic piece of CSS to be used on 
 * sites that want to just display content on all browsers */

body 
{
font: 80% verdana, arial, helvetica, sans-serif;
/* Next line for IE to center container*/
text-align: center; 
}

#general-container
{
border: 1px solid black;
margin: 0 auto;
width: 100%;
max-width: 1400px;
min-width: 1300px;
/*Next line for evil IE*/
width:expression(document.body.clientWidth < 740? "740px" : document.body.clientWidth > 1024? "1024px" : "auto");


}

/* Fix's #container not clearing inner floats in firefox 
 * http://www.positioniseverything.net/easyclearing.html
 * */
.floatfix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}

/* Hide from IE-mac \*/
* html .floatfix {
height: 1%;
}
/* End hide from IE-mac */



.horizontal-div-container
{
width: 100%;
min-height: 10px;
float: left;
}


.horizontal-div-array-left
{
width: 100px; 
min-height: 10px;
float: left;
}

.horizontal-div-array-right
{
width: 100px; 
min-height: 10px;
float: right;
}

.img_right_default
{
width: 95%;
height: auto;
max-height: 250px;
}

