@charset "UTF-8";
/* CSS Document */

/* --------------------------------------

= CONTENTS =

1.  USUAL TAGS - general styling
2.  SMALL CLASSES - general classes
3.  LAYOUT - basic layout
4.  MENUS - main menu, submenu 
5.  LISTS
6.  MESSAGES - information/error messages
7.  FORMS
8.  BUTTONS
9.  BOXES
10. TABLES
11. TABS
12. PAGE SPECIFIC



= COLOURS =

blue, pale		-	#cedae3		-	body bg;
blue, dark		-	#2f5d84		-	text;
orange, dark	-	#d26a1e		-	h1, links;
red, cherry		-	#C5513E		-	error bg;
blue, sky		-	#4586be		-	info bg;
blue, v.pale	-	#ebf0f4		-	content bg, submenu selected bg;
blue, medium	-	#57738b		-	menu bg;
orange, medium	-	#e58a45		-	menu selected bg;
orange, pale	-	#f7e9df		-	submenu bg;
blue, vv.pale	-	#f4f7f9		-	box bg;
white			-	#ffffff		-	white box bg;
blue, navy		-	#57738b		-	table header bg;


--------------------------------------*/



/* --------------------------------------
1. USUAL TAGS 
--------------------------------------*/

html {
	background: #cedae3;
	color: #2f5d84;
	overflow-y: scroll;
}

body {
	background: #cedae3 url(/img/body_bg.jpg) top repeat-x;
	font-family: helvetica, helvetica nueue, arial, sans-serif;
	color: #2f5d84;
	font-size: 10px;
	padding: 0px;
	margin: 0px;
	line-height: 1.2;
	padding-bottom: 50px;
	}

a {
	text-decoration: none;	
	color: #2f5d84;
	border-bottom: 1px dotted #f58c3c;
}

a:hover {
	text-decoration: none;
	color: #d26a1e;
	border-bottom: 1px dotted #2f5d84;
}

