body
{
	background: #fcfcfc;
	color: #666;
	margin: 0px;
	font-family: "Verdana";
	font-size: 9pt;
}
input[type=text], input[type=password], textarea, input[type=email], input[type=number], input[type=date]
{
	background-image: url(../img/inputback.png);
	background-position: top;
	background-repeat: repeat-x;
	border-radius: 3px;
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
	color: #666;
}
input[type=submit], input[type=button], .ChooseFiles
{
	background-color: #003b69;
	background-image: url(../img/buttonback.png);
	background-repeat: repeat-x;
	background-position: top center;
	color: #fff;
	border: 1px solid #00294b;
	border-radius: 3px;
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	padding: 5px 10px;
}
input[type=submit]:focus, input[type=button]:focus, input[type=text]:focus, select:focus
{
	box-shadow: 0px 0px 15px red;
}
a
{
	text-decoration: none;
	color: #007fc2;
}
a:hover
{
	text-decoration: underline;
}
form
{
	margin: 0px;
	padding: 0px;
}
h1
{
	font-weight: normal;
	margin: 0px 0px 10px 0px;
	font-size: 18pt;
}
h2
{
	font-weight: normal;
	margin: 0px 0px 10px 0px;
	font-size: 14pt;
}
h2 small
{
	font-size: 8pt;
}

table
{
	border-collapse: collapse;
	width: 100%;
}
td
{
	padding: 5px 8px;
}
td input[type=button]
{
	margin: -2px 0px;
	padding: 5px 10px;
}
th
{
	padding: 5px 8px;
	background-color: #003b69;
	background-image: url(../img/buttonback.png);
	background-repeat: repeat-x;
	background-position: top center;
	color: #fff;
	text-align: left;
	white-space: nowrap;
}
th a
{
	color: #fff;
}
tr:nth-child(2n+0)
{
	background-color: #f9f9f9;
}
tr:nth-child(2n+1)
{
	background-color: #f0f0f0;
}
tr:hover
{
	background-color: #eaf5fe;
}

/* Special styles start */

.WhiteCenterBox
{
	position: fixed;
	top: 50%;
	left: 50%;
	margin-left: -150px;
	margin-top: -150px;
	width: 300px;
	height: 300px;
	background-color: #fff;
	border: 0px solid #d0d0d0;
	border-radius: 5px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
	overflow: hidden;
	color: #666;
}
.WhiteCenterBoxPadding
{
	padding: 18px 20px;
}
.WhiteCenterBox label
{
	display: block;
	margin-bottom: 10px;
}
.WhiteCenterBox input[type=text], .WhiteCenterBox input[type=password]
{
	display: block;
	margin-bottom: 10px;
	border: 1px solid #e0e0e0;
	width: 238px;
	padding: 10px;
	font-size: 12pt;
}
.WhiteCenterBox input[type=submit], .WhiteCenterBox input[type=button]
{
	display: block;
	margin-bottom: 10px;
	width: 260px;
	padding: 10px;
	font-size: 12pt;
	text-align: center;
}
.WhiteCenterBox img
{
	margin: auto;
	margin-bottom: 10px;
	display: block;
}

.ShowMessageBox
{
	position: fixed;
	top: -500px;
	left: 50%;
	margin-left: -150px;
	width: 280px;
	background-color: #faffbd;
	border: 0px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
	overflow: hidden;
	color: #666;
	z-index: 10000;
	padding: 25px 10px 10px 10px;
	text-align: center;
	font-size: 11pt;
}

