@charset "UTF-8";

@font-face {
    font-family: 'ArialNarrowBold';
    src: url('fonts/arial_narrow_bold-webfont.eot');
    src: url('fonts/arial_narrow_bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/arial_narrow_bold-webfont.woff') format('woff'),
         url('fonts/arial_narrow_bold-webfont.ttf') format('truetype'),
         url('fonts/arial_narrow_bold-webfont.svg#ArialNarrowBold') format('svg');
    font-weight: normal;
    font-style: normal;

}

body {
	font: 90%/1.4  Arial, Helvetica, sans-serif;
	background: #fff;
	margin: 0;
	padding: 0;
	color: #3c3c3c;	
}

.clear {clear:both;} 

.navbar a {
font-family: 'ArialNarrowBold';
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #42413C;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~ this fixed width container surrounds the other divs ~~ */
.container {
	width: 100%;
	background: #FFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
	position: relative;
	background-image: url(images/bg_home.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	height: 364px;	
	 z-index:1;
	
}

.header img{
	position: absolute;
   left: 50%;
   width: 668px;
   height: 275px;
   margin-left: -334px; /* Half the width */
}


.gallery {
	height: 87px;
	background-color: #005492;
	background-image: url(images/bg_homeFooter.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	z-index:1;
}

.gallery img{
	position: absolute;
   left: 50%;
   width: 249px;
   height: 87px;
   margin-left: -125px; /* Half the width */
}

/*/////////////////////////    A&W Styles    /////////////////////////////////////////*/

.awHeader {
	background-color: #f37736;
	height: 130px;	
}

.awHeader img{
	position: absolute;
   left: 50%;
   width: 987px;
   height: 130px;
   margin-left: -493px; /* Half the width */
}

.awNav {
	background-color: #493079;
	height: 40px;
	background-image: url(images/bgNav_AW.jpg);
	background-repeat: repeat-x;
	background-position: left top;
}

.awNav ul {
	position: absolute;
	list-style-type: none;
	width: 900px;
	left: 50%;
	margin-left: -450px; /* Half the width */
} 

.awNav li {
	float: left;
	position:relative;
	z-index:500;
} 

.awNav a {
	display: block;
	line-height: 40px;
	height: 40px;
	padding: 0 2em 0 2em;
	float: left;
	font-family: ArialNarrowBold;
	font-size: 16px;
	color: #FFF;
	text-decoration: none;
	background:url(images/ro_AW.png) repeat 0 0;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #752f00;
	border-left-color: #a84d0f;
}

.notAvailableAW {
	display: block;
	line-height: 40px;
	height: 40px;
	padding: 0 2em 0 2em;
	float: left;
	font-family: ArialNarrowBold;
	font-size: 16px;
	color: #5a2300;
	text-decoration: none;
	background:url(images/ro_AW.png) repeat 0 0;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #752f00;
	border-left-color: #a84d0f;
}

.awNav a.last {
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #a84d0f;
	border-left-color: #a84d0f;
}

.awNav a:hover, .awNav a:focus, .awNav a:active {background-position:0 -260px;}

 /* submenu, it's hidden by default */
        .awNav ul.subNav {
            position:absolute;
			left:0;
			top:40px;
            display:none;
            margin:0 0 0 -1px;
            padding:0;
            list-style:none;
			z-index:500;
        }
         
         .awNav ul.subNav li {
	width:114px;
	line-height:40px;
	height:40px;
	float:left;
	background-color: #FFF;
	border: 1px solid #762f01;
	font-family: ArialNarrowBold;
	font-size: 16px;
	text-align: center;
        }
		
		       .awNav ul.subNav li a{
	color: #762f01;
	border: none;
	width:50px;
}

	       .awNav ul.subNav li a:hover{
	color: #fff;
	width:50px;
}


/*/////////////////////////    END AW Styles    /////////////////////////////////////////*/


/*/////////////////////////    LJS Styles    /////////////////////////////////////////*/

.foundationHeader {
	background-image: url(images/found_bg.jpg);
	height: 130px;	
}

.ljsHeader {
	background-color: #00529b;
	height: 130px;	
}

.ljsHeader img{
	position: absolute;
   left: 50%;
   width: 987px;
   height: 130px;
   margin-left: -493px; /* Half the width */
}

.ljsNav {
	background-color: #00529b;
	height: 40px;
	background-image: url(images/bgNav_LJS.jpg);
	background-repeat: repeat-x;
	background-position: left top;
}

.ljsNav ul {
	position: absolute;
	list-style-type: none;
	width: 900px;
	left: 50%;
	margin-left: -450px; /* Half the width */
} 

.ljsNav li {
	float: left;
	position:relative;
	z-index:500;
} 

.ljsNav a {
	display: block;
	line-height: 40px;
	height: 40px;
	padding: 0 2em 0 2em;
	float: left;
	font-family: 'ArialNarrowBold';
	font-size: 16px;
	color: #FFF;
	text-decoration: none;
	background:url(images/ro_LJS.png) repeat 0 0;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #003869;
	border-left-color: #00529b;
}

.ljsNav a.last {
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #00529b;
	border-left-color: #00529b;
}

.ljsNav a:hover, .ljsNav a:focus, .ljsNav a:active {background-position:0 -260px;}

 /* submenu, it's hidden by default */
        .ljsNav ul.subNav {
            position:absolute;
			left:0;
			top:40px;
            display:none;
            margin:0 0 0 -1px;
            padding:0;
            list-style:none;
			z-index:500;
        }
         
         .ljsNav ul.subNav li {
	width:114px;
	line-height:40px;
	height:40px;
	float:left;
	background-color: #FFF;
	border: 1px solid #00519a;
	font-family: ArialNarrowBold;
	font-size: 16px;
	text-align: center;
        }
		
		       .ljsNav ul.subNav li a{
	color: #00519a;
	border: none;
	width:50px;
}

	       .ljsNav ul.subNav li a:hover{
	color: #fff;
	width:50px;
}

/*/////////////////////////    END LJS Styles    /////////////////////////////////////////*/

/*/////////////////////////    KFC Styles    /////////////////////////////////////////*/

.kfcHeader {
	background-color: #ac1a2f;
	height: 130px;	
}

.kfcHeader img{
	position: absolute;
   left: 50%;
   width: 987px;
   height: 130px;
   margin-left: -493px; /* Half the width */
}

.kfcNav {
	background-color: #00529b;
	height: 40px;
	background-image: url(images/bgNav_KFC.jpg);
	background-repeat: repeat-x;
	background-position: left top;
}

.kfcNav ul {
	position: absolute;
	list-style-type: none;
	width: 900px;
	left: 50%;
	margin-left: -450px; /* Half the width */
} 

.kfcNav li {
	float: left;
	position:relative;
	z-index:500;
} 

.kfcNav a {
	display: block;
	line-height: 40px;
	height: 40px;
	padding: 0 2em 0 2em;
	float: left;
	font-family: ArialNarrowBold;
	font-size: 16px;
	color: #FFF;
	text-decoration: none;
	background:url(images/ro_KFC.png) repeat 0 0;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #870115;
	border-left-color: #ac1a2f;
}

.kfcNav a.last {
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #ac1a2f;
	border-left-color: #ac1a2f;
}

.kfcNav a:hover, .kfcNav a:focus, .kfcNav a:active {background-position:0 -260px;}

/* submenu, it's hidden by default */
        .kfcNav ul.subNav {
            position:absolute;
			left:0;
			top:40px;
            display:none;
            margin:0 0 0 -1px;
            padding:0;
            list-style:none;
			z-index:500;
        }
         
         .kfcNav ul.subNav li {
	width:114px;
	line-height:40px;
	height:40px;
	float:left;
	background-color: #FFF;
	border: 1px solid #ac1a2f;
	font-family: ArialNarrowBold;
	font-size: 16px;
	text-align: center;
        }
		
		       .kfcNav ul.subNav li a{
	color: #ac1a2f;
	border: none;
	width:50px;
}

	       .kfcNav ul.subNav li a:hover{
	color: #fff;
	width:50px;
}
/*/////////////////////////    END KFC Styles    /////////////////////////////////////////*/

/*/////////////////////////    TB Styles    /////////////////////////////////////////*/

.tbHeader {
	background-color: #493079;
	height: 130px;	
}

.tbHeader img{
	position: absolute;
   left: 50%;
   width: 987px;
   height: 130px;
   margin-left: -493px; /* Half the width */
}

.tbNav {
	background-color: #493079;
	height: 40px;
	background-image: url(images/bgNav_TB.jpg);
	background-repeat: repeat-x;
	background-position: left top;
}

.tbNav ul {
	position: absolute;
	list-style-type: none;
	width: 900px;
	left: 50%;
	margin-left: -450px; /* Half the width */
}

.tbNav li {
	float: left;
	position:relative;
	z-index:500;
}  

.tbNav a {
	display: block;
	*display: inline-block;
	line-height: 40px;
	height: 40px;
	padding: 0 2em 0 2em;
	float: left;
	font-family: ArialNarrowBold;
	font-size: 16px;
	color: #FFF;
	text-decoration: none;
	background:url(images/ro_TB.png) repeat 0 0;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #3a206a;
	border-left-color: #8671b0;
}

.notAvailableTB {
	display: block;
	*display: inline-block;
	line-height: 40px;
	height: 40px;
	padding: 0 2em 0 2em;
	float: left;
	font-family: ArialNarrowBold;
	font-size: 16px;
	color: #8f6dd7;
	text-decoration: none;
	background:url(images/ro_TB.png) repeat 0 0;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #3a206a;
	border-left-color: #8671b0;
}

.tbNav a.last {
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #8671b0;
	border-left-color: #8671b0;
}

.tbNav a:hover, .tbNav a:focus, .tbNav a:active {background-position:0 -260px;}

.tbLinkKFC {
	background-color: transparent;
}

.rollOverTB {
	background-color: #ec008b;
}

 /* submenu, it's hidden by default */
        .tbNav ul.subNav {
            position:absolute;
			left:0;
			top:40px;
            display:none;
            margin:0 0 0 -1px;
            padding:0;
            list-style:none;
			z-index:500;
        }
         
         .tbNav ul.subNav li {
	width:114px;
	line-height:40px;
	height:40px;
	float:left;
	background-color: #FFF;
	border: 1px solid #442d75;
	font-family: ArialNarrowBold;
	font-size: 16px;
	text-align: center;
        }
		
		       .tbNav ul.subNav li a{
	color: #442d75;
	border: none;
	width:50px;
}

	       .tbNav ul.subNav li a:hover{
	color: #fff;
	width:50px;
}

/*/////////////////////////    END TB Styles    /////////////////////////////////////////*/


.homeBrands {
	position: absolute;
	left: 50%;
	width: 726px;
	height: 275px;
	margin-top: -190px;
	margin-left: -363px; /* Half the width */
	z-index:2;
	top: 473px;
}

.homeBrands img {
	float: left;
	margin: 0 10px 0 0;
}

.homeLogos {
		position: absolute;
		left: 50%;
		width: 726px;
		height: 275px;
		margin-top: 70px;
		margin-left: -363px; /* Half the width */
		z-index:2;
}

.homeLogos img {
	float: left;
	margin: 0 10px 0 0;
}


/* ~~ This is the layout information. ~~ 

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

*/

.content {
	position: absolute;
	left: 50%;
	width: 726px;
	margin-top: 0px;
	padding: 5px 0;
	margin-left: -363px; /* Half the width */
	z-index:2;
	top: 373px;
}

.contentInt {
	left: 50%;
	width: 900px;	
		margin-top: 20px;
		margin-left: -450px; /* Half the width */
	position: absolute;
	padding: 10px 0;
	
	z-index:4;
}

.contentInt table{
	
	width: 883px;	
	margin: 0 0 0 17px;
	
}

.contentInt  h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 36px;
	font-weight: lighter;
	color: #3c3c3c;	
	line-height:36px;
}

.tblHead{
	font-weight: bold;
	color: #FFF;
	background-color: #666;	
}


.contentIntL {
	width: 530px;
}

.contentIntL  h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 36px;
	font-weight: lighter;
	color: #3c3c3c;	
	line-height:36px;
}

.contentIntL  h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 21px;
	font-weight: lighter;
	color: #3c3c3c;	
	line-height: 24px;
	margin: 0 0 3px 0;
}

