/* Styles that apply to the info box's containing element whether it has no beak, a rightBeak, or a leftBeak */ 

.customInfoBox-noBeak, 
.customInfoBox-with-rightBeak, 
.customInfoBox-with-leftBeak 
{
            position: absolute;
            margin: 0;
            padding: 0;
}

/* Offset the body for the drop-shadow and set the body background and border just for starters (developers can change this easily)*/

.customInfoBox-body {
            position: relative;
            top: 0px;
            left: 0px;
            bottom: 0;
            right: 0;
            padding: 0;
            margin: 0;
            border: 1px solid #333333;
            background-color: aqua;
}

/* Apply a nice default drop-shadow after the default Bing Maps info box styles are cleared */ 

.customInfoBox-shadow 
{
            position: relative;
            background-color: #ccc;
}

/* Sections of the info box that a developer could style if desired, but have no style when the default Bing Maps info box styles are cleared */ 

.customInfoBox-previewArea {
	margin: 0;
	padding: 0;
	width:100%;
	
	background:#FFFFFF;
}

.customInfoBox-previewArea p { padding: 0; margin:0; }
.customInfoBox-previewArea div.firstChild { padding: 0; margin:0; overflow:hidden; }

.customInfoBox-previewArea .title { display: none; }

.customInfoBox-previewArea .bing-maps-description {
	padding: 0 15px 0 15px; 
	margin: 0;
	font-family:'helvetica neue',arial,sans-serif;
	font-size: 11px;
	line-height:16px;
	color:#333333;
}

.customInfoBox-previewArea .bing-maps-more-info {
	margin: 5px 0 5px 0; 
	padding: 5px; 
	background-color: #eeeeee;
	text-align: right;
}

.customInfoBox-actionsBackground { }

/* Sections of the info box that should not be visible when the default Bing Maps info box styles are cleared */ 

.customInfoBox-actions, 
.customInfoBox-paddingHack 
{
            display: none;
}

.customInfoBox-beak,
.customInfoBox-progressAnimation
{
            visibility: hidden;
}
