/* Styling tooltip */
.tooltip {
	display: block;
	position: absolute;
	padding: 6px;
	font-size: 12px;	
	color: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;	
	border: 1px solid rgb(79, 79, 79);
	background: rgb(0, 0, 0);
	/* Make background a bit transparent for browsers that support rgba */	
	background: rgba(0, 0, 0, 0.5);
}

#container {
    display: table;
    }

  #row  {
    display: table-row;
    }

  #left, #right, #middle {
    display: table-cell;
    }


#container2 {
    display: table;
    }

  #row2  {
    display: table-row;
    }

  #left2, #right2, #middle2 {
    display: table-cell;
    }

div.flowvertcont {
	/* Set it so we could calculate the offsetLeft */
	position: relative;
	margin:auto;
	height: 160px;
	width: 800px;
	overflow: auto;
}
ul.flowvertcont {
	display: block;
	height: 160px;
	/* max width here, for users without javascript */	
	width: 5000px;	
	padding: 15px 0 0 15px; 
	/* removing default styling */
	margin: 0;
	list-style: none;
}
.flowvertcont li {
	display: block;
	float: left;	
	padding: 0 4px;
}
.flowvertcont a {
	display: block;
	text-decoration: none;
}
.flowvertcont span {
	display: none;
	margin-top: 3px;
	text-align: center;
	font-size: 12px;	
}
.flowvertcont a:hover span {
	display: block;
}

.flowvertcont img {
     border: 2px #000 solid;	
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
}

.flowvertcont a:hover img {
	filter:alpha(opacity=50);	
	opacity: 0.5;
}

div.flowcont_wrapper {
	position: relative; 	
	height: 830px;
	/* Make bigger than a photo, because we need a place for a scrollbar. */
	overflow: auto;
}
div.flowcont {
	padding: 15px 0;
}
.flowcont img {
        border: 2px #000 solid;	
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
	display: block;

}
.flowcont a:hover img {
	filter:alpha(opacity=50);	
	opacity: 0.5;
}

 
.flowcont_wrapper .loading {
	top: 50px;
	left: 10px;
	margin: 0 auto;
	padding: 10px;
	width: 100px;
        border: 1px #000 solid;	
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
 	text-align: center;
}
 