p a {color: #d26a1e;}
p a:hover {color: #447ba8;}

th a {
	text-decoration: none;	
	color: #ffffff;
	border-bottom: 1px dotted #ffffff;
}

th a:hover {
	text-decoration: none;	
	color: #cedae3;
	border-bottom: 1px dotted #cedae3;
}

a img {border: 0px;}

h1 {
	font-size: 3em;
	color: #d26a1e;
	font-weight: normal;
	text-transform: lowercase;
	margin-top: 0px;
	}

h2 {
	font-size: 2.2em;
	border-bottom: 1px solid #ced7df;
	font-weight: normal;
	margin: 1.3em 0em .5em;
	}

h3 {
	font-size: 1.8em;
	border: 0px;
	}

h4 {
	font-size: 1.5em;
	border: 0px;
}

code { font-size: 1em; }


pre { font-size: 12px; }

/* --------------------------------------
2. SMALL CLASSES
--------------------------------------*/

/* COLS
* these are used to divide the main content area into columns based on a five column graph
* ie. div.one-col is the width of one column in the 5 column graph, div.two-col is the width of two columns, etc.
*/
div.one-col {width: 152px; float: left;  margin-right: 8px;}
div.two-col { width: 310px; float: left; margin-right: 45px;}
div.three-col { width: 464px; float: left; margin-right: 45px;}
div.three-col-upgrade { width: 464px; float: left; margin-right: 31px;}
div.four-col {width: 675px; float: left;}

.no-margin {margin: 0px !important; }
.no-border {border: 0px;}
.no-border:hover {border: 0px;}
.hidden {display: none;}
.left {float: left;}
.right {float: right;}
.center {margin: 0px auto;}
.clear {clear: both;}
.italics { font-style: italic;}
.bold { font-weight: bold;}
.upperfirst { text-transform: capitalize;}
.blue {color: #2f5d84;}
.orange {color: #d26a1e;}
.big {font-size: 1.1em;}
.padleft {margin-left: 25px;;}

/*white links*/
a.whitelink {
	color: #eaeff3;
	border-bottom: 1px dotted #eaeff3;
}

a.whitelink:hover {
	color: #cedbe3;
	border-bottom: 1px dotted #cedbe3;
}

/*big links*/
a.biglink {
	text-decoration: none;	
	color: #2f5d84;
	border-bottom: 1px dotted #f58c3c;
	font-size: 3.4em;
	font-weight: bold;
}

a.biglink:hover {
	text-decoration: none;
	color: #d26a1e;
	border-bottom: 1px dotted #2f5d84;
}



#content .bigtext {
	font-size: 2.7em;
	margin-top: 0px;
}

#content .mediumtext {font-size: 1.7em;}

#content .smalltext {font-size: .85em;}

img.bottom {
	margin-top: -10px;
	clear: both;
	}
	
.date {
	font-size: .72em;
	font-style: italic;
	}	
	
#content p,
#content ul,
#content ol {
	font-size: 1.3em;
	line-height: 1.3;
}	

/* --------------------------------------
3. LISTS
--------------------------------------*/

ul.features {
	list-style-type: none;
	margin; 0px;
	padding: 0px;
	margin-left: 1em;
	height: 156px;
}

ul.features li {
	background: url(/img/icon_tick.gif) 0px 3px no-repeat;
	padding-left: 18px;
	}
	
#content ul.files {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	font-size: 1em;
	font-family: courier;
	}	

ul.steps {
	list-style-type: decimal;
	margin; 0px;
	padding: 0px;
	margin-left: 4.5em;
}

ul.steps li {
	padding-left: 10px;
	font-size: 1.8em;
}

ul.biglist {
	list-style-type: square;
	margin; 0px;
	padding: 0px;
	margin-left: 4.5em;
}

ul.biglist li {
	padding-left: 10px;
	font-size: 1.4em;
}

li.nobullet {
	list-style-type: none;
}
	
/* --------------------------------------
4. MESSAGES
--------------------------------------*/

/* error message */

div.error input.field {
	margin-bottom: 4px;
}

div.error label {
	font-weight: bold;
	color: #C5513E;
}

div.error-message {
	color: #C5513E;
	font-size: 1.3em;
	margin-bottom: 2.3em;
	/*display: none;*/
}

.error-outer {
	background: #C5513E url(/img/error_bottom.gif) bottom center no-repeat;
	color: #fff;
	width: 496px;
	margin-bottom: 1.5em;
	font-size: 1.3em;
	margin-right: auto;
	margin-left: auto;
}

/*.error {
	background: url(/img/error_top.gif) top left no-repeat;
	padding: 1em 1em 1em 4em;
	min-height: 20px;
	}*/

.message {
	background: url(/img/error_top.gif) top left no-repeat;
	padding: 1em 1em 1em 4em;
	min-height: 20px;
	/*line-height: 1.3em;*/
	font-size: 1.3em;
	}

/* info message */
.info-outer {
	background: #4586be url(/img/info_bottom.gif) bottom center no-repeat;
	color: #fff;
	width: 496px;
	margin-bottom: 1.5em;
	font-size: 1.3em;
	margin-right: auto;
	margin-left: auto;
	}

.info {
	background: url(/img/info_top.gif) top left no-repeat;
	padding: 1em 1em 1em 4em;
	min-height: 20px;
	font-size: 1.3em;
	}

div.dialog-small {
	font-size: .4em;
}

#content .error p, #content .info p {margin: 0px; }

/* --------------------------------------
5. LAYOUT 
--------------------------------------*/

#container {
	width: 930px;
	margin: 0px auto;
	}

/* header */
#header {
	width: 900px;
	margin: 0px auto;
	padding-top: 65px;
	height: 115px;
}

#discussbutton {
	color: #ffffff;
	font-size: 1.2em;
	margin: 0px;
	position: absolute;
	top: 15px;
	right: 20px;
	text-align: center;
	float: none;
	width: 85px;
}

#discussbutton a.whitelink {
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	border-bottom: 0px;
	text-align: center;
}

#discussbutton a.whitelink:hover {
	text-decoration: none;
	border-bottom: 1px dotted #f58c3c;
}

p.toptext {
	color: #f2f9ff;
	font-size: 16px;
	margin: 0px;
	width: 470px;
	float: right;
	text-align: right;
	margin-top: .5em;
	}

/*fix for iPhone*/
.iphone p.toptext {
	font-size: 10px;
	margin: 0px;
	}

p.toptext a {
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	padding: 10px 2px 0;
	margin-right: 8px;
	margin-left: 8px;
	border-bottom: 0px;
	}

p.toptext a:hover {
	text-decoration: none;
	border-bottom: 1px dotted #f58c3c;
	}

#logo {float : left;}

#tagline {float: right;}

#main {background: #ebf0f4 url(/img/content_bg.jpg) top center repeat;}

#menu {
	background: url(/img/menu_bg.gif) top center no-repeat;
	clear: both;
	border-bottom: 4px solid #6a8297;
	height: 45px;
	width: 900px;
	margin: 0px auto;
	}