.contentIntL  h1.subhead {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 214px;
	font-weight: lighter;
	color: #000;	
	line-height: 21px;
	margin: -30px 0 3px 0;
}

.contentIntL  p {
	margin: 0 0 20px 0;
}

.contentInt  td {
	font-size: 12px;
	padding: 5px;
	vertical-align: top;
}

.alt {
	background-color:#d6d6d6;
}


.contentIntL  ul {
	margin: 10px 0 20px 30px;
}

.currentOpen {
	background-color: #fff;
	width: 365px;
	float: right;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #3c3c3c;
	margin: -30px 0 0 0;
}

.h1Container {
	width: 365px;
	height:50px;
	display:inline-block;
	background-color:#3c3c3c;
	overflow: hidden;	
}

.h1Container  h1 {
	font-family: 'ArialNarrowBold';
	font-weight: lighter;
	color: #fff;
	margin: 0;
	text-transform: uppercase;
	text-align: center;
	padding: 12px 0 0 0;
	font-size: 36px;
}

.currentOpen  p {
	margin: 0 0 0 5px;
	color: #fff;
	font-size: 14px;
}

.pColLeft {
	width:170px;
	float: left;
	margin: 10px 0 10px 10px;
	font-family: 'ArialNarrowBold';
}

.pColRight {
	width:180px;
	float: left;
	margin: 10px 0 10px 0px;
	font-family: 'ArialNarrowBold';
}

