﻿#locationDetailStartTime {
    padding-top:25px;
}

/* OVERLAY WINDOW CLOSE BUTTON IE8 FIX */
.ie8 #LocationDetailSubform_locationDetailClose {
    margin-bottom: 25px;
}

#locationDetailSubform
{
	display: none;
	width: 700px; /* I am hard-coding the width here to match the actual bg image... otherwise it would scale and I'd have to
					 perform a calculation to determine what the height would be, and then use that to set the height of the 
					 inner div. */
	margin: 0;

}
/* the escape "button" - the X icon to escape out of the dialog box.  */
#locationDetailSubform .closeOverlay,
#registerOthersSubform .closeOverlay {
    background-image:url("../images/close.png");
    position:absolute;
    right:5px;
    top:5px;
    cursor:pointer;
    height:35px;
    width:35px;
    z-index:1000;
}

#locationDetailInnerBox
{
	height: 438px; /* 526 -22 (margin-top) -20 (padding-top) -22 (margin-bottom) -20 (margin-bottom) -2 (border-top) -2 (border-bottom) */
	margin: 22px;
	z-index:900;
	overflow: auto;
}

/* this is a fix just for IE6/7 */
body.ie6or7 #locationDetailInnerBox
{
	position: relative;
	top: 22px;
}

/* THIS IS FOR THE HEADER TEXT IN THE OVERLAY */
#locationDetailLocationName {
	font-weight:bold;
	margin-bottom: 10px;
}

