/*
Welcome to the Admin CSS File! Some things you should know:

1. This css file will be included on all "admin" pages. Specifically:
   + Home/*
   + Messages/*
   + Role/*
   + Routes/*
   + Settings/*
   + User/*

2. This file is broken down into the following sections:
   + General Styles & Typography
   + Forms
   + Header
   + Panels / Sidebars
   + Dashboard
   + User Pages
   + Splash Information Page
   + Popups
   + Legal
   + Themes
   + Footer
*/
   
/* ================================================================ Reset CSS */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
   margin: 0;
   padding: 0;
   border: 0;
   outline: 0;
   font-weight: inherit;
   font-style: inherit;
   font-size: 100%;
   font-family: inherit;
   vertical-align: baseline;
}
/* remember to define focus styles! */
:focus {
   outline: 0;
}
body {
   line-height: 1;
   color: black;
   background: white;
}
ol, ul {
   list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
   border-collapse: separate;
   border-spacing: 0;
}
caption, th, td {
   text-align: left;
   font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
   content: "";
}
blockquote, q {
   quotes: "" "";
}

/* ============================================== General Styles & Typography */
body {
   color: #000;
   font-family: 'lucida grande','Lucida Sans Unicode', Tahoma, sans-serif;
   font-size: 75%;
	line-height: 1.7;
   margin: 0;
   padding: 0;
   font-size: small;
	background: #dbf3fc;
}
#Body {
	background: #fff;
	float: left;
	width: 100%;
}
#Content {
	padding: 0;
	margin: 0 0 0 200px;
	border-left: 1px solid #82bddd;
	background: #fff;
}
.Hidden {
   display: none;
}
.nowrap {
   white-space: nowrap;
}
.Center {
	text-align: center;
}
.Right {
	text-align: right;
}
h1, h2, h3, h4, h5, h6 {
   color: #000;
   font-family: "Helvetica Neue",Helvetica,arial,sans-serif;
   font-weight: normal;
   margin: 0;
}
#Content h1, #Content h2, #Content h3, #Content h4, #Content h5 {
   font-family: 'lucida grande','Lucida Sans Unicode', Tahoma, sans-serif;
}
#Content h1,
#Content h3 {
	text-shadow: 0 1px 0 #fff;
	color: #222;
	background: #dbf3fc;
	border-top: 1px solid #8bc1de;
	border-bottom: 1px solid #8bc1de;
	padding: 10px 20px;
	font-size: 14px;
	margin: 0;
}
#Content h1 a {
	text-shadow: none;
	font-size: 12px;
	margin-left: 20px;
}
#Content h3 {
	border-top: 1px solid #8bc1de;
}
#Content h4 {
	padding: 20px 20px 0;
}
#Content table h4 {
	padding: 0;
}
p {
   margin: 0.5em 0 0 0;
   line-height: 1.6em;
}
code {
   border-radius: 2px;
   -moz-border-radius: 2px;
   -webkit-border-radius: 2px;
   background: #ff9;
   padding: 4px;
   white-space: pre;
   font-family: monospace;
   overflow: auto;
	box-shadow: 0px 0px 1px #999;
	-moz-box-shadow: 0px 0px 1px #999;
	-webkit-box-shadow: 0px 0px 1px #999;  
}
h1, h2 {
   font-size:140%;
   font-weight:bold;
   margin-bottom:10px;
	text-shadow: #fff 0 1px 0;
}
h3 {
   font-size:120%;
}
h4 {
   font-size: 110%;
	font-weight: bold;
}
h5 {
   font-size: 110%;
}
.Arrow {
	font-size: 18px;
}
a,
a:link,
a:visited,
a:active {
   text-decoration: none;
   color: #2786c2;
}
a:hover {
   text-decoration: none;
   color: #ff0084;
}
input.DateBox,
input.InputBox,
input.SmallInput,
textarea {
   font-family: arial;
   color: #444;
   font-size: 16px;
   padding: 3px;
   margin: 0;
   width: 250px;
   border: 1px solid #ccc;
   border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}
textarea.TextBox {
	font-size: 14px;
   width: 500px;
   height: 100px;
   min-height: 100px;
   max-height: 500px;
}
#Popup textarea.TextBox {
   width: 465px;
}
input.SmallInput,
input.InputBox {
   font-size: 15px;
   padding: 6px 3px;
}
input.SmallInput:focus,
input.InputBox:focus,
textarea:focus {
   background: #ffd;
	color: #333;
	border: 1px solid #aaa;
}
textarea {
   line-height: 128%;
}
select {
   font-family: arial;
   font-size: 14px;
   color: #222;
   margin: 0;
   padding: 3px;
   }
