/* 
    Document   : topbar
    Created on : 14 févr. 2013, 16:06:25
    Author     : fredericrau
    Description:
        Purpose of the stylesheet follows.
*/

.topbar {
	position:absolute;
	right:20px;
	top:10px;
	}

.topbarContent {
}

.topbar ul, .topbar li {
    list-style-type:none;
    margin:0;
}

.topbarMenu {
	font-size:0.9em;
    }

.topbarMenu li {
    float:left;
    background-color:rgba(255,255,255,0.5);
    -webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
   	padding:5px;
   	-webkit-transition: all 0.5s;  
	-moz-transition: all 0.5s; 
	transition:all 0.5s;
	margin-left:10px;
    }

.topbarMenu a {
    line-height:20px;
    -webkit-transition: all 0.5s;  
	-moz-transition: all 0.5s; 
	transition:all 0.5s;
    color:#639d21;
    text-decoration:none;
    height:20px;
}

.topbarMenu li:hover {
    background-color:rgba(255,255,255,1);
    }

.topbarMenu a.current {
    color:#FFFFFF;
    font-weight:500;
}

.topbarMenu img {
	width:25px;
	height:20px;
	display:block;
}