/*   style.css contains a reset, font normalization and some base styles.    credit is left where credit is due.  additionally, much inspiration was taken from these projects:    yui.yahooapis.com/2.8.1/build/base/base.css    camendesign.com/design/    praegnanz.de/weblog/htmlcssjs-kickstart*/
/*   html5doctor.com reset stylesheet (eric meyer's reset reloaded + html5 baseline)  v1.4 2009-07-27 | authors: eric meyer & richard clark  html5doctor.com/html-5-reset-stylesheet
/*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, hgroup, menu, nav, section, menu, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
article, aside, figure, footer, header, hgroup, nav, section {
	display: block;
}
nav ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}
mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}
del {
	text-decoration: line-through;
}
abbr[title], dfn[title] {
	border-bottom: 1px dotted #000;
	cursor: help;
}
/* tables still need cellspacing="0" in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	margin: 1em 0;
	padding: 0;
}
input, select {
	vertical-align: middle;
}
/* END RESET CSS */
/*fonts.css from the YUI Library: developer.yahoo.com/yui/          Please refer to developer.yahoo.com/yui/fonts/ for font sizing percentagesThere are three custom edits: * remove arial, helvetica from explicit font stack * make the line-height relative and unit-less * remove the pre, code styles*/
body {
	
  font: 13px sans-serif;
	*font-size: small;
	*font: x-small;
	line-height: 1.22;
}
table {
	font-size: inherit;
	font: 100%;
}
select, input, textarea {
	font: 99% sans-serif;
}
/* normalize monospace sizing  * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome */
pre, code, kbd, samp {
	font-family: monospace, sans-serif;
}
/*  * minimal base styles  */
/* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */
body, select, input, textarea {
	color: #444;
}
/* Headers (h1,h2,etc) have no default font-size or margin,   you'll want to define those yourself. */
/* www.aestheticallyloyal.com/public/optimize-legibility/ */
h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
	text-rendering: optimizeLegibility;
}
/* maxvoltar.com/archive/-webkit-font-smoothing */
html {
	-webkit-font-smoothing: antialiased;
}
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active {
	outline: none;
	text-decoration: none;
}
a, a:active, a:visited {
	color: #0064B1;
	text-decoration: none;
}
a:hover {
	color: #0084D8;
}
ul {
	margin-left: 30px;
}
ol {
	margin-left: 30px;
	list-style-type: decimal;
}
small {
	font-size: 85%;
}
strong, th {
	font-weight: bold;
}
td, td img {
	vertical-align: top;
}
sub {
	vertical-align: sub;
	font-size: smaller;
}
sup {
	vertical-align: super;
	font-size: smaller;
}
pre {
	padding: 15px;
/* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
	white-space: pre;
/* CSS2 */
	white-space: pre-wrap;
/* CSS 2.1 */
	white-space: pre-line;
/* CSS 3 (and 2.1 as well, actually) */
	word-wrap: break-word;
/* IE */
}
/* align checkboxes, radios, text inputs with their label   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] {
	vertical-align: text-bottom;
}
input[type="checkbox"] {
	vertical-align: bottom;
	*vertical-align: baseline;
}
.ie6 input {
	vertical-align: text-bottom;
}
/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button {
	cursor: pointer;
}
/* These selection declarations have to be separate.   No text-shadow: twitter.com/miketaylr/status/12228805301    Also: hot pink. */
::-moz-selection {
	background: #FF5E99;
	color: #fff;
	text-shadow: none;
}
::selection {
	background: #FF5E99;
	color: #fff;
	text-shadow: none;
}
/*  j.mp/webkit-tap-highlight-color */
a:link {
	-webkit-tap-highlight-color: #FF5E99;
}
/* always force a scrollbar in non-IE */
html {
	overflow-y: scroll;
}
/* make buttons play nice in IE:       www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {
	width: auto;
	overflow: visible;
}
/* bicubic resizing for non-native sized IMG:    code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img {
	-ms-interpolation-mode: bicubic;
}
/*  * Non-semantic helper classes  */
/* for image replacement */
.ir {
	display: block;
	text-indent: -999em;
	overflow: hidden;
	background-repeat: no-repeat;
}
/* Hide for both screenreaders and browsers   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden {
	display: none;
	visibility: hidden;
}
/* Hide only visually, but have it available for screenreaders    www.webaim.org/techniques/css/invisiblecontent/    Solution from: j.mp/visuallyhidden - Thanks Jonathan Neal! */
.visuallyhidden {
	position: absolute !important;
	clip: rect(1px 1px 1px 1px);
/* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
}
/* Hide visually and from screenreaders, but maintain layout */
.invisible {
	visibility: hidden;
}
/* >> The Magnificent CLEARFIX << */
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clearfix {
	display: inline-block;
}
* html .clearfix {
	height: 1%;
}
/* Hides from IE-mac \*/
.clearfix {
	display: block;
}
/* Primary Styles    Author:  */
/*  * print styles * inlined to avoid required HTTP connection www.phpied.com/delay-loading-your-print-css/  */
@media print {
* {
	background: transparent !important;
	color: #444 !important;
	text-shadow: none;
}
a, a:visited {
	color: #444 !important;
	text-decoration: underline;
}
a:after {
	content: " (" attr(href) ")";
}
abbr:after {
	content: " (" attr(title) ")";
}
.ir a:after {
	content: "";
}
/* Don't show links for images */
pre, blockquote {
	border: 1px solid #999;
	page-break-inside: avoid;
}
img {
	page-break-inside: avoid;
}
@page {
	margin: 0.5cm;
}
p, h2, h3 {
	orphans: 3;
	widows: 3;
}
h2, h3 {
	page-break-after: avoid;
}
}
/* * Media queries for responsive design */
@media all and (orientation:portrait) {
/* Style adjustments for portrait mode goes here */
}
@media all and (orientation:landscape) {
/* Style adjustments for landscape mode goes here */
}
/* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome)     Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
/* Prevent iOS, WinMobile from adjusting font size */
html {
	-webkit-text-size-adjust: none;
	-ms-text-size-adjust: none;
}
}
/* * FESTIVAL _ GROSSES FERNSEHEN STYLES */
body {
	background: url(../img/bodyBg.jpg) top center repeat fixed #222;
	font-family:Helvetica,Arial,sans-serif;
}
h1 {
	font-size: 14px;
	text-transform: uppercase;
	line-height: 18px;
}
p.bodytext {
	line-height: 140%;
}
#allWrapper {
	margin: 0 auto;
	width: 1020px;
}
#headerWrap {
	background: #fff;
	height: 125px;
	margin: 10px 20px 5px;
	position: relative;
	width: 980px;
}
#headerWrap ul {
	margin: 0;
	list-style: none;
}
#logoFile {
	position: absolute;
	bottom: 6px;
	left: 15px;
}
.social {
	display: block;
	height: 22px;
	overflow:hidden;
	position: absolute;
	text-indent: -9999px;
	width: 22px;
}
.twitter {
	background: url(../img/twitterIcon.png) 0 -44px no-repeat;
	top: 15px;
	right: 15px;
}
.facebook {
	background: url(../img/facebookIcon.png) 0 -44px no-repeat;
	top: 15px;
	right: 45px;
}
.yt {
	background: url(../img/ytIcon.png) 0 -44px no-repeat;
	top: 15px;
	right: 75px;
}
.flickr {
	background: url(../img/flickrIcon.png) 0 -44px no-repeat;
	top: 15px;
	right: 105px;
}

