/* HTML Element styles specific to this project. */
body 
{
	scrollbar-arrow-color: #ffffff;
	scrollbar-darkshadow-color: #990000;
	scrollbar-base-color: background: #000066;
}


body,
html 
{
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
}

body,
input,
textarea,
select,
p,
ul,
ol,
h1,
h2,
h3,
h4,
h5
{
	letter-spacing: normal;
	word-spacing: normal;
	color: #000000;
	font: normal 12px/120% "Trebuchet MS", "Albertus MT", "Albertus MT Lt";
	text-decoration: none;
}

th
{	
	vertical-align:	baseline;
}

td
{	
	vertical-align:	top;
}


h1, 
h2, 
h3, 
h4, 
h5 
{
	color: #000066;
	font-weight: bold;
	margin: 25px 0px 15px 0px;
	text-transform: capitalize;
}


h1
{
	margin-top: 0px;
	font-size: 16px;
}
h2
{
	font-size: 14px;
}
h3
{
	margin-top: 0px;
	margin-bottom: 8px;
}

h4
{
	font-size: 13px;
}
h5
{
	margin-top: 0px;
	font-size: 13px;
}
h6
{
	margin-top: 0px;
	font-size: 12px;
	color: #000000;
	margin-bottom: 8px;
}
p
{
	margin: 0px 0px 8px 0px;
}
ul, 
ol
{
	margin-top: 8px;
	margin-top: 16px;
	color: #000000;
}
li
{
	margin-top: 2px;
}
a
{
	font-style: normal;
	color: #990000;
	text-decoration: underline;
	
}

a:link
{	
	text-decoration: none;
	color: #990000;
}

a:visited
{	
	text-decoration: none;
	color: #990000;
}

a:active
{
	text-decoration: none;
	color: #990000;
}

a:hover
{
	text-decoration: none;
	color: #990000;
}

ul li
{
	list-style: url(UserFiles/Image/Frame/List.gif);
}

ul ul li
{
	list-style: url(UserFiles/Image/Frame/ListList.gif);
}

ul ul ul li
{
	list-style-type: circle;
}

ol li
{
	list-style-type: decimal;
}

ol ol li
{
	list-style-type: lower-alpha;
}

ol ol ol li
{
	list-style-type: lower-roman;
}

small
{
	font-size:	.7em;
}

big
{
	font-size:	1.17em;
}

blockquote,
pre
{	
	font-family:	Courier New, monospace;
}

hr
{
	color: #696969;
	width: 99%;
}

unknown
{
	display: block;
	font: 10pt Arial, Helvetica, sans-serif;
}









/* 
PAGE GENERATOR CLASSES
These styles are used by pages that are dynamically built by the page generator.
There are 4 types of pages created with the generator.  They are:
	-> Login Page where a user is asked for there login details (username and password),
	-> Forgot Login Page which is used when a user forgets there login and asks for their 
	   email address and sends there details to them.
	-> List page which returns a list of rows and allowing the user to select one or more to do operations on.
	-> Form page which is a page where the user can edit information and submit.
*/

/* All pages come in a <table>. */

.LoginTable,
.ForgotLoginTable,
.MenuTable,
.ListTable,
.FormTable
{
	width:100%;
	vertical-align:top;
}


/* All pages have a <tr> which is set to the header row which contains the title of the page. */

.LoginHeaderRow,
.ForgotLoginHeaderRow,
.ListHeaderRow,
.FormHeaderRow
{
	font-weight: bold;
	font-size: 14px;
	text-align: center;
	background-color: #000065;
	color: white;
}


/* List and Form pages have a <tr> which is set to the criteria row which describes how the page is filtered. */

.ListCriteriaRow,
.FormCriteriaRow
{
	font-size: 11px;
	color: #990000;
	text-align:center;
	color: white;
}



/* All pages have a <tr> which is set to the description row which contains the description of the page. */

.LoginDescriptionRow,
.ForgotLoginDescriptionRow,
.ListDescriptionRow,
.FormDescriptionRow,
.FormInstructionRow
{
	font-size:smaller;
	text-align:center;
}



/* All pages have a <tr> which is set to the message row which contains any information, warning or error messages returned from a submit. */

