html
{
	width: 100%;
	height: 100%;
}

body
{
	width: 100%;
	height: 100%;
	margin: 0px;
}

.Overlay
{
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	_height: expression(window.document.clientHeight + "px");
	
	background-image: url("http://www.data.virtualinterconnect.com/images/transparent/black50.png");
	#background-image: none;
	#filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='http://www.data.virtualinterconnect.com/images/transparent/black50.png');
}

.AlignLeft
{
	text-align: left;
}

.AlignRight
{
	text-align: right;
}

.AlignTop
{
	vertical-align: top;
}

.AlignBottom
{
	vertical-align: bottom;
}

.CenterX
{
	text-align: center;
}

.CenterY
{
	vertical-align: middle;
}

.Invisible
{
	display: none;
}

.BorderTable
{
	border: 1px outset grey;
}

.BorderTable td
{
	border: 1px inset grey;
}

h1, h2, h3, h4, h5, h6, h7
{
	margin: 0px;
	padding: 0px;
}

.Note
{
	font-size: 70%;
	font-weight: bold;
}

.PageContent img
{
	margin: 10px;
}

fieldset.Form
{
	border: 1px solid #999;
	border: 1px solid rgba(128, 128, 128, 0.5);
	padding: 0px 5px 5px 5px;
	margin-bottom: 20px;
	-moz-border-radius: 1em;
	-webkit-border-radius: 1em;
	border-radius: 1em;
}

fieldset.Form legend
{
	color: #999;
	color: rgba(128, 128, 128, 0.5);
	font-weight: bold;
	padding: 3px 10px;
	font-size: 70%;
	margin-bottom: 5px;
}

fieldset.Form table
{
	width: 100%;
}

fieldset.Form td.FormLabel
{
	width: 25%;
	vertical-align: top;
}

fieldset.Form td.FormInput
{
	text-align: left;
}