select.Day,
select.Year {
   margin-left: 4px;
}
a.SmallButton,
a.Button,
input.Button,
input.SmallButton {
   margin: 0;
	box-shadow: 0px 0px 2px #999;
	-moz-box-shadow: 0px 0px 2px #999;
	-webkit-box-shadow: 0px 0px 2px #999;  
   border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	background:url("images/bg-button-blue.png") repeat-x scroll left top transparent;
	border:1px solid #0F7FE6;
	color:#003673;
	cursor:pointer;
	font-size:12px;
	font-weight:bold;
	padding:6px 10px;
	text-decoration:none;
	text-shadow:0 1px 0 #B7F5FD;
}
a.Button {
	padding: 5px 7px;
}
a.SmallButton {
	margin-right: 10px;
	padding: 4px;
	font-size: 12px;
}
a.SmallButton:hover,
a.Button:hover,
input.Button:hover,
input.SmallButton:hover {
	border: 1px solid #0B64C6;
	color: #001F44;
	text-shadow:0 1px 0 #EEFFFF;
}
a.SmallButton:focus,
a.Button:focus,
input.Button:focus,
input.SmallButton:focus {
	background: #81CFF6;
	border:1px solid #0B64C6;
	color:#001F44;
	text-shadow:0 1px 0 #EEFFFF;
}
input.SmallButton,
a.SmallButton {
   border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	font-size:11px;
	font-weight:normal;
	padding:2px 4px;
	background-position: 0 -3px;
	box-shadow:0 0 0 #999999;
	-moz-box-shadow:0 0 0 #999999;
	-webkit-box-shadow:0 0 0 #999999;
}
input.SmallButton:hover,
a.SmallButton:hover,
.SmallBlueButton:hover {
	box-shadow:0 0 2px #999999;
	-moz-box-shadow:0 0 2px #999999;
	-webkit-box-shadow:0 0 2px #999999;
}
.Loading {
   height: 100px;
   padding: 0 20px;
   background: url('images/progress.gif') center center no-repeat;
}
.AfterButtonLoading {
   background: url('images/progress.gif') center center no-repeat;
   padding: 0 20px;
}
.Progress {
   padding: 10px 40px 10px 0;
   background: url('images/progress.gif') center center no-repeat;
}
.TinyProgress {
	padding: 10px 40px 10px 0 !important;
	background: url('images/progress_sm.gif') center center no-repeat;
}

/* Note: Messages are the yellow notices that appear at the top/center of the
  page to notify users of things like drafts being saved, etc. */
div.Information {
   text-align: center;
   position: fixed;
   top: 0;
   left: 0;
	right: 0;
   margin: auto !important;
   padding: 0 !important;
   list-style: none !important;
   font-size: 12px;
	width: 300px;
}
* html div.Information {
  position: absolute;
  width: 100%;/*IE5.5*/
  top: 0;
  left: 0;
  overflow: visible; 
  top: expression(eval(document.compatMode && document.compatMode=='CSS1Compat') ? documentElement.scrollTop : document.body.scrollTop);
}
div.Messages ul {
   cursor: pointer;
   width: auto !important;
   margin: 0 auto !important;
   background: #ff9 !important;
   display:-moz-inline-stack;
   display:inline-block;
   zoom:1;
   *display:inline;
   border-radius: 0 0 2px 2px;
   -moz-border-radius: 0 0 2px 2px;
   -webkit-border-radius: 0 0 2px 2px;
	box-shadow: 0px 1px 2px #333;
	-moz-box-shadow: 0px 1px 2px #333;
	-webkit-box-shadow: 0px 1px 2px #333;  
	padding: 6px 10px !important;
}
div.Messages ul li {
   text-align: left !important;
   border: 0 !important;
   color: #000 !important;
   padding: 0 !important;
   margin: 0 !important;
   list-style-position: outside;
}
div.Errors ul {
	display: block;
	background: #ff0000 !important;
	border: none !important;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	padding: 10px 20px !important;
   border-radius: 0;
   -moz-border-radius: 0;
   -webkit-border-radius: 0;
}
div.Errors a {
   color: #fff;
   text-decoration: underline;
}
div.Errors ul li {
   color: #fff !important;
	font-size: 12px;
	text-shadow: 0 1px 0 #000;
}
div.Errors pre {
	margin: 10px 0 5px;
	padding: 4px 8px;
	display: block;
   border-radius: 2px;
   -moz-border-radius: 2px;
   -webkit-border-radius: 2px;
   white-space: pre;
   overflow: auto;
	box-shadow: 0px 0px 2px #333;
	-moz-box-shadow: 0px 0px 2px #333;
	-webkit-box-shadow: 0px 0px 2px #333;  
}
div.Errors pre,
div.Errors pre * {
	background: #ffa !important;
	font-size: 12px !important;
	font-weight: normal !important;
	font-family: monospace !important;
	text-shadow: none !important;
	color: #333  !important;
	line-height: 1.4 !important;
}
div.Errors pre * {
	margin: 0 !important;
	padding: 0 !important;
}
/* Note: Warning, Alert & Info are simple boxes that can be used to wrap message
   strings & imply importance. */
/* Note: The MessageModule (in /applications/dashboard/modules) wraps all messages
  that it renders in a div with this DismissMessage class. */