.LoginMessageRow,
.ForgotLoginMessageRow,
.ListMessageRow,
.FormMessageRow
{
	font-size: 11px;
	text-align:center;
}

.InformationMessage
{
	color:Blue;
}

.WarningMessage
{
	color:Maroon;
}

.ErrorMessage
{
	color:Red;
}



/* List and Form pages have a <tr> which is set to the column header row which contains a title for each column. */

.ListColumnHeaderRow,
.FormColumnHeaderRow
{
	font-weight:bold;
	font-size: 11px;
}

.FormColumnHeaderRow
{
	display:none;
}



/* Form pages have a <tr> which is set to the category header row which contains a title for each category. */

.FormCategoryHeaderRow
{
	font-weight:bold;
	font-size: 11px;
}

.FormCategoryHeaderRow TD
{
	padding-top: 10px;
	padding-bottom: 5px;
	border-top-color: #0000CC;
	border-top-style: solid;
	border-top-width: 3px;
}



/* All pages have multiple <tr>s which are set to the detail row which contains the details.
   The form and list have been broken down to odd and even rows which can be styled (perhaps different colors) so each row is distinguishable. */

.LoginDetailRow,
.ForgotLoginDetailRow,
.ListOddDetailRow,
.ListEvenDetailRow,
.FormOddDetailRow,
.FormEvenDetailRow
{
	font-size: 11px;
}

.ListOddDetailRow,
.FormOddDetailRow
{
	background-color: #e7e7f1;
}

.ListEvenDetailRow,
.FormEvenDetailRow
{
	background-color: #f5f5f9;
}



/* All pages except the list have multiple <td>s which are set to Name or Value cells 
   which contains the name (title) and value of the field in the detail row. Also, Name and Value cells
   may have be distinguished when a value is required. */

.LoginNameCell,
.ForgotLoginNameCell
{
	font-style: normal;
	font-weight: bold;
	width: 50%;
	text-align: right;
}

.LoginValueCell,
.ForgotLoginValueCell
{
	width:50%;
}

.FormNameCell, 
.FormNameCellWithRequiredValue
{
	font-family: Arial, Helvetica, sans-serif;
	font-style: normal;
	width:15%;
	color: #373D18;
}

.FormNameCell a
{
	font-style:normal;
}

.FormNameCellWithRequiredValue
{
	font-style:italic;
}

.FormValueCell,
.FormRequiredValueCell
{
	width:70%;
}

.LoginValueCell #UserName,
.LoginValueCell #Password
{
	width:150px;
}

.ForgotLoginValueCell #EmailAddress
{
	width:300px;
}



/* In a list page there a record selectors (checkboxes) and editor (more info) columns. */

.ListRecordSelectorCell,
.ListRecordEditorCell
{
	text-align:center;
}

.ListRecordSelectorCell
{
	width:22px;
}

.ListRecordEditorCell
{
	width:75px;
}

.ListRecordRankUpCell,
.ListRecordRankDownCell
{
	width: 10px;
}



/* The following are all the different types of values that can be visible in the form and list value cells. */

.ListItemCell,
.ListCollectionCell,
.ListForeignCollectionCell,
.ListLinkingForeignCollectionCell,
.ListStringCell,
.ListMultipleLineStringCell,
.ListHTMLCell,
.ListURLCell,
.ListWebAddressCell,
.ListFileURLCell,
.ListImageURLCell,
.ListEmailAddressCell,
.ListPasswordCell,
.ListDecimalCell,
.ListIDCell,
.ListDurationCell,
.ListRankingCell,
.ListMoneyCell,
.ListPercentageCell,
.ListEnumerationCell,
.ListDateTimeCell,
.ListBooleanCell,
.ListGroupCell
{
	width:auto;
}

.ListImageURLCell
{
	width: 80px;
	text-align: center;
}

.ListImageURLCell image
{
	width: 80px;
	text-align: center;
	border-style: solid;
	border-color: black;
	border-width: 1px;
}

.FormItemControl,
.FormCollectionControl,
.FormForeignCollectionControl,
.FormLinkingForeignCollectionControl,
.FormStringControl,
.FormMultipleLineStringControl,
.FormHTMLControl,
.FormURLControl,
.FormWebAddressControl,
.FormFileURLControl,
.FormImageURLControl,
.FormEmailAddressControl,
.FormPasswordControl,
.FormDecimalControl,
.FormIDControl,
.FormDurationControl,
.FormRankingControl,
.FormMoneyControl,
.FormPercentageControl,
.FormEnumerationControl,
.FormDateTimeControl,
.FormBooleanControl,
.FormGroupControl
{
	width:100%;
	background-color: #FFF;
}