#content {
	padding: 40px 55px 20px;
	background: url(/img/content_bg_top.jpg) 0px -28px no-repeat;
	}

#footer {
	width: 930px;
	margin: 0px auto;
	padding-top: 0;
	background: url(/img/content_bg_bottom.jpg) top no-repeat;
	height: 30px;
	}

#footer p {margin: 0px;}

.copyright {
	font-size: 1.1em;
	color: #929292;
	padding-left: 35px;
}

/* --------------------------------------
6. MENUS
--------------------------------------*/

#menu ul {
	margin: 0px;
	list-style-type: none;
	padding: 0px;
	height: 50px;
	position: relative;
	z-index: 10;
	width: 60%;
	float: left;
	}

#menu ul li {
	float: left;
	margin: 0px;
	height: 30px;
	padding-top: 16px;
	padding-bottom: 7px;
	}

#menu ul li a {
	color: #bfcfdf;
	font-size: 1.8em;
	border-bottom: 0px;
	padding: .95em 1.4em .50em;
	line-height: none;
	}

#menu ul li a:hover {color: #fff;}

#menu ul li.current a {
	color: #fff;
	background: #e58a45 ;
	}

#menu ul li.first.current a { background: #e58a45 url(/img/menu_corner_current.gif) top left no-repeat; }

#menu ul li.current {background: url(/img/menu_arrow.gif) bottom center no-repeat;}

#menu #loginout {
	margin: 0px;
	color: #bfcfdf;
	float: right;
	font-size: 1.2em;
	padding-top: 1.6em;
	padding-right: 2em;
	}

#menu #loginout a {color: #fff;}

#menu #loginout a:hover {border-bottom: 1px dotted #fff;}


/* submenu */
#submenu {
	background: url(/img/content_bg_top.jpg) top center no-repeat;
	height: 30px;
	clear: left;
	}

#submenu ul {
	margin: 0px;
	list-style-type: none;
	padding: 0px;
	width: 900px;
	margin: 0px auto;
	height: 30px;
	background: #f7e9df;
	}

#submenu ul li {
	float: left;
	margin: 0px;
	}

#submenu ul li a {
	color: #40607b;
	font-size: 1.25em;
	border-bottom: 0px;
	padding: .7em 2.21em .6em;
	display: block;
	}

#submenu ul li a:hover { color: #d26a1e; }

#submenu ul li.current a{
	background-color: #F6FAFD;
	color: #d26a1e;
	}


 --------------------------------------
7. FORMS
--------------------------------------

/* general */

form {margin: 0px;}

label {
	font-size: 1.5em;
	clear: left;
	display: block;
	margin-bottom: 0;
	text-transform: lowercase;
	}

.label {
	font-size: 1.5em;
	margin-bottom: 0;
	text-transform: lowercase;
	}

input, select {margin-top: 3px; text-transform: none;}

select.field, textarea.field {
	margin-bottom: 16px;
}

input.field {
	/*font-family: helvetica, helvetica nueue, arial, sans-serif;*/
	border: 0px;
	background: #fff url(/img/field_bg_2col.gif);
	margin-bottom: 16px;
	color: #57738b;
	font-style: italic;
	padding: 7px 8px;
	width: 296px;
	height: 17px;
	font-size: 1.4em;
	line-height: 1.2;
	}

input.fieldsmall {
	/*font-family: helvetica, helvetica nueue, arial, sans-serif;*/
	border: 0px;
	background: #fff url(/img/field_bg_small.gif);
	margin-bottom: 16px;
	color: #57738b;
	font-style: italic;
	padding: 7px 8px;
	width: 49px;
	height: 17px;
	font-size: 1.4em;
	line-height: 1.2;
	}

input, radio {
	
}

textarea {
	background: #fff url(/img/textarea_bg.gif);
	border: 0px;
	height: 195px;
	width: 422px;
	padding: 1em;
	color: #38536a;
	}

/* home login form */

form#UserLoginForm input.field {
	border: 0px;
	background: #fff url(/img/field_bg_large.gif);
	height: 31px;
	width: 245px;
	font-size: 2.2em;
	color: #9eaebc;
	}

form#UserLoginForm div.submit {
	display: inline;
}

form#UserLoginForm .submit input { margin-right: 7px; }

form#UserLoginForm .forgot p {font-size: 1.2em;}
form#UserLoginForm .forgot p a {font-weight: bold;}


