#alertContainer p {
    color:#fff;
}
/*====================== STYLES FOR BOTH LEFT AND RIGHT ALIGNED ALERTS   */
#alertContainer {
	width:100%;
	border-bottom:1px solid;
	float:left;
	overflow:hidden;
	cursor:pointer;
}
#alertContainer #alertInside {
    width: 330px;
    background-repeat: no-repeat;
}
#alertContainer .alertTitle {
    font-weight:bold;
	font-size:108%;
	float:left;
	background-repeat: no-repeat;
	background-position: 10px center;
}

#alertContainer .alertFullText {
    float:left;
    display:none;
    margin:0;
    padding:1px 5px 0 20px;
    font-size:85%;
    line-height:1.4em;
}
#alertContainer.show .alertFullText{
	display:block;
}
#alertContainer .alertFullText span,#alertContainer.hide .alertFullText{
	display:none;
}

/*====================== RIGHT-ALIGNED ALERT   */
#alertContainer.alertRight #alertInside.hide {
    float:right;
}
#alertContainer.alertRight .show {
    float:right;
}
#alertContainer.alertRight .alertTitle {
	padding:14px 20px 14px 50px;
	width:240px;
	background-image: url(alertInfoIcon.gif);
}
#alertContainer.alertRight img{
	margin-right:11px;
}
#alertContainer.alertRight .alertTitle,#alertContainer.alertRight .alertFullText,#alertContainer.alertRight img{
	float:right;
}
/*====================== LEFT-ALIGNED ALERT   */
#alertContainer.alertLeft #alertInside.hide {
    float:left;
    background-image: url(alertInfoIcon.gif);
    background-position: 290px center;
}
#alertContainer.alertLeft .show {
    float:left;
    background-image: url(alertInfoIcon.gif);
    background-position: 920px center;
}
#alertContainer.alertLeft .alertTitle {
	padding:14px 0px 14px 10px;
	width:260px;
}
#alertContainer.alertLeft .alertTitle,#alertContainer.alertLeft .alertFullText,#alertContainer.alertLeft img{
	float:left;
}
#content #alertContainer.alertLeft{
    background-image: url(alertInfoIcon.gif);
    background-position:290px center;
	background-repeat:no-repeat;
}
#content #alertContainer.alertLeft.show{
	background-position:920px center;
}
#alertContainer.alertLeft img{
	margin-left:11px;
}