.FormLinkingForeignCollectionControl
{
	border-style: solid;
	border-width: 1px;
	border-color: rgb(127,157,185);
	background-color:White;
	height: 120px;
	overflow: auto;
}
.FormLinkingForeignCollectionControl div
{
	height: 20px;
}
.FormLinkingForeignCollectionControl div input[type="checkbox"]
{
	border-style: solid;
	border-width: 1px;
	border-color: rgb(127,157,185);
}
.FormLinkingForeignCollectionControl div span
{
	cursor: default;
}


/* Form Value cells and the type of form controls that can exist. */

/*
.FormValueCell SELECT,
.FormValueCell INPUT,
.FormValueCell TEXTAREA,
.FormRequiredValueCell SELECT,
.FormRequiredValueCell INPUT,
.FormRequiredValueCell TEXTAREA
{
	width:100%;
}
*/



/* Form pages have a <tr> which is set to the required message row which contains the required message for required fields. ie. All fields italicised are required.*/

.FormRequiredMessageRow
{
	font-size: 9px;
	text-align: center;
}



/* All pages have a <tr> which is set to the command row which contains the commands (buttons) of the page. ie. Add New, Remove, Submit, Reset. */

.LoginCommandRow,
.ForgotLoginCommandRow,
.ListCommandRow,
.FormCommandRow
{
	text-align:center;
	vertical-align:middle;
	height: 30px;
}



/* All buttons used by the page generator. */

.LoginButton,
.ForgotLoginButton,
.SendLoginDetailsButton,
.CancelButton,
.SubmitButton,
.ResetButton,
.NewButton,
.RemoveButton,
.ViewButton
{
	border-style:none;
	vertical-align:middle;
	margin-left:3px;
	margin-right:3px;
	cursor: hand;
}

.ImageButton image
{
	border-style:none;
	vertical-align:middle;
	margin-left:3px;
	margin-right:3px;
	cursor: hand;
}

.TextButton
{
	border-left-style:none;
	border-right-style:none;
	border-top-style: solid;
	border-top-color: rgb(127,157,185);
	border-top-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: rgb(127,157,185);
	border-bottom-width: 1px;
	vertical-align:middle;
	margin-left:7px;
	margin-right:7px;
	margin-top:2px;
	margin-bottom:2px;
	cursor: hand;
}



/* The following is used on <span> tags and is used in a template to note that content is placed here. */

.Content
{
	font-size: 12px;
	font-weight: normal;
	font-style: normal;
	text-align: center;
	vertical-align: middle;
}





/* DON'T PRINT */

@media print
{
	.ListRecordSelectorCell,
	.ListRecordEditorCell,
	.LoginCommandRow,
	.ForgotLoginCommandRow,
	.ListCommandRow,
	.FormCommandRow,
	.NoPrint
	{
		display:none;
	}
}

/* New Menu */
/* Styles here are used to define the menu and its items and sub-menus. */

.Menu
{
	margin: 0px;
	padding: 0px;
	list-style: none;
	width: 175px;
	cursor: default;
	text-align: right;
}

.Menu .Line
{
	padding: 0px;
	margin: 0px;
	height: 6px;
	background-color: #FFF;
}

.Menu .Line hr
{
	display: none;
}

.Menu .Item
{
	display: block;
	position: relative;
	width: 150px;
	line-height: 37px;
	color: #FFF;
	margin: 5px 0px;
	padding-right: 25px;
	background: url(UserFiles/Image/Frame/MenuBg.gif) no-repeat;
	list-style: none;
	font-size:14px;
	font-weight: bold;
}