/* create user form */
#UserAddForm input.right { margin-right: 8px;}

/*show repo info*/
#RepoUpdatecallbackForm div {
	float: left;
	margin: 0;
}

#RepoUpdatecallbackForm input.field {
	margin-bottom: 2px;
	font-weight: bold;
	font-size: .9em;
	font-style: normal;
}

#RepoUpdatecallbackForm input.submit {
	margin-top: 10px;
	margin-left: 8px;
}

fieldset {
	border: 0;
	margin-top: 30px;
	padding: 16px 20px;
}
fieldset legend {
	background:#fff;
	color: #e32;
	font-size: 160%;
	font-weight: bold;
}
fieldset fieldset {
	margin-top: 0px;
	margin-bottom: 20px;
	padding: 16px 10px;
}
fieldset fieldset legend {
	font-size: 120%;
	font-weight: normal;
}
fieldset fieldset div {
	clear: left;
	margin: 0 20px;
}


/* --------------------------------------
8. BUTTONS
--------------------------------------*/
a.button {
	font-weight: normal;
	background:  #e08744 url(/img/button_bg.gif) top right no-repeat;
	height: 17px;
	width: 69px;
	display: block;
	color: #fff;
	padding-top: 4px;
	text-align: center;
	font-size: 12px;
	border: 0px !important;
	font-weight: normal !important;
	margin-right: 3px;
	}

a.button.large {
	background: transparent url(/img/button_bg_large.gif) top right no-repeat;
	height: 26px;
	width: 126px;
	font-size: 1.8em;
	padding-top: .3em;
	margin: 0px auto;
	}

.box table tr.open td a.button,
.box table td a.button:hover {
	background:  #e08744 url(/img/button_bg_current.gif) top right no-repeat;
	}

.delete {
	padding-top: 5px;
	display: block;
	width: 10px;
	margin: 0px auto;
	}

/*.no_underline {
	border-bottom: 0 none #fff;
}

.no_underline:hover {
	border-bottom: 0 none #fff;
}*/

/*--------------------------------------
9. BOXES
--------------------------------------*/
.box { /* max width ie. 5 cols wide by default */
	border-left: 1px solid #d5dee4;
	border-right: 1px solid #d5dee4;
	background: #f4f7f9 url(/img/table_heading_bg_5col.gif) top center no-repeat;
	padding: 2px 15px ;
	width: 782px;
	margin-top: 1em;
	}
	
