/*	CSS Element Structure
---------------------------------------------------
	Css Reset
	Body
	Headings
	Paragraphs
	Images
	Links
	Lists
	Tables
	Forms
	Other Elements & Global Classes
---------------------------------------------------
	Notes:
	Preferred property declaration order:
		selector	{
			position
			top right bottom left
			float
			clear
			width
			height
			margin
			padding
			background
			border
			color
			font
			text-align/transform/indent
			overflow
			z-index
		}
	
	Shorthand propoerties & order:
		margin: top right bottom left;
		background: color image repeat attachment position(x y);
		border: width style color;
		font: style variant weight size/line-height family;
		list: type position image;
---------------------------------------------------	*/
/*	CSS Reset
---------------------------------------------------	*/
html, body, h1, h2, h3, h4, h5, h6, p, table, th, td, form, fieldset, ul, li, blockquote	{
	margin: 0;
	padding: 0;
}

/*	Body
---------------------------------------------------	*/
body	{
	background: #fff;
	color: #666;
	font: normal 12px/1.5 Arial , "Lucida Grande", "Lucida Sans", "Lucida Sans Regular", sans-serif;

}

/*	Headings
---------------------------------------------------	*/
h1	{
	margin: 0 0 10px;
	color: #333;
	font-size: 30px;
	font-weight:normal;
}

h2	{
	margin: 10px 0 5px;
	color: #333;
	font-size: 20px;
	font-weight:normal;
}

h3	{
	margin: 20px 0 0;
	color: #333;
	font-size: 12px;
}

h4	{
	margin: 20px 0 0;
	color: #333;
	font-size: 15px;
}

h5	{
	margin: 15px 0 5px;
	color: #333;
	font-size: 13px;
}

h6	{
	margin: 15px 0 5px;
	color: #333;
	font-size: 12px;
}

/*	Paragraphs
---------------------------------------------------	*/
p	{
	margin: 5px 0 10px;
}


/*	Images
---------------------------------------------------	*/
img	{
	display: block;
	border: none;
}

img.inlineImg	{ 
	display: inline; 
}

/*	Links
---------------------------------------------------	*/
a:link, a:visited	{
	color: #006bb6;
	text-decoration:none;
}

a:active, a:hover	{
	color: #333;
}

/*	Lists
---------------------------------------------------	*/
ul	{
	margin: 10px 0;
	padding: 0 0 0 25px;
	list-style: disc outside;
}
	ul li	{
		margin: 0 0 5px;
	}
	
	ul ul	{
		list-style: circle outside;
	}
	
	ul ul ul	{
		list-style: square outside;
	}

ul.menuList	{
	margin: 0;
	padding: 0;
	list-style: none;
}
	ul.menuList li	{
		margin: 0;
	}
	
ol	{
	margin: 10px 0;
	padding: 0 0 0 25px;
	list-style: decimal outside;
}
	ol li	{
		margin: 0 0 5px;
	}
	
	ol ol	{
		list-style: lower-roman outside;
	}
	
	ol ol ol	{
		list-style: lower-alpha outside;
	}

dl	{}
	dl dt	{}
	dl dd	{}

	dl.horizontalList	{
		margin: 10px 0;
		overflow: hidden;
	}

	dl.horizontalList dt, dl.horizontalList dd	{
		float: left;
		margin: 0;
		padding: 5px 0;
		border-bottom: 1px dotted #ccc;
		font-weight: normal;
	}

	dl.horizontalList dt	{
		width: 30%;
	}

	dl.horizontalList dd	{
		width: 70%;
	}

/*	Tables
	Basic table structure:
		table
			thead (optional)
			tfoot (optional)
			tbody (required)
	
	**	Tables can contain multiple tbody elements.
---------------------------------------------------	*/
table	{
	width: 100%;
	margin: 5px 0 20px;
	border: none;
	border-collapse: collapse;
}

table th	{
	padding: 3px 5px;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	text-align: left;
}

table td	{
	padding: 5px;
}

table tfoot td	{
	padding: 10px 5px;
	border-top: 1px solid #ddd;
	color: #777;
	font-size: 11px;
}

table.zebra tr.stripe td	{
	background: #eaeaef;
}


/*	Forms
---------------------------------------------------	*/
fieldset	{
	border: none;
}
	fieldset fieldset	{
		margin: 10px 0;
		padding: 10px 20px;
		border: 1px solid #ddd;
	}