/* Top menu */
.TopMenu
{
	background: #003b69;
	background-image: url(../img/groupbox_back.png);
	background-repeat: repeat-x;
	background-position: top;
	background-size: auto 100%;
	color: #fff;	
	width: 100%;
	overflow: hidden;
	height: 50px;
	white-space: nowrap;
}
.TopMenu ul
{
	margin: 0px;
	padding: 0px;
	list-style: none;
}
/* Top menu element */
.TopMenu > ul
{
	display: inline-block;
}
.TopMenu > ul > li
{
	display: inline-block;
	margin-left: 10px;
	font-size: 10pt;
	padding: 15px 10px;
	height: 20px;
}
.TopMenu > ul > li > a
{
	color: #fff;
}
.TopMenu .Active
{
	background-color: #003b69;
}
.TopMenu .Logo
{
	float: left;
}
.TopMenu .Logo img
{
	height: 40px;
	margin: 5px 0px 0px 5px;
}
.TopMenu .Logo span
{
	color: #fff;
	float: right;
	padding: 15px 0px 0px 10px;
}

/* Sub menu element */
.SubMenu
{
	background-color: #f0f0f0;
	background-image: url(../img/whiteback.png);
	background-repeat: repeat-x;
	background-position: top;
	background-size: contain;
	color: #fff;	
	width: 100%;
	height: 35px;
	overflow: hidden;
	white-space: nowrap;
}
.SubMenu ul
{
	margin: 0px;
	padding: 0px;
	list-style: none;
}
.SubMenu a
{
	color: #666;
}
.SubMenu li
{
	margin-left: 10px;
	display: inline-block;
	padding: 10px 10px 0px 10px;
	min-height: 35px;
}
.SubMenu .Active
{
	background-color: #e5e5e5;
}

/* Skygge under element */
.ShadowBelow
{
	border-bottom: 1px solid #e0e0e0;
	box-shadow: 0px 7px 10px -8px rgba(0, 0, 0, 0.2);
}

/* Top højre support */
.TopRight
{
	float: right;
	color: #fff;
	margin-right: 10px;
	text-align: center;
	margin-top: 9px;
}
.TopRight a
{
	color: #fff;
}

/* Indhold */
.Content
{
	padding: 15px;
	max-width: 1600px;
}

/* Box højre */
.RightBox
{
	float: right;
	display: block;
	margin-bottom: 10px;
	padding: 7px 20px;
	font-size: 10pt;
	text-align: center;
}
.RightBox2
{
	float: right;
	display: block;
	padding: 0px 20px 0px 0px;
	font-size: 10pt;
	text-align: center;
}

/* Knap højre */
.RightButton
{
	float: right;
	display: block;
	margin-bottom: 10px;
	padding: 7px 20px;
	font-size: 10pt;
	text-align: center;
}

/* Stor Knap */
.LargeButton
{
	margin-bottom: 10px;
	padding: 7px 20px;
	font-size: 10pt;
	text-align: center;
}

/* Skjult */
.Hidden
{
	display: none;
}

.Clear
{
	clear: both;
	margin-bottom: 5px;
}

/* Modal Form */
.ModalForm span
{
	display: block;
}
.ModalForm input[type=text]
{
	margin: 2px 2px 8px 2px;
}
.ModalForm label
{
	display: block;
	margin: 0px 0px 10px 0px;
}
.ModalFormColumn
{
	float: left;
	width: 285px;
}
.ModalForm tr
{
	background: none;
}
.ModalForm td
{
	padding: 2px;
	vertical-align: middle;
}
.ModalForm td input[type=text]
{
	margin: 0px;
}
.ModalForm .DisplayInline
{
	display: inline-block !important;
}
	
/* Fejl i felt */
.InputError
{
	border-color: red;
}

/* Kolonner */
.InputCol
{
	float: left;
	width: 200px;
}
.InputCol span
{
	display: block;
}
.InputCol input[type=text]
{
	width: 160px;
}
.InputCol2
{
	float: left;
	width: 400px;
}

/* Vælg filer span */
.ChooseFiles
{
	position: relative;
	overflow: hidden;
	width: 120px;
	height: 26px;
	cursor: arrow;
}
.ChooseFiles span
{
	margin: 5px 10px;
	text-align: center;
	width: 100px;
	height: 16px;
	display: block;
}
.ChooseFiles input
{
	position: absolute;
	top: 0;
	margin: 0;
	opacity: 0;
	-ms-filter: 'alpha(opacity=0)';
	direction: ltr;
	cursor: arrow;
	font-size: 30px;
	margin-left: -10px;
	z-index: 1;
}
/* Fixes for IE < 8 */
@media screen\9
{
	.ChooseFiles input
	{
		filter: alpha(opacity=0);
		font-size: 100%;
		height: 100%;
	}
}