.langUk {
	background: url(../img/langUkIcon.png) 0 -44px no-repeat;
	top: 15px;
	right: 105px;
}
a.social:hover {
	background-position: 0 0;
}
#contentWrap {
	background: #e6e6e6;
	margin: 0 20px 5px;
	min-height: 350px;
	padding: 15px 0;
	position: relative;
	width: 980px;
}
.home #contentWrap {
	padding: 0;
}
.home #mainContent {
	margin: 0;
}
.col5050 #mainContent {
	margin-right: 0;
	min-height: 450px;
}
.anythingControls {
	display: none!Important;
}
#pageContentWrap {
	background: #fff;
	border: 2px solid #ddd;
	margin: 0 13px 0 53px;
	overflow: auto;
}
#pageContentWrap h1, #pageContentWrap p, #pageContentWrap li {
	line-height: 140%;
}
.pageHL {
	background: none repeat scroll 0 0 #0064B1;
	border-bottom: 2px solid #DDDDDD;
	color: #FFFFFF;
	display: block;
	padding: 6px 16px;
	position: relative;
}
.pageHL h1 {
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	margin: 0 200px 0 0;
	padding-right: 10px;
}
.pageHL .pTime {
	color: #fff;
	line-height: 30px;
	margin: 0 0px;
}
.pageHL .twitter-share-button {
	position: absolute;
	right: 10px;
	top: 8px;
}
.pageHL .facebook-like-button {
	position: absolute;
	right: 100px;
	top: 8px;
}
#mainContent {
	margin: 15px;
}
#rightContent {
	margin: 15px 15px 15px 0;
}
#mainContent h1, #rightContent h1 {
	border-bottom: 1px solid #ababab;
	margin: 0 0 5px;
}
#rightContent p, #rightContent ul {
	color: #888;
}
/*  * MAINCONTENT AND RIGHT CONTENT COLUMNS 60/40, 50/50 * */
.col60 {
	float: left;
	width: 550px;
}
.col40 {
	float: left;
	width: 310px;
}
#footer {
	background: #efefef;
	height: 100px;
	margin: 0 20px 5px;
	position: relative;
	width: 980px;
}
ul.mainNavigation {
	background-image: none;
	top: 80px;
	height: 40px;
	list-style: none;
	overflow:visible;
	position: absolute;
	right: 0px;
	width: 485px;
	z-index: 10;
}
ul.mainNavigation:hover, ul.mainNavigation:focus {
	/*background-image: url("../img/mainNavSprite.png");*/
	background-position: 0 -50px;
	background-color:#fff;
-webkit-box-shadow: 0px 5px 10px -2px rgba(0, 0, 0, 0.8);
-moz-box-shadow: 0px 5px 10px -2px rgba(0, 0, 0, 0.8);
box-shadow: 0px 5px 10px -2px rgba(0, 0, 0, 0.8); 
	min-height:215px;
	padding-bottom:15px;
	overflow:hidden;
}
ul.mainNavigation li {
	float: left;
}
.festival, .besucher, .impressionen {
	background-image: url("../img/mainNavSprite.png");
	background-repeat: no-repeat;
	background-color: #fff;
	height: 40px;
	margin: 5px 0px 0 10px;
}
.festival a.mainLink, .besucher a.mainLink, .impressionen a.mainLink {
	display: block;
	height: 45px;
	text-indent: -9999px;
}
.festival {
	background-position: -10px -5px;
	width: 130px;
}
.besucher {
	background-position: -155px -5px;
	width: 142px;
}
.impressionen {
	background-position: -315px -5px;
	width: 179px;
}
.festival:hover, .festival.act {
	background-position: -10px -55px;
}
.besucher:hover, .besucher.act {
	background-position: -155px -55px;
}
.impressionen:hover, .impressionen.act {
	background-position: -315px -55px;
}
ul.mainNav2, ul.mainNav3 {
	display: none;
	position: absolute;
	width: inherit;
	opacity: 0;
}
ul.mainNavigation:hover ul {
	display: block;
	-webkit-transition: opacity 1s ease-in-out;
	-moz-transition: opacity 1s ease-in-out;
	-o-transition: opacity 1s ease-in-out;
	transition: opacity 1s ease-in-out;
	opacity: 1;
}
ul.mainNav2 li, ul.mainNav3 li {
	float: none;
}
ul.mainNav2 li a, ul.mainNav3 li a {
	color: #888;
	text-decoration: none;
	line-height: 180%;
	margin: 0;
	font-size: 14px;
}
.festival:hover ul.mainNav2 li a, .festival:hover ul.mainNav3 li a, .besucher:hover ul.mainNav2 li a, .impressionen:hover ul.mainNav2 li a {
	color: #000;
}
ul.mainNav2 li a:hover, ul.mainNav3 li a:hover {
	color: #da001e !important;
}
/* * PROGRAMM Kalender Styles */
span.pTime {
	color: red;
}
#programFlyout {
	background: url("../img/programmSprite2013.png") no-repeat 0 0;