div.Info,
.DismissMessage {
   border-radius: 2px;
   -moz-border-radius: 2px;
   -webkit-border-radius: 2px;
   font-size: 14px;
	position: relative;
   margin: 10px;
	padding: 10px;
	line-height: 1.4;
}
#Panel div.Info,
#Panel .DismissMessage {
	margin: 0;
	border-width: 1px 0 1px 0;
	font-size: 13px;
}
div.DismissMessage p {
   margin: 2px 0;
	padding: 4px 0 0;
}
div.DismissMessage a.Dismiss {
	position: absolute;
	top: 3px;
	right: 5px;
	font-family: arial;
	font-size: 22px;
	font-weight: bold;
   line-height: 1;
   color: #999;
}
#Panel div.DismissMessage a.Dismiss {
	top: 1px;
	right: 3px;
}
div.DismissMessage a.Dismiss:hover {
	color: #ff0084;
}
div.Box {
	border: 1px solid #a5d0e7;
   background: #d3f0ff;
}
.Warning {
   background: #ff9;
   padding: 10px 20px;
}
strong {
	font-weight: bold;
}
.Alert {
   background: #d00;
   border: 1px solid #b00;
   color: #fff;
   padding: 3px 6px;
   border-radius: 3px;
   -moz-border-radius: 3px;
   -webkit-border-radius: 3px;
	text-shadow: 1px 1px 1px #444;
}
.Alert a {
   color: #fff;
}
.Alert a:hover {
   text-decoration: underline;
}
div.EmptyInfo {
   margin: 10px 0;
}
.HoverHelp {
	position: relative;
}
.HoverHelp .Help {
	display: none;
	min-width: 200px;
	background: #333;
	color: #fff;
	font-weight: normal;
	font-size: 11px;
	position: absolute;
	left: -5px;
	bottom: 20px;
   border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	padding: 6px;
	box-shadow: 0px 0px 2px #777;
	-moz-box-shadow: 0px 0px 2px #777;
	-webkit-box-shadow: 0px 0px 2px #777;  
}
/* Note: MorePager is related to the /applications/dashboard/modules/MorePagerModule. */
.MorePager {
   list-style: none;
   margin: 1px 0 0;
   padding: 3px 6px;
   text-align: right;
   }
.MorePager a {
   font-size: 13px;
   font-weight: bold;
   text-align: right;
}
.MorePager a:hover {
   color: #2786c2 !important;
   text-decoration: underline;
}
.MorePager a.Loading:hover {
	text-decoration: none;
}
#PagerLess {
   border-top-right-radius: 2px;
   border-top-left-radius: 2px;
   -moz-border-radius-topright: 2px;
   -moz-border-radius-topleft: 2px;
   -webkit-border-top-right-radius: 2px;
   -webkit-border-top-left-radius: 2px;
   margin-bottom: 1px;
}
tr#PagerMore td {
   border: 0;
   text-align: right;
	border-bottom: 1px solid #aedefc;
}
#PagerMore {
   margin-bottom: 1px;
}
/* Note: Tabs are used on administrative dashboard screens to help organize
  information being managed on screen. For example: applications and plugins.
*/
.FilterMenu {
   color: #aaa;
   padding: 0 0 10px;
	padding:0 20px 10px;
	position:relative;
	top:-10px;	
}
.FilterMenu strong {
   font-weight: bold;
   color: #111;
}
.FilterMenu span {
   color: #999;
   padding: 0 4px;
}
div.Tabs {
	display: block;
   padding: 0 10px;
   margin: 0;
}
div.Tabs li {
   display: inline;
   margin: 0;
}
div.Tabs li a,
div.Tabs li a:link,
div.Tabs li a:hover,
div.Tabs li a:active,
div.Tabs li a:visited {
	position: relative;
	top: 4px;
   margin: 0;
   border: 1px solid #8bc1de;
	border-bottom: 0;
   border-radius: 3px 3px 0 0;
   -moz-border-radius: 3px 3px 0 0;
   -webkit-border-radius: 3px 3px 0 0;
   background: #bbe2f7;
   display: inline;
   font-weight: bold;
   color: #1e79a7;
   text-decoration: none;
   padding: 5px 10px;
	line-height: 2.6;
}
div.Tabs li a:hover {
   background: #f3fcff;
}
div.Tabs li.Active a {
   background: #DBF3FC;
	border-bottom: 1px solid #DBF3FC;
   color: #222;
}
div.Tabs li a span {
   line-height: 1;
   font-size: 80%;
   padding: 0 3px;
   border-radius: 3px;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   font-weight: normal;
   background: #1e79a7;
   color: #eaf4fd;
   margin: 0 0 0 4px;
}


/* ==================================================================== Forms */
form ul {
   list-style: none;
   margin: 0px;
   padding: 0px;
}
#Content form ul {
	padding: 20px 20px 0;
}
form ul li {
   margin-bottom: 10px;
   padding: 0;
   font-size: 12px;
   color: #555;
}
form ul li label {
   color: #000;
   display: block;
   font-size: 14px;
	font-weight: bold;
   }
form ul li span {
	display: block;
}
body.Messages div.Popup form ul li label {
   width: 100px;
}
form ul li label.RadioLabel {
   float: none;
   display: inline;
   font-weight: normal;
}
table.Label tbody th {
   width: 140px;
}
form ul li table label {
   float: none;
   display: inline;
   width: auto;
}
body.Messages div.Popup form ul li label.CheckBoxLabel,
form ul li label.CheckBoxLabel {
   float: none;
   width: auto;
   display: block;
   font-size: 13px;
   cursor: pointer;
   margin: 0px;
   padding: 0px;
   line-height: 27px;
	font-weight: normal;
}
form ul li label.CheckBoxLabel input {
   margin: 7px 6px 4px 2px;
   padding: 0px;
   float: left;
}
form ul li label span {
   font-size: 11px;
   color: #999;
   padding-left: 6px;
   }
form li.RadioInput label {
   display: inline;
   }
