/* =============================================================================================================================================================== 
TO DO:  1) create more useful names, one per technique.
		2) insert variable for EESY Framework user selectable skinning via CP, create useful images ==== 
		3) actually, avoid dynamic CSS if at all possible, due to performance hit.
		4) Rounded corners with simple_corners.png work in IE -IF- bg is white. They work in FF w/ any bg, -IF- simple_corner.png is removed &
		   .simple .hd -moz code is added. So, have naming conventions as follows:
		   rd-cnr-all-wht-bg (w/ simple_corner.png), rd-cnr-all-any-bg (pop sommers style images),
		   rd-cnr-ff-any-bg / (square in IE w/ hack)--make def,
		   rd-cnr-all-wht-bg (complex style images, faster than pop). 
		5) further enhancements see - http://www.lesliesommer.com/wdw07/html/index.html & http://www.alistapart.com/articles/supereasyblendys/
=============================================================================================================================================================== */



/* **************** BLOCK SKINS ***************** */
.none  

.rightCol .mod {margin-right: 17px;}

/* ====== Contour blocks ====== */


/* ===== BG-TRANSPARENCY (not on Safari?) ===== */

.bg-trans  {
   _padding-bottom:6px;  /* IE6: bound x1a and x2a's height */
   _overflow-y:hidden;
   position:relative;
   z-index:0;
}
.bg-trans .inner {
   border: #dee4f9; 
   position:relative;
   z-index:300;
}
	
.bg-trans .top { /*opacity layer*/
   display:block;
   background-color: #329470;
   width:100%;
   height:100%;
   _height:2000px;
   position:absolute;
   _bottom:6px;  /* IE6: offset the layer from 'mod' */
   opacity:.100;
   *filter:alpha(opacity="100");
}

/* the shadow's parent; controls offset */
.bg-trans .bottom  { 
   display:block;
   width:100%;
   height:100%;
   overflow:hidden;
   position:absolute;
   top:5px; /* offset the shadow */
   left:5px;
   _top:auto;
   _bottom:-5px;
}

.bg-trans .bl {
   margin-top: 0px;
   display:block;
   border:6px solid transparent;
   border-top:0;
   border-left:0;
   width:100%;
   height:100%;
   _height:3000px; /* IE6 can't do 100% of an unknown height */ 
   position:relative;
   bottom:6px;
   right:6px;
   opacity:.30;
   *filter:alpha(opacity="30");
}


.bg-trans .br {
	margin-top: 0px;
}


/* ----- add a gradient ------------------- */
.gradient_white .inner { 
		background-image: url(/images/css/eesy/gradient_white.png);
		background-repeat:repeat-x;
		background-position:0 100%;
		_background:#fff; /* no PNG for IE6 */ 
			background-image: none; 
	}

.gradient_black .inner { 
	background-image:url(/images/css/eesy/gradient_black.png);
	background-repeat:repeat-x;
	background-position:0 100%;
	_background:#000; /* no PNG for IE6 */ 
}


/* ----- flip the gradient 180-degrees --------------- */
.flip180 .inner { /* does not work when using a header */
	-webkit-transform: rotate(-180deg); 
	-moz-transform: rotate(-180deg);
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=4);
	}

	.flip180 .inner .bd { /*put the text back upright */
		-webkit-transform: rotate(-180deg); 
		-moz-transform: rotate(-180deg);
		filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=4);
			}
	

/* ----- add a drop-shadow ---------------- */
.drop-shadow-r .bl {
	border-color: #000;
	opacity:.30;
	*filter:alpha(opacity="30");
	z-index: 0;
			border-color: transparent;
		opacity:.0;
		*filter:alpha(opacity="0");
	}

/* ----- round-corners in FF for any bg --- */

.rd-cnr-ff-any-bg .inner, .rd-cnr-ff-any-bg .top, .rd-cnr-ff-any-bg .bottom, .rd-cnr-ff-any-bg .bl, .rd-cnr-ff-any-bg .br, .rd-cnr-all-wht-bg .inner, .rd-cnr-all-wht-bg .top, .rd-cnr-all-wht-bg .bottom, .rd-cnr-all-wht-bg .bl, .rd-cnr-all-wht-bg .br {
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px !important;
}

.rd-cnr-ff-any-bg .hd, .rd-cnr-all-wht-bg .hd  {  
	-moz-border-radius: 8px 8px 0 0;
	-webkit-border-top-left-radius: 8px;
	-webkit-border-top-right-radius: 8px;
	border-radius: 8px 8px 0 0;
}