/*display:none;*/   
	height: 350px;
	position: absolute;
	top: 12px;
	left: -30px;
	width: 80px;
	z-index: 999;
}
#homeFlyoutNavigation {
	list-style: none;
	margin: 0;
	position: relative;
}
#programFlyout h1 {
	display: block;
	height: 40px;
	width: 70px;
}
#programFlyout li.flyoutDay {
	padding: 0 5px;
}
#programFlyout li.flyoutDay a.program {
	display: block;
	height: 70px;
	text-indent: -9999px;
	width: 70px;
}
.Mittwoch a.program {
	background: url("../img/programmSprite2013.png") no-repeat -5px -40px;
}

.Donnerstag a.program {
	background: url("../img/programmSprite2013.png") no-repeat -5px -110px;
}
.Freitag a.program {
	background: url("../img/programmSprite2013.png") no-repeat -5px -180px;
}
.Samstag a.program {
	background: url("../img/programmSprite2013.png") no-repeat -5px -250px;
}
.Sonntag a.program {
	background: url("../img/programmSprite2013.png") no-repeat -5px -320px;
}
.Donnerstag a.program.act, .Mittwoch a.program:hover {
	background: url("../img/programmSprite2013.png") no-repeat -85px -40px;
}
.Donnerstag a.program.act, .Donnerstag a.program:hover {
	background: url("../img/programmSprite2013.png") no-repeat -85px -110px;
}
.Freitag a.program.act, .Freitag a.program:hover {
	background: url("../img/programmSprite2013.png") no-repeat -85px -180px;
}
.Samstag a.program.act, .Samstag a.program:hover {
	background: url("../img/programmSprite2013.png") no-repeat -85px -250px;
}
.Sonntag a.program.act, .Sonntag a.program:hover {
	background: url("../img/programmSprite2013.png") no-repeat -85px -320px;
}
/* * PROGRAMM-FLYOUT Styles */
#programFlyout .myFly {
	background: url("../img/programmFlyout.png") no-repeat scroll left top transparent;