.box.no-heading { background: #f4f7f9 url(/img/table_top_5col.gif) top center no-repeat; } /* no blue bar at top */

/* white bg box */
.box.white {
	background: #fff url(/img/table_top_5col_white.gif) top center no-repeat;
	border-color: #bfccd6;
	padding-top: 10px;
	}

/* 1 col width box */
.box.one-col {
	background: #f4f7f9 url(/img/table_bottom_1col.gif) bottom center no-repeat;
	border-left: 1px solid #d4dde4;
	border-right: 1px solid #d4dde4;
	width: 154px;
	padding: 0em 0em 1em;
	margin-top; 0px;
	}

.box.one-col.selected {
	background: #fff url(/img/table_bottom_1col_white.gif) bottom center no-repeat;
	border-left: 1px solid #c1ced7;
	border-right: 1px solid #c1ced7;
	}

.box.one-col h4 {
	color: #fff;
	margin: 0px;
	font-weight: normal;
	background: #57738b url(/img/table_heading_1col.gif) top right no-repeat;
	padding: .5em .7em .3em;
	}

.box.one-col.selected h4 {background: #3d5a74 url(/img/table_heading_1col_white.gif) top center no-repeat;}


/* 2 col width box */
.box.two-col.white {
	width: 263px;
	background: #fff url(/img/table_top_2col_white.gif) top right no-repeat;
	border-left: 1px solid #c1ced7;
	border-right: 1px solid #c1ced7;
	padding: 1em 1.5em;
	margin: 0px;
	float: right;
	}


/* 3 col width box */
.box.three-col {
	width: 464px;
	background: #f4f7f9 url(/img/table_heading_3col.gif) top center no-repeat;
	}

.box.three-col.no-heading {
	background: #f4f7f9 url(/img/table_top_3col.gif) top center no-repeat;
	}

.box h3 {padding: 8px 0px 5px; margin: 0px;}

/*  3 col width box dropdowns */
.box h3 a.dropdown {
	font-size: 1em;
	font-weight: normal;
	display: block;
	background: url(/img/arrow_closed.gif) 100% 40% no-repeat;
	width: 100%;
	border: 0px;
	}

.box h3 a:hover {color: #d26a1e;}

.box h3 a.dropdown.open {
	background-image: url(/img/arrow_open.gif);
	margin-bottom: 10px;
	color: #d26a1e;
	}

/* white 5 col width table */
.box.white table {
	width: 50%;
	float: left;
	}

.box.white table h3 {
	font-weight: normal;
	font-size: 1.5em;
	margin: 0px;
	padding: 0em 0em .5em;
	color: #2f5d84;
	}

.box.white table#repo-info {
	width: 70%;
}

.box.white table#users {
	width: 30%;
}

/* --------------------------------------
10. TABLES
--------------------------------------*/

/* tables in boxes */


.box table {
	border-collapse: collapse;
	font-size: 1.3em;
	width: 100%;
	}

.box table tr.heading {
	background:  #57738b;
	height: 27px;
	border-top: 0px;
	}

.box table tr.heading th {
	color: #fff;
	font-weight: normal;
	text-transform: lowercase;
	padding: .4em .5em .49em;
	text-align: left;
	}

.box table tr.heading th.text-center {
	text-align: center;
}


.box table td {
	padding: .55em;
	vertical-align: top;
	border-top: 1px solid #ced7df;
	}

.box table td a { }

.box table td a:hover {
	border-bottom: 1px dotted #f58c3c;
	}


/* --------------------------------------
11. TABS
--------------------------------------*/

.tabs-wrapper ul {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	border-top: 1px solid #e9eef2;
	}

.tabs-wrapper ul li {
	display: block;
	float: left;
	margin-right: 5px; 
	}

.tabs-wrapper ul li.tab a {
	font-size: 1.2em;
	padding-top: .4em;
	text-align: center;
	width: 80px;
	height: 25px;
	background: #d8e1e9 url(/img/tab.gif) top left no-repeat;
	display: block;
	border: 0px;
	}

.tabs-wrapper ul li.tab.selected a {
	background: #d8e1e9 url(/img/tab_selected.gif) top left no-repeat;
	z-index: 100;
	position: relative;
	top: 1px;
	}

.box.tabs {
	background: #f4f7f9 url(/img/table_top_3col.gif) top center no-repeat;
	margin-top: -1px;
	padding-top: 3em;
	}


/* --------------------------------------
12. PAGE SPECIFIC
--------------------------------------*/

/*   home page   */
.home div.three-col {
	width: 485px;
	margin-right: 40px;
	background: none;
	}

.home div.two-col {
	width: 265px;
	margin: 0px;
float: right;
	}

.home div.two-col.logged-in {
width: 295px;
margin: 0px;
float: right;
}

/*   register page   */
.register h2 {margin-top: 0px;}


/*   repository info  */
table.revision-info {width: 100%;}
table.revision-info td {
	padding: .6em 0em;
	border: 0px;
	}

table.revision-info td a {
	font-weight: normal;
	border-bottom: 1px dotted #5c778d;
	}

table.revision-info td a:hover {
	border-bottom: 1px dotted #f58c3c;
	}

table.revision-info th {
	padding: .5em 1em;
	border: 0px;
	text-align: right;
	width: 140px;
	vertical-align: top;
	}

/* list repos */
.box.five-col tr.heading th#table_name { width: 120px;}
.box.five-col tr.heading th#table_type { width: 70px; }
.box.five-col tr.heading th#table_button { width: 86px; }
.box.five-col tr.heading th#table_delete { width: 45px; }
.box.five-col tr.heading th#table_perm { width: 45px; }
.box.five-col tr.heading th#table_key { width: 48px; }

.box.five-col td div.url {
	color: #b44c01;
	font-size: .9em;
	padding-top: 8px;
	}


/* list users */
.box.three-col tr.heading th#table_username { width: 100px;}
.box.three-col tr.heading  th#table_password { width: 150px;}
.box.three-col tr.heading th#table_actions{ width: 130px;}

/* repo info */
.box.white#repo-info code {font-size: 1.2em;}

.box.white#repo-info table#users {
	width: 300px;
	float: right;
	}

.box.white#repo-info table td {
	padding: 5px 0px;
	border: 0px;
	color: #5c778d;
	}

.box.white#repo-info table#users td {padding: 3px 0px;}

.box.white#repo-info table th {
	text-align: right;
	width: 140px;
	padding-right: 1em;
	}