input.SmallButton {
   cursor: pointer;
   margin: 0px 0px 0px 0px;
   font-size: 11px;
}
input.SmallInput {
   width: 80px;
}
/* FormTable */
table {
   width: 100%;
   border-collapse: collapse;
	border: 1px solid #a5d0e7;
	border-left: none;
	border-right: none;
	margin: 0;
}
table label {
   font-size: 12px;
   padding: 0px;
}
table tr.Last td,
table tr.Last th {
   border-bottom: 0px;
}
table th,
table td {
   font-weight: normal;
   color: #555;
   padding: 6px;
}
form ul li table label {
	font-size: 100%;
}
table thead th,
table thead td {
   border-bottom: 1px solid #a5d0e7;
}
table tbody th {
   font-weight: bold;
   color: #000;
}
table tbody th,
table tbody td {
   border-bottom: 1px solid #a5d0e7;
   line-height: 150%;
}
table tbody tr.FootNote td {
   background: #ff9;
   color: #454545;
   border-bottom: 0px;
}
table tbody tr.More th,
table tbody tr.More td {
   border-bottom: 0;
}
table.AltRows tbody tr.Enabled td.Info,
table.AltColumns tbody tr.Enabled td.Info,
table.AltRows tbody tr.Disabled td.Info,
table.AltColumns tbody tr.Disabled td.Info {
   color: #aaa;
}
table tbody td.Info span {
   padding: 0 6px;
}
table tbody td.Info strong {
	margin-right: 10px;
   font-weight: bold;
   color: #000;
}
table thead th {
   font-weight: bold;
   font-size: 13px;
   /* line-height: 100%; This made the headings on checkbox lists highlight incorrectly. */
   color: #000;
}
table input.Button {
   margin: 0px;
}
table.AltRows tr.Alt th,
table.AltRows tr.Alt td {
   background: #d3f0ff;
}
table.AltColumns th.Alt,
table.AltColumns td.Alt {
   background: #d3f0ff;
}
table.AltColumns tr.Alt {
   background: none;
}
table.AltColumns tr.Parent td,
table tr.Parent td {
   background: #fff;
}
table.AltColumns tr.Parent td.Alt,
table tr.Parent td.Alt {
	background: #fcfcfc;
}
table tr.Child td.First {
   padding-left: 20px;
}
table tr.Highlight th,
table tr.Highlight td {
   color: #000;
}
table tbody td blockquote {
   margin: 0px;
   padding: 2px;
}
table.Sortable tbody td {
   cursor: move;
}
/* Status Rows - Certain tables have "Enabled" and "Disabled" rows (plugins, applications) that need to override default styles */
table.AltRows tr.Enabled th,
table.AltRows tr.Enabled td,
table.AltColumns tr.Enabled th,
table.AltColumns tr.Enabled td {
   background: #ffd;
   color: #000;
}
table.AltRows tr.Disabled th,
table.AltRows tr.Disabled td,
table.AltColumns tr.Disabled th,
table.AltColumns tr.Disabled td {
   background: #d3f0ff;
}

label.SubLabel {
   display: inline-block;
   font-size: 100%;
   width: 100px;
}

/* CheckBoxGrid */
.CheckBoxGrid {
   margin: 10px 0;
   width: auto;
}
.CheckBoxGrid a {
   display: block !important;
   padding: 5px;
}
.CheckBoxGrid a:hover {
   background: #ff9;
   text-decoration: none;
}
.CheckBoxGrid th a,
.CheckBoxGrid td a,
.CheckBoxGrid th a:hover,
.CheckBoxGrid td a:hover {
   color: #555 !important;
}
.CheckBoxGrid td {
   text-align: center;
}
.CheckBoxGrid tbody th {
   font-weight: normal;
   padding: 0;
}
.CheckBoxGrid tbody th,
.CheckBoxGrid tbody td {
   vertical-align: middle;
}
.CheckBoxGrid thead th a,
.CheckBoxGrid thead th a:hover {
   color: #333 !important;
}
.CheckBoxGrid thead td {
   padding: 0;
}
.CheckBoxGrid tbody th a span.Parent {
   background: url('http://www.sandithom.com/forums/applications/dashboard/design/images/parent_divider.gif') center right no-repeat;
   padding: 6px 10px 6px 0;
   margin: 0 6px 0 0;
}
.CheckBoxGrid th {
   width: 150px;
}
.CheckBoxGrid td {
   width: 50px;
}
.CheckBoxGrid th,
.CheckBoxGrid td {
   padding: 3px;
}
.CheckBoxGrid th.Alt,
.CheckBoxGrid td.Alt {
   background: #d3f0ff;
}
/* CheckColumn */
.CheckColumn thead td a {
   display: block !important;
   padding: 6px 5px;
   color: #333333 !important;
   font-weight: bold;
}
.CheckColumn thead td a:hover {
   background: #f9f4c0;
   text-decoration: none;
   color: #333333 !important;
}
/* CheckBoxList */
.CheckBoxList {
   padding: 4px 0px 4px 0px;
}
.CheckBoxList li {
   border: 0px;
   margin: 0px;
   padding: 3px 0px 3px 0px;
   font-size: 11px;
}
.CheckBoxList li label.CheckBoxLabel {
   float: none;
   display: inline;
   width: auto;
   font-weight: normal;
   padding: 0px 0px 0px 0px;
}

.ColumnCheckBoxList {
   width: 650px;
}
.ColumnCheckBoxList li {
   display: inline-block;
   width: 321px;
}
body.managecategories div.Info div {
	padding-top: 16px;
}