/* ----- round-corners anywhere wht-bg only ---- */
.rd-cnr-ff-any-bg .inner { border:1px solid #dee4f9; }
.rd-cnr-all-wht-bg b{background-image:url(/images/css/eesy/simple_corners.png);}


/* ----- collapse margin-top and bottom for added effects in C-WRAP --- */
.shrink-wrap .bd { margin-top: 0px; margin-bottom: 0px; padding-top: 0px; padding-bottom: 0px; }

/* ----- grab (extends mod) ----- */
.grab .inner{border: 3px solid #00477a; border-bottom-width:10px;}/* can't be done w border radius */
.grab b{/*background-image:url(/images/css/eesy/grab.png);*/}
/*.grab .tl, .grab .tr{height:10px; width:10px;}*/
.grab .bl, .grab .br{height:16px;/*if height is set, margin set*/margin-top:-16px;}
/* ----- faq (extends mod) ----- */
.faq .inner{border: 3px solid #b20029; border-bottom-width:10px;}/* can't be done w border radius */
.faq b{background-image:url(/images/css/eesy/faq.png);}
.faq .bl, .faq .br{height:16px;/*if height is set, margin set*/margin-top:-16px;}
/* ----- onlinestore (extends mod) ----- */
.onlinestore .inner{border: 3px solid #9a9800; border-bottom-width:10px;}/* can't be done w border radius */
.onlinestore b{background-image:url(/images/css/eesy/store.png);}
.onlinestore .bl, .onlinestore .br{height:16px;/*if height is set, margin set*/margin-top:-16px;}
/* ----- about (extends mod) ----- */
.about .inner{border: 3px solid #494949; border-bottom-width:10px;}/* can't be done w border radius */
.about b{background-image:url(/images/css/eesy/about.png);}
.about .bl, .about .br{height:16px;/*if height is set, margin set*/margin-top:-16px;}

/* ----- photo (extends complex) ----- */
.photo .inner{border:solid 10px #fff;margin:0 4px;}/* muck with margins to change how the block will align with other blocks, any value between 0-10px */
.photo b{background-image:url(/images/css/eesy/photo.png);}
.photo .tr, .photo .tl{width:20px;}
.photo .top, .photo .bottom{height:4px;margin-top:0px;}
.photo .bl, .photo .br{height:16px;margin-top: -12px;}
/* ----- flow (extends complex) ----- */
.flow{margin:6px;}
.flow b{background-image:url(/images/css/eesy/even.png);}
.flow .inner{padding:0 4px;}
.flow .top{height:4px;}
.flow .bottom{height:4px;margin-top:-4px;}
.flow .br,.flow .bl{margin-top:-6px;}/* margin top = bottom height - corner height */
/* ----- .excerpt (extends complex) ----- */
.excerpt b{background-image:url(/images/css/eesy/excerpt.png);}
.excerpt .top{height:1px;}
.excerpt .bottom{height:6px;margin-top:-6px;}/* margin top equal to - height of bottom */
.excerpt .br,.excerpt .bl{height:12px;margin-top:-6px;}/* margin top = bottom height - corner height */
/* ----- sommers (extends pop) ----- */
.sommers .inner{_border:3px solid #D7D7D7;}/*IE6 backup no alpha transparency */
.sommers,.sommers .inner,.sommers b{background-image:url(/images/css/eesy/glow_7px.png);_background-image:none;}
.sommers{margin:10px 18px 10px 8px;}

/* ====== Background blocks ====== */
.highlight .inner{background:#dee4fa none; }
.universe .inner{background:url(/images/css/eesy/universe.png) repeat left top;}
.foo .inner{background: url(/images/css/eesy/universe_gray.png) repeat left top;}

/* ====== Block headers and footers ====== */
.solid {background-color: #0037dc; margin-right: -2px;}
	.la .solid {background-color: #009e8c; padding-right: 0px;}
	.ps .solid {background-color: #981026; }
.solid h4 { color: white; }
	.la .solid h4 { color: white; }
	.ps .solid h4 { color: white; }
.section{background: #e9e9e9 url(/images/css/eesy/header.png) repeat-x left bottom; color:#de2c72;font-size:120%;padding:5px 10px;}
.section h1,.section h2,.section h3,.section h4,.section h5,.section h6{font-size:100%;color:#de2c72;padding:0;}
.act{background-color:#e9e9e9;}
.topper{background: #fff url(/images/css/eesy/header_gradient_light.png) repeat-x left bottom;color: #4D4D4D;font-size:120%;padding:5px 10px;}
.topper h1,.topper h2,.topper h3,.topper h4,.topper h5,.topper h6{font-size:100%;color:#4D4D4D;padding:0; margin-left: -5px; padding-right: 7px;}
.bam{background: #00477a url(/images/css/eesy/header_glossy.png) repeat-x left top;color: #fff;font-size:120%;padding:5px 10px;}
.bam h1,.bam h2,.bam h3,.bam h4,.bam h5,.bam h6{font-size:100%;color:#fff;padding:0;}
.gonz{background:url(/images/css/eesy/gc_header.png) no-repeat left top;}/* messed up */
.online{background: #9a9400 url(/images/css/eesy/online.png) repeat-x left top;color: #000;font-size:120%;padding:5px 10px;}
.online h1,.online h2,.online h3,.online h4,.online h5,.online h6{font-size:100%;color:#000;padding:0;}
.help{background: #b20029 url(/images/css/eesy/help.png) repeat-x left top;color: #fff;font-size:120%;padding:5px 10px;}
.help h1,.help h2,.help h3,.help h4,.help h5,.help h6{font-size:100%;color:#fff;padding:0;}
.info{background: #636363 url(/images/css/eesy/info.png) repeat-x left top;color: #fff;font-size:120%;padding:5px 10px;}
.info h1,.info h2,.info h3,.info h4,.info h5,.info h6{font-size:100%;color:#fff;padding:0;}

/* HEADER-STYLES */
.gradient-wht {
	background: url(/images/css/eesy/hd-gradient_white.png) repeat-x left bottom;
	_background:#fff; /* no PNG for IE6 */
}

.gradient-blk {
	background: url(/images/css/eesy/hd-gradient_black.png) repeat-x left bottom; color: #fff;
	_background:#000; /* no PNG for IE6 */
}

.gradient-blk h4 {
	color: #ffffff;
}



/* ====== CONTENT-BLOCK-CONFIG OVERRIDES / EXTENDS SITE-WIDE-CONFIG VALUES ================================ 
 * IMPORTANT: must always use # prefix b/c each content block wrap can have it's own settings! 
/* ======================================================================================================== */



	#ps-index-centercol-sponsors-140x140-get-entries .inner {
									
				
	}
	
		.la #ps-index-centercol-sponsors-140x140-get-entries .inner {
												}
		
		.ps #ps-index-centercol-sponsors-140x140-get-entries .inner {
												}
		

	
			#ps-index-centercol-sponsors-140x140-get-entries .top {	
			background: #ffffff !important;
			border-width: 2px;
			border-color: #ffffff;
			border-style: solid; 
										opacity: 100 !important;
				*filter: alpha(opacity="100") !important;
					}
			
			.sd #ps-index-centercol-sponsors-140x140-get-entries .top {	
				background: #0100a8 !important;
				border-width: 2px;
				border-color: #0037dc !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.la #ps-index-centercol-sponsors-140x140-get-entries .top {	
				background: #006766 !important;
				border-width: 2px;
				border-color: #009e8c !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.ps #ps-index-centercol-sponsors-140x140-get-entries .top {	
				background: #670001 !important;
				border-width: 2px;
				border-color: #981026 !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
		
		
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#la-staff-sponsors-rightcol-get-entries2 .inner {
									
				
	}
	
		.la #la-staff-sponsors-rightcol-get-entries2 .inner {
												}
		
		.ps #la-staff-sponsors-rightcol-get-entries2 .inner {
												}
		

	
			#la-staff-sponsors-rightcol-get-entries2 .top {	
			background: #ffffff !important;
			border-width: 2px;
			border-color: #ffffff;
			border-style: solid; 
										opacity: 100 !important;
				*filter: alpha(opacity="100") !important;
					}
			
			.sd #la-staff-sponsors-rightcol-get-entries2 .top {	
				background: #0100a8 !important;
				border-width: 2px;
				border-color: #0037dc !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.la #la-staff-sponsors-rightcol-get-entries2 .top {	
				background: #006766 !important;
				border-width: 2px;
				border-color: #009e8c !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.ps #la-staff-sponsors-rightcol-get-entries2 .top {	
				background: #670001 !important;
				border-width: 2px;
				border-color: #981026 !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
		
		
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#la-staff-sponsors-rightcol-get-entries-masterwriter .inner {
									
				
	}
	
		.la #la-staff-sponsors-rightcol-get-entries-masterwriter .inner {
												}
		
		.ps #la-staff-sponsors-rightcol-get-entries-masterwriter .inner {
												}
		

	
			#la-staff-sponsors-rightcol-get-entries-masterwriter .top {	
			background: #fafafa !important;
			border-width: 2px;
			border-color: #ffffff;
			border-style: solid; 
										opacity: 100 !important;
				*filter: alpha(opacity="100") !important;
					}
			
			.sd #la-staff-sponsors-rightcol-get-entries-masterwriter .top {	
				background: #0100a8 !important;
				border-width: 2px;
				border-color: #0037dc !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.la #la-staff-sponsors-rightcol-get-entries-masterwriter .top {	
				background: #006766 !important;
				border-width: 2px;
				border-color: #009e8c !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.ps #la-staff-sponsors-rightcol-get-entries-masterwriter .top {	
				background: #670001 !important;
				border-width: 2px;
				border-color: #981026 !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
		
		
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#sd-staff-sponsors-rightcol-get-entries2 .inner {
									
				
	}
	
		.la #sd-staff-sponsors-rightcol-get-entries2 .inner {
												}
		
		.ps #sd-staff-sponsors-rightcol-get-entries2 .inner {
												}
		

	
			#sd-staff-sponsors-rightcol-get-entries2 .top {	
			background: #ffffff !important;
			border-width: 2px;
			border-color: #ffffff;
			border-style: solid; 
										opacity: 100 !important;
				*filter: alpha(opacity="100") !important;
					}
			
			.sd #sd-staff-sponsors-rightcol-get-entries2 .top {	
				background: #0100a8 !important;
				border-width: 2px;
				border-color: #0037dc !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.la #sd-staff-sponsors-rightcol-get-entries2 .top {	
				background: #006766 !important;
				border-width: 2px;
				border-color: #009e8c !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.ps #sd-staff-sponsors-rightcol-get-entries2 .top {	
				background: #670001 !important;
				border-width: 2px;
				border-color: #981026 !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
		
		
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#la-index-centercol-sponsors-get-entries2 .inner {
									
				
	}
	
		.la #la-index-centercol-sponsors-get-entries2 .inner {
												}
		
		.ps #la-index-centercol-sponsors-get-entries2 .inner {
												}
		

	
			#la-index-centercol-sponsors-get-entries2 .top {	
			background: #ffffff !important;
			border-width: 2px;
			border-color: #ffffff;
			border-style: solid; 
										opacity: 100 !important;
				*filter: alpha(opacity="100") !important;
					}
			
			.sd #la-index-centercol-sponsors-get-entries2 .top {	
				background: #0100a8 !important;
				border-width: 2px;
				border-color: #0037dc !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.la #la-index-centercol-sponsors-get-entries2 .top {	
				background: #006766 !important;
				border-width: 2px;
				border-color: #009e8c !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.ps #la-index-centercol-sponsors-get-entries2 .top {	
				background: #670001 !important;
				border-width: 2px;
				border-color: #981026 !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
		
		
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#ps-index-centercol-sponsors-get-entries-2 .inner {
									
				
	}
	
		.la #ps-index-centercol-sponsors-get-entries-2 .inner {
												}
		
		.ps #ps-index-centercol-sponsors-get-entries-2 .inner {
												}
		

	
			#ps-index-centercol-sponsors-get-entries-2 .top {	
			background: #ffffff !important;
			border-width: 2px;
			border-color: #ffffff;
			border-style: solid; 
										opacity: 100 !important;
				*filter: alpha(opacity="100") !important;
					}
			
			.sd #ps-index-centercol-sponsors-get-entries-2 .top {	
				background: #0100a8 !important;
				border-width: 2px;
				border-color: #0037dc !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.la #ps-index-centercol-sponsors-get-entries-2 .top {	
				background: #006766 !important;
				border-width: 2px;
				border-color: #009e8c !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.ps #ps-index-centercol-sponsors-get-entries-2 .top {	
				background: #670001 !important;
				border-width: 2px;
				border-color: #981026 !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
		
		
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#sd-index-centercol-sponsors-140x140-get-entries .inner {
									
				
	}
	
		.la #sd-index-centercol-sponsors-140x140-get-entries .inner {
												}
		
		.ps #sd-index-centercol-sponsors-140x140-get-entries .inner {
												}
		

	
			#sd-index-centercol-sponsors-140x140-get-entries .top {	
			background: #ffffff !important;
			border-width: 2px;
			border-color: #ffffff;
			border-style: solid; 
										opacity: 100 !important;
				*filter: alpha(opacity="100") !important;
					}
			
			.sd #sd-index-centercol-sponsors-140x140-get-entries .top {	
				background: #0100a8 !important;
				border-width: 2px;
				border-color: #0037dc !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.la #sd-index-centercol-sponsors-140x140-get-entries .top {	
				background: #006766 !important;
				border-width: 2px;
				border-color: #009e8c !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.ps #sd-index-centercol-sponsors-140x140-get-entries .top {	
				background: #670001 !important;
				border-width: 2px;
				border-color: #981026 !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
		
		
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#video-index-main-get-media-player-playlist-b .inner {
									
				
	}
	
		.la #video-index-main-get-media-player-playlist-b .inner {
												}
		
		.ps #video-index-main-get-media-player-playlist-b .inner {
												}
		

	
			#video-index-main-get-media-player-playlist-b .top {	
			background: #000000 !important;
			border-width: 0px;
			border-color: #000000;
			border-style: solid; 
							opacity:  !important;
				*filter:  !important;
								}
			
			.sd #video-index-main-get-media-player-playlist-b .top {	
				background: #0100a8 !important;
				border-width: 0px;
				border-color: #0037dc !important;
				border-style: solid; 
									opacity:  !important;
					*filter:  !important;
											}
			
			.la #video-index-main-get-media-player-playlist-b .top {	
				background: #006766 !important;
				border-width: 0px;
				border-color: #009e8c !important;
				border-style: solid; 
									opacity:  !important;
					*filter:  !important;
											}
			
			.ps #video-index-main-get-media-player-playlist-b .top {	
				background: #670001 !important;
				border-width: 0px;
				border-color: #981026 !important;
				border-style: solid; 
									opacity:  !important;
					*filter:  !important;
											}
		
		
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#la-single-entry-get-entries-la8hotelinfo .inner {
									border-color: #ffffff;
				border-width: ;
				border-style: solid;
							
					
				
	}
	
		.la #la-single-entry-get-entries-la8hotelinfo .inner {
												border-color: #009e8c;
					border-width: ;
					border-style: solid;
									}
		
		.ps #la-single-entry-get-entries-la8hotelinfo .inner {
												border-color: #981026;
					border-width: ;
					border-style: solid;
									}
		

	
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#ps-news-centercol-get-entries-wtsanim .inner {
									
				
	}
	
		.la #ps-news-centercol-get-entries-wtsanim .inner {
												}
		
		.ps #ps-news-centercol-get-entries-wtsanim .inner {
												}
		

	
			#ps-news-centercol-get-entries-wtsanim .top {	
			background: #fff7ff !important;
			border-width: 2px;
			border-color: #fffcff;
			border-style: solid; 
										opacity: 100 !important;
				*filter: alpha(opacity="100") !important;
					}
			
			.sd #ps-news-centercol-get-entries-wtsanim .top {	
				background: #0100a8 !important;
				border-width: 2px;
				border-color: #0037dc !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.la #ps-news-centercol-get-entries-wtsanim .top {	
				background: #006766 !important;
				border-width: 2px;
				border-color: #009e8c !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.ps #ps-news-centercol-get-entries-wtsanim .top {	
				background: #670001 !important;
				border-width: 2px;
				border-color: #981026 !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
		
		
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#la-news-rightcol-getvid .inner {
									
				
	}
	
		.la #la-news-rightcol-getvid .inner {
												}
		
		.ps #la-news-rightcol-getvid .inner {
												}
		

	
			#la-news-rightcol-getvid .top {	
			background: #ffffff !important;
			border-width: 2px;
			border-color: #fcfcfc;
			border-style: solid; 
										opacity: 100 !important;
				*filter: alpha(opacity="100") !important;
					}
			
			.sd #la-news-rightcol-getvid .top {	
				background: #0100a8 !important;
				border-width: 2px;
				border-color: #0037dc !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.la #la-news-rightcol-getvid .top {	
				background: #006766 !important;
				border-width: 2px;
				border-color: #009e8c !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.ps #la-news-rightcol-getvid .top {	
				background: #670001 !important;
				border-width: 2px;
				border-color: #981026 !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
		
		
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#sd-news-centercol-get-entries-masterwriter .inner {
									
				
	}
	
		.la #sd-news-centercol-get-entries-masterwriter .inner {
												}
		
		.ps #sd-news-centercol-get-entries-masterwriter .inner {
												}
		

	
			#sd-news-centercol-get-entries-masterwriter .top {	
			background: #ffffff !important;
			border-width: 2px;
			border-color: #ffffff;
			border-style: solid; 
										opacity: 100 !important;
				*filter: alpha(opacity="100") !important;
					}
			
			.sd #sd-news-centercol-get-entries-masterwriter .top {	
				background: #0100a8 !important;
				border-width: 2px;
				border-color: #0037dc !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.la #sd-news-centercol-get-entries-masterwriter .top {	
				background: #006766 !important;
				border-width: 2px;
				border-color: #009e8c !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.ps #sd-news-centercol-get-entries-masterwriter .top {	
				background: #670001 !important;
				border-width: 2px;
				border-color: #981026 !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
		
		
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#sd-news-and-announcements-rightcol-getvid .inner {
									
				
	}
	
		.la #sd-news-and-announcements-rightcol-getvid .inner {
												}
		
		.ps #sd-news-and-announcements-rightcol-getvid .inner {
												}
		

	
			#sd-news-and-announcements-rightcol-getvid .top {	
			background: #ffffff !important;
			border-width: 2px;
			border-color: #ffffff;
			border-style: solid; 
										opacity: 100 !important;
				*filter: alpha(opacity="100") !important;
					}
			
			.sd #sd-news-and-announcements-rightcol-getvid .top {	
				background: #0100a8 !important;
				border-width: 2px;
				border-color: #0037dc !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.la #sd-news-and-announcements-rightcol-getvid .top {	
				background: #006766 !important;
				border-width: 2px;
				border-color: #009e8c !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.ps #sd-news-and-announcements-rightcol-getvid .top {	
				background: #670001 !important;
				border-width: 2px;
				border-color: #981026 !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
		
		
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#la-schedule-rightcol-getvid .inner {
									
				
	}
	
		.la #la-schedule-rightcol-getvid .inner {
												}
		
		.ps #la-schedule-rightcol-getvid .inner {
												}
		

	
			#la-schedule-rightcol-getvid .top {	
			background: #fcfcfc !important;
			border-width: 2px;
			border-color: #ffffff;
			border-style: solid; 
										opacity: 100 !important;
				*filter: alpha(opacity="100") !important;
					}
			
			.sd #la-schedule-rightcol-getvid .top {	
				background: #0100a8 !important;
				border-width: 2px;
				border-color: #0037dc !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.la #la-schedule-rightcol-getvid .top {	
				background: #006766 !important;
				border-width: 2px;
				border-color: #009e8c !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.ps #la-schedule-rightcol-getvid .top {	
				background: #670001 !important;
				border-width: 2px;
				border-color: #981026 !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
		
		
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#ps-news-and-announcements-rightcol-getvid .inner {
									
				
	}
	
		.la #ps-news-and-announcements-rightcol-getvid .inner {
												}
		
		.ps #ps-news-and-announcements-rightcol-getvid .inner {
												}
		

	
			#ps-news-and-announcements-rightcol-getvid .top {	
			background: #ffffff !important;
			border-width: 2px;
			border-color: #ffffff;
			border-style: solid; 
										opacity: 100 !important;
				*filter: alpha(opacity="100") !important;
					}
			
			.sd #ps-news-and-announcements-rightcol-getvid .top {	
				background: #0100a8 !important;
				border-width: 2px;
				border-color: #0037dc !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.la #ps-news-and-announcements-rightcol-getvid .top {	
				background: #006766 !important;
				border-width: 2px;
				border-color: #009e8c !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.ps #ps-news-and-announcements-rightcol-getvid .top {	
				background: #670001 !important;
				border-width: 2px;
				border-color: #981026 !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
		
		
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#all-locations-registration-channel-index-main-get-entries1 .inner {
									border-color: #ffffff;
				border-width: 0px;
				border-style: solid;
							
					
				
	}
	
		.la #all-locations-registration-channel-index-main-get-entries1 .inner {
												border-color: #009e8c;
					border-width: 0px;
					border-style: solid;
									}
		
		.ps #all-locations-registration-channel-index-main-get-entries1 .inner {
												border-color: #981026;
					border-width: 0px;
					border-style: solid;
									}
		

	
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#all-locations-pages-contact-information-get-entries .inner {
									border-color: #ffffff;
				border-width: 0px;
				border-style: solid;
							
					
				
	}
	
		.la #all-locations-pages-contact-information-get-entries .inner {
												border-color: #009e8c;
					border-width: 0px;
					border-style: solid;
									}
		
		.ps #all-locations-pages-contact-information-get-entries .inner {
												border-color: #981026;
					border-width: 0px;
					border-style: solid;
									}
		

	
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#all-locations-news-and-announcements-channel-index-leftcol-get-entries-late .inner {
									border-color: #ffffff;
				border-width: 0px;
				border-style: solid;
							
					
				
	}
	
		.la #all-locations-news-and-announcements-channel-index-leftcol-get-entries-late .inner {
												border-color: #009e8c;
					border-width: 0px;
					border-style: solid;
									}
		
		.ps #all-locations-news-and-announcements-channel-index-leftcol-get-entries-late .inner {
												border-color: #981026;
					border-width: 0px;
					border-style: solid;
									}
		

	
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#all-locations-news-and-announcements-channel-index-get-entries .inner {
									
				
	}
	
		.la #all-locations-news-and-announcements-channel-index-get-entries .inner {
												}
		
		.ps #all-locations-news-and-announcements-channel-index-get-entries .inner {
												}
		

	
			#all-locations-news-and-announcements-channel-index-get-entries .top {	
			background: #ffffff !important;
			border-width: 0px;
			border-color: #ffffff;
			border-style: solid; 
							opacity:  !important;
				*filter:  !important;
								}
			
			.sd #all-locations-news-and-announcements-channel-index-get-entries .top {	
				background: #0100a8 !important;
				border-width: 0px;
				border-color: #0037dc !important;
				border-style: solid; 
									opacity:  !important;
					*filter:  !important;
											}
			
			.la #all-locations-news-and-announcements-channel-index-get-entries .top {	
				background: #006766 !important;
				border-width: 0px;
				border-color: #009e8c !important;
				border-style: solid; 
									opacity:  !important;
					*filter:  !important;
											}
			
			.ps #all-locations-news-and-announcements-channel-index-get-entries .top {	
				background: #670001 !important;
				border-width: 0px;
				border-color: #981026 !important;
				border-style: solid; 
									opacity:  !important;
					*filter:  !important;
											}
		
		
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
			#all-locations-news-and-announcements-channel-index-get-entries .inner { /*opacity layer*/
		   background: url(/images/css/scwc/bg-images/latest-news.jpg);
		   background-repeat:repeat-x repeat-y ;
		   background-position:0 0;
		   overflow: hidden;
		   _background:#fff; /* no PNG for IE6 */
		   margin-right: -3px; 
		}
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#all-locations-staff-single-entry-leftcol-get-entries .inner {
									border-color: #ffffff;
				border-width: 0px;
				border-style: solid;
							
					
				
	}
	
		.la #all-locations-staff-single-entry-leftcol-get-entries .inner {
												border-color: #009e8c;
					border-width: 0px;
					border-style: solid;
									}
		
		.ps #all-locations-staff-single-entry-leftcol-get-entries .inner {
												border-color: #981026;
					border-width: 0px;
					border-style: solid;
									}
		

	
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#all-locations-news-and-announcements-single-entry-main-get-entries .inner {
									border-color: #ffffff;
				border-width: 0px;
				border-style: solid;
							
					
				
	}
	
		.la #all-locations-news-and-announcements-single-entry-main-get-entries .inner {
												border-color: #009e8c;
					border-width: 0px;
					border-style: solid;
									}
		
		.ps #all-locations-news-and-announcements-single-entry-main-get-entries .inner {
												border-color: #981026;
					border-width: 0px;
					border-style: solid;
									}
		

	
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#all-locations-events-single-entry-main-get-entries-events .inner {
									border-color: #ffffff;
				border-width: 0px;
				border-style: solid;
							
					
				
	}
	
		.la #all-locations-events-single-entry-main-get-entries-events .inner {
												border-color: #009e8c;
					border-width: 0px;
					border-style: solid;
									}
		
		.ps #all-locations-events-single-entry-main-get-entries-events .inner {
												border-color: #981026;
					border-width: 0px;
					border-style: solid;
									}
		

	
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#all-locations-events-filterby-leftcol-get-entries-by-category .inner {
									border-color: #ffffff;
				border-width: 0px;
				border-style: solid;
							
					
				
	}
	
		.la #all-locations-events-filterby-leftcol-get-entries-by-category .inner {
												border-color: #009e8c;
					border-width: 0px;
					border-style: solid;
									}
		
		.ps #all-locations-events-filterby-leftcol-get-entries-by-category .inner {
												border-color: #981026;
					border-width: 0px;
					border-style: solid;
									}
		

	
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#all-locations-all-channels-single-entry-leftcol-get-entries-single .inner {
									border-color: #ffffff;
				border-width: 0px;
				border-style: solid;
							
					
				
	}
	
		.la #all-locations-all-channels-single-entry-leftcol-get-entries-single .inner {
												border-color: #009e8c;
					border-width: 0px;
					border-style: solid;
									}
		
		.ps #all-locations-all-channels-single-entry-leftcol-get-entries-single .inner {
												border-color: #981026;
					border-width: 0px;
					border-style: solid;
									}
		

	
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#all-locations-sponsors-index-pages-rightcol-get-entries-sponsors-first-3 .inner {
									
				
	}
	
		.la #all-locations-sponsors-index-pages-rightcol-get-entries-sponsors-first-3 .inner {
												}
		
		.ps #all-locations-sponsors-index-pages-rightcol-get-entries-sponsors-first-3 .inner {
												}
		

	
			#all-locations-sponsors-index-pages-rightcol-get-entries-sponsors-first-3 .top {	
			background: #006765 !important;
			border-width: 2px;
			border-color: #009e8c;
			border-style: solid; 
										opacity: 100 !important;
				*filter: alpha(opacity="100") !important;
					}
			
			.sd #all-locations-sponsors-index-pages-rightcol-get-entries-sponsors-first-3 .top {	
				background: #0100a8 !important;
				border-width: 2px;
				border-color: #0037dc !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.la #all-locations-sponsors-index-pages-rightcol-get-entries-sponsors-first-3 .top {	
				background: #006766 !important;
				border-width: 2px;
				border-color: #009e8c !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.ps #all-locations-sponsors-index-pages-rightcol-get-entries-sponsors-first-3 .top {	
				background: #670001 !important;
				border-width: 2px;
				border-color: #981026 !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
		
		
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#all-locations-schedule-channel-index-leftcol-get-schedules .inner {
									border-color: #0037dc;
				border-width: 0px;
				border-style: solid;
							
					
				
	}
	
		.la #all-locations-schedule-channel-index-leftcol-get-schedules .inner {
												border-color: #009e8c;
					border-width: 0px;
					border-style: solid;
									}
		
		.ps #all-locations-schedule-channel-index-leftcol-get-schedules .inner {
												border-color: #981026;
					border-width: 0px;
					border-style: solid;
									}
		

	
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#all-locations-staff-channel-index-main-get-entries-category-44-conference-o .inner {
									
				
	}
	
		.la #all-locations-staff-channel-index-main-get-entries-category-44-conference-o .inner {
												}
		
		.ps #all-locations-staff-channel-index-main-get-entries-category-44-conference-o .inner {
												}
		

	
			#all-locations-staff-channel-index-main-get-entries-category-44-conference-o .top {	
			background: #ffffff !important;
			border-width: 2px;
			border-color: #ffffff;
			border-style: solid; 
										opacity: 100 !important;
				*filter: alpha(opacity="100") !important;
					}
			
			.sd #all-locations-staff-channel-index-main-get-entries-category-44-conference-o .top {	
				background: #0100a8 !important;
				border-width: 2px;
				border-color: #0037dc !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.la #all-locations-staff-channel-index-main-get-entries-category-44-conference-o .top {	
				background: #006766 !important;
				border-width: 2px;
				border-color: #009e8c !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.ps #all-locations-staff-channel-index-main-get-entries-category-44-conference-o .top {	
				background: #670001 !important;
				border-width: 2px;
				border-color: #981026 !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
		
		
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#all-locations-staff-channel-index-leftcol-get-entries-category-41-advance-r .inner {
									
				
	}
	
		.la #all-locations-staff-channel-index-leftcol-get-entries-category-41-advance-r .inner {
												}
		
		.ps #all-locations-staff-channel-index-leftcol-get-entries-category-41-advance-r .inner {
												}
		

	
			#all-locations-staff-channel-index-leftcol-get-entries-category-41-advance-r .top {	
			background: #0000a8 !important;
			border-width: 2px;
			border-color: #0037dc;
			border-style: solid; 
										opacity: 100 !important;
				*filter: alpha(opacity="100") !important;
					}
			
			.sd #all-locations-staff-channel-index-leftcol-get-entries-category-41-advance-r .top {	
				background: #0100a8 !important;
				border-width: 2px;
				border-color: #0037dc !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.la #all-locations-staff-channel-index-leftcol-get-entries-category-41-advance-r .top {	
				background: #006766 !important;
				border-width: 2px;
				border-color: #009e8c !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.ps #all-locations-staff-channel-index-leftcol-get-entries-category-41-advance-r .top {	
				background: #670001 !important;
				border-width: 2px;
				border-color: #981026 !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
		
		
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#all-locations-staff-channel-index-leftcol-get-entries-category-43-authors .inner {
									
				
	}
	
		.la #all-locations-staff-channel-index-leftcol-get-entries-category-43-authors .inner {
												}
		
		.ps #all-locations-staff-channel-index-leftcol-get-entries-category-43-authors .inner {
												}
		

	
			#all-locations-staff-channel-index-leftcol-get-entries-category-43-authors .top {	
			background: #0000a8 !important;
			border-width: 2px;
			border-color: #0037dc;
			border-style: solid; 
										opacity: 100 !important;
				*filter: alpha(opacity="100") !important;
					}
			
			.sd #all-locations-staff-channel-index-leftcol-get-entries-category-43-authors .top {	
				background: #0100a8 !important;
				border-width: 2px;
				border-color: #0037dc !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.la #all-locations-staff-channel-index-leftcol-get-entries-category-43-authors .top {	
				background: #006766 !important;
				border-width: 2px;
				border-color: #009e8c !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.ps #all-locations-staff-channel-index-leftcol-get-entries-category-43-authors .top {	
				background: #670001 !important;
				border-width: 2px;
				border-color: #981026 !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
		
		
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#all-locations-staff-channel-index-leftcol-get-entries-category-42-45-agents .inner {
									
				
	}
	
		.la #all-locations-staff-channel-index-leftcol-get-entries-category-42-45-agents .inner {
												}
		
		.ps #all-locations-staff-channel-index-leftcol-get-entries-category-42-45-agents .inner {
												}
		

	
			#all-locations-staff-channel-index-leftcol-get-entries-category-42-45-agents .top {	
			background: #0000a8 !important;
			border-width: 2px;
			border-color: #0037dc;
			border-style: solid; 
										opacity: 100 !important;
				*filter: alpha(opacity="100") !important;
					}
			
			.sd #all-locations-staff-channel-index-leftcol-get-entries-category-42-45-agents .top {	
				background: #0100a8 !important;
				border-width: 2px;
				border-color: #0037dc !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.la #all-locations-staff-channel-index-leftcol-get-entries-category-42-45-agents .top {	
				background: #006766 !important;
				border-width: 2px;
				border-color: #009e8c !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.ps #all-locations-staff-channel-index-leftcol-get-entries-category-42-45-agents .top {	
				background: #670001 !important;
				border-width: 2px;
				border-color: #981026 !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
		
		
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#all-locations-staff-channel-index-leftcol-get-entries-category-46-special-g .inner {
									
				
	}
	
		.la #all-locations-staff-channel-index-leftcol-get-entries-category-46-special-g .inner {
												}
		
		.ps #all-locations-staff-channel-index-leftcol-get-entries-category-46-special-g .inner {
												}
		

	
			#all-locations-staff-channel-index-leftcol-get-entries-category-46-special-g .top {	
			background: #ffffff !important;
			border-width: 2px;
			border-color: #ffffff;
			border-style: solid; 
										opacity: 100 !important;
				*filter: alpha(opacity="100") !important;
					}
			
			.sd #all-locations-staff-channel-index-leftcol-get-entries-category-46-special-g .top {	
				background: #0100a8 !important;
				border-width: 2px;
				border-color: #0037dc !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.la #all-locations-staff-channel-index-leftcol-get-entries-category-46-special-g .top {	
				background: #006766 !important;
				border-width: 2px;
				border-color: #009e8c !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.ps #all-locations-staff-channel-index-leftcol-get-entries-category-46-special-g .top {	
				background: #670001 !important;
				border-width: 2px;
				border-color: #981026 !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
		
		
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#all-locations-location-index-main-get-entries-note-to-agents .inner {
									
				
	}
	
		.la #all-locations-location-index-main-get-entries-note-to-agents .inner {
												}
		
		.ps #all-locations-location-index-main-get-entries-note-to-agents .inner {
												}
		

	
			#all-locations-location-index-main-get-entries-note-to-agents .top {	
			background: #0000a8 !important;
			border-width: 2px;
			border-color: #0037dc;
			border-style: solid; 
										opacity: 100 !important;
				*filter: alpha(opacity="100") !important;
					}
			
			.sd #all-locations-location-index-main-get-entries-note-to-agents .top {	
				background: #0100a8 !important;
				border-width: 2px;
				border-color: #0037dc !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.la #all-locations-location-index-main-get-entries-note-to-agents .top {	
				background: #006766 !important;
				border-width: 2px;
				border-color: #009e8c !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.ps #all-locations-location-index-main-get-entries-note-to-agents .top {	
				background: #670001 !important;
				border-width: 2px;
				border-color: #981026 !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
		
		
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#all-locations-location-index-rightcol-get-entries-4-million .inner {
									
				
	}
	
		.la #all-locations-location-index-rightcol-get-entries-4-million .inner {
												}
		
		.ps #all-locations-location-index-rightcol-get-entries-4-million .inner {
												}
		

	
			#all-locations-location-index-rightcol-get-entries-4-million .top {	
			background: #0000a8 !important;
			border-width: 2px;
			border-color: #0037dc;
			border-style: solid; 
										opacity: 100 !important;
				*filter: alpha(opacity="100") !important;
					}
			
			.sd #all-locations-location-index-rightcol-get-entries-4-million .top {	
				background: #0100a8 !important;
				border-width: 2px;
				border-color: #0037dc !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.la #all-locations-location-index-rightcol-get-entries-4-million .top {	
				background: #006766 !important;
				border-width: 2px;
				border-color: #009e8c !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.ps #all-locations-location-index-rightcol-get-entries-4-million .top {	
				background: #670001 !important;
				border-width: 2px;
				border-color: #981026 !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
		
		
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#all-locations-location-index-main-get-entries-news-and-announcements-1 .inner {
									
				
	}
	
		.la #all-locations-location-index-main-get-entries-news-and-announcements-1 .inner {
												}
		
		.ps #all-locations-location-index-main-get-entries-news-and-announcements-1 .inner {
												}
		

	
			#all-locations-location-index-main-get-entries-news-and-announcements-1 .top {	
			background: #000ed9 !important;
			border-width: 0px;
			border-color: #0000a8;
			border-style: solid; 
										opacity: 100 !important;
				*filter: alpha(opacity="100") !important;
					}
			
			.sd #all-locations-location-index-main-get-entries-news-and-announcements-1 .top {	
				background: #0100a8 !important;
				border-width: 0px;
				border-color: #0037dc !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.la #all-locations-location-index-main-get-entries-news-and-announcements-1 .top {	
				background: #006766 !important;
				border-width: 0px;
				border-color: #009e8c !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.ps #all-locations-location-index-main-get-entries-news-and-announcements-1 .top {	
				background: #670001 !important;
				border-width: 0px;
				border-color: #981026 !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
		
		
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
			#all-locations-location-index-main-get-entries-news-and-announcements-1 .inner { /*opacity layer*/
		   background: url(/images/css/scwc/bg-images/latest-news.jpg);
		   background-repeat:repeat-x repeat-y ;
		   background-position:0 0;
		   overflow: hidden;
		   _background:#fff; /* no PNG for IE6 */
		   margin-right: -3px; 
		}
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#all-locations-location-index-leftcol-get-entries-intro .inner {
									border-color: #981027;
				border-width: 0px;
				border-style: solid;
							
					
				
	}
	
		.la #all-locations-location-index-leftcol-get-entries-intro .inner {
												border-color: #009e8c;
					border-width: 0px;
					border-style: solid;
									}
		
		.ps #all-locations-location-index-leftcol-get-entries-intro .inner {
												border-color: #981026;
					border-width: 0px;
					border-style: solid;
									}
		

	
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#all-locations-all-channels-all-views-rightcol-get-opt-in .inner {
									
				
	}
	
		.la #all-locations-all-channels-all-views-rightcol-get-opt-in .inner {
												}
		
		.ps #all-locations-all-channels-all-views-rightcol-get-opt-in .inner {
												}
		

	
			#all-locations-all-channels-all-views-rightcol-get-opt-in .top {	
			background: #ffffff !important;
			border-width: 2px;
			border-color: #ffffff;
			border-style: solid; 
										opacity: 100 !important;
				*filter: alpha(opacity="100") !important;
					}
			
			.sd #all-locations-all-channels-all-views-rightcol-get-opt-in .top {	
				background: #0100a8 !important;
				border-width: 2px;
				border-color: #0037dc !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.la #all-locations-all-channels-all-views-rightcol-get-opt-in .top {	
				background: #006766 !important;
				border-width: 2px;
				border-color: #009e8c !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.ps #all-locations-all-channels-all-views-rightcol-get-opt-in .top {	
				background: #670001 !important;
				border-width: 2px;
				border-color: #981026 !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
		
		
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#all-locations-channel-index-schedule-rightcol-get-categories-events .inner {
									
				
	}
	
		.la #all-locations-channel-index-schedule-rightcol-get-categories-events .inner {
												}
		
		.ps #all-locations-channel-index-schedule-rightcol-get-categories-events .inner {
												}
		

	
			#all-locations-channel-index-schedule-rightcol-get-categories-events .top {	
			background: #0000a8 !important;
			border-width: 2px;
			border-color: #0037dc;
			border-style: solid; 
										opacity: 100 !important;
				*filter: alpha(opacity="100") !important;
					}
			
			.sd #all-locations-channel-index-schedule-rightcol-get-categories-events .top {	
				background: #0100a8 !important;
				border-width: 2px;
				border-color: #0037dc !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.la #all-locations-channel-index-schedule-rightcol-get-categories-events .top {	
				background: #006766 !important;
				border-width: 2px;
				border-color: #009e8c !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.ps #all-locations-channel-index-schedule-rightcol-get-categories-events .top {	
				background: #670001 !important;
				border-width: 2px;
				border-color: #981026 !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
		
		
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#la-staff-rightcol-getvid-schulz2 .inner {
									
				
	}
	
		.la #la-staff-rightcol-getvid-schulz2 .inner {
												}
		
		.ps #la-staff-rightcol-getvid-schulz2 .inner {
												}
		

	
			#la-staff-rightcol-getvid-schulz2 .top {	
			background: #fffaff !important;
			border-width: 2px;
			border-color: #fffaff;
			border-style: solid; 
										opacity: 100 !important;
				*filter: alpha(opacity="100") !important;
					}
			
			.sd #la-staff-rightcol-getvid-schulz2 .top {	
				background: #0100a8 !important;
				border-width: 2px;
				border-color: #0037dc !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.la #la-staff-rightcol-getvid-schulz2 .top {	
				background: #006766 !important;
				border-width: 2px;
				border-color: #009e8c !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.ps #la-staff-rightcol-getvid-schulz2 .top {	
				background: #670001 !important;
				border-width: 2px;
				border-color: #981026 !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
		
		
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#sd-staff-rightcol-getvid .inner {
									
				
	}
	
		.la #sd-staff-rightcol-getvid .inner {
												}
		
		.ps #sd-staff-rightcol-getvid .inner {
												}
		

	
			#sd-staff-rightcol-getvid .top {	
			background: #ffffff !important;
			border-width: 2px;
			border-color: #ffffff;
			border-style: solid; 
										opacity: 100 !important;
				*filter: alpha(opacity="100") !important;
					}
			
			.sd #sd-staff-rightcol-getvid .top {	
				background: #0100a8 !important;
				border-width: 2px;
				border-color: #0037dc !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.la #sd-staff-rightcol-getvid .top {	
				background: #006766 !important;
				border-width: 2px;
				border-color: #009e8c !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.ps #sd-staff-rightcol-getvid .top {	
				background: #670001 !important;
				border-width: 2px;
				border-color: #981026 !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
		
		
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#palm-springs-location-index-rightcol-get-media-player-celestine-prophecy .inner {
									
				
	}
	
		.la #palm-springs-location-index-rightcol-get-media-player-celestine-prophecy .inner {
												}
		
		.ps #palm-springs-location-index-rightcol-get-media-player-celestine-prophecy .inner {
												}
		

	
			#palm-springs-location-index-rightcol-get-media-player-celestine-prophecy .top {	
			background: #ffffff !important;
			border-width: 2px;
			border-color: #ffffff;
			border-style: solid; 
										opacity: 100 !important;
				*filter: alpha(opacity="100") !important;
					}
			
			.sd #palm-springs-location-index-rightcol-get-media-player-celestine-prophecy .top {	
				background: #0100a8 !important;
				border-width: 2px;
				border-color: #0037dc !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.la #palm-springs-location-index-rightcol-get-media-player-celestine-prophecy .top {	
				background: #006766 !important;
				border-width: 2px;
				border-color: #009e8c !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.ps #palm-springs-location-index-rightcol-get-media-player-celestine-prophecy .top {	
				background: #670001 !important;
				border-width: 2px;
				border-color: #981026 !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
		
		
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#all-locations-registration-channel-index-main-get-entries .inner {
									
				
	}
	
		.la #all-locations-registration-channel-index-main-get-entries .inner {
												}
		
		.ps #all-locations-registration-channel-index-main-get-entries .inner {
												}
		

	
			#all-locations-registration-channel-index-main-get-entries .top {	
			background: #ffffff !important;
			border-width: 2px;
			border-color: #ffffff;
			border-style: solid; 
										opacity: 100 !important;
				*filter: alpha(opacity="100") !important;
					}
			
			.sd #all-locations-registration-channel-index-main-get-entries .top {	
				background: #0100a8 !important;
				border-width: 2px;
				border-color: #0037dc !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.la #all-locations-registration-channel-index-main-get-entries .top {	
				background: #006766 !important;
				border-width: 2px;
				border-color: #009e8c !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.ps #all-locations-registration-channel-index-main-get-entries .top {	
				background: #670001 !important;
				border-width: 2px;
				border-color: #981026 !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
		
		
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#san-diego-location-index-rightcol-get-media-player-entry-186 .inner {
									
				
	}
	
		.la #san-diego-location-index-rightcol-get-media-player-entry-186 .inner {
												}
		
		.ps #san-diego-location-index-rightcol-get-media-player-entry-186 .inner {
												}
		

	
			#san-diego-location-index-rightcol-get-media-player-entry-186 .top {	
			background: #ffffff !important;
			border-width: 2px;
			border-color: #ffffff;
			border-style: solid; 
										opacity: 100 !important;
				*filter: alpha(opacity="100") !important;
					}
			
			.sd #san-diego-location-index-rightcol-get-media-player-entry-186 .top {	
				background: #0100a8 !important;
				border-width: 2px;
				border-color: #0037dc !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.la #san-diego-location-index-rightcol-get-media-player-entry-186 .top {	
				background: #006766 !important;
				border-width: 2px;
				border-color: #009e8c !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.ps #san-diego-location-index-rightcol-get-media-player-entry-186 .top {	
				background: #670001 !important;
				border-width: 2px;
				border-color: #981026 !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
		
		
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#all-events-single-entry-rightcol-getentries-masterwriter .inner {
									
				
	}
	
		.la #all-events-single-entry-rightcol-getentries-masterwriter .inner {
												}
		
		.ps #all-events-single-entry-rightcol-getentries-masterwriter .inner {
												}
		

	
			#all-events-single-entry-rightcol-getentries-masterwriter .top {	
			background: #ffffff !important;
			border-width: 2px;
			border-color: #ffffff;
			border-style: solid; 
										opacity: 100 !important;
				*filter: alpha(opacity="100") !important;
					}
			
			.sd #all-events-single-entry-rightcol-getentries-masterwriter .top {	
				background: #0100a8 !important;
				border-width: 2px;
				border-color: #0037dc !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.la #all-events-single-entry-rightcol-getentries-masterwriter .top {	
				background: #006766 !important;
				border-width: 2px;
				border-color: #009e8c !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.ps #all-events-single-entry-rightcol-getentries-masterwriter .top {	
				background: #670001 !important;
				border-width: 2px;
				border-color: #981026 !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
		
		
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#la-adv-rightcol-getvid .inner {
									
				
	}
	
		.la #la-adv-rightcol-getvid .inner {
												}
		
		.ps #la-adv-rightcol-getvid .inner {
												}
		

	
			#la-adv-rightcol-getvid .top {	
			background: #fcf9fc !important;
			border-width: 2px;
			border-color: #ffffff;
			border-style: solid; 
										opacity: 100 !important;
				*filter: alpha(opacity="100") !important;
					}
			
			.sd #la-adv-rightcol-getvid .top {	
				background: #0100a8 !important;
				border-width: 2px;
				border-color: #0037dc !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.la #la-adv-rightcol-getvid .top {	
				background: #006766 !important;
				border-width: 2px;
				border-color: #009e8c !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.ps #la-adv-rightcol-getvid .top {	
				background: #670001 !important;
				border-width: 2px;
				border-color: #981026 !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
		
		
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#all-locations-events-sessions-panels-filterby-get-categories .inner {
									
				
	}
	
		.la #all-locations-events-sessions-panels-filterby-get-categories .inner {
												}
		
		.ps #all-locations-events-sessions-panels-filterby-get-categories .inner {
												}
		

	
			#all-locations-events-sessions-panels-filterby-get-categories .top {	
			background: #ffffff !important;
			border-width: 2px;
			border-color: #ffffff;
			border-style: solid; 
										opacity: 100 !important;
				*filter: alpha(opacity="100") !important;
					}
			
			.sd #all-locations-events-sessions-panels-filterby-get-categories .top {	
				background: #0100a8 !important;
				border-width: 2px;
				border-color: #0037dc !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.la #all-locations-events-sessions-panels-filterby-get-categories .top {	
				background: #006766 !important;
				border-width: 2px;
				border-color: #009e8c !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.ps #all-locations-events-sessions-panels-filterby-get-categories .top {	
				background: #670001 !important;
				border-width: 2px;
				border-color: #981026 !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
		
		
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#los-angeles-location-index-rightcol-get-media-player .inner {
									
				
	}
	
		.la #los-angeles-location-index-rightcol-get-media-player .inner {
												}
		
		.ps #los-angeles-location-index-rightcol-get-media-player .inner {
												}
		

	
			#los-angeles-location-index-rightcol-get-media-player .top {	
			background: #ffffff !important;
			border-width: 2px;
			border-color: #ffffff;
			border-style: solid; 
										opacity: 100 !important;
				*filter: alpha(opacity="100") !important;
					}
			
			.sd #los-angeles-location-index-rightcol-get-media-player .top {	
				background: #0100a8 !important;
				border-width: 2px;
				border-color: #0037dc !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.la #los-angeles-location-index-rightcol-get-media-player .top {	
				background: #006766 !important;
				border-width: 2px;
				border-color: #009e8c !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.ps #los-angeles-location-index-rightcol-get-media-player .top {	
				background: #670001 !important;
				border-width: 2px;
				border-color: #981026 !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
		
		
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#sd-events-single-entry-rightcol-getvid .inner {
									
				
	}
	
		.la #sd-events-single-entry-rightcol-getvid .inner {
												}
		
		.ps #sd-events-single-entry-rightcol-getvid .inner {
												}
		

	
			#sd-events-single-entry-rightcol-getvid .top {	
			background: #fffaff !important;
			border-width: 2px;
			border-color: #fff5ff;
			border-style: solid; 
										opacity: 100 !important;
				*filter: alpha(opacity="100") !important;
					}
			
			.sd #sd-events-single-entry-rightcol-getvid .top {	
				background: #0100a8 !important;
				border-width: 2px;
				border-color: #0037dc !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.la #sd-events-single-entry-rightcol-getvid .top {	
				background: #006766 !important;
				border-width: 2px;
				border-color: #009e8c !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
			
			.ps #sd-events-single-entry-rightcol-getvid .top {	
				background: #670001 !important;
				border-width: 2px;
				border-color: #981026 !important;
				border-style: solid; 
													opacity: 100 !important;
					*filter: alpha(opacity="100") !important;
							}
		
		
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#ps-all-channels-all-views-rightcol-get-nav-sidebar .inner {
				
				
	}
	
		.la #ps-all-channels-all-views-rightcol-get-nav-sidebar .inner {
					}
		
		.ps #ps-all-channels-all-views-rightcol-get-nav-sidebar .inner {
					}
		

	
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#sd-all-channels-all-views-rightcol-get-nav-sidebar .inner {
				
				
	}
	
		.la #sd-all-channels-all-views-rightcol-get-nav-sidebar .inner {
					}
		
		.ps #sd-all-channels-all-views-rightcol-get-nav-sidebar .inner {
					}
		

	
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#all-locations-all-channels-all-views-foot-get-site-credits .inner {
									
				
	}
	
		.la #all-locations-all-channels-all-views-foot-get-site-credits .inner {
												}
		
		.ps #all-locations-all-channels-all-views-foot-get-site-credits .inner {
												}
		

	
			#all-locations-all-channels-all-views-foot-get-site-credits .top {	
			background: #000000 !important;
			border-width: 0px;
			border-color: #000000;
			border-style: solid; 
							opacity: .70 !important;
				*filter: alpha(opacity="70") !important;
								}
			
			.sd #all-locations-all-channels-all-views-foot-get-site-credits .top {	
				background: #0100a8 !important;
				border-width: 0px;
				border-color: #0037dc !important;
				border-style: solid; 
									opacity: .70 !important;
					*filter: alpha(opacity="70") !important;
											}
			
			.la #all-locations-all-channels-all-views-foot-get-site-credits .top {	
				background: #006766 !important;
				border-width: 0px;
				border-color: #009e8c !important;
				border-style: solid; 
									opacity: .70 !important;
					*filter: alpha(opacity="70") !important;
											}
			
			.ps #all-locations-all-channels-all-views-foot-get-site-credits .top {	
				background: #670001 !important;
				border-width: 0px;
				border-color: #981026 !important;
				border-style: solid; 
									opacity: .70 !important;
					*filter: alpha(opacity="70") !important;
											}
		
		
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#la-all-channels-all-views-rightcol-get-nav-sidebar .inner {
				
				
	}
	
		.la #la-all-channels-all-views-rightcol-get-nav-sidebar .inner {
					}
		
		.ps #la-all-channels-all-views-rightcol-get-nav-sidebar .inner {
					}
		

	
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#all-locations-all-channels-all-views-head-get-nav-sub .inner {
									
				
	}
	
		.la #all-locations-all-channels-all-views-head-get-nav-sub .inner {
												}
		
		.ps #all-locations-all-channels-all-views-head-get-nav-sub .inner {
												}
		

	
			#all-locations-all-channels-all-views-head-get-nav-sub .top {	
			background: #1336c2 !important;
			border-width: 0px;
			border-color: #3809f2;
			border-style: solid; 
							opacity: .0 !important;
				*filter: alpha(opacity="0") !important;
								}
			
			.sd #all-locations-all-channels-all-views-head-get-nav-sub .top {	
				background: #0100a8 !important;
				border-width: 0px;
				border-color: #0037dc !important;
				border-style: solid; 
									opacity: .0 !important;
					*filter: alpha(opacity="0") !important;
											}
			
			.la #all-locations-all-channels-all-views-head-get-nav-sub .top {	
				background: #006766 !important;
				border-width: 0px;
				border-color: #009e8c !important;
				border-style: solid; 
									opacity: .0 !important;
					*filter: alpha(opacity="0") !important;
											}
			
			.ps #all-locations-all-channels-all-views-head-get-nav-sub .top {	
				background: #670001 !important;
				border-width: 0px;
				border-color: #981026 !important;
				border-style: solid; 
									opacity: .0 !important;
					*filter: alpha(opacity="0") !important;
											}
		
		
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#all-locations-all-channels-all-views-head-get-nav-main .inner {
									border-color: #ff7700;
				border-width: 0px;
				border-style: solid;
							
					
				
	}
	
		.la #all-locations-all-channels-all-views-head-get-nav-main .inner {
												border-color: #009e8c;
					border-width: 0px;
					border-style: solid;
									}
		
		.ps #all-locations-all-channels-all-views-head-get-nav-main .inner {
												border-color: #981026;
					border-width: 0px;
					border-style: solid;
									}
		

	
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



	#all-locations-all-channels-all-views-head-get-site-name .inner {
									
				
	}
	
		.la #all-locations-all-channels-all-views-head-get-site-name .inner {
												}
		
		.ps #all-locations-all-channels-all-views-head-get-site-name .inner {
												}
		

	
			#all-locations-all-channels-all-views-head-get-site-name .top {	
			background: #ffffff !important;
			border-width: 0px;
			border-color: #ffffff;
			border-style: solid; 
							opacity: .0 !important;
				*filter: alpha(opacity="0") !important;
								}
			
			.sd #all-locations-all-channels-all-views-head-get-site-name .top {	
				background: #0100a8 !important;
				border-width: 0px;
				border-color: #0037dc !important;
				border-style: solid; 
									opacity: .0 !important;
					*filter: alpha(opacity="0") !important;
											}
			
			.la #all-locations-all-channels-all-views-head-get-site-name .top {	
				background: #006766 !important;
				border-width: 0px;
				border-color: #009e8c !important;
				border-style: solid; 
									opacity: .0 !important;
					*filter: alpha(opacity="0") !important;
											}
			
			.ps #all-locations-all-channels-all-views-head-get-site-name .top {	
				background: #670001 !important;
				border-width: 0px;
				border-color: #981026 !important;
				border-style: solid; 
									opacity: .0 !important;
					*filter: alpha(opacity="0") !important;
											}
		
		
		
	/* ----- add a gradient ------------------- */
		
	
	/* ----- add a bg-image to the C-WRAP ---- */
		
	
	/* ----- add drop-shadow ----------------- */
		
	/* ----- flip the gradient 180-degrees ---- */
		
}



