/* HTML Element styles specific to this project. */

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

body {
	margin: 0;
	scrollbar-arrow-color: #f78f1e;
	scrollbar-darkshadow-color: #666;
	scrollbar-base-color: #CCC;
	font: normal 14px/120% Verdana, Arial, Helvetica, sans-serif;
	color: #949597;
}

button,
input,
textarea,
select {
	font: normal 11px/120% Verdana, Arial, Helvetica, sans-serif;
}

td, th {
	vertical-align: top
}

h1, 
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: bold;
}
h1 {
	margin-top: 20px;
	margin-bottom: 15px;
	font-size: 18px;
	color: #174A7C;
}
h2
{
	margin-top: 35px;
	margin-bottom: 12px;
	font-size: 15px;
	color: #666;
}
h3 {
	margin-top: 30px;
	margin-bottom: 10px;
	font-size: 14px;
	color: #5E6C95;
}
h4 {
	margin-top: 25px;
	margin-bottom: 10px;
	font-size: 13px;
	color: #174A7C;
}
h5 {
	margin-top: 20px;
	margin-bottom: 8px;
	font-size: 12px;
	color: #666;
}
h6 {
	margin-top: 12px;
	margin-bottom: 6px;
	font-size: 11px;
	color: #5E6C95;
}
hr {
	border: none;
	color: #ebebeb;
	background-color: #ebebeb;
	height: 1px;
	padding: 0;
	margin: 25px auto 10px;
	width: 99%;
	text-align: center;
	}
p {
	margin: 5px 0 0 0;
}
b, strong {
	color: #777;
}

ul,
ol {
	margin-top: 5px;
}

ul>li {
	list-style-image: url(../UserFiles/Image/Frame/Li.gif);
}

ul ul>li {
	list-style-type: url(../UserFiles/Image/Frame/LiLi.gif);
}

ol>li {
	list-style-type: decimal;
}

ol ol>li {
	list-style-type: lower-alpha;
}

ol ol ol>li {
	list-style-type: lower-roman;
}

a,
a:link,
a:visited,
a:active {
	text-decoration: none;
	color: #F78F1E;
}

a:hover {
	text-decoration: underline;
    color:#174A7C;
}









/* 
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%;
}


/* 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;
}


/* List and Form pages have a <tr> which is set to the criteria row which describes how the page is filtered. */

.ListCriteriaRow td,
.FormCriteriaRow td {
	padding-top: 5px;
}



/* All pages have a <tr> which is set to the description row which contains the description of the page. */

.LoginDescriptionRow td,
.ForgotLoginDescriptionRow td,
.ListDescriptionRow td,
.ListInstructionRow td,
.FormDescriptionRow td,
.FormInstructionRow td {
	padding-top: 5px;
}