.required span	{
	padding-right: 5px;
	color: #a00;
	font-weight: bold;
}

p.required	{
	margin: 0 0 5px;
	padding: 0 0 0 38%;
	font-weight: bold;
}

label	{
	color: #555;
}
	label.required	{
		color: #000;
		font-weight: bold;
	}

input.textInput	{
	border-top: 1px solid #a8a8a8;
	border-right: 1px solid #e5e5e5;
	border-bottom: 1px solid #e0e0e0;
	border-left: 1px solid #b7b7b7;
}

textarea	{
	border-top: 1px solid #a8a8a8;
	border-right: 1px solid #e5e5e5;
	border-bottom: 1px solid #e0e0e0;
	border-left: 1px solid #b7b7b7;
}

input.buttonSubmit	{
	background: #7ad;
	border-top: 1px solid #9cf;
	border-right: 1px solid #48a;
	border-bottom: 1px solid #379;
	border-left: 1px solid #8be;
	color: #fff;
	cursor: pointer;
}

input.buttonReset	{
	margin-left: 5px;
	background: #eee;
	border-top: 1px solid #e5e5e5;
	border-right: 1px solid #bcbcbc;
	border-bottom: 1px solid #adadad;
	border-left: 1px solid #ececec;
	color: #666;
	cursor: pointer;
}

.errorMessage	{
	width: 75%;
	margin: 10px 0;
	padding: 5px 10px;
	background: #f6e5e5;
	border: 1px solid #a00;
	font-size: 11px;
}
	.errorMessage p	{
		margin: 0;
		color: #a00;
		font-weight: bold;
	}

/*	Column layout w/ label left of element	*/
fieldset.columns div	{
	clear: both;
	height: auto !important;
	height: 1%;
	padding: 5px 0;
	overflow: hidden;
}
	fieldset.columns div.errorMessage	{
		margin: 10px auto;
		padding: 5px 10px;
		
	}
	fieldset.columns label	{
		float: left;
		width: 35%;
		margin: 0 20px 0 0;
		text-align: right;
	}
	fieldset.columns input.textInput, fieldset.columns textarea	{}
	
	/*	Group of elements such as radio buttons or checkboxes	*/
	fieldset.columns fieldset.formGroup	{}
	fieldset.columns fieldset.formGroup label	{
		margin: 0;
	}
	fieldset.columns fieldset.formGroup div	{
		clear: none;
		float: right;
		width: 62%;
		padding: 0;
	}
	fieldset.columns fieldset.formGroup div label	{
		float: none;
		width: auto;
		margin: 0;
		color: #000;
		text-align: left;
		vertical-align: baseline;
	}
	fieldset.columns div.formControls	{
		text-align: center;
	}
		

/*	Stacked layout w/ label above element	*/
fieldset.stacked p.required	{
	padding: 0 0 5px;
	text-align: left;
}

fieldset.stacked div	{
	padding: 5px 0 10px;
}
	fieldset.stacked div.errorMessage	{
		padding: 5px 10px;
		
	}
	fieldset.stacked label	{
		display: block;
		margin: 0 0 3px;
	}
	fieldset.stacked input.textInput, fieldset.stacked textarea	{}
	fieldset.stacked fieldset.formGroup	{}
	fieldset.stacked fieldset.formGroup div	{
		padding: 0;
	}
		fieldset.stacked fieldset.formGroup div label	{
			display: inline;
			margin: 0;
			vertical-align: baseline;
		}


/*	Other Elements & Global Classes
---------------------------------------------------	*/
blockquote	{}
	blockquote p	{}
	
hr	{
	display: none;
}

.skipLink, .hide	{
	display: none;
}

.clear	{
	clear: both;
}

/*  Avid Redesign
-----------------------------------------------------*/

@font-face {
    font-family: 'AvidOmnesLight';
    src: url('fonts/avidomnes-light-webfont.eot');
    src: url('fonts/avidomnes-light-webfont.eot?#iefix') format('embedded-opentype'), url('fonts/avidomnes-light-webfont.woff') format('woff'), url('fonts/avidomnes-light-webfont.ttf') format('truetype'), url('fonts/avidomnes-light-webfont.svg#AvidOmnesLight') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'AvidOmnesMedium';
    src: url('fonts/avidomnes-medium-webfont.eot');
    src: url('/fontsavidomnes-medium-webfont.eot?#iefix') format('embedded-opentype'), url('fonts/avidomnes-medium-webfont.woff') format('woff'), url('fonts/avidomnes-medium-webfont.ttf') format('truetype'), url('fonts/avidomnes-medium-webfont.svg#AvidOmnesMedium') format('svg');
    font-weight: normal;
    font-style: normal;
}