/*.Menu .Item
{
	display: block;
	position: relative;
	width: 204px;
	line-height: 44px;
	color: #FFF;
	margin: 5px 0px;
	padding: 15px 25px 0px;
	background: url(UserFiles/Image/Frame/MenuBg.gif) no-repeat;
	vertical-align: middle;
	list-style: none;
	font-size:14px;
}*/
.Menu .Item a
{
	color: #FFF;
}
.Menu .Item a:hover
{
	text-decoration: underline;
}
.Menu .Item .Menu
{
	position: absolute;
	left: 175px;
	top: 0px;
	list-style: url(UserFiles/Image/Frame/Spacer.gif) none;
	

}
.Menu .Item .Menu .Item
{
	list-style: url(UserFiles/Image/Frame/Spacer.gif) none;
	width: 150px;
	line-height: 37px;
	color: #FFF;
	margin: 0px;
	padding-right: 25px;
	border-bottom: 5px solid #720000;
	font-size: 12px;
}
.Menu .Item .Menu .Item a
{
	color: #FFF;

}

.Menu .Item .Menu.Opened
{
	display: block;
	z-index: 100;
}

.Menu .Item .Menu.Closed
{
	display: none;
}

/* Structure of new tag classes

<div class="Object [ObjectName]">

	 Repeat the following for each property 
	<span class="Property [Odd/Even] [PropertyName]">
		<span class="Name">...</span>
		<span class="Value">...</span>
	</span>

	 Repeat the following for each method 
	<span class="Method [MethodName]"><a href="...">...</a></span>

	<div class="Collection">
		
		 Repeat the following for each object 
		<div class="Object [Odd/Even] [ObjectName]">
			 Content as Above 
		</div>

	</div>

</div>

*/




/* Example Structure of new tag classes

<div class="Object Product">

	<span class="Property Odd Code">
		<span class="Name">Code</span>
		<span class="Value">Widget1</span>
	</span>

	<span class="Property Even Name">
		<span class="Name">Name</span>
		<span class="Value">You beaut Widget</span>
	</span>

	<span class="Property Odd BriefDescription">
		<span class="Name">Brief Description</span>
		<span class="Value">The You Beaut Widget is...</span>
	</span>

	<span class="Method AddToCart"><a href="Default.aspx?Method=AddToCart">Add to Cart</a></span>

	<div class="Collection">
		
		<div class="Object Odd Accessory">
			 Etc, etc, etc... 
		</div>

	</div>

</div>

*/







/* New class tags used */

.Object
{
	display: block;
	background-color: white;
	text-align: center;
	width: 100%;
}

.Property
{
	display: block;
	text-align: left;
	padding: 2px;
	width: 100%;
}

.Property .Name
{
	display: inline-block;
	width: 30%;
}

.Property .Value
{
	display: inline-block;
	width: auto;
}

.Property.Odd
{
	background-color: rgb(201,218,234);
}

.Property.Even
{
	background-color: rgb(168,188,197);
}

.Method
{
	border-left-style:none;
	border-right-style:none;
	border-top-style: solid;
	border-top-color: rgb(127,157,185);
	border-top-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: rgb(127,157,185);
	border-bottom-width: 1px;
	vertical-align: middle;
	margin-left:7px;
	margin-right:7px;
	margin-top:2px;
	margin-bottom:2px;
	cursor: hand;
}

.Collection .Object
{
	display: block;
	width: 100%;
}

.Collection .Object.Odd,
.Collection .Object.Odd .Property.Odd,
.Collection .Object.Odd .Property.Even
{
	background-color: rgb(201,218,234);
}

.Collection .Object.Even,
.Collection .Object.Even .Property.Odd,
.Collection .Object.Even .Property.Even
{
	background-color: rgb(168,188,197);
}


/* Specific class tags */

.ProductCategory .Property
{
	display: inline;
}

.ProductCategory .Property .Name
{
	display: none;
}

.ProductCategory .Property .Value
{
	display: inline;
}

.ProductCategory .Property.Image
{
	z-index: 1;
	float: left;
}

.ProductCategory .Property.Image img
{
	border: none;
}

.ProductCategory .Property.Name
{
	z-index: 2;
	font-size: 20px;
}

.ProductCategory .Property.Description
{
	z-index: 3;
	font-size: 14px;
}

.ProductCategory .Property.Products
{
	z-index: 4;
	font-size: 14px;
}