/* =================================================================== Header */
#Head {
	background: url('http://www.sandithom.com/forums/applications/dashboard/design/images/dashboard-bg.png') top center repeat-x #014687;
	border-bottom: 1px solid #000;
	padding: 10px 18px 18px;
   text-align: right;
}
#Head h1 {
	line-height: 160%;
	border: 0;
	float: left;
	margin: 0;
	padding: 3px 0 0;
}
#Head h1 a {
	font-size: 24px;
	color:#f8fdff;
	text-shadow:0 1px 0 #000;
}
#Head div.User {
	padding: 8px 0 0;
}
#Head h1 a span {
	vertical-align: middle;
}
#Head div.User a,
#Head h1 a span {
   font-family: 'lucida grande','Lucida Sans Unicode', Tahoma, sans-serif;
	background: url('http://www.sandithom.com/forums/applications/dashboard/design/images/dashboard-bg.png') -480px -191px repeat-x #01518d;
	border: 1px solid #002b57;
	color: #fff;
	text-shadow:0 1px 0 #000;
	padding: 4px 6px;
	margin: 0 0 0 6px;
	font-size: 12px;
	font-weight: normal;
   border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
}
#Head div.User a:hover,
#Head h1 a span:hover {
	background-position: -480px -191px;
	box-shadow: 0 0 1px #0066C8;
	-moz-box-shadow: 0 0 1px #0066C8;
	-webkit-box-shadow: 0 0 1px #0066C8;
}
#Head div.User a.Profile,
#Head div.User a.Profile:hover {
	background-position: -5px -191px;
	padding: 4px 6px 4px 24px;
}
#Head h1 a span,
#Head h1 a span:hover {
	background-position: -454px -191px;
	padding: 4px 6px 4px 22px;
}
#Head div.User a:focus { background-position: -480px -294px; }
#Head div.User a.Profile:focus { background-position: -5px -294px; }
#Head h1 a:focus span { background-position: -454px -294px; }
#Head div.User a:focus,
#Head h1 a:focus span {
	box-shadow: 0 0 1px #6fa3c9;
	-moz-box-shadow: 0 1px 0 #6fa3c9;
	-webkit-box-shadow: 0 0 1px #6fa3c9;
}
#Head div.User a span {
	margin: 0 0 0 6px;
   border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	background: #003671;
	padding:0 4px;
}

/* ======================================================== Panels / Sidebars */
#Panel {
   float: left;
	margin: 0;
	width: 200px;
	border-top: 1px solid #82BDDD;
	border-right: 1px solid #82bddd;
	background: #dbf3fc;
}
#Panel div.Box {
	margin: 0;
	border: none;
	border-bottom: 1px solid #8bc1de;
	background: none;
}
#Panel div.Group {
	padding: 0;
}
div.Box h4 {
	font-family: 'lucida grande','Lucida Sans Unicode', Tahoma, sans-serif;
   font-size: 100%;
   font-weight: bold;
   margin: 0 0 4px;
   padding: 0 6px;
   color: #076C8E;
	text-shadow: #fff 0 1px 0;
}
div.Box h4 a {
	display: block;
   color: #045974;
	text-shadow: none;
}
div.Box h4 a:hover {
   color: #ff0084;
	text-shadow: none;
}
div.Box h4.Active {
	background: #045974;
}
div.Box h4.Active a {
	color: #fff;
	text-shadow: none;
}
#Panel div.Box h4 {
	padding: 0;
	margin: 0;
}
#Panel div.Box h4 { background: url('images/dashboard-sprites.png') 166px -145px no-repeat; }
#Panel div.Dashboard h4 { background-position: 166px 7px; }
#Panel div.Appearance h4 { background-position: 164px -1195px; }
#Panel div.Users h4 { background-position: 162px -292px; }
#Panel div.Forum h4 { background-position: 167px -442px; }
#Panel div.Addons h4 { background-position: 166px -240px; }
#Panel div.SiteSettings h4 { background-position: 164px -92px; }
#Panel div.Import h4 { background-position: 164px -1139px; }
div.Box dl {
   border-bottom: 1px solid #aedefc;
   background: #f0fbff;
   padding: 3px;
   font-size: 90%;
   overflow: hidden;
}
div.Box dl dt {
   float: left;
   width: 80px;
   color: #2786C2;
}
div.Box dl dd {
   margin-left: 80px;
}
div.Box p {
   font-size: 100%;
   padding: 0 0 4px;
   color: #555;
}
#Panel div.Active {
	background: #fff;
}
ul.PanelInfo {
	margin: 0 0 10px;
}
ul.PanelInfo li {
   padding: 0;
   font-size: 80%;
}
ul.PanelInfo li a {
   position: relative;
}
#Panel div.Box h4 {
	font-size: 14px;
	font-weight: bold;
	padding: 10px;
   color: #000;
}

ul.PanelInfo li a {
	font-size: 13px;
	color: #000;
	text-shadow: 0 0 1px #fff;
	display: block;
	padding: 2px 10px;
}
#Panel div.Box h4 a {
   color: #000;
}

span.New {
   border-radius: 2px;
   -moz-border-radius: 2px;
   -webkit-border-radius: 2px;
   background: #ff0;
   color: #000;
   font-size: 9px;
   font-weight: bold;
	box-shadow: 0 1px 2px #333;
	-moz-box-shadow: 0 1px 2px #333;
	-webkit-box-shadow: 0 1px 2px #333;
	padding:0px 2px;
	position: relative;
	top: -4px;
	right: auto;
}
ul.PanelInfo li.Active {
   background: url('http://www.sandithom.com/forums/applications/dashboard/design/images/arrow.png') center left no-repeat #ffffff;
}