display:none;
	left: 67px;
	list-style: none;
	margin-left: 0;
	padding: 5px 15px 15px 25px;
	position: absolute;
	top: 0;
	width: 620px;
	z-index: 1999;
}
#programFlyout .myFly .csc-default {
	padding: 10px 20px 20px 30px;
}
#programFlyout li.flyoutDay:hover .myFly, #programFlyout li.flyoutDay:hover .marker {
	display: block;
}
.marker {
	background: url("../img/programmFlyoutMarker.png") no-repeat 0 0;
	position: absolute;
	left: 68px;
display:none;
	width: 20px;
	height: 100px;
	z-index: 2000;
}

.Mittwoch .marker {
	top: 10px;
}

.Donnerstag .marker {
	top: 80px;
}
.Freitag .marker {
	top: 150px;
}
.Samstag .marker {
	top: 220px;
}
.Sonntag .marker {
	top: 290px;
}
.myFly .csc-header-n1 {
	display: none;
}
.myFly .flyoutTeaser {
	border-bottom: 1px solid #EFEFEF;
	overflow: auto;
	padding: 11px 0 7px;
	position: relative;
}
.myFly .flyoutTeaser:hover, .dayInfoItem:hover {
	background: #efefef;
}
.myFly .flyoutTeaser .teaserBild {
	float: left;
	margin: 0 10px 0 0;
}
.myFly .flyoutTeaser .teaserBild img {
	border: 2px solid #eaeaea;
}
.myFly .flyoutTeaser:hover teaserBild img {
	border: 2px solid #fff;
}
.myFly .flyoutTeaser h2 {
	color: #444;
	font-size: 18px;
	font-weight: normal;
	margin: 0 50px 5px 0;
}
.myFly .flyoutTeaser h2 a {
	color: #444;
	text-decoration: none;
}
.myFly .flyoutTeaser h2 a:hover {
	color: #0084d8;
}
.myFly .flyoutTeaser .bodytext {
/*	margin: 0 50px 0 110px;    */
}
.myFly .flyoutTeaser .moreLink, .dayInfoItem .moreLink {
	display: none;
	position: absolute;
	right: 10px;
	top: 25px;
}
.dayInfoItem .moreLink {
	top: 40%;
}
.myFly .flyoutTeaser:hover .moreLink, .dayInfoItem:hover .moreLink {
	display: block;
}
.myFly .flyoutTeaser .moreLink a, .dayInfoItem .moreLink a {
	background: url("../img/moreLink.png") no-repeat scroll 0 0 transparent;
	color: #0084D8;
	display: block;
	height: 40px;
	text-indent: -9999px;
	width: 40px;
}
.myFly .flyoutTeaser .moreLink a:hover, .dayInfoItem .moreLink a:hover {
	background: url(../img/moreLink.png)  0 -80px no-repeat;
}
/* * CSC-Styles * */
.csc-default {
	margin: 0 0 20px;
}
.csc-textpic-above .csc-textpic-imagewrap {
	margin: 0 0 15px;
}
.dayInfoItem {
	border-bottom: 1px solid #EFEFEF;
	height: 100px;
	position: relative;
}
/*.dayInfoItem .moreLink {
	position: absolute;
	right: 0px;
	bottom: 10px;
}
.dayInfoItem .moreLink a {
	background: url(../img/moreLinkIcon.png) right 1px no-repeat;
	color: #0084d8;
	padding: 0 10px 0 0;
	text-decoration: none;
}
*/
#rightContent .csc-default {
	margin: 0 0 30px 0;
}
/* * PROGRAMM-LIST Styles */
.col50 .dayInfoItem {
	float: left;
	margin: 0 15px 15px 0;
	width: 430px;
}
.col50 .dayInfoItem .teaserBild {
	float: left;
	margin: 3px 10px 10px 0;
}
.col50 .dayInfoItem h2 {
	font-size: 14px;
}
.col50 .dayInfoItem h2 span {
	display: block;
}
.col50 .dayInfoItem h2 a {
	color: #444;
	font-weight: bold;
	text-decoration: none;
}
.col100 .dayInfoItem {
	clear: both;
	float: left;
	height: auto;
	margin: 0 0 15px 0;
	padding: 0 50px 0 0;
}
.col100 .dayInfoItem .teaserBild {
	float: left;
	margin: 3px 10px 10px 0;
}
.col100 .dayInfoItem h2 {
	font-size: 14px;
}
.col100 .dayInfoItem h2 span {
	display: block;
}
.col100 .dayInfoItem h2 a {
	color: #444;
	font-weight: bold;
	text-decoration: none;
}
/* * NEWS Styles */
.col50 .news-list-item {
	float: left;
	margin: 0 15px 15px 0;
	width: 430px;
}
/* * FOOTER * */
.footerNav {
	list-style: none;
	margin: 0;
	position: absolute;
	top: 14px;
	left: 15px;
}
.footerNav li {
	float: left;
	margin: 0 10px;
}
.footerNav a {
	color: #0064b1;
	/* font-size: 11px;
*/
	text-decoration: none;
}
.veranstalter {
	left: 25px;
	position: absolute;
	top: 45px;
	width: 940px;
}
/*   neuer Footertext 24.1.12.veranstalter {
	position: absolute;
	right: 15px;
	top: 15px;
	width: 640px;
}
.veranstalter .lfm {
	position: absolute;
	top: 0;
	right: 55px;
}
.veranstalter .nrw {
	position: absolute;
	top: 0;
	right: 0px;
}
.veranstalter .mefo {
	position: absolute;
	top: 0;
	right: 180px;
}
.veranstalter .footertext {
	font-size: 11px;
	line-height: 140%;
	position: absolute;
	top: 0;
	right: 260px;
}
*/
.veranstalter .footertext {
	font-size: 10px;
	line-height: 140%;
	position: absolute;
	right: 215px;
	left: 0px;
	top: 5px;
	width: 625px;
	font-family:Arial,sans-serif;
}
.veranstalter .koeln {
	position: absolute;
	right: 0;
	top: 0;
}
.veranstalter .lfm img {
	height: 30px;
}
.veranstalter .lfm {
	position: absolute;
	right: 249px;
	top: 1px;
}
.veranstalter .nrw {
	position: absolute;
	right: 190px;
	top: 0;
}
.veranstalter img {
/*	height: 35px; */
}
.veranstalter .footertext a {
	color: #0064b1;
}
#layover {
	background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);
	display: none;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	width: inherit;
	z-index: 99;
}
.ticketLink {
	background: none repeat scroll 0 0 rgba(255, 255, 255, 0.25);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	font-size: 12px;
	letter-spacing: 1px;
	padding: 4px 5px 2px;
}
.ticketLink:hover {
	background: none repeat scroll 0 0 rgba(255, 255, 255, 0.15);
	text-decoration: underline;
}
/* * BILDERCROP UND LIGHTBOX *  */
.csc-textpic-imagewrap ul {
	list-style: none;
	margin-left: 0;
}
.csc-textpic-imagewrap ul li {
	float: left;
	margin: 0 10px 10px 0;
}
.csc-textpic-imagewrap ul li.csc-textpic-lastcol {
	margin-right: 0;
}
.csc-textpic-clear {
	clear: both;
}