/* 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 td,
.ForgotLoginMessageRow td,
.ListMessageRow td,
.FormMessageRow td {
	padding-top: 5px;
}

.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 td,
.FormColumnHeaderRow td {
	padding-top: 5px;
	font-weight:bold;
	font-size:smaller;
}

.FormColumnHeaderRow td {
	display:none;
}



/* 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 td,
.ForgotLoginDetailRow td,
.ListOddDetailRow td,
.ListEvenDetailRow td {
	font-size:smaller;
}

.FormOddDetailRow td,
.FormEvenDetailRow td {
}

.ListOddDetailRow:hover {
	color: #000;
	background-color: #f7e9d9;
}

.ListEvenDetailRow:hover {
	color: #000;
	background-color: #f7e9d9;
}



/* 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 {
	width: 50%;
	font-weight: bold;
	text-align: right;
}

.LoginValueCell,
.ForgotLoginValueCell {
	width:50%;
}

.FormNameCell, 
.FormNameCellWithRequiredValue {
	margin: 1px;
	padding: 2px;
	padding-right: 15px;
	width:25%;
	color: #373D18;
	text-align: right;
	white-space: nowrap;
}

.FormNameCell a {
}

.FormNameCell .Information, 
.FormNameCellWithRequiredValue .Information {
	float: right;
	margin-right: -15px;
	padding-left: 2px;
}

.FormNameCellWithRequiredValue .Required {
	padding-right: 3px;
}

.FormValueCell,
.FormRequiredValueCell {
	margin: 1px;
	padding: 2px;
	width:75%;
}

.LoginValueCell #UserName {
	width:250px;
}

.LoginValueCell #Password {
	width:100px;
}

.ForgotLoginValueCell #EmailAddress {
	width:250px;
}



/* 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,
.ListTextCell,
.ListMultipleLineTextCell,
.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 {
	border-style: solid;
	border-color: black;
	border-width: 1px;
	width: 80px;
	text-align: center;
}

.FormItemControl,
.FormCollectionControl,
.FormForeignCollectionControl,
.FormLinkingForeignCollectionControl,
.FormTextControl,
.FormMultipleLineTextControl,
.FormHTMLControl,
.FormURLControl,
.FormWebAddressControl,
.FormFileURLControl,
.FormImageURLControl,
.FormEmailAddressControl,
.FormPasswordControl,
.FormDecimalControl,
.FormIDControl,
.FormDurationControl,
.FormRankingControl,
.FormMoneyControl,
.FormPercentageControl,
.FormEnumerationControl,
.FormDateTimeControl,
.FormBooleanControl,
.FormGroupControl {
	width:85%;
}

.FormLinkingForeignCollectionControl {
	border-style: solid;
	border-width: 1px;
	border-color: rgb(127,157,185);
	height: 120px;
	overflow: auto;
	background-color: white;
}
.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 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: smaller;
	text-align: center;
}



/* List pages have a <tr> which is set to the list page range row which contains the page and record ranges. ie. Page 2 of 9 : Records 20-40 of 175.*/

.ListPageRangeRow {
	font-size: smaller;
	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 {
	height: 30px;
	text-align: center;
	vertical-align: middle;
}



/* All buttons used by the page generator. */

.ImageButton image {
	margin-left:3px;
	margin-right:3px;
	border-style:none;
	vertical-align:middle;
	cursor: hand;	
}

a.TextButton,
input.TextButton {
	display: inline-block;
	margin: 0px;
	margin-left: 3px;
	margin-right: 3px;
	padding: 2px;
	padding-left: 12px;
	padding-right: 5px;
	width: auto;
	vertical-align: middle;
	font-size: 10px;
	line-height:14px;
	text-decoration: none;
	white-space: nowrap;
	background: #f78f1e url(../UserFiles/Image/Buttons/BtnBg.gif) no-repeat left center;
	color: #000;
	cursor: hand;
}
a.TextButton:hover,
input.TextButton:hover {
	color: #FFF;
}
input.TextButton {
	padding: 0px;
	padding-left: 18px;
	text-align: left;
}
.ListCommandRow a.TextButton,
.ListCommandRow input.TextButton,
.FormCommandRow a.TextButton,
.FormCommandRow input.TextButton {
	margin: 3px;
}




/* The following is used on <span> tags and is used in a template to note that content is placed here. */

.Content {
	display: block;
	height: 100%;
	width: 100%;
	text-align: left;
}





/* New class tags used */

.Object {
	display: block;
	width: 100%;
	text-align: center;
	background-color: white;
}

.Property {
	display: block;
	padding: 2px;
	width: 100%;
	text-align: left;
}

.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 {
	margin-left:7px;
	margin-right:7px;
	margin-top:2px;
	margin-bottom:2px;
	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;
	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;
}





/* DON'T PRINT */

@media print {
	.ListRecordSelectorCell,
	.ListRecordEditorCell,
	.ListMethodCell,
	.LoginCommandRow,
	.ForgotLoginCommandRow,
	.ListCommandRow,
	.FormCommandRow,
	.TextButton,
	.NoPrint {
		display:none;
	}
}








/* File Upload status bar */

#UploadDisplay {
	display: block;
	position: absolute;
	left: 400px;
	top:  300px;
   	border: solid 1px gray;
  	padding: 20px;
	width: 300px;
	height: 85px;
	z-index: 1;
	background-color: #f0f0f0;
}

