/* 
    Document   : search.css
    Created on : 4 mars 2010, 16:16:18
    Author     : Simon
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

/*--- menu qui permet de switcher des resultats en liste aux resultats en carte ---*/
#menu_presenters {
		overflow: auto;
		zoom: 1;
		margin: 1.5em 0 0 0;
		list-style: none;
		padding: 0;
		border-bottom: 1px solid  #2196C2;
}
#menu_presenters li {
		margin: 0 10px;
		list-style: none;
		padding: 0;
		float: left;
		width: auto;
}
#menu_presenters li a {
		padding: 2px 10px;
		float: left;
		width: auto;
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
		-moz-border-radius-topleft: 10px;
		-moz-border-radius-topright: 10px;
		-webkit-border-top-left-radius: 10px;
		-webkit-border-top-right-radius: 10px;
		background: #b5b8bd;
		border: 1px solid #b5b8bd;
		color: #fff;
		text-decoration: none;
		font-weight: bold;
}
#menu_presenters li a:hover,
#menu_presenters li.active a {
		background: #2196C2;
		border: 1px solid #2196C2;
		color: #fff;
}