/* css for Homepage Boxes  START */

#boxContent {
	padding:10px;
	overflow:auto;
}

#boxContent h1,
#boxContent h2,
#boxContent h3 {
	border-bottom:1px solid #ababab;
	font-size:14px;
	line-height:18px;
	min-height:40px;
	margin:0 0 5px;
}

#boxContent h4 { 
	border-bottom:1px solid #dfdfdf;
    	font-size:12px;
	font-weight:normal;
	margin:0 0 5px;
	padding:0 0 3px;
}

.homepageBox {
	background-color:#fff;
	border:2px solid #ddd;
	float:left;
	height:200px;
	margin:0 8px;
	padding:10px;
	width:280px;
}

#boxContent DIV.csc-textpic-intext-right DIV.csc-textpic-imagewrap{
	margin:0 0 0 5px !important;
}

#boxContent DIV.csc-textpic DIV.csc-textpic-single-image IMG{
	border:2px solid #eaeaea;
}
#boxContent h1, #boxContent h2, #boxContent h3 {
    border-bottom: 1px solid #ABABAB;
    font-size: 14px;
    line-height: 18px;
    margin: 0 0 5px;
    min-height: 40px;
}

#boxContent DIV.csc-textpic-intext-right DIV.csc-textpic-imagewrap {
    margin: 0 0 0 5px !important;
}
#boxContent DIV.csc-textpic-intext-right DIV.csc-textpic-imagewrap {
    float: right;
}
/* css for Homepage Boxes  END */