#UploadDisplayFrame {
 	margin: 0px;
	border: 0px;
	padding: 0px;
 }

.UploadBarBody {
	background-color: #f0f0f0;
}

.UploadProgressBar {
	width: 99%;
}

.UploadHeading {
	white-space: nowrap;
}

.UploadBar {
	margin-top: 5px;
  	border: solid 1px #08086b;
	width: 99%;
	background-color:  White;
}

.UploadBarPercent {
	background-color:  #08086b;
}

.UploadStatus {
	margin-top: 5px;
	white-space: nowrap;
}

.UploadCancel {
	margin-top: 10px;
	text-align: center;
}











/* Styles here are used to define the menu and its items and sub-menus. */




/* Base Menu Styles - SHOULD NOT NEED TO MODIFY */

.Menu {
	margin: 0;
	padding: 0;
	cursor: default;
}

.Menu li,
.Menu li li {
	margin: 0;
	list-style-type: none;
	list-style-image: none;
}

.Menu.Closed {
	display: none;
}


.Menu .Item .Name,
.Menu .Item .Description
{
	display: inline-block;
	cursor: hand;
}

.Menu .Item .Image
{
	float: left;
	cursor: auto;
}



/* Horizontal Menu Styles - SHOULD NOT NEED TO MODIFY */

.HorizontalMenu .Line {
	display: inline;
}

.HorizontalMenu .Line hr {
	display: none;
}

.HorizontalMenu .Item {
	display: inline;
	position: relative;
	width: auto;
}

.HorizontalMenu .Menu .Menu {
	position: absolute;
	left: 0;
	height: auto;
}

.HorizontalMenu .Menu .Menu .Line,
.HorizontalMenu .Menu .Menu .Line hr,
.HorizontalMenu .Menu .Menu .Item,
.HorizontalMenu .Menu .Menu .Item a {
	display: block;
	width: 100%;
}

.HorizontalMenu .Menu .Menu .Menu {
	top: 0;
}




/* Sub-Horizontal Menu Styles - SHOULD NOT NEED TO MODIFY */

.SubHorizontalMenu .Line {
	display: inline;
}

.SubHorizontalMenu .Line hr {
	display: none;
}

.SubHorizontalMenu .Item {
	display: inline;
	position: relative;
	width: auto;
}

.SubHorizontalMenu .Menu .Menu {
	position: absolute;
	left: 0;
}




/* Vertical Menu Styles - SHOULD NOT NEED TO MODIFY */

.VerticalMenu .Line {
	display: block;
}

.VerticalMenu .Item {
	display: block;
	position: relative;
}

.VerticalMenu .Item a {
	display: block;
	width: 100%;
}

.VerticalMenu .Menu .Menu {
	position: absolute;
	top: 0;
}




/* Sub-Vertical Menu Styles - SHOULD NOT NEED TO MODIFY */

.SubVerticalMenu .Line {
	display: block;
}

.SubVerticalMenu .Item {
	display: block;
	position: relative;
}

.SubVerticalMenu .Item a {
	display: block;
	width: 100%;
}









/*Skin specific styles */

#Container {
	text-align: center;
	background: #FFFFFF;
}

#Page {
	width: 955px;
	text-align: left;
}

#Header {
	width: 955px;
	height: 169px;
	text-align: right;
	background: url(../UserFiles/Image/Frame/PrimeHeader.jpg);
	float: left;
}

#MenuHolder {
    width:955px;
	height: 35px;
    font-size: 12px;
	font-weight: bold;
	color: #FFFFFF;
    background-color:#f78f1e;
	float: left;
}