/* ================================================= Dashboard Customizations */
.Column table {
   width: 100%;
	border: none;
}
.Column table th {
	width: 160px;
}
.Col {
	width: 175px;
	float: left;
}
#RecentUsers img {
	float: left;
	height: 20px;
	width: 20px;
	margin-right: 8px;
	overflow: hidden;
}
#UrlCode strong {
	color: #000000;
}
#UrlCode span {
	display: inline;
	background: #ff8;
	padding: 2px 4px;
   border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
}
#UrlCode input.InputBox {
	width: 200px;
	padding: 3px;
	font-size: 12px;
	font-family:'lucida grande','Lucida Sans Unicode',Tahoma,sans-serif;
}
#UrlCode a {
	margin-left: 10px;
}

/* =============================================================== User Pages */
#dashboard_user_index div.Info .InputBox {
   margin-right: 6px;
}
#dashboard_user_index div.Info .Button {
   margin-right: 20px;
}
#Form_User a.SmallButton {
	line-height: 3;
	margin-right: 6px;
}


/* ================================================== Splash Information Page */
body.Home #Content {
	margin: 0 auto;
}
#Content .SplashInfo {
	margin: 80px 0;
	border-top: 1px solid #a5d0e7;
	border-bottom: 1px solid #a5d0e7;
	background: #e2f4ff;
}
#Content .SplashInfo h1 {
	font-family: "Helvetica Neue",Helvetica,arial,sans-serif;
	background: transparent;
	text-align: center;
	border: none;
	border-top: 1px solid #fff;
	color:#02455B;
	font-size:300%;
	text-shadow:0 1px 0 #FFFFFF;
	padding: 10px 0 0;
	margin: 0;
	line-height: 1;
}
#Content .SplashInfo p {
	font-family: "Helvetica Neue",Helvetica,arial,sans-serif;
	text-align: center;
	border-bottom: 1px solid #fff;
	margin: 0;
	padding: 0 0 10px;
	color: #076C8E;
	font-size: 20px;
}


/* =================================================================== Popups */
div.Popup div.Messages {
   text-align: left;
   position: inherit;
   top: auto;
   left: auto;
   z-index: auto;
	margin: 10px 0 !important;
}
div.Popup div.Warning {
	margin: 10px 0 0;
}
div.Popup div.Messages ul {
	display: block;
   border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
}
div.Popup div.Info {
	border: 0;
}
* html div.Popup div.Messages {
  position: inherit;
  width: auto;
  top: auto;
  left: auto;
  overflow: auto; 
}
div.Popup .Loading {
   display: block;
}
.Overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.7);
}
div.Popup {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 5000;
  text-align: center;
}
div.Popup div.Body {
	margin: 0px auto;
	text-align: left;
	position: relative;
	padding: 0px;
	max-width: 500px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	background: #f1fbfe;
	border: 1px solid #01416b;
	box-shadow: 0px 0px 3px #01416b;
	-moz-box-shadow: 0px 0px 3px #01416b;
	-webkit-box-shadow: 0px 0px 3px #01416b;  
}
div.Popup div.Body div.Body {
   border: 0;
}
div.Popup div.Legal,
div.Popup .Content form {
	max-height: 450px;
	overflow: auto;
	padding: 0 10px 10px;
}
div.Popup .Loading {
  text-align: center;
}
div.Popup h1,
div.Popup h2 {
	padding: 6px 9px 4px;
	text-shadow: 0 1px 0 #fff;
	border-radius: 4px 4px 0 0;
	-webkit-border-radius: 4px 4px 0 0;
	-moz-border-radius: 4px 4px 0 0;
	font-size:14px;
	font-weight:bold;
	margin-bottom: 0;
	color: #f8fdff;
	background: url('http://www.sandithom.com/forums/applications/dashboard/design/images/dashboard-bg.png') top center repeat-x #014687;
	border-bottom: 1px solid #000;
	text-shadow: 0 1px 0 #000;
}
div.Popup h3 {
	font-size: 13px;
	font-weight: bold;
	padding: 20px 0 10px;
}
div.Popup p {
	padding: 6px 10px 10px;
}
div.Popup small {
	font-size: 80%;
}
div.Popup form p {
	padding: 0;
}
div.Popup form ul li label {
	color:#222;
	display:block;
	font-size:14px;
	font-weight:bold;
	margin: 10px 0 0;
}
div.Popup form ul li label.RadioLabel,
div.Popup form ul li label.CheckBoxLabel {
	font-weight: normal;
}
div.Popup input.Button {
	margin: 4px 0 2px;
}
body.Entry div.Popup p {
	color: #000;
}
/* Note: The close class is used on the "close" anchor in popups. */
a.Close {
	line-height: 1;
	color: #555;
	cursor: pointer;
	font-family: arial;
	font-size: 22px;
	font-weight: bold;
	padding: 0;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	background: url('images/dashboard-sprites.png') 5px -795px no-repeat #000;
	border-bottom: 1px solid #006edf;
	position:absolute;
	right:10px;
	top:7px;
	height: 18px;
	width: 18px;
	overflow: hidden;
}
a.Close span {
	display: none;
}
a.Close:hover {
	color: #111;
}
div.Popup .Footer {
	border: none;
	background: none;
	padding: 0;
	margin: 0;
	text-align: right;
}
div.Popup .Footer input.Button {
	font-size: 11px;
	margin-right: 2px;
}