/* Processbar */
.ProgressBarOuter
{
	width: 275px;
	height: 25px;
	border: 1px solid #00294b;
	border-radius: 3px;
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
}
.ProgressBarInner
{
	background-color: #003b69;
	background-image: url(../img/buttonback.png);
	background-repeat: repeat-x;
	background-position: top center;
	color: #fff;
	overflow: hidden;
	width: 0;
	height: 25px;
	text-align: center;
}

/* Uploadede billeder */
.ImagesUploadThumb
{
	float: left;
	width: 90px;
	height: 90px;
	margin: 0px 5px 5px 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;	
	border-radius: 3px;
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
	display: none;
}
.ImagesUploadThumb .CloseLink
{
	float: right;
	display: block;
	background-image: url(../img/close.png);
	background-size: contain;
	width: 25px;
	height: 25px;
}
.ImagesContainer
{
	clear: both;
	max-width: 590px;
}
.Left
{
	float: left;
}
.ImagesUploadImage
{
	float: left;
	margin: 10px 10px 0px 0px;
	width: 135px;
	height: 135px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;	
	border-radius: 3px;
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
	text-align: center;
}
.ImagesContainerCamera .ImagesUploadImage
{
	background-image: url(../img/camera.png?1);
	background-size: contain;
}
.ImagesUploadImage input
{
	width: 125px;
	margin-top: 85px;
	text-align: center;
}
.ImagesUploadImage .CloseLink
{
	float: right;
	background-image: url(../img/close.png);
	background-size: contain;
	width: 25px;
	height: 25px;
}
.ImageUploadImageOver
{
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 1);
}
.ImageUploadDragging
{
	opacity: 0.75;
	z-index: 30000;
}
.ImageUploadDragging input, .ImageUploadDragging .CloseLink
{
	display: none;
}
.ImageUploadNone .CloseLink
{
	opacity: 0;
	cursor: default;
}
.ImageUploadNone input
{
	display: none;
}
.ImagesUploadImage .readonly
{
	border: 0px;
	padding: 2px;
	display: inline-block;
}
.ImageUploadDragging .readonly
{
	display: none;
}

/* Mobil Menu */
.MobileMenu
{
	position: fixed;
	top: 0px;
	left: -200px;
	width: 200px;
	height: 100%;
	overflow: hidden;
	overflow-y: auto;
	
	background-color: #003b69;
	background-image: url(../img/buttonback.png);
	background-repeat: repeat-x;
	background-position: top center;
	color: #fff;
	
	padding: 0px 0px 10px 0px;
	
	z-index: 31000;
}
.MobileMenu .Close
{
	display: block;
	text-align: right;
}
.MobileMenu .Close img
{
	height: 25px;
	margin: 10px;
}
.MobileMenu a
{
	color: #fff;
}
.MobileMenu ul
{
	margin: 0px;
	padding: 0px;
	list-style: none;
}
.MobileMenu > ul > li > a
{
	display: block;
	padding: 10px 0px 10px 15px;
	border-top: 1px solid #0092fc;
}
.MobileMenu > ul > li > ul > li > a
{
	display: block;
	padding: 10px 0px 10px 30px;
	border-top: 1px solid #0092fc;
}

/* Vis kun på tablet + desktop */
@media screen and (min-width: 641px) {
	.Mobile
	{
		display: none;
	}
}

/* Vis kun på mobil */
@media screen and (max-width: 640px) {
	.Desktop
	{
		display: none;
	}
	input, .LargeButton, .RightButton
	{
		font-size: 14pt;
		max-width: 100%;
		overflow-x: hidden;
	}
	.InputCol, .InputCol input
	{
		width: 260px !important;
	}
	.ChooseFiles span
	{
		margin: 0px;
		text-align: center;
		width: 120px;
		height: 16px;
		display: block;
		font-size: 14pt;
	}
	.Column75
	{
		width: 100% !important;
	}
	.Column25
	{
		width: 100% !important;
	}
}