fieldset.Form td.FormInput input[type="text"],
fieldset.Form td.FormInput input[type="email"],
fieldset.Form td.FormInput input[type="date"],
fieldset.Form td.FormInput input[type="number"],
fieldset.Form td.FormInput textarea,
fieldset.Form td.FormInput select
{
	-moz-border-radius: 1em;
	-webkit-border-radius: 1em;
	border-radius: 1em;
	border: 0;
	line-height: 175%;
	padding-left: 0.5em;
	outline: none;
	-webkit-transition-property: -webkit-box-shadow;
	-webkit-transition-duration: 0.5s;
	-moz-transition-property: -webkit-box-shadow;
	-moz-transition-duration: 0.5s;
	transition-property: box-shadow;
	transition-duration: 0.5s;
	-moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

fieldset.Form td.FormInput input[type="text"]:focus,
fieldset.Form td.FormInput input[type="email"]:focus,
fieldset.Form td.FormInput input[type="date"]:focus,
fieldset.Form td.FormInput input[type="number"]:focus,
fieldset.Form td.FormInput textarea:focus,
fieldset.Form td.FormInput select:focus
{
	-moz-box-shadow: 0 0 20px rgb(64, 128, 255);
	-webkit-box-shadow: 0 0 20px rgb(64, 128, 255);
	box-shadow: 0 0 20px rgb(64, 128, 255);
}

fieldset.Form td.FormInput input[type="text"],
fieldset.Form td.FormInput input[type="email"],
fieldset.Form td.FormInput input[type="date"],
fieldset.Form td.FormInput input[type="number"],
fieldset.Form td.FormInput textarea
{
	background: #fff;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ccc), color-stop(0.5, #fff));
	background-image: -moz-linear-gradient(top, #ccc 0, #fff 50%);
	background-image: -webkit-linear-gradient(top, #ccc 0, #fff 50%);
	background-image: linear-gradient(top, #ccc 0, #fff 50%);
	width: 17em;
}

fieldset.Form td.FormInput select
{
	background: #fff;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(0.5, #ccc));
	background-image: -moz-linear-gradient(top, #fff 0, #ccc 50%);
	background-image: -webkit-linear-gradient(top, #fff 0, #ccc 50%);
	background-image: linear-gradient(top, #fff 0, #ccc 50%);
	margin-right: 0.5em;
}

fieldset.Form td.FormInput input[type="text"].FormAddressCity
{
	width: 10em;
}

fieldset.Form td.FormInput input[type="text"].FormAddressState
{
	width: 2em;
}

fieldset.Form td.FormInput input[type="text"].FormAddressZip
{
	width: 3.5em;
}

fieldset.Form td.FormInput input[type="text"].FormPhoneAreaCode,
fieldset.Form td.FormInput input[type="text"].FormPhoneExchange,
fieldset.Form td.FormInput input[type="text"].FormPhoneExtension
{
	margin: 0 0.125em;
	width: 2.5em;
}

fieldset.Form td.FormInput input[type="text"].FormPhoneNumber
{
	margin: 0 0.125em;
	width: 3em;
}

fieldset.Form input[type="reset"],
fieldset.Form input[type="submit"]
{
	-moz-border-radius: 0.5em;
	-webkit-border-radius: 0.5em;
	border-radius: 0.5em;
	border: 0;
	line-height: 175%;
	padding-left: 1em;
	padding-right: 1em;
	outline: none;
	-webkit-transition-property: -webkit-box-shadow, background-image;
	-webkit-transition-duration: 0.5s, 0.5s;
	-moz-transition-property: -webkit-box-shadow, background-image;
	-moz-transition-duration: 0.5s, 0.5s;
	transition-property: box-shadow, background-image;
	transition-duration: 0.5s, 0.5s;
	-moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ccc), color-stop(0.5, #999));
	background-image: -moz-linear-gradient(top, #ccc 0, #999 50%);
	background-image: -webkit-linear-gradient(top, #ccc 0, #999 50%);
	background-image: linear-gradient(top, #ccc 0, #999 50%);
	cursor: pointer;
}

fieldset.Form input[type="reset"]:hover,
fieldset.Form input[type="submit"]:hover
{
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ddd), color-stop(0.5, #aaa));
	background-image: -moz-linear-gradient(top, #ddd 0, #aaa 50%);
	background-image: -webkit-linear-gradient(top, #ddd 0, #aaa 50%);
	background-image: linear-gradient(top, #ddd 0, #aaa 50%);
	-moz-box-shadow: 0 0 20px rgb(64, 128, 255);
	-webkit-box-shadow: 0 0 20px rgb(64, 128, 255);
	box-shadow: 0 0 20px rgb(64, 128, 255);
}

fieldset.Form td.FormInput .MoreInfo
{
	float: right;
	width: 29%;
}

fieldset.Form td.FormSection
{
	padding-top: 20px;
}

a.LoginButton img
{
	border: 0px;
}

div.LoginBoxBackground
{
	z-index: 20000;
}

div.LoginBoxBackground form
{
	margin-bottom: 0px;
	width: 100%;
	height: 100%;
}

div.LoginBoxBackground form div.LoginBox
{
	position: absolute;
	left: 50%;
	top: 50%;
	width: 320px;
	height: 240px;
	margin-left: -160px;
	margin-top: -120px;
	background: #999 url("http://www.data.virtualinterconnect.com/images/login/320x240bg.jpg");
}

div.LoginBox h1
{
	display: none;
}

div.LoginBox a.LoginClose
{
	position: absolute;
	display: block;
	top: 5px;
	right: 10px;
	width: 20px;
	height: 20px;
	background-image: url("http://www.data.virtualinterconnect.com/images/login/20x20dkx.gif");
}

div.LoginBox a.LoginClose img
{
	display: none;
}

div.LoginBox a.LoginClose:hover
{
	background-image: url("http://www.data.virtualinterconnect.com/images/login/20x20ltx.gif");
}

.LoginDemoExplaination
{
	position: absolute;
	left: 20px;
	top: 90px;
	font-size: xx-small;
	color: #fff;
	text-align: center;
}

.LoginInfo
{
	position: absolute;
	left: 20px;
	top: 110px;
	width: 276px;
	line-height: 23px;
}

.LoginInfo label
{
	float: left;
	clear: left;
	color: #fff;
}

#LoginUsername, #LoginPassword
{
	float: right;
	width: 60%;
	height: 20px;
}

#LoginRememberMeContainer
{
	float: right;
	width: 60%;
	padding: 5px;
}

#LoginRememberMeContainer label
{
	float: right;
	width: 80%;
}

#LoginRememberMeContainer input
{
}

#LoginCancel
{
	display: block;
	float: left;
	width: 138px;
	height: 22px;
	background-image: url("http://www.data.virtualinterconnect.com/images/login/dkcancel.jpg");
}

#LoginCancel:hover
{
	background-image: url("http://www.data.virtualinterconnect.com/images/login/ltcancel.jpg");
}

#LoginCancel img
{
	display: none;
}

#LoginSubmit
{
	float: right;
	width: 138px;
	height: 22px;
}

#LoginForgotPassword
{
	float: right;
	width: 60%;
	clear: both;
	font-size: 75%;
	padding-bottom: 0.75em;
}

.Hours
{
	border-collapse: collapse;
	margin: 10px;
}

.Hours td
{
	border: 2px solid #999;
	padding: 3px;
}

.Hours td table
{
	margin: 0px;
}

.Hours td table td
{
	border-style: none;
	padding: 0px;
}

.DefinitionList
{
	border: 1px solid #999;
	padding: 10px;
}

.DefinitionList dt, .DefinitionList dd
{
	margin-top: 10px;
}

.DefinitionList dt
{
	clear: both;
	float: left;
	width: 30%;
	font-weight: bold;
}

.DefinitionList dd
{
	margin-left: 30%;
}

.ClearFloats
{
	clear: both;
	font-size: 1px;
	line-height: 1px;
	width: 1px;
	height: 1px;
}

.ListStyleNone, .ListStyleNone li
{
	list-style: none;
	margin: 0px;
	padding: 0px;
}

.MemberList li a
{
	display: block;
	text-decoration: none;
	color: inherit;
	padding: 10px 5px;
}

.MemberList li a:hover
{
	background-color: #fff;
	color: #000;
	border: 1px solid #000;
	padding: 9px 4px;
}

table.Border tr td, table.Border tr th, table.NoBorder tr th, table.NoBorder tr td
{
	vertical-align: top;
}

div.Gallery
{
	border: 1px solid #ccc;
}

div.GalleryExpanded
{
	display: none;
}

div.GalleryExpanded div.GalleryLargePictureTitle, div.GalleryExpanded div.GalleryLargePicture
{
	float: left;
	width: 66%;
}

div.GalleryExpanded div.GalleryTitles, div.GalleryExpanded div.GalleryTitles div, div.Gallery div.GalleryThumbsTitle
{
	line-height: 40px;
	height: 40px;
	background-color: #ccc;
	color: #000;
}

div.GalleryExpanded div.GalleryInfo
{
	clear: both;
	height: 350px;
}

div.GalleryExpanded div.GalleryLargePicture
{
	border-right: 1px solid #ccc;
	height: 100%;
	line-height: 350px;
	text-align: center;
	position: relative;
}

div.GalleryExpanded div.GalleryLargePicture img
{
	_width: 100%;
	_height: 100%;
	max-width: 100%;
	max-height: 100%;
	vertical-align: middle;
}

div.GalleryExpanded div.GalleryLargePicture div.GalleryOverlay, div.GalleryExpanded div.GalleryLargePicture a
{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}

div.GalleryExpanded div.GalleryLargePicture a
{
	display: block;
}

div.GalleryExpanded div.GalleryLargePicture a img
{
	border: 0px;
}

div.GalleryExpanded div.GalleryDescription
{
	height: 100%;
	width: 33%;
	overflow: auto;
}

div.Gallery div.GalleryThumbsTitle
{
	clear: both;
}

ul.GalleryThumbs, ul.GalleryThumbs li
{
	list-style: none;
	padding: 0px;
}

ul.GalleryThumbs
{
	position: relative;
	clear: both;
	margin: 0px;
	display: block;
	height: 240px;
	overflow: auto;
}

ul.GalleryThumbs li, ul.GalleryThumbs li a
{
	display: block;
}

ul.GalleryThumbs li
{
	float: left;
	position: relative;
}

ul.GalleryThumbs li a
{
	position: relative;
	z-index: 15;
	border-width: 1px 1px 0px 1px;
	border-style: solid;
	border-color: #ccc;
	border-bottom: 3px solid #ccc;
	margin: 3px 3px 0px 3px;
	width: 76px;
	height: 76px;
	line-height: 76px;
	vertical-align: middle;
	text-align: center;
}

ul.GalleryThumbs li a:hover
{
	border-width: 3px 3px 0px 3px;
	border-color: #666;
	border-bottom: 3px solid #666;
	margin: 1px 1px 0px 1px;
}

ul.GalleryThumbs li a img
{
	z-index: 16;
	_width: 100%;
	_height: 100%;
	max-width: 76px;
	max-height: 76px;
	border: 0px;
	vertical-align: middle;
}

ul.GalleryThumbs li iframe
{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 76px;
	height: 76px;
	border: 0px;
	display: none;
	z-index: 5;
	visibility: hidden;
}

ul.GalleryThumbs li div
{
	width: 78px;
	height: 20px;
	color: #fff;
	margin: 0px 3px 3px 3px;
	text-align: center;
	font-weight: bold;
	line-height: 14px;
	background: transparent url("http://www.data.virtualinterconnect.com/images/backgrounds/78x60cccroundedbottom.gif") no-repeat;
	background-position: bottom center;
}

ul.GalleryThumbs li div.GalleryAnimation
{
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: 0;
	width: 74px;
	height: 74px;
	line-height: 74px;
	background: transparent;
	margin: 0px auto;
	color: #000;
}

ul.GalleryThumbs li.GalleryClear
{
	width: 1px;
	height: 1px;
	line-height: 1px;
	font-size: 1px;
	float: none;
	clear: both;
}

div.Calendar
{
	position: relative;
}

table.CalendarMonth, div.CalendarUpcoming
{
	-moz-border-radius: 2em;
	-webkit-border-radius: 2em;
	border-radius: 2em;
	background: #ddd;
	background-image: -moz-linear-gradient(top, #f9f9f9 0, #ddd 5em);
	background-image: -webkit-linear-gradient(top, #f9f9f9 0, #ddd 5em);
	background-image: linear-gradient(top, #f9f9f9 0, #ddd 5em);
	-moz-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
	-webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
	box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
}

table.CalendarMonth
{
	width: 100%;
	padding: 2em;
}

table.CalendarMonth tr.CalendarMonthHeader th, div.CalendarUpcoming h4
{
	background: transparent;
	border: 0;
	color: #666;
	padding-bottom: 1em;
	text-shadow: 1px 1px 1px #fff;
}

div.CalendarUpcoming h4
{
	padding: 1em;
	line-height: 100%;
	text-align: center;
}

div.CalendarUpcoming div.CalendarUpcomingList
{
	position: absolute;
	left: 2em;
	top: 5em;
	right: 2em;
	bottom: 2em;
	overflow: hidden;
	background-color: #eee;
	border: 1px solid #ccc;
}

div.CalendarUpcoming div.CalendarUpcomingList ol
{
	list-style: none;
	margin: 1em;
	padding: 0;
}

div.CalendarUpcoming div.CalendarUpcomingList ol li
{
	display: block;
	position: relative;
	padding-bottom: 1em;
}

div.CalendarUpcoming div.CalendarUpcomingList ol li .CalendarUpcomingDate
{
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	color: #999;
}

table.Calendar tr.CalendarMonthHeader th a
{
	color: #999;
}

table.Calendar tr.CalendarWeekHeader
{
	display: none;
}

table.Calendar td div.CalendarMonthDayNum
{
	background-image: -moz-linear-gradient(top, #eee 0, #ccc 100%);
	background-image: -webkit-linear-gradient(top, #eee 0, #ccc 100%);
	background-image: linear-gradient(top, #eee 0, #ccc 100%);
	padding: 4px 2px;
	height: 1.2em;
}

table.Calendar th.CalendarMonth div.CalendarPrevious
{
	float: left;
	text-align: left;
}

table.Calendar th.CalendarMonth div.CalendarNext
{
	float: right;
	text-align: right;
}

table.Calendar th.CalendarMonth div.CalendarPrevious a, table.Calendar th.CalendarMonth div.CalendarNext a
{
	text-decoration: none;
}

table.Calendar tr th, table.Calendar tr td
{
	margin: 0;
	background-color: #eee;
	border: 1px solid #ccc;
	width: 14%;
}

table.Calendar tr td
{
	vertical-align: top;
	postition: relative;
	font-size: 8px;
	line-height: 10px;
}

table.Calendar tr td ol
{
	position: relative;
	height: 80px;
	
	list-style: none;
	margin: 4px;
	padding: 0;
}

table.Calendar tr td ol li
{
	list-style: none;
	padding: 0;
	display: block;
	position: relative;
}

table.Calendar tr td ol li div.CalendarMonthDayEventData, .CalendarTimelineTimeRange
{
	background: #369;
	background-image: -moz-linear-gradient(-75deg, #369 0, #036 100%);
	background-image: -webkit-linear-gradient(-75deg, #369 0, #036 100%);
	background-image: linear-gradient(-75deg, #369 0, #036 100%);
	color: #fff;
}

table.Calendar tr td ol li div.CalendarMonthDayEventData
{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

table.Calendar tr td ol li a
{
	color: #fff;
	text-decoration: none;
	display: block;
	padding: 2px;
}

table.Calendar tr td ol li a.CalendarEventLink
{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

table.Calendar tr td ol li ul.categories
{
	margin: 0;
	padding: 2px;
	list-style: none;
	display: block;
	text-align: right;
	
	position: absolute;
	right: 1px;
	bottom: -1px;
	max-width: 90%;
}

table.Calendar tr td ol li ul.categories li
{
	display: inline;
	padding-left: 2px;
}

table.Calendar tr td ol li ul.categories li span
{
	display: none;
}

/* Hide mostly redundant microformat information */
.Calendar span.uid, .Calendar span.dtstart, .Calendar span.dtend, .Calendar span.description, .Calendar span.x-alt-desc, .Calendar ul.attachments, .CalendarAssigneeID
{
	display: none;
}

div.CalendarHybrid
{
	position: relative;
}

div.CalendarHybridDatePanel
{
	position: absolute;
	left: 0;
	top: 0;
	width: 300px;
	height: 190px;
}

div.CalendarHybridDatePanel .CalendarHybridDateDay
{
	display: block;
	text-align: center;
	font-weight: bold;
	font-size: 130px;
}

div.CalendarHybridDatePanel .CalendarHybridDateMonthYear
{
	display: block;
	position: absolute;
	bottom: 20px;
	width: 100%;
	left: 0;
	font-size: 25px;
	text-align: center;
}

div.CalendarHybridUpcomingPanel
{
	position: absolute;
	left: 0;
	bottom: 0;
	top: 200px;
	width: 300px;
}

div.CalendarHybridUpcomingPanel div.CalendarUpcoming
{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

div.CalendarHybridMonthViewPanel
{
	position: relative;
	margin-left: 310px;
}

div.CalendarTimeline
{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

ol.CalendarTimelineScroll
{
	position: absolute;
	/*left: 25%;
	width: 75%;*/
	/*left: 15%;
	width: 85%;*/
	left: 20%;
	width: 80%;
	top: 0;
	height: 100%;
	list-style: none;
	display: block;
	margin: 0;
	padding: 0;
}

ol.CalendarTimelineScroll li
{
	display: block;
	position: relative;
	height: 1.2em;
	border-bottom: 1px solid #eee;
}

ol.CalendarTimelineScroll li .CalendarTimelineEventTitle
{
	position: absolute;
	/*left: -33.33333%;
	width: 33.33333%;*/
	/*left: -17.647059%;
	width: 17.647059%;*/
	left: -25%;
	width: 25%;
	top: 0;
	height: 100%;
	line-height: 1.2em;
	background-color: #fff;
	border-bottom: 1px solid #eee;
}

ol.CalendarTimelineScroll li .CalendarTimelineEventTitle ul.categories
{
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	margin: 0;
	padding: 0;
	text-align: right;
}

ol.CalendarTimelineScroll li .CalendarTimelineEventTitle ul.categories li
{
	display: inline;
}

ol.CalendarTimelineScroll li .CalendarTimelineTimeRange
{
	position: absolute;
	top: 0;
	height: 100%;
	border-radius: 2px;
	color: #fff;
	font-size: 50%;
	padding-left: 4px;
	line-height: 240%;
}

ol.CalendarTimelineScroll li .CalendarTimelineTimeRange:hover
{
	margin-top: -1px;
	margin-left: -1px;
	box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.25);
}
div.ProductListSubcategories ol
{
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
}

div.ProductListSubcategories ol.First
{
	float: left;
	width: 49.5%;
}

div.ProductListSubcategories li
{
	display: block;
	margin: 0;
	padding: 0.25em 0;
}

div.ProductListSubcategories li a
{
	text-decoration: none;
}

div.ProductListSubcategories hr
{
	display: block;
	width: 100%;
}

table.ProductList
{
	width: 100%;
}

table.ProductList tr td.ProductListPicture
{
	width: 100px;
	height: 100px;
	border: 1px solid #000;
	text-align: center;
}

table.ProductList tr td.ProductListPicture50
{
	width: 50px;
	height: 50px;
}

table.ProductList tr td.ProductListPicture150
{
	width: 150px;
	height: 150px;
}

table.ProductList tr td.ProductListPicture200
{
	width: 200px;
	height: 200px;
}

table.ProductList tr td.ProductListPicture a img
{
	border: 0;
}

table.ProductList tr th.ProductListPrice, table.ProductList tr td.ProductListPrice
{
	width: 100px;
	text-align: right;
}

div.ProductListBreadcrumb, div.ProductDisplayBreadcrumb
{
	margin-bottom: 10px;
}

div.ProductDisplayPictureContainer
{
	position: relative;
	float: left;
	width: 104px;
	height: 104px;
	text-align: center;
	border: 1px solid #000;
	margin-right: 10px;
}

div.ProductDisplayPictureContainer50
{
	width: 54px;
	height: 54px;
}

div.ProductDisplayPictureContainer150
{
	width: 154px;
	height: 154px;
}

div.ProductDisplayPictureContainer200
{
	width: 204px;
	height: 204px;
}

div.ProductDisplayPictureContainer300
{
	width: 304px;
	height: 304px;
}

div.ProductDisplayPictureContainer400
{
	width: 404px;
	height: 404px;
}

div.ProductDisplayPicture
{
	width: 104px;
	height: 80px;
	/*line-height: 80px;*/
	font-size: 1px;
	vertical-align: middle;
}

div.ProductDisplayPictureContainer50 div.ProductDisplayPicture
{
	width: 54px;
	height: 34px;
}

div.ProductDisplayPictureContainer150 div.ProductDisplayPicture
{
	width: 154px;
	height: 134px;
}

div.ProductDisplayPictureContainer200 div.ProductDisplayPicture
{
	width: 204px;
	height: 184px;
}

div.ProductDisplayPictureContainer300 div.ProductDisplayPicture
{
	width: 304px;
	height: 284px;
}

div.ProductDisplayPictureContainer400 div.ProductDisplayPicture
{
	width: 404px;
	height: 384px;
}

div.ProductDisplayPicture a img
{
	position: relative;
	top: -12px;
	border: 0;
	vertical-align: middle;
}

div.ProductDisplayPictureExpand
{
	position: relative;
	top: -12px;
	font-size: 12px;
	line-height: 20px;
}

div.ProductDisplayPictureExpand a
{
	text-decoration: none;
}

div.ProductDisplayHeader
{
	height: 108px;
}

div.ProductDisplayPrice
{
	margin: 10px 0;
}

div.ProductListPageNav
{
	text-align: right;
}

div.ObituariesPost
{
	clear: both;
}

div.BlogSeparator, div.ObituariesSeparator
{
	clear: left;
}

div.BlogEnclosure
{
	width: 150px;
}

div.BlogEnclosure, div.ObituariesEnclosure
{
	float: left;
	margin-right: 1em;
	margin-bottom: 1em;
}

div.BlogEnclosure img, div.ObituariesEnclosure img, div.RSSAggregatorEnclosure img
{
	border: 0;
}

fieldset.ObituariesCommentForm
{
	clear: both;
}

fieldset.BlogCommentForm table, fieldset.ObituariesCommentForm table
{
	width: auto;
}

fieldset.BlogCommentForm table tr td, fieldset.ObituariesCommentForm table tr td
{
	width: auto;
	vertical-align: top;
}

fieldset.BlogCommentForm table tr td textarea, fieldset.ObituariesCommentForm table tr td textarea
{
	width: 100%;
}

ol.BlogComments, ol.ObituariesComments
{
	list-style: none;
	margin: 0;
	padding: 0;
}

ol.BlogComments li, ol.ObituariesComments li
{
	margin: 0;
	padding: 0;
}

div.BlogNavigation, div.ObituariesNavigation
{
	position: relative;
	text-align: right;
	clear: both;
}

div.BlogNavigation a.BlogNavigationLeft, div.ObituariesNavigation a.ObituariesNavigationLeft
{
	display: block;
	float: left;
}

div.BlogNavigation div.BlogNavigationPageNumber, div.ObituariesNavigation div.ObituariesNavigationPageNumber
{
	display: block;
	position: absolute;
	left: 50%;
	width: 4em;
	margin-left: -2em;
	text-align: center;
}

div.ObituariesFeedLink
{
	clear: both;
}

div.ObituariesOptionsButton
{
	clear: both;
}

.BlogDisplayLinksAsButtons .BlogFooter a, .ObituariesDisplayLinksAsButtons .ObituariesFooter a
{
	border: 1px solid #000;
	background: transparent url("http://www.data.virtualinterconnect.com/images/buttons/20x20greenoff.jpg") repeat-x;
	background-position: center center;
	color: #fff;
	text-decoration: none;
	padding: 2px;
}

.SearchResults dt a
{
	font-weight: bold;
	font-size: 125%;
}

.SearchResults dd a
{
	color: #000;
	text-decoration: none;
	margin-bottom: 1em;
}

.SearchResults dd a:hover
{
	text-decoration: underline;
}

.RSSAggregatorNavPrev
{
	float: left;
	width: 10em;
}

.RSSAggregatorNavNext
{
	float: right;
	width: 10em;
	text-align: right;
}

.RSSAggregatorNavAlpha
{
	margin: 0 10em;
	display: block;
	padding: 0;
	list-style: none;
	text-align: center;
}

.RSSAggregatorNavAlpha li
{
	margin: 0;
	padding: 0 0.2em;
	display: inline;
	border-right: 1px solid #000;
}

.DesignGenericMapDisplay .CustomMapDisplay
{
	height: 480px;
	background-color: #fff;
}

#PageFullscreenGraphicClickTarget
{
	position:absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	#height: expression(this.parentNode.clientHeight + "px");
	z-index: 10000;
	cursor: pointer;
	background: transparent url("http://www.data.virtualinterconnect.com/images/transparent/1px.gif");
}

#PageFullscreenGraphicContainer
{
	margin: 0 auto;
	overflow: hidden;
}