/* ==================================================================== Legal */
div.Legal ol {
	list-style-position:outside;
	list-style-type:decimal;
	margin:0 30px 10px;
}
div.Legal ul {
	list-style-position:outside;
	list-style-type:disc;
	margin:0 30px 10px;
}
div.Legal li {
	padding: 5px 0;
}
div.Legal strong {
	font-weight: bold;
}
div.Legal em {
	font-style: italic;
}
div.Legal p {
	padding: 6px 0 10px;
	margin: 0;
}
div.Legal h3 {
	font-weight: bold;
	padding: 6px 0 4px !important;
	margin: 0 !important;
	border: none !important;
	background: none !important;
}
div.Legal {
	margin: 10px;
	padding: 2px 8px;
	border: 1px solid #a5d0e7;
   border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	background: #f6ffff;
}
div.Popup div.Legal {
	margin: 0;
	padding: 0 10px 10px;
	border: none;
	background: none;
   border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
}



/* =================================================================== Themes */
div.CurrentTheme img,
div.BrowseThemes img {
	border: 1px solid #777;
}
div.CurrentTheme h3,
div.BrowseThemes h3 {
	padding: 0 0 10px;
}
.CurrentTheme img {
	float: left;
	margin: 20px;
}
.CurrentTheme {
	min-height: 200px;
	margin:0;
}
.CurrentTheme h4 {
	padding: 6px 0;
}
.CurrentTheme h4 span {
	padding-left: 10px;
}
div.Description {
	padding: 0 20px 20px;
}
div.Options,
div.CustomThemeOptions {
	padding: 0 20px;
}
table.SelectionGrid {
	background: none;
	margin: 0;
	border: none;
}
table.SelectionGrid td {
	width: 33%;
	border: 1px solid #a5d0e7;
	border-width: 0 0 1px;
	padding: 16px;
	vertical-align: top;
}
table.Themes td {
   min-width: 235px;
}
table.Themes td h4 {
	padding: 6px 0;
}
table.SelectionGrid td.FirstCol {
	border-right: 1px solid #a5d0e7;
}
table.SelectionGrid td.EmptyCol,
table.SelectionGrid td.LastCol {
	border-left: 1px solid #a5d0e7;
}
table.SelectionGrid td.FirstCol,
table.SelectionGrid td.EmptyCol,
table.SelectionGrid td.LastCol,
table.SelectionGrid td {
	border-color: #e0e0e0;
}
table.SelectionGrid h4 {
   color:#02455B;
   font-size:16px;
   margin-bottom:10px;
   text-shadow:0 1px 0 #FFFFFF;
}
table.SelectionGrid em {
   display: block;
   padding: 3px 0 8px;
   font-style: oblique;
}
table.SelectionGrid div.Buttons {
   float: right;
   width: 70px;
   text-align: center;
}
table.SelectionGrid div.Buttons a {
   display: block;
   padding: 2px 4px;
   margin: 4px 0;
}
table.Themes em {
	padding-top: 13px;
}
table.Themes div.Buttons a {
	margin: 0 0 8px;
}
table.SelectionGrid dl {
	padding: 0 0 10px;
}
table.SelectionGrid dl dt {
	display: inline;
   color: #000;
   border-right: 1px solid #e2f4ff;
   padding: 4px 6px 4px 0;
   margin: 0 4px 0 0;
}
table.SelectionGrid dl dd {
	display: inline;
}
table.SelectionGrid td.Active {
   -moz-background-clip:border;
   -moz-background-inline-policy:continuous;
   -moz-background-origin:padding;
   background:#e2f4ff none repeat scroll 0 0;
}


#dashboard_user_browse #Content form div.Info,
#dashboard_user_index #Content form div.Info {
	padding: 10px 10px 0;
}
#dashboard_user_browse #Content form input.Button,
#dashboard_user_index #Content form input.Button {
	margin: 0 20px 10px;
}
#Content form input.Button {
	margin: 0 20px 20px;
}
/* A general rule to remove padding from info (form adds it) */
#Content form ul div.Info {
	padding: 0;
	margin: 10px 0;
}
/* Exceptions to padding rule */
body#dashboard_settings_registration #Content form ul div.Info {
	padding: 10px;
	margin: 10px;
}
table tbody td.Info strong,
a.SmallButton {
	margin-right: 10px;
}
#dashboard_settings_registration #Content form ul {
	padding: 0;
}
body.Import table {
	margin-bottom: 20px;
}
body.Import .Button {
	margin: 0 0 0 20px;
}
#InvitationExpiration {
	padding: 0 20px;
}
table.AltRows tr.Disabled th,
table.AltRows tr.Disabled td,
table.AltColumns tr.Disabled th,
table.AltColumns tr.Disabled td,
table.AltColumns th.Alt,
table.AltColumns td.Alt {
	background: none;
}
table.AltRows tr.Enabled th,
table.AltRows tr.Enabled td,
table.AltColumns tr.Enabled th,
table.AltColumns tr.Enabled td {
	background: #ff8;
}
.CheckBoxGrid tbody th,
.CheckBoxGrid thead td,
.CheckBoxGrid thead td.Alt,
.CheckBoxGrid thead th,
.CheckBoxGrid thead th.Alt,
table thead th,
table thead td,
table.AltColumns thead th.Alt,
table.AltColumns thead td.Alt {
	background: #dbf3fc;
	font-size: 13px;
	color: #222;
	text-shadow: 0 1px 0 #fff;
}
table th,
table td {
	padding: 6px 6px 6px 20px;
}
table tbody th,
table tbody td {
	border-bottom: 1px solid #e0e0e0;
}
table tbody tr:last-child th,
table tbody tr:last-child td {
	border-bottom: none;
}
.CheckBoxGrid td.Alt {
	background: none;
}

