﻿/*---------------------------------------------------------------------
San Francisco Symphony /  Ticket Navigation CSS

Author:			Femy Praseeth	<femkreations@gmail.com>

Methods: 		1. 	CSS FILES ORGANISATION (if more than 1 file needed)
					Abstract 	->	 	Specific (section specific or modules)
					(global.css)		(section/section.css or modules/module.css)
				
				2.	RULES ORGANISATION WITHIN CSS FILES
				 	Should mirror the html document flow:
					General
						Container
							Header
								Nav
							Body
								Layout Setup
									Section Settings (include files)
							Footer
						Hacks
						(other)
-------------------------------------------------------------------*/


/*   Cart Navigation Elements
-------------------------------------------------------------------*/
#CartNav
{
    height: 63px;
	background-color: #f1f1e9;
	text-align: center;
	margin: 0 auto 8px auto;
}
#CartNav .spacer
{
    float: left;
    width: 170px;
    height: 63px;
}
#CartNav li
{
    float: left;
    list-style-type: none;
	font-family: Verdana;
	font-size: 10px;
	line-height: 12px;
	padding: 7px;
	color: #cccccc;
	text-align: center;
	width: 50px;
}
#CartNav .step
{
    font-size: 26px;
	font-family: "Times New Roman", Times, serif;
	color: #FFC68C;
	font-weight: bold;
}
#CartNav li.selected .step
{
	color: #ff6600;
}
#CartNav li.selected
{
	color: #333333;
}
/*----------------------------------------------------------------*/