/* Kolonner */
.Col50
{
	width: 50%;
	float: left;
}

/* Sendt / Ikke sendt */
.SentFalse
{
	background-color: #faffbd !important; 
}
.SentFalse:hover
{
	background-color: #eaf5fe !important;
}

/* Nummerplade */
.LicensePlate
{
	width: 205px;
	height: 60px;
	font-size: 50px;
	background-color: transparent;
	background-image: url(../img/licenseplate.png) !important;
	background-repeat: no-repeat !important;
	background-size: contain !important;
	border: 0px !important;
	padding-top: 0px !important;
	padding-right: 10px !important;
	padding-bottom: 0px !important;
	padding-left: 30px !important;
	text-transform: uppercase !important;
	text-align: center;
	display: block;
}

/* Deaktiver */
.Disable
{
	opacity: 0.33;
	cursor: default;
}
.Disable:hover
{
	text-decoration: none !important;
}

/* Kalender Måned */
.Calendar
{
    border-collapse: separate !important;	
	border-spacing: 2px !important;
	font-size: 8pt;
}
.Calendar td, .Calendar th
{
	padding: 2px !important;
	text-align: center;
}
.Calendar td
{
	border: 1px solid #fff;
	cursor: default;
	overflow: hidden;
}
.Calendar .Day
{
	border: 1px solid #c5dbec;
	background-color: #eaf5fe;
}
.Calendar .Active
{
	border: 1px solid #fad42e;
	background-color: #fbec88;
}
.Calendar .Warning
{
	border: 1px solid #FA2E2E;
	background-color: #FB8989;
}

/* Kolonne */
.Column
{
	float: left;
	width: 315px;
	margin-right: 10px;
}
.Column2
{
	float: left;
	width: 640px;
	margin-right: 10px;
}
.Column25
{
	float: left;
	width: 15%;
	margin-right: 10px;
}
.Column75
{
	float: left;
	width: 80%;
	margin-right: 10px;
}

/* Gruppe boks */
.Groupbox
{
	background-image: url(../img/groupbox_back.png);
	background-position: top center;
	background-repeat: repeat-x;
	border: 1px solid #00294b;
	border-radius: 6px;
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
	padding: 0px;
	margin-bottom: 10px;
	overflow: hidden;
}
.Groupbox h2
{
	padding: 5px 10px;
	color: #fff;
	font-size: 10pt;
	margin: 0px;
}
.Groupbox > table td:nth-child(2n+1)
{
	min-width: 75px;
}
.CalendarRed a
{
	background: #f00 !important;
	color: #fff !important;
}
.CalendarYellow a
{
	background: #ff0 !important;
	color: #000 !important;
}
.CalendarPrev a
{
	background: none !important;
	color: #000 !important;
}

.WarrantyNotPossible
{
	border-radius: 15px;
	border: 10px solid #ff0000;
	color: #000;
	text-align: center;
	padding: 20px 10px;
	font-size: 20pt;
}
.WarrantyPossible
{
	border-radius: 15px;
	border: 10px solid #00aa00;
	color: #000;
	text-align: center;
	padding: 20px 10px;
	font-size: 20pt;
}
.WarrantyPossible #first_treatment_title, .WarrantyPossible #next_treatment_title
{
	font-size: 10pt !important;
}
.WarrantyMissingDate
{
	border-radius: 15px;
	border: 5px solid #eeee00;
	color: #000;
	text-align: center;
	padding: 10px 5px;
	font-size: 12pt;
}
.InfoBox
{
	background-color: #fff9d7;
	border: 1px solid #e2c822;
	margin-bottom: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 15px;
	padding-right: 15px;
	text-align: center;
}

