/*
PROGRAM:     	Small Navigation Bar Cascading Style Sheet
FILE:        	smallnav.cpp
FUNCTION:		(defines the styles of the right small nav - home | about us | contact)
DESCRIPTION:	This is a small navigation  
AUTHOR:			Dickson Komba [DK]- Programmer (Core Systems) ITD Finance
ENVIRONMENT:	Dreamweaver MX 2004
NOTES:			
REVISION:		1.00 09-03-2005		DK	First Release
*/
/* =======================================================================================================*/

#smallnav{
	float:right;
	font:11px Verdana, Arial, Helvetica, sans-serif;
/*	background-image:    url("../assets/bgstripeblack.gif") no-repeat left center; */
	background:    url("../assets/bgstripeblack.gif") no-repeat left center; 
	text-align: right; 
	background-color:#eda;
	padding: 0;
	width:190px;
	border-bottom: #000000 1px solid
}
	#smallnav ul{
		padding-top: 3px;
		padding-right: 0px;
		padding-bottom: 6px; /*changed from 3*/
		padding-left: 0px;
		border-bottom: 3px #eda solid; /*changed from 3*/
		margin: 0px; 
	}
		#smallnav ul li{
			display: inline;
			padding:0px;
			margin:0px;
		}
		#smallnav ul li a{
			color:#FFF;
			text-decoration: none;
			padding: 0 5px 0 5px;
			/*border-right: 1px solid #FFF; */
			text-align: center;
			width: 50px;
		}
		#smallnav ul li a:hover, #nav ul li a:focus {
			text-decoration: underline;
			color: #FF0000;
		}

/*-----------------end of small navigation-------------------*/