#TopMenu {
    float:left;
    padding-left: 45px;
}

#TopMenu .Line {
	display: none;
}

#TopMenu .Item {
	padding: 11px 45px;
	line-height: 35px;
}

#TopMenu .Item a {
	color: #FFFFFF;
}

#TopMenu .Item .Description {
	font-size: smaller;
	font-weight: normal;
}

#TopMenu .Item .Image {
	max-height: 28px;
	max-width: 28px;
}

#TopMenu .Menu .Menu {
	top: 35px;
	left: 35px;
	border: solid 1px #FFF;
	width: 150px;
	background-color: #f78f1e;
}

#TopMenu .Menu .Menu .Item {
	border-bottom: solid 1px #FFFFFF;
	padding: 0 10px;
	width: 130px;
	line-height: 25px;
	font-size: 11px;
}

#TopMenu .Menu .Menu .Menu {
	left: 150px;
	top: -1px;
}

#Search {
    float: right;
    width: 230px;
    line-height: 35px;
}

#Search div {
    float: left;
    padding-left: 10px;
}

#Search input[type="text"] {
    margin: 7px;
    margin-right: 0;
    padding: 4px;
    width: 130px;
    background: url(../UserFiles/Image/Frame/SearchBack.jpg) no-repeat #FFFFFF;
    border: none;
}

#Search select {
    margin: 7px;
    margin-right: 0;
    padding: 4px;
    width: 130px;
    background: url(../UserFiles/Image/Frame/SearchBack.jpg) no-repeat #FFFFFF;
    border: none;
}

#Search input[type="submit"] {
	margin: 0px;
	margin-top: 9px;
	padding: 0px;
	vertical-align: top;
	background-position: top -20px;
}

#ContentContainer {
	padding: 10px 0;
	width: 955px;
}

#LeftMenu {
	float: left;
	margin-right: 60px;
	width: 155px;
	font-size: 13px;
	font-weight: bold;
	color: #939598;
	display: inline;
}

#LeftMenu .Line {
	display: none;
}

#LeftMenu .Item {
	width: 100%;
}

#LeftMenu .Item a {
	padding-top:60px;
	padding-bottom:30px;
	padding-left:10px;
	color: #939598;
    background:url(../UserFiles/Image/Frame/leftMenu.jpg) no-repeat;
}

#LeftMenu .Item a:hover {
	background:url(../UserFiles/Image/Frame/leftMenuOver.jpg) no-repeat;
}

#LeftMenu .Menu .Menu {
	left: 150px;
	top: 49px;
	border: solid 2px #F78F1E;
	border-bottom:none;
	width: 160px;
	background-color: #FFFFFF;
	z-index:5;
}

#LeftMenu .Menu .Menu .Item {
	border-bottom: solid 2px #F78F1E;
	padding: 0 10px;
	width: 140px;
	line-height: 30px;
	font-size: 11px;
	background-color: #FFFFFF;
}

#LeftMenu .Menu .Menu .Item a {
	padding: 0px;
	color: #174A7C;
    background: none;
}


#Content {
	width: 730px;
	float: left;
}
#ContentNoMenu {
	width: 955px;
	float: left;
}

#ContentWithMenu {
	width: 770px;
	float: left;
}

#Footer {
	margin: 30px 0 15px;
	width: 955px;
    line-height:18px;
	text-align: center;
	font-size: 10px;
	color: #939598;
	clear: both;
	float: left;
}

#Footer a {
	color: #939598;
}

#Call {
    height:126px;
    width:285px;
    background:url(../UserFiles/Image/Frame/number.jpg);
    text-align:center;
	margin: 0 auto;
	clear: both;
}

#BottomMenu .Item {
	padding:0 4px;
    border-left:1px solid;
}

#BottomMenu .Item:first-child {
    border-left:none;
}