header {

    overflow: visible;
    width: auto;
    padding-top: 25px;
    padding-bottom: 20px;
    background: #222;
    z-index: 3;
    /* Old browsers */

    /* IE9 SVG, needs conditional override of 'filter' to 'none' */

    background: -moz-linear-gradient(top, #000000 68%, #333333 100%);
    /* FF3.6+ */

    background: -webkit-gradient(linear, left top, left bottom, color-stop(68%, #000000), color-stop(100%, #333333));
    /* Chrome,Safari4+ */

    background: -webkit-linear-gradient(top, #000000 68%, #333333 100%);
    /* Chrome10+,Safari5.1+ */

    background: -o-linear-gradient(top, #000000 68%, #333333 100%);
    /* Opera 11.10+ */

    background: -ms-linear-gradient(top, #000000 68%, #333333 100%);
    /* IE10+ */

    background: linear-gradient(top, #000000 68%, #333333 100%);
    /* W3C */
    /*
    zoom: 1;
    filter: progid:dximagetransform.microsoft.gradient(startColorstr='#000000', endColorstr='#252525', GradientType=0);
    */
    /* IE6-8 */

}
header img {display: inline !important;}
header .brand {*float: left; }
header .inner {
    padding-left: 20px;
    padding-right: 20px;

    width: 940px;
    margin: 0 auto;
}
.navbar-search {
    position: relative;
    float: left;
    display: inline-block;
    margin-bottom: 0;
}
.navbar-search form {
    display: inline-block;
    *display: inline;
    /* IE7 inline-block hack */

    zoom: 1;
    vertical-align: middle;
    height: 20px;
}
.navbar-search form input,
.navbar-search form select {
    vertical-align: middle;
    margin-right: 10px;
}
.navbar-search form input {
    height: 18px;
    color: #333;
}

.navbar-search form input[type=submit]{
    border: 1px solid #CCC;
}

.navbar-search form select {
    height: 22px;
    background-color: #555555;
    color: #c5c5c5;
    padding: 2px;
    border: 0;
    line-height: 18px;
}
.navbar-search .search-query {
    display: inline-block;
    *display: inline;
    /* IE7 inline-block hack */

    zoom: 1;
    height: 18px;
    line-height: 16px;
    padding: 1px 2px;
    vertical-align: top;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: normal;
    line-height: 1;
    background: #cccccc;
    border: 1px solid #808080;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
    -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
}
.navbar-search .search-query input[type=text] {
    background: none;
    border: 0;
    padding: 0;
    margin: 0;
    border-radius: 0;
    outline: none;
}
.navbar-search .search-query input[type=submit] {
    background: url('http://www.avid.com/Static/Resources/Common/images/redesign/icon-search.png') no-repeat;
    width: 18px;
    height: 18px;
    padding: 0;
    margin: 0;
}
.navbar-search .search-query:-moz-placeholder {
    color: #cccccc;
}
.navbar-search .search-query::-webkit-input-placeholder {
    color: #cccccc;
}
.navbar-search .search-query:focus,
.navbar-search .search-query.focused {
    color: #333333;
    text-shadow: 0 1px 0 #ffffff;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
    outline: 0;
}
nav {
    font-family: 'AvidOmnesLight', Arial, Helvetica, sans-serif;
    font-size: 18px;
    width: 910px;
    position: relative;
    margin: 0 auto;
    margin-top: 15px;
    top: 5px;
    z-index: 100;
}

nav > ul {padding-left: 0;}

nav > ul > li > a
{
    color: white !important;
    text-decoration: none;
}
nav .dropdown:hover .dropdown-menu {
    display: block;
}
nav .dropdown.open .dropdown-toggle {
    background-color: transparent;
}
nav > ul > li:hover,
nav > ul > li.open {
    background-color: #454545;
}
nav .products-dropdown .submenu,
nav .categories-dropdown .submenu {

    *zoom: 1;
    padding-top: 10px;
    padding-bottom: 25px;
    background-color: #f1f1f1;
    border: 1px solid #989898;
    border-top-width: 0px;
}
nav .products-dropdown .submenu:before,
nav .categories-dropdown .submenu:before,
nav .products-dropdown .submenu:after,
nav .categories-dropdown .submenu:after {
    display: table;
    content: "";
}
nav .products-dropdown .submenu:after,
nav .categories-dropdown .submenu:after {
    clear: both;
}
nav .products-dropdown .submenu .submenu-section,
nav .categories-dropdown .submenu .submenu-section {
    vertical-align: top;
    padding: 0px 15px;
    display: inline-block;
    border-right: 1px solid #ccc;
    *line-height: 10px;
    *display: inline;
    *zoom: 1;
}
nav .products-dropdown .submenu .submenu-section.last,
nav .categories-dropdown .submenu .submenu-section.last {
    border-right: 0px;
    padding-right: 0px;
}
nav .products-dropdown .submenu .submenu-section:before,
nav .categories-dropdown .submenu .submenu-section:before,
nav .products-dropdown .submenu .submenu-section:after,
nav .categories-dropdown .submenu .submenu-section:after {
    display: table;
    content: "";
}
nav .products-dropdown .submenu .submenu-section:after,
nav .categories-dropdown .submenu .submenu-section:after {
    clear: both;
}
nav .products-dropdown .submenu .submenu-section .submenu-column,
nav .categories-dropdown .submenu .submenu-section .submenu-column {
    display: inline-block;
    *display: inline;
    *zoom: 1;

    vertical-align: top;
}
nav .products-dropdown .submenu .submenu-section .submenu-column h4,
nav .categories-dropdown .submenu .submenu-section .submenu-column h4 {
    color: #333;
}
nav .products-dropdown .submenu .submenu-section .submenu-column ul,
nav .categories-dropdown .submenu .submenu-section .submenu-column ul {
    margin-left: 0px;

}
nav .products-dropdown .submenu .submenu-section .submenu-column ul li,
nav .categories-dropdown .submenu .submenu-section .submenu-column ul li {
    font: normal 13px Arial, sans-serif;
    padding: 0;
    display: block;
}
nav .products-dropdown .submenu .submenu-section .submenu-column ul li a,
nav .categories-dropdown .submenu .submenu-section .submenu-column ul li a {
    padding: 0;
    color: #454545;
}
nav .products-dropdown .submenu .submenu-section .submenu-column ul li a:hover,
nav .categories-dropdown .submenu .submenu-section .submenu-column ul li a:hover {
    background-color: transparent;
    color: black;
}
nav .products-dropdown .subTicker,
nav .categories-dropdown .subTicker {
    position: absolute;
    left: 32px;
    top: 0px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #454545;
    background: none !important;
}
nav ul {
    margin-bottom: 0;
    list-style: none;
}
nav ul li {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    margin-right: 15px !important;
    font-size: 18px;
    padding: 10px;
    -webkit-border-radius: 5px 5px 0px 0px;
    -moz-border-radius: 5px 5px 0px 0px;
    border-radius: 5px 5px 0px 0px;
}
nav ul li.first {
    margin-left: -10px !important;
}
nav ul li a {
    display: block;
    color: #dddddd;
}
nav ul li a:hover {
    text-decoration: none;
    color: white;
}
nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    float: left;
    display: none;
    min-width: 160px;
    padding: 4px 0;
    margin: 0;
    list-style: none;
    background-color: #ffffff;
    border-color: #ccc;
    border-color: rgba(0, 0, 0, 0.2);
    border-style: solid;
    border-width: 1px;
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    *border-right-width: 2px;
    *border-bottom-width: 2px;
}
.dropdown-menu.pull-right {
    right: 0;
    left: auto;
}
.dropdown-menu .divider {
    height: 1px;
    margin: 8px 1px;
    overflow: hidden;
    background-color: #e5e5e5;
    border-bottom: 1px solid #ffffff;
    *width: 100%;
    *margin: -5px 0 5px;
}
.dropdown-menu a {
    display: block;
    padding: 3px 15px;
    clear: both;
    font-weight: normal;
    line-height: 18px;
    color: #333333;
    white-space: nowrap;
}
.dropdown-menu li > a:hover,
.dropdown-menu .active > a,
.dropdown-menu .active > a:hover {
    color: #ffffff;
    text-decoration: none;
    background-color: #007fc2;
}
.dropdown.open {
    *z-index: 1000;
}
.dropdown.open .dropdown-toggle {
    color: #ffffff;
    background: #ccc;
    background: rgba(0, 0, 0, 0.3);
}
.dropdown.open .dropdown-menu {
    display: block;
}
.pull-right .dropdown-menu {
    left: auto;
    right: 0;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
    border-top: 0;
    border-bottom: 4px solid #000000;
    content: "\2191";
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 1px;
}


.pull-right {
    float: right;
}

#account {
    position: absolute;
    right: 0;
    top: 0;
    font: normal 13px Arial, sans-serif;
    line-height: 20px;
    height: 100%;
    color: #AAA;
    text-align: center
}

#account a {
    font-family: Arial;
    text-decoration: underline;
    color: #ddd;
    font-size: 13px
}

#account .account-mail {
    display: block;
    font: normal 13px Arial, sans-serif
}

#account .account-links {
    margin-top: 0px;
    display: block
}

#account .account-mail+.account-links {
    margin-top: 0
}

.input-medium {
    width: 150px;
}
nav input,
nav textarea,
nav select,
nav .uneditable-input {
    display: inline-block;
    width: 210px;
    height: 26px;
    padding: 4px;
    margin-bottom: 9px;
    font-size: 13px;
    line-height: 18px;
    color: #555555;
    border: 1px solid #cccccc;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

nav .dropdown {
    position: relative;
}

/* Footer
-------------------------------------------------- */
footer {
    margin-top: 0px;
    padding: 35px 0 36px;
    position: relative;
    color: #949494;
    background-color: #474747;
    background-image: -moz-linear-gradient(top, #4f4f4f, #3c3b3b);
    background-image: -ms-linear-gradient(top, #4f4f4f, #3c3b3b);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#4f4f4f), to(#3c3b3b));
    background-image: -webkit-linear-gradient(top, #4f4f4f, #3c3b3b);
    background-image: -o-linear-gradient(top, #4f4f4f, #3c3b3b);
    background-image: linear-gradient(top, #4f4f4f, #3c3b3b);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4f4f4f', endColorstr='#3c3b3b', GradientType=0);
    zoom: 1;
    border-color: #3c3b3b #3c3b3b #151515;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}
footer ul, footer li
{
    margin: 0;
    padding: 0;
    list-style-type: none;
}

footer #footerLinks .leftFooter  { float:left; }
footer #footerLinks .rightFooter { float:right; }

footer .inner{
    width: 900px;
    margin: 0 auto;
}

footer .inner > .links-column {
    width: 130px !important;
    vertical-align: top;
    display: inline-block;
    padding-right: 20px;
    *display: inline;
    *zoom: 1;
}

footer .inner > .links-column + div + div + div + div + .links-column { /* :nth-child .link-column hack */
    padding-right: 0px;
}

header ul.unstyled li, header ol.unstyled li {
    list-style-image: none!important;
    list-style: none;
    line-height: 20px;
}
footer h4 {
    color: #949494;
    margin-bottom: 5px;
}

footer a {
    color: #848383 !important;
    font-size: 12px;
    text-decoration: none;
}

footer p {
    margin-bottom: 0;
    color: #aaa;

}

footer a:hover {
    color: #a0a0a0 !important;
    font-size: 12px;
    text-decoration: none;
}

footer .inner {
    background-color: transparent !important;
    overflow: hidden;
}
footer .inner-shadow {
    zoom: 1;
    height: 32px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: -webkit-linear-gradient(top, #3b3b3b 0%, #4c4c4c 100%);
    /* Chrome10+,Safari5.1+ */

    background: linear-gradient(top, #3b3b3b 0%, #4c4c4c 100%);
    /* W3C */

    filter: progid:dximagetransform.microsoft.gradient(startColorstr='#3b3b3b', endColorstr='#4c4c4c', GradientType=0);
    /* IE6-8 */
}

.row div[class*="span"], .wide-row div[class*="span"] {
    float: left;
    padding-left: 40px;
    background-color: inherit;
    width: 140px;
}

.submenu .submenucontent {
    white-space: nowrap;
    overflow: visible;
    background: #f1f1f1;
    padding: 0;
    position: relative;
    z-index: 3000;
    margin:0;
    -moz-border-radius: 0px 0px 3px 3px;
    -webkit-border-radius: 0px 0px 3px 3px;
    border-radius: 0px 0px 3px 3px;
}

.submenu-column ul
{
    padding: 0px !important;
    margin: 0 0 9px 0 !important;
}

.submenu-column h3
{
    line-height: 1.3em;
    font-size: 18px;
    margin: 0 0 .3em 0 !important;
    padding: 0 !important;
}

.submenu-column h4
{
    font-size: 15px;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 18px;
}