li.RolePermissions table.CheckBoxGrid tbody tr th a {
	white-space:nowrap;
}

li.RolePermissions table.CheckBoxGrid tbody tr th a span.Parent {
	display:inline;
}

/* Summary Tables */
div.Summary {
   clear: left;
   margin: 20px 0 20px 20px;
   width: 46%;
   display: inline-block;
   vertical-align: top;
}
div.Summary table {
   margin: 0;
   padding: 0;
}
div.Summary table th,
div.Summary table td {
   font-size: 11px;
   padding: 4px 6px;
}
div.Summary table tbody th {
   font-weight: normal;
}
div.Summary table thead td,
div.Summary table tbody td {
   width: 80px;
   padding: 4px 6px 4px 0;
}

/* =================================================================== Footer */
#Foot {
   clear: both;
   font-size: 13px;
   color: #076C8E;
   font-weight: bold;
	padding: 4px 18px 2px;
	position: relative;
	background: url('http://www.sandithom.com/forums/applications/dashboard/design/images/dashboard-bg.png') center -96px repeat-x #014687;
	border: none;
	border-bottom:1px solid #000204;
}
#Foot img {
	display: none;
}
#Foot a {
	color: #076C8E;
}
#Foot .Version {
	position: absolute;
	bottom: 10px;
	right: 20px;
	color: #5F9BBF;
	font-size: 12px;
	font-weight: normal;
	padding-bottom: 5px;
}
#Foot div a {
	display: block;
	background: url('http://www.sandithom.com/forums/applications/dashboard/design/images/logo_footer.png') center center no-repeat;
	height: 32px;
	width: 72px;
	margin: 6px 0 10px;
}

.Tag {
   background: #555;
   color: #fff;
   border-radius: 2px;
   -moz-border-radius: 2px;
   -webkit-border-radius: 2px;

   font-size: 11px;
   padding: 1px 6px !Important;
}

.NumberedPager {
   font-size:16px;
   font-weight:bold;
   margin:1px 0 0;
   text-align:right;
}

.NumberedPager a,
.NumberedPager span {
	padding: 0 4px;
}
.NumberedPager span,
.NumberedPager a.Highlight {
	color: #777;
}
.NumberedPager a.Next,
.NumberedPager span.Next,
.NumberedPager a.Previous,
.NumberedPager span.Previous {
	font-size: 16px;
	line-height: 10px;
}
.NumberedPager a.Next,
.NumberedPager span.Next {
	margin-left: 6px;
}
.NumberedPager a.Previous,
.NumberedPager span.Previous {
	margin-right: 6px;
}

/* Help Links */
.Help {
   padding: 8px;
	line-height: 1;
}
.Help h2 {
   font-size: 14px;
	font-weight: bold;
	text-shadow: none;
   margin: 0 0 10px;
}
.Help ul {
   list-style: disc;
   margin-left: 19px;
}
.Help li {
   margin-top: 6px;
	line-height: 1.5;
}
.Aside {
   border: solid 1px #ccc;
   background: #ff8;
   border-radius: 3px;
   -moz-border-radius: 3px;
   -webkit-border-radius: 3px;
   width: 220px;
   float: right;
   z-index: 200;
   position: relative;
   margin: 6px;
}

/* Homepage Admin */
.HomeOptions {
	padding: 0 20px;
}
.HomeOptions a {
	color: #333;
	font-weight: bold;
	text-decoration: none;
	display: inline-block;
	vertical-align: bottom;
	width: 180px;
	margin: 0 10px 10px 0;
	padding: 0 6px;
	border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border: 1px solid #ddd;
	background: url('http://www.sandithom.com/forums/applications/dashboard/design/images/homepage-sprites.png') 6px 23px no-repeat #eee;
	height: 152px;
}
.HomeOptions a.categoriesdiscussions { background-position: -184px 23px; }
.HomeOptions a.categoriesall { background-position: -564px 23px; }
.HomeOptions a.activity { background-position: -374px 23px; }
.HomeOptions a:hover {
	background-color: #f5f5f5;
	border-color: #ccc;
}

ol.Sortable, ol.Sortable ol {
	margin: 0 0 0 25px;
	padding: 0;
	list-style-type: none;
}
ol.Sortable {
	margin: 0;
	background: #f3f3f3;
}
.Sortable li {
	margin: 0;
	padding: 0;
}
.Sortable li div  {
	padding: 0;
	margin: 0;
	cursor: move;
}
.Placeholder {
	background-color: #cfcfcf;
}
.SortableError {
	background:#fbe3e4;
	color:#8a1f11;
}
.Sortable table {
	border: 1px solid #e0e0e0;
	border-right: none;
	margin: -1px 0 0 -1px;
}
.Sortable table td {
	vertical-align: top;
	padding: 6px;
	background: #fff;
	border-bottom: none;
}
.Sortable table td strong,
.Sortable table td blockquote {
	display: block;
}
.Sortable table td.Buttons {
	text-align: right;
	padding: 6px 0;
}

/* ==================================================================== Feeds */
.FeedItem {
	padding: 6px 10px;
}
.FeedItem a {
	font-size: 13px;
	display: inline;
	font-weight: bold;
	margin-right: 12px;
}
.FeedItem .Date {
	display: inline;
	font-size: 12px;
	color: #888;
}
.FeedItem em {
	color: #333;
	font-size: 12px;
	display: block;
}