#BottomMenu .Item a {
	color: #939598;
}

#Copyright {
}

#WebsiteBy {
}
.HomeFeatureBox {
	background: #FFFFFF;
	float: left;
	width: 220px;
	padding: 5px;
	margin-right: 5px;
	margin-top: 20px;
	border: 1px solid #CCCCCC;
	margin-left: 5px;
}
.Two {
	width: 343px;
	min-height: 220px;
}
.HomeFeatureBox h1 {
	line-height: 30px;
	color: #FFFFFF;
	background: #114B7E;
	margin: 0px;
	padding: 0px;
	text-indent: 5px;
	font-size: 13px;
}
.HomeFeatureBox .Apply {
	color: #FFFFFF;
	background: #F68F1E;
	margin: 8px 0px 0px;
	padding: 2px;
	font-weight: bold;
}
.HomeFeatureBox .Apply a {
	color: #FFFFFF;
	text-decoration: none;
	font-weight: normal;
}
.Apply a {
	font-weight: bold;
}

.imgLeftAlign {
	background: #EFEFEF;
	padding: 5px;
	float: left;
	margin-right: 10px;
}
.imgRightAlign {
	background: #EFEFEF;
	padding: 5px;
	float: right;
	margin-left: 10px;
}
.HomeLeft {
	float: left;
	width: 150px;
	margin-right: 20px;
	padding-top: 10px;
	color: #939598; 
}
.HomeLeft ul li {
	padding-top:5px;
	padding-bottom:5px;
	padding-left:4px;
	font-size: 13px;
	font-weight: bold;
	color: #f6850c;
	list-style: url(../UserFiles/Image/Frame/Spacer.gif) none;
	margin: 0px;
	line-height: 20px;
	display: block;
}
.HomeLeft li a,
.HomeLeft li li a {
	display: block;
}
/*.HomeLeft ul li {
	padding-top:50px;
	padding-bottom:0px;
	padding-left:4px;
	font-size: 13px;
	font-weight: bold;
	color: #939598;
	background:url(../UserFiles/Image/Frame/leftMenu.jpg) no-repeat;
	list-style: none;
	margin: 0px;
}*/
.HomeLeft ul {
	margin: 0px;
	padding: 0px;
}
.HomeLeft ul li ul li {
	padding: 2px 0;
	color: #939598;
	background-image:  none;
	font-size: 11px;
	font-weight: normal;
	margin: 0px;
	line-height: normal;
	/*list-style: url(../UserFiles/Image/Frame/HomeBullet.gif) none;*/
}
.HomeLeft ul ul {
	margin: 0px;
	padding: 0px 0px 0px 10px;
}

/*.HomeLeft ul li:hover {
	background:url(../UserFiles/Image/Frame/leftMenuOver.jpg) no-repeat;
}*/
.HomeLeft li li a {
	color: #666666;
}
.HomeRight {
	width: 785px;
	float: left;
}
.Marquee {
	line-height: 60px;
	width: 955px;
	clear: both;
	font-weight: bold;
	font-size: 20px;
	background-color:#98e42c;
	color: #FFFFFF;
	float: left;
	margin-top: 15px;
}
#PersonalFinance,
#BusinessFinance,
#MotorFinance {
	float: left;
	width: 400px;
}
#BusinessFinance,
#MotorFinance {
	display: none;
}


a.ApplyNow {
	display: inline-block;
	margin: 0px;
	margin-left: 3px;
	margin-right: 3px;
	padding: 5px;
	width: auto;
	vertical-align: middle;
	font-size: 15px;
	line-height:18px;
	text-decoration: none;
	white-space: nowrap;
	background: #f78f1e url(../UserFiles/Image/Buttons/BtnBg.gif) no-repeat -10px center;
	color: #fff;
	cursor: hand;
	border: #aaa solid 1px;
}
a.ApplyNow:hover {
	border-color: #000;
}