.Container {
	margin: 0px;
	padding: 0px;
	background: #000066;
	width: 100%;
	height: 100%;
}
#Wrapper
{
	width: 760px;
	height: auto;
	margin: 0px;
	padding: 0px;
	clear: none;
	float: left;

}
#HeaderOuter
{
	width: 760px;
	height: 251px;
	margin: 0px;
	padding: 0px;
	clear: none;
	float: left;
	background: url(UserFiles/Image/Frame/HeaderBg.gif) repeat-x left top;
	position: realive;

}
#HeaderASSLogo {
	background: url(UserFiles/Image/Frame/AutomaticSecuritySystemsLog.jpg);
	margin: 0px;
	padding: 0px;
	clear: none;
	float: left;
	height: 251px;
	width: 240px;
}
#HeaderFeaturePic
{
	width: 518px;
	height: 213px;
	margin: 38px 0px 0px;
	padding: 0px;
	clear: none;
	float: left;
}
#ContentOuter {
	margin: 0px;
	padding: 0px;
	clear: both;
	float: left;
	height: auto;
	width: 760px;
	background: #FFFFFF url(UserFiles/Image/Frame/MenuBodyBg.gif) repeat-y left top;
}
#ContentInner {
	background: Transparent url(UserFiles/Image/Frame/ContentBg.gif) no-repeat left bottom;
	margin: 0px;
	padding: 0px;
	height: auto;
	width: 760px;
	clear: both;
	float: left;
}
#ASSContent {
	margin: 20px 25px 0px 25px;
	padding: 0px;
	clear: none;
	float: left;
	height: auto;
	width: 476px;
}
#MenuContainer {
	margin: 0px 0px 0px 57px;
	padding: 0px;
	clear: none;
	float: left;
	height: auto;
	width: 175px;
	display: inline;
}
#Menu {
	margin: 0px;
	padding: 0px;
	clear: none;
	float: left;
	height: auto;
	width: 175px;
	display: inline;
}
#ContactPanel {
	background: url(UserFiles/Image/Frame/ContactUsPanel.gif) no-repeat;
	margin: 0px 0px 10px 0px;
	padding: 0px;
	clear: both;
	float: left;
	height: 168px;
	width: 175px;
	color: #FFFFFF;
	text-align: right;
	display: inline;
	font-size: 11px;
}
#ContactPanel a {
	color: #FFFFFF;
}
#ContactPanel p {
	color: #FFFFFF;
	margin: 0px 25px 5px 0px;
	padding: 0px;
	font-weight: normal;
}
#ContactPanel H1 {
	color: #FFFFFF;
	margin: 10px 25px 10px 0px;
	padding: 0px;
	font-size: 14px;
}

#Footer {
	font-size: 11px;
	margin: 0px 0px 0px 57px;
	padding: 0px;
	clear: both;
	float: left;
	height: 20px;
	width: 701px;
	display: inline;
}
#DevelopedBy {
	margin: 0px 25px 0px 0px;
	padding: 0px;
	width: 175px;
	clear: none;
	float: left;
	font: 10px "Trebuchet MS", Arial, sans-serif;
	color: #AC3030;
	text-decoration: none;
	height: 20px;
}
#DevelopedBy a {
	color: #AC3030;
	text-decoration: none;
}
#FooterMenu {
	margin: 0px;
	padding: 0px;
	width: 486px;
	clear: none;
	float: left;
	margin: 0px 0px 0px 0px;
	height: 20px;
}
 
#FooterMenu .Menu,
#FooterMenu .Menu .Item,
#FooterMenu .Menu .Item .Menu,
#FooterMenu .Menu .Item .Menu .Item,
#FooterMenu .Menu .Item a,
#FooterMenu .Menu .Item a:hover {
	margin: 0px;
	padding: 0px;
	font-size: 10px;
	background-image: none;
 	color: #AC3030;
	list-style: url(UserFiles/Image/Frame/Spacer.gif) none;
	display: block;
	width: auto;
	height: auto;
	line-height: 20px;
	font-weight: normal;
	text-align: right;
}
.ImgPaddingLeft {
	margin-left: 10px;
}
.ImgPaddingLeft30px {
	margin: 0px 0px 0px 30px;
	padding: 0px;
}
.ProductsMiniNav {
	font-size: 10px;
	color: #999999;
	text-decoration: none;
}
.ProductsMiniNav a {
	font-size: 10px;
}
.ProductsMiniNavBlack {
	color: #000000;
	font-size: 10px;
}