.pColLeft p {
	font-family: 'ArialNarrowBold';
	color: #ac1a2f;
	font-size: 13px;
	text-transform: uppercase;
	
}

.pColRight p {
	font-family: 'ArialNarrowBold';
	color: #ac1a2f;
	font-size: 13px;
	text-transform: uppercase;
	margin: 0 0 0 -10px;
	
}

.submitResume {
	width:340px;
	float: left;
	margin: 0px 0 10px 10px;
	font-family: 'ArialNarrowBold';
}

.submitResume p {
	font-family: 'ArialNarrowBold';
	color: #3c3c3c;
	font-size: 13px;
	text-transform: uppercase;
}

.submitResume a {
	font-family: 'ArialNarrowBold';
	color: #ac1a2f;
	font-size: 14px;
	text-transform: uppercase;
	text-decoration:none;
}

.dlApp {
	width: 312px;
	height: 34px;
	display: inline-block;
	background-image: url(images/button_DLapp.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	font-family: 'ArialNarrowBold';
	font-size: 12pt;
	color: #394d59;
	line-height: 34px;
	font-weight: lighter;
	text-decoration: none;
	text-align: center;
	text-transform: uppercase;
	margin: 0px 0 10px 30px;
	float: left;
}

.dlApp a {
	color: #7f7f7f;
	text-decoration: none;
	width: 312px;
	height: 34px;
	line-height: 34px;
	display: inline-block;
}

.pColTraining {
	width:340px;
	float: left;
	margin: 10px 0 10px 20px;
	font-family: 'ArialNarrowBold';
}

.pColTraining h2 {
	font-family: 'ArialNarrowBold';
	text-transform: uppercase;
	margin: 0;
	padding: 0;
}

.pColTraining p {
	font: 90%/1.4  Arial, Helvetica, sans-serif;
	background: #fff;
	margin: 0 0 10px 0;
	padding: 0;
	color: #3c3c3c;	
}

/* ~~ The footer ~~ */
.footer {
	/*padding: 10px 0;*/
	height: 87px;
	background-color: #005492;
	background-image: url(images/bg_homeFooter.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	position:fixed;
	bottom:0;
	z-index:999999;
	width: 100%;
}

.footer img{
	position: absolute;
   left: 50%;
   width: 249px;
   height: 87px;
   margin-left: -125px; /* Half the width */
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
