/* ---------------------------
	VARIOUS CSS
--------------------------- */
	div.btnRow
	{
		height: 20px;
		padding: 0px;
	}

/* ---------------------------
	ACTIVE BUTTON 
--------------------------- */
	div.btnActive
	{
		font-size: 11px;					/* Font size */
		font-family: trebushet ms, arial;	/* Font family */
		min-width: 30px;					/* Button min width */
		border: 0px solid black;			/* Buttons border */
		text-transform: none;				/* Make text uppercase */
		padding: 0 1px 0 0;					/* Padding between buttons */
		float: left;
	}
	
		div.btnActive div.buttonLeft
		{
			border: 0px solid black;
			float: left;
			width: 10px;
			height: 20px;
		}
		
		div.btnActive div.buttonMiddle
		{
			border: 0px solid black;
			float: left;
			padding: 2px 0 4px 0;						/* Padding inside the button */
		}
		
			div.btnActive div.buttonMiddle a:hover
			{
				color: white;
				text-decoration: none;
				font-weight: normal;
			}
		
		div.btnActive div.buttonRight
		{
			border: 0px solid black;
			float: left;
			width: 10px;
			height: 20px;
		}
		
		div.btnActive a
		{
			text-decoration: none;
			color: white;
			font-weight: normal;
		}

/* ---------------------------
	INACTIVE BUTTON 
--------------------------- */
	div.btnInactive
	{
		font-size: 11px;					/* Font size */
		font-family: trebushet ms, arial;	/* Font family */
		min-width: 30px;					/* Button min width */
		border: 0px solid black;			/* Buttons border */
		text-transform: none;				/* Make text uppercase */
		padding: 0 1px 0 0;					/* Padding between buttons */
		float: left;
	}
	
		div.btnInactive div.buttonLeft
		{
			border: 0px solid black;
			float: left;
			width: 10px;
			height: 20px;
		}
		
		div.btnInactive div.buttonMiddle
		{
			border: 0px solid black;
			float: left;
			padding: 2px 0 4px 0;						/* Padding inside the button */
		}
			
			div.btnActive div.buttonMiddle a:hover
			{
				color: white;
				text-decoration: none;
				font-weight: normal;
			}
			
		div.btnInactive div.buttonRight
		{
			border: 0px solid black;
			float: left;
			width: 10px;
			height: 20px;
		}
		
		div.btnInactive a
		{
			text-decoration: none;
			color: white;
			font-weight: normal;
		}