.ClearButton
{
	font-size: 14px !important;
	background: #f0f0f0 !important;
	color: #444 !important;
	border: 1px solid #a0a0a0 !important;
	padding: 0px 4px !important;
}

.TabButton
{
	border-bottom: 0px !important;
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
	margin-bottom: 0px !important;
	filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
	opacity: 0.5;
}
.TabActive
{
	filter: grayscale(0%) !important;
	-webkit-filter: grayscale(0%);
	opacity: 1 !important;
}

/* Kalender Uge */
.CalendarWeek
{
    border-collapse: separate !important;	
	border-spacing: 2px !important;
	font-size: 8pt;
}
.CalendarWeek th
{
	padding: 2px !important;
	text-align: center;
	overflow: hidden !important;
}
.CalendarWeek td
{
	border: 1px solid #fff;
	cursor: default;
	overflow: hidden !important;
	padding: 0px !important;
}
.CalendarWeekDay
{
	max-width: 75px;
	overflow: hidden !important;
	vertical-align: top;
	background-color: #f0f0f0 !important;
}
.CalendarWeekDay:hover
{
	background-color: #f0f0f0 !important;
}

.BookingCalendarElementAvailable
{
	white-space: nowrap;
	display: block;
	background: #F7F7F7;
	color: #bbb;
	padding: 2px 3px;
	margin: 2px 2px;
	border-radius: 5px;
	cursor: pointer;
	text-decoration: none !important;
	text-align: left;
	height: 65px;
}

.BookingCalendarElementHoliday
{
	white-space: nowrap;
	display: block;
	background: #5DB95D;
	color: #fff;
	padding: 2px 3px;
	margin: 2px 2px;
	border-radius: 5px;
	cursor: pointer;
	text-decoration: none !important;
	text-align: center;
}

.BookingCalendarElement
{
	white-space: nowrap;
	display: block;
	background: #fff;
	padding: 2px 3px;
	margin: 2px 2px;
	border-radius: 5px;
	cursor: pointer;
	text-decoration: none !important;
	text-align: center;
}

.BookingCalendarElementTimeFrom
{
	background: #00C95F !important;
	color: #fff !important;
}
.BookingCalendarElementTimeTo
{
	background: #00ABF0 !important;
	color: #fff !important;
}

/*
	Tr Lånebiler
*/
tr.Rentcaractive
{
	background-color: #ddffdd !important;
}
tr.Rentcardone
{
}
tr.Rentcarnew
{
	background-color: #ffffdd !important;
}

/*
	th a sortering
*/
a.OrderAsc
{
	background-image: url(../img/order_asc.png);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: auto 75%;
	padding-left: 15px;
}
a.OrderDesc
{
	background-image: url(../img/order_desc.png);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: auto 75%;
	padding-left: 15px;
}

/*
	Lejebil
*/
.CalendarRentcar
{
	border: 1px solid #fad42e;
	background-color: #fbec88;
	border-radius: 5px;
	padding: 3px;
	margin: 3px 1px;
	overflow: hidden;
}

/*
	Opdaterer
*/
.IsUpdating
{
	background-color: #ff0;
}
.UpdateOk
{
	background-color: #0f0;
}

.PriceActive, .CalendarDayActive
{
	background-color: #fff9d7 !important;
	border: 1px solid #666 !important;
}

/*
	Skift bruger
*/
.SwitchUser
{
	display: inline-block;
}
.SwitchUser a
{
	background: #fff;
	color: #d00;
	text-decoration: none;
	border: 2px solid #fff;
	border-radius: 30px;
	height: 28px;
	display: inline-block;
	overflow: hidden;
	margin-right: 5px;
	margin-bottom: 5px;
	font-size: 12px;
	vertical-align: bottom;
}
.SwitchUser a span
{
	display: block;
	margin: 7px 8px 0px 8px;
	max-width: 50px;
	overflow: hidden;
}
.SwitchUser a.Active
{
	color: #fff;
	background: #d00;
}
.BookingError td
{
	background: #A5191A;
	color: #fff;
}