/*----------------------------------------*/
/* NAVIGATION */
/*----------------------------------------*/
#nav {
		margin:0; 
		padding:0; 
		list-style:none;
	}	
	
		/* make the LI display inline */
		/* it's position relative so that position absolute */
		/* can be used in submenu */
		#nav li {
			float:left; 
			display:block;
			padding:0px 8px;
			position:relative;
			z-index:500; 
			margin:0 1px;
		}
		
		/* this is the parent menu */
		#nav li a {
			display:block;
			padding:10px 5px 14px 5px;
	
			text-decoration:none; 
			text-align:left; 

		}

		
	
		/* you can make a different style for default selected value */
		#nav a.selected {
			color:#53c2e7;
		}
	
		/* submenu, it's hidden by default */
		#nav ul {
			position:absolute; 
			left:0; 
			display:none; 
			margin:0 0 0 -1px; 
			padding:0; 
			list-style:none;
			
		}
		
		#nav ul li {
			width:150px;
			float:left;
			background:url(../images/navbg.png);
			border-right:1px solid #f1f1f1;
			border-left:1px solid #f1f1f1;
	
		}
		#nav ul li:last-child{
			border-bottom:1px solid #f1f1f1;
		}
		
		/* display block will make the link fill the whole area of LI */
		#nav ul a {
			display:block;  
		
			padding: 8px 5px; 
		
		}
		
		#nav ul a:hover {
			text-decoration:underline;	
		}

		/* fix ie6 small issue */
		/* we should always avoid using hack like this */
		/* should put it into separate file : ) */
		*html #nav ul {
			margin:0 0 0 -2px;
		}
#nav li li{

	border-top:1px solid #f1f1f1;
	font-size:12px;
	white-space: nowrap;
}

/*----------------------------------------*/
/* PAGINATION */
/*----------------------------------------*/

.emm-paginate {}
.emm-paginate a {background:#FFF; border:1px solid #ccc; color:#666; margin-right:4px; padding:3px 6px; text-align:center; text-decoration:none;}
.emm-paginate a:hover, .emm-paginate a:active {background:#4dcdf9; color:#FFF;}
.emm-paginate .emm-title {color:#555; margin-right:4px;}
.emm-paginate .emm-gap {color:#999; margin-right:4px;}
.emm-paginate .emm-current {color:#fff; background:#4dcdf9; border:1px solid #89adcf; margin-right:4px; padding:3px 6px;}
.emm-paginate .emm-page {}
.emm-paginate .emm-prev, .emm-paginate .emm-next {}