/* -----------------------------------------------------------------------


 Blueprint CSS Framework 0.9
 http://blueprintcss.org

   * Copyright (c) 2007-Present. See LICENSE for more info.

----------------------------------------------------------------------- */

/* -------------------------------------------------------------- 
  
   reset.css
   * Resets default browser CSS.
   
-------------------------------------------------------------- */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, code,
del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}

body { 
  line-height: 1.5; 
}

/* Tables still need 'cellspacing="0"' in the markup. */
table { border-collapse: separate; border-spacing: 0; }
caption, th, td { text-align: left; font-weight: normal; }
table, td, th { vertical-align: middle; }

/* Remove possible quote marks (") from <q>, <blockquote>. */
blockquote:before, blockquote:after, q:before, q:after { content: ""; }
blockquote, q { quotes: "" ""; }

/* Remove annoying border on linked images. */
a img { border: none; }




/* -------------------------------------------------------------- 

   typography.css
   * Sets up some sensible default typography.
   
-------------------------------------------------------------- */

/* Default font settings. 
   The font-size percentage is of 16px. (0.75 * 16px = 12px) */
html { font-size:100.01%; }
body { 
  font-size: 75%;
  color: #222; 
  background: #fff url('images/background_top.jpg') repeat-x top left;
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
}


/* Headings
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6 { font-weight: normal; color: #111; }

h1 { font-size: 3em; line-height: 1; margin-bottom: 0.5em; }
h2 { font-size: 2em; margin-bottom: 0.75em; }
h3 { font-size: 1.5em; line-height: 1; margin-bottom: 1em; }
h4 { font-size: 1.2em; line-height: 1.25; margin-bottom: 1.25em; }
h5 { font-size: 1em; font-weight: bold; margin-bottom: 1.5em; }
h6 { font-size: 1em; font-weight: bold; }

h1 img, h2 img, h3 img, 
h4 img, h5 img, h6 img {
  margin: 0;
}

h3.section_heading {
	margin-bottom: 1.6em;
	padding-bottom: 0.5em;
	border-bottom: 1px solid #AAA;
}

h3.form_heading {
	color: #6D889B;
	display: inline;
}


/* Text elements
-------------------------------------------------------------- */

p           { margin: 0 0 1.5em; }
p img.left  { float: left; margin: 1.5em 1.5em 1.5em 0; padding: 0; }
p img.right { float: right; margin: 1.5em 0 1.5em 1.5em; }

a:focus, 
a:hover     { color: #121D23; }
a           { color: #2B414D; text-decoration: underline; }

blockquote  { margin: 1.5em; color: #666; font-style: italic; }
strong      { font-weight: bold; }
em,dfn      { font-style: italic; }
dfn         { font-weight: bold; }
sup, sub    { line-height: 0; }

abbr, 
acronym     { border-bottom: 1px dotted #666; }
address     { margin: 0 0 1.5em; font-style: italic; }
del         { color:#666; }

pre 				{ margin: 1.5em 0; white-space: pre; }
pre,code,tt { font: 1em 'andale mono', 'lucida console', monospace; line-height: 1.5; }


/* Lists
-------------------------------------------------------------- */

li ul,
li ol       { margin: 0; }
ul, ol      { margin: 0 1.5em 1.5em 0; padding-left: 3.333em; }

ul          { list-style-type: disc; }
ol          { list-style-type: decimal; }

dl          { margin: 0 0 1.5em 0; }
dl dt       { font-weight: bold; }
dd          { margin-left: 1.5em;}


/* Tables
-------------------------------------------------------------- */

table       { margin-bottom: 1.4em; width:100%; }
th          { font-weight: bold; }
thead th 		{ background: #c3d9ff; }
th,td,caption { padding: 4px 10px 4px 5px; }
tr.even td  { background: #e5ecf9; }
tfoot       { font-style: italic; }
caption     { background: #eee; }


/* Misc classes
-------------------------------------------------------------- */

.small      { font-size: .8em; margin-bottom: 1.875em; line-height: 1.875em; }
.large      { font-size: 1.2em; line-height: 2.5em; margin-bottom: 1.25em; }
.hide       { display: none; }

.quiet      { color: #666; }
.loud       { color: #000; }
.highlight  { background:#ff0; }
.added      { background:#060; color: #fff; }
.removed    { background:#900; color: #fff; }

.top        { margin-top:0; padding-top:0; }
.bottom     { margin-bottom:0; padding-bottom:0; }

.right 			{ float: right; margin-right: 5px;}
.left 			{ float: left; }



/* --------------------------------------------------------------

   forms.css
   * Sets up some default styling for forms
   * Gives you classes to enhance your forms

   Usage:
   * For text fields, use class .title or .text
   * For inline forms, use .inline (even when using columns)

-------------------------------------------------------------- */

label       { font-weight: bold; }
fieldset    { padding:1.4em; margin: 0 0 1.5em 0; border: 1px solid #ccc; }
legend      { font-weight: bold; font-size:1.2em; }


/* Form fields
-------------------------------------------------------------- */

input[type=text], input[type=password],
input.text, input.title,
textarea, select {
  background-color:#fff;
  border:1px solid #bbb;
}
input[type=text]:focus, input[type=password]:focus,
input.text:focus, input.title:focus,
textarea:focus, select:focus {
  border-color:#666;
}

input[type=text], input[type=password],
input.text, input.title,
textarea, select {
  margin:0.5em 0;
}

input.text,
input.title   { width: 300px; padding:3px; }
input.title   { font-size:1.2em; }
textarea      { width: 390px; height: 250px; padding:5px; }

input[type=checkbox], input[type=radio],
input.checkbox, input.radio {
  position:relative; top:.25em;
}

form.inline { line-height:3; }
form.inline p { margin-bottom:0; }


/* Success, notice and error boxes
-------------------------------------------------------------- */

.notice, .success, .warning, .error, .validation {
    border: 1px solid;
    margin: 10px 0px;
    padding:15px 10px 15px 50px;
    background-repeat: no-repeat;
    background-position: 10px center;
}
.notice {
    color: #00529B;
    background-color: #BDE5F8;
    background-image: url('images/info.png');
}
.success {
    color: #4F8A10;
    background-color: #DFF2BF;
    background-image:url('images/success.png');
}
.warning {
    color: #9F6000;
    background-color: #FEEFB3;
    background-image: url('images/warning.png');
}
.error {
    color: #D8000C;
    background-color: #FFBABA;
    background-image: url('images/error.png');
}

.validation {
    color: #D63301;
    background-color: #FFCCBA;
    background-image: url('images/warning.png');
}

.notice a   	{ color: #00529B; }
.success a  	{ color: #4F8A10; }
.warning a		{ color: #9F6000; }
.error a    	{ color: #D8000C; }
.validation a { color: #D63301; }


/* -----------------------------------------------------------------------

 ClickAP Video Server - site specific CSS

   * @Copyright (c) Click-AP Learning Technology co.,ltd.
   * @Author (jack@click-ap.com)
   
----------------------------------------------------------------------- */

/* Layout
----------------------------------*/
div#top_header {
    height: 58px;
    padding-top: 15px;
}

div#logo_container {
	padding-left: 20px;
	float: left;
}

div#menu_container {
	padding-right: 20px;
	float: right;
	height: 39px;
	padding-top: 20px;
}

/* menu rollovers - from http://www.chromaticsites.com/blog/css-image-rollovers-accessible-standard-compliant-flicker-free */
a.dashboard {
	display: block;
	width: 82px;
	height: 26px;
	background: url('images/SignIn.png') no-repeat 0;
	overflow: hidden;
	text-indent: -10000px;
	outline: 0 none;
	font-size: 0px;
	line-height: 0px;
}

a.logout {
	display: block;
	width: 82px;
	height: 26px;
	background: url('images/Logout.png') no-repeat 0;
	overflow: hidden;
	text-indent: -10000px;
	outline: 0 none;
	font-size: 0px;
	line-height: 0px;
}

a.resque {
	display: block;
	width: 62px;
	height: 26px;
	background: url('images/queue.gif') no-repeat 0 -52px;
	overflow: hidden;
	text-indent: -10000px;
	outline: 0 none;
	font-size: 0px;
	line-height: 0px;
}

a:hover.resque {
	background-position: 0 0px;
}

a:active.resque {
	background-position: 0 0px;
}

ul.menu {
	margin: 0 auto;
	padding: 0;
}

ul.menu li{
    text-align: left;
    float: left;
    list-style: none;
		margin-right: 6px;
}

/* Tables
----------------------------------*/
/* Index View Table*/
table.index_view th {
	color: #6D889B;
	border-right: 1px solid #C1DAD7;
	border-bottom: 1px solid #C1DAD7;
	border-top: 1px solid #C1DAD7;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-align: left;
	padding: 6px 12px 6px 12px;
	background-color: #EDF4FF;
}

.index_view th.first {	
	border-left: 1px solid #C1DAD7;
}

.index_view th.nobg {
	border-top: 0;
	border-left: 0;
	border-right: 0;
	border-bottom: 1px solid #C1DAD7;
	background: none;
}


.index_view td {
	border-right: 1px solid #C1DAD7;
	border-bottom: 1px solid #C1DAD7;
	background: #fff;
	padding: 6px 12px 6px 12px;
	color: #6D889B;
}

.index_view td.first {
	border-left: 1px solid #C1DAD7;
	width: 55px;
	text-align: right;
}

.index_view td.last {
	text-align: right;
	min-width: 240px;
}


.index_view td.alt {
	background: #F5FAFA;
	color: #B4AA9D;
}

.index_view td.firstalt {
	border-left: 1px solid #C1DAD7;
}

/* Details View table */
table.details_view {
	border-top: 1px solid #C1DAD7;
	border-left: 1px solid #C1DAD7;
	border-right: 1px solid #C1DAD7;
}

.details_view td {
	border-bottom: 1px solid #C1DAD7;
}

.details_view td.first {
	background-color: #EDF4FF;
	border-right: 1px solid #C1DAD7;
	width: 150px;
	text-align: right;
	color: #6D889B;
	font-weight: bold;
}

.form_area
{
	border: 1px solid #C1DAD7;
	margin: 10px 0px;
  padding: 15px 10px 15px 25px;
	color: #6D889B;
	background-color: #EDF4FF;
}

/* Main Content DIV*/
#content {
	padding: 20px;
}

/* Client Table Action Links */

a[class = 'video'] {
	padding-left: 16px;
  background: transparent url(images/video_icon.png) no-repeat center left;
}

a[class = 'show'] {
	padding-left: 16px;
  background: transparent url(images/show_icon.png) no-repeat center left;
}

a[class = 'insert'] {
	padding-left: 16px;
  background: transparent url(images/insert_icon.png) no-repeat center left;
}

a[class ='edit'] { 
   padding-left: 16px;
   background: transparent url(images/edit_icon.png) no-repeat center left;
}

a[class = 'remove'] {
	padding-left: 16px;
  background: transparent url(images/remove_icon.png) no-repeat center left;
}

a[class = 'reencode'] {
	padding-left: 16px;
  background: transparent url(images/edit_icon.png) no-repeat center left;
}


div.form_header {
	margin-bottom: 2em;
}

#client_details {
	margin-top:20px; 
	padding-bottom: 20px;
}

.attribute_name {
	color: #6D889B;
	font-weight: bold;
	margin-right: 5px;
}

.section {
	margin-bottom: 30px;
}

.model_details {
	margin-bottom: 15px;
}

ul.table_list {
	margin: 0px;
	padding: 0px;
	list-style-position: inside;
}


/* Video Two Column Layout
   taken from http://www.sohtanaka.com/web-design/liquid-fixed-two-column-layouts/
------------------------------------------------------------------------------------ */

ul.column{
	margin: 10px 0;
	padding: 0;
	list-style: none;
	float: left;
	width: 100%;
}
ul.column li.column_li {
	float: left;
	width: 100%;
	padding: 10px 0;
	margin-bottom: 10px;
}

ul.column li.column_li .imgblock {
	font-weight: bold;
	float: left;
	width: 200px;
	padding: 0 10px;
	text-align: center;
	color: #6D889B;
}
ul.column li.column_li .imgblock img {
	padding: 5px;
	margin-bottom: 5px;
}

ul.column li.column_li .detail{
	padding-left: 230px;
}