/* CSS Document

--------------------------------
All Together
Webdesign (c) Metallic Relation 2009
Last edited: 2010-02-15
--------------------------------

Structure:
	width
	height
	display
	position
	z-index
	float
	clear
	overflow
	margin
	padding
	border
	background
	color
	font
	text
	align

Colors Used:
	- Red: #C02824

	- Grey 1: #333
	- Grey 2 (body text): #666
	- Grey 3: #888
	- Grey 4: #ccc
	- Grey 5: #eee

*/



/*---------------------------------------------------------------
GENERAL ELEMENTS
---------------------------------------------------------------*/

html {
	height: 100%;
}
body {
	height: 100%;
	margin: 0;
	padding: 0;
	background: #fff url("../images/bg_top.png") repeat-x;
	color: #333;
	font: normal .75em verdana, sans-serif;
	text-align: center;
	line-height: 150%;
}

/* Headings */
h1 {
	font-size: 180%;
}
h2 {
	margin: 1em 0 .75em;
	font-size: 140%;
	line-height: 150%;
}
h3 {
	margin: 1.5em 0 .5em;
	font-size: 110%;
}
h4 {
	margin: 1.75em 0 0;
	font-size: 100%;
}

/* Text */
p {
	margin: 0 0 1em;
	text-align: justify;
}
abbr, acronym {
	border-bottom: 1px dotted #ccc;
	cursor: help;
}
abbr.geo {
	border-bottom: 0;
	cursor: default;
}
.geo a abbr {
	border-bottom-style: none;
	cursor: pointer;
}
blockquote, q {
	font-style: italic;
}
blockquote {
	margin: 1em 0 1em 2em;
	padding: 1em 1em 1px;
	background-color: #eee;
}
code {
	background-color: #eee;
}
pre {
	width: 96%;
	overflow: scroll;
	padding: 1em;
	background-color: #eee;
}

/* Lists */
ul, ol {
	margin: 1em 0;
	padding: 0 0 0 3em;
}
ul {
	list-style-type: square;
}
li ul, li ol {
	margin: .25em 0;
}
dl {
	margin: 1em 0;
}
dt {
	font-weight: bold;
}
dd {
	margin: 0 0 .5em 2em;
}

a:link img, a:visited img, a:hover img {
	text-decoration: none !important;
}
img.icon {
	margin-right: .75ex;
	border-style: none;
	vertical-align: middle;
}

/* Tables */
table {
	width: 100%;
	margin: 0 0 2em;
	border-collapse: collapse;
	font-size: 100%; /* IE6 */
}
caption {
	margin-top: 1em;
	padding-bottom: .5em;
	font-weight: bold;
	text-align: left;
}
td, th {
	/*min-width: 3em;*/
	padding: .25em 1.5ex;
	border: 1px solid #ccc;
	text-align: center;
}
th {
	background-color: #888;
	color: #fff;
	font-weight: bold;
}
th a:link, th a:visited {
	color: #fff;
}
th a img {
	margin-left: 1ex;
	border-style: none;
	vertical-align: middle;
}
td {
	background-color: #f9f9f9;
}
tr.odd td {
	background-color: #eee;
}

/* Forms */
form {
	margin: 1em 0;
	padding: 1em;
	padding-bottom: 0;
	border: 1px solid #ddd;
	background-color: #f9f9f9;
}
.editable form { /* inline editation -om */
	border-width: 0px;
	margin: 0;
	padding: 0;
	background-color: transparent;
}

.multiselect {
       width: 550px;
       height: 10em;
}
form fieldset {
	margin: 0;
	padding: 0;
	border-style: none;
}
form dl {
	margin: 0;
	padding: 0;
}
form dd {
	margin: .25em 0 1em;
}
input {
	margin-right: 1ex;
}
textarea {
	width: 99%;
}

p.hint {
	padding: .5em 0 .25em;
	color: #888;
	font-size: 90%;
	line-height: 140%;
}
label.required img {
	margin-left: 1ex;
	vertical-align: middle;
}
ul.errors {
	margin: .15em 0 0;
	padding: 0;
	color: #c00;
	font-size: 90%;
}
ul.errors li {
	display: block;
}

#submit {
	margin: .5em 0 0;
	padding: .15em 2ex;
	font-weight: bold;
}

/* Forms: Flash Messages */
p.error, p.warning, p.success {
	margin: 1em 0 2em;
	padding: .5em 1em;
	background-color: #eee;
	font-weight: bold;
}
p.error img, p.warning img, p.success img {
	margin-right: 1ex;
	vertical-align: middle;
}

p.error {
	background-color: #ffdfdf;
	color: #c00;
}
p.warning {
	background-color: #fde1ba;
	color: #ec8b00;
}
p.success {
	background-color: #bbf4a5;
	color: #258300;
}

/* Links */
a:link, a:visited {
	color: #C02824;
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}
a:active {
	color: #c00;
}

a.email {
	padding-right: 1.25em;
	background: transparent url("../images/email.png") no-repeat center right;
}
a.external {
	padding-right: 1em;
	background: transparent url("../images/external.png") no-repeat right 25%;
}

a img {
	padding: 2px;
	border: 2px solid #ccc;
}
a:hover img {
	border-color: #888;
}

/* Links in contents */
#contents-inner a:link, #contents-inner a:visited {
	text-decoration: underline;
}
#contents-inner a:hover {
	text-decoration: none;
}
#contents-inner a:active {
	text-decoration: none;
}



/*---------------------------------------------------------------
GENERIC CLASSES
---------------------------------------------------------------*/

.right {
	text-align: right;
}
.left {
	text-align: left;
}
.center {
	text-align: center;
}

.float-left {
	float: left;
}
.float-right {
	float: right;
}

.col-left {
	width: 48%;
	float: left;
}
.col-right {
	width: 50%;
	float: right;
}
div.clearer {
	line-height: 0;
	clear: both;
}

img.right {
	float: right;
	margin: .25em 0 1em 1em;
}
img.left {
	float: left;
	margin: .25em 1em 1em 0;
}

.hidden {
	display: none;
}



/*---------------------------------------------------------------
LAYOUT
---------------------------------------------------------------*/

/* DOCUMENT */
#document {
	width: 980px;
	height: 100%;
	margin: 0 auto;
	/*padding-bottom: 130px;*/
	text-align: left;
}
#document *::selection {
	color: #fff;
	background-color: #D8322C;
}
body > #document {
	height: auto;
	min-height: 100%;
}

/* HEADER */
#header {
	height: 143px; /*136px;*/
	position: relative;
	background: transparent url("../images/bg_header.jpg") no-repeat 228px 45px;
}

/* Logo */
#logo {
	position: absolute;
	top: 37px;
	left: 0;
}
#logo h1 {
	width: 200px;
	height: 100px;
	position: relative;
	overflow: hidden;
	margin: 0;
	line-height: 100%;
}
#logo h1 a {
	border-style: none;
	color: #333;
	text-decoration: none;
	cursor: pointer;
}
#logo h1 a:hover {
	color: #C02824;
}
#logo h1 a img {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	padding: 0;
	border-style: none;
}
#logo h1 em {
	position: absolute;
	top: 90px;
	left: 0;
	font-size: 50%;
	font-weight: normal;
	font-style: normal;
}

/* IFM-SEI logo */
#ifm-sei-logo {
	position: absolute;
	top: 42px;
	right: 10px;
}
a.logo img {
	border-style: none;
}

/* BODY */
#body {
	width: 100%;
	display: block;
	float: left;
	position: relative;
	padding-top: 0;
	padding-bottom: 30px;
}
div.column {
	float: left;
	position: relative;
	left: 100%;
}

/* BREADCRUMBS NAVIGATION */
#breadcrumbs {
	height: 24px;
	margin-bottom: 2em;
	padding-left: .75em;
	border: 1px solid #ccc;
	border-top-width: 2px;
	border-left-style: none;
	border-right-style: none;
	background: #eee;
	color: #333;
	font-size: 90%;
	line-height: 24px;
}
#breadcrumbs a:link, #breadcrumbs a:visited {
	color: #333;
}

/* SIDEBAR: Left */
#sidebar-left {
	width: 170px;
	margin-left: -100%;
	background: #fff;
}

/* Menu: Main Navigation */
#menu {
	background: #D8322C url("../images/bg_sidebar-left.png") repeat-y;
}
#menu ul {
	margin: 0;
	padding: 0;
	background: transparent url("../images/bg_menu-rt.png") no-repeat right top;
}
#menu ul li {
	display: inline;
	padding: 0;
	list-style-type: none;
}
#menu a, #menu a:link, #menu a:visited {
	display: block;
	padding: 0 1.5ex;
	border-bottom: 1px dotted #fff;
	color: #fff;
	text-decoration: none;
	line-height: 240%;
}
#menu a.active {
	font-weight: bold;
}
#menu ul li a:hover {
	text-decoration: underline;
}

/* Sidebar Boxes */
div.side-box {
	padding: .5em 1ex 1em;
	border: 1px solid #ccc;
	border-bottom-style: none;
}
div.side-box.bottom {
	border-bottom: 2px solid #ccc;
}
div.side-box h2 {
	margin: 0 0 .25em;
	font-size: 100%;
	line-height: 220%;
}
div.side-box h3 {
	float: left;
	margin: 0 0 .5em;
	font-size: 87%;
	text-align: left;
}

/* Sidebar Boxes: My Projects */
#my-projects ul, #assigned-projects ul {
	margin: .5em 0;
	padding-left: 2em;
}

/* Sidebar Boxes: Logos */
div.side-box.logos {
	padding-bottom: .75em;
	text-align: center;
}
div.side-box.logos a:link, div.side-box.logos a:visited {
	text-decoration: none;
}
div.side-box.logos img {
	margin: .25em .75em;
	border-style: none;
}

/* CONTENTS */
#contents {
	width: 640px;
	margin-left: -810px;
}
#contents div.inner {
	padding: 0 25px 1em;
}
#contents h3 {
	padding-left: 1.5em;
	background: transparent url("../images/h3.png") no-repeat left center;
}

/* SIDEBAR: Right */
#sidebar-right {
	width: 170px;
	margin-left: -170px;
}
#sidebar-right div.inner {
	padding: 0;
}

/* User */
#user {
	background: #D8322C url("../images/bg_sidebar-right.png") repeat-y right top;
}
#user div.inner {
	padding: .75em 1.5ex;
	background: transparent url("../images/bg_user-lt.png") no-repeat;
	color: #fff;
	font-size: 90%;
}
img.portrait {
	width: 60px;
	border: 1px solid #fff;
	margin: 0 1em 1em 0;
}
#user img.portrait {
	float: left;
	margin: .4em .5em .5em 0 !important; /* FIXME */
}

/* Login */
#login-box {
	margin: 0;
	padding: 0;
	border-style: none;
	background-color: transparent;
}
#login-box fieldset {
	margin: 0;
	padding: 0;
	border-style: none;
}
#login-box label {
	font-size: 90%;
}
#login-box input.text {
	width: 82%;
	margin: .15em 0 .5em;
	padding: .5ex;
	padding-right: 1.5em;
	border: 1px solid #333;
}
#login-box input.text:focus {
	border-color: #fc3;
}
#username-box {
	background: #fff url("../images/icon_username.png") no-repeat 96% center;
}
#password-box {
	background: #fff url("../images/icon_password.png") no-repeat 96% center;
}
#login-box input.submit {
	float: right;
	margin: .5em 0 .15em;
	padding: .15em 2ex;
	font-weight: bold;
}
a.register-link:link, a.register-link:visited {
	float: left;
	margin-top: 1em;
	color: #fff;
}

/* User Info */
#user a:link, #user a:visited {
	color: #fff;
}

/* Sidebar: Right: Boxes */
#box-new-projects {
	background-color: #eee;
}
#box-new-projects h2 {
	background: transparent url("../images/icon_project.png") no-repeat right center;
}
#box-featured-tools {
	clear: both;
}
#box-featured-tools h2 {
	background: transparent url("../images/icon_tool.png") no-repeat right center;
}

/* Start-new-project Button */
#b-start-new-project img {
	display: block;
	margin: 0;
	padding: 0;
	border-style: none;
}

/* Item Mini-preview */
a.item-minipreview:link, a.item-minipreview:visited {
	min-height: 65px;
	display: block;
	clear: both;
	padding-top: .5em;
	padding-bottom: .5em;
	border-top: 1px dotted #aaa;
	color: #888;
	font-size: 90%;
	line-height: 130%;
	text-decoration: none;
}
#box-featured-tools a.item-minipreview:link,
#box-featured-tools a.item-minipreview:visited  {
	min-height: auto;
}
a.item-minipreview:hover {
	color: #333;
	text-decoration: underline;
}
a.item-minipreview strong {
	color: #C02824;
	font-size: 110%;
	line-height: 160%;
	text-decoration: underline;
}
a.item-minipreview img {
	max-width: 66px;
	float: left;
	display: inline-block;
	margin: .75ex 2ex 1em 0;
	padding: 0;
	border: 1px solid #C02824;
}

/* RSS */
#b-rss-news {
	display: block;
	text-align: right;
}
#b-rss-news img {
	margin: 1.5em 0;
	padding: 0;
	border-style: none;
}

/* FOOTER */
#footer-section {
	height: 30px;
	clear: both;
	margin-top: -30px;
	background: #C02824 url("../images/bg_footer.png") repeat-x left bottom;
	text-align: center;
	line-height: 30px;
}
#footer {
	/*height: 100%;*/
	position: relative;
	margin: 0 auto;
	color: #fff;
	font-size: 90%;
}
#footer a:link, #footer a:visited {
	color: #fff;
}

/* CLEAR FIX */
.clearfix:after {
	height: 0;
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
}
.clearfix {
	display: inline-block;
}

/* Hides from IE-mac */
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}



/*---------------------------------------------------------------
CONTENT-SPECIFIC
---------------------------------------------------------------*/

/* Perex */
p.perex {
	margin: 1.5em 0;
	color: #000;
	font-size: 115%;
	line-height: 1.5em;
}

/* Date Published */
p.published {
	display: block;
	margin: 1em 0;
	color: #888;
	font-size: 90%;
}

/* Button-like Link */
.button:link, .button:visited, .disabled {
	display: inline-block;
	margin: 1em 0;
	padding: .4em 1em;
	border: 1px solid #ccc;
	background: #f9f9f9 url("../images/bg_tab-list.png") repeat-x left bottom;
	color: #333;
	font-weight: bold;
	font-size: 90%;
	text-decoration: none;
}
.button.small {
	padding: .15em .5em;
}
a.button:focus {
	outline: none;
}
a.button:hover {
	border-color: #aaa;
	background-image: none;
	color: #000;
}
a.button:active {
	background-color: #ddd;
}

.disabled {
	color: #888;
	font-weight: normal;
}

/* Feature Icons */
.feature {
	display: inline-block;
	padding-left: 2em;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: left center;
}
.feature.project {
	background-image: url("../images/icon_project-s.png");
}
.feature.tool {
	background-image: url("../images/icon_tool-s.png");
}
.feature.video {
	background-image: url("../images/icon_video-s.png");
}
.feature.note {
	background-image: url("../images/icon_note-s.png");
}
.feature.photo {
	background-image: url("../images/icon_photo-s.png");
}
.feature.event {
	background-image: url("../images/icon_event-s.png");
}

/* Paging */
div.paging {
	clear: both;
	margin: 1em 0;
}

div.paging strong, div.paging a, div.paging span {
	display: inline-block;
	margin-right: 1ex;
	padding: 0 .5ex;
	border: 1px solid #ccc;
	line-height: 180%;
}
div.paging strong {
	border-color: #C02824;
	background-color: #C02824;
	color: #fff;
}
.previous, .next {
	padding: 0 1ex !important;
}

div.paging a:link, div.paging a:visited {
	border-color: #fff;
}
div.paging a:hover, div.paging a.button {
	border-color: #ccc;
}

a.previous:link, a.previous:visited,
a.next:link, a.next:visited,
div.paging span.disabled {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 1em;
	text-decoration: none;
}
div.paging a.button:hover {
	border-color: #aaa;
}

/* UI Tabs */
div.ui-tabs {
	margin: 1em 0;
	border-style: none;
}
#tabs-search {
	margin-bottom: 3em;
}
.ui-tabs.ui-corner-all, .ui-tabs .ui-corner-all,
.ui-tabs .ui-corner-top, .ui-tabs .ui-corner-bottom {
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
}

/* UI Tabs: Navigation */
ul.ui-tabs-nav {
	margin: 0;
	padding: .2em .2em 0;
	list-style: none;
	border-style: none;
	background: transparent url("../images/bg_tab-list.png") repeat-x left bottom;
	line-height: 2.4em;
}
ul.ui-tabs-nav li {
	float: none;
	display: inline;
	margin: 0 .2em -1px 0;
	padding: 0 !important;
	border-style: none !important;
	background: transparent none !important;
}
ul.ui-tabs-nav a:link, ul.ui-tabs-nav a:visited {
	float: left;
	margin-left: 1ex;
	padding: 0 .5em;
	border: 1px solid #ddd;
	background-color: #eee;
	color: #666;
	font-weight: bold;
	text-decoration: none;
	line-height: 2em;
}
ul.ui-tabs-nav a:focus {
	outline: none;
}
ul.ui-tabs-nav a:hover {
	border-color: #C02824;
	background: #C02824;
	color: #fff;
	text-decoration: none;
}
ul.ui-tabs-nav li.ui-tabs-selected a {
	border-color: #ccc;
	border-top-width: 2px;
	border-top-color: #666;
	background: transparent url("../images/bg_tab-list.png") repeat-x left bottom;
	color: #000;
	font-weight: bold;
	line-height: 2.2em;
	text-decoration: none;
}
.ui-tabs-nav a span.feature {
	padding-left: 1.8em;
}

/* UI Tabs: Panels */
.ui-tabs .ui-tabs-panel {
	display: block;
	padding: 2em 1em;
	border: 1px solid #ccc;
}
.ui-tabs .ui-tabs-panel ul, .ui-tabs .ui-tabs-panel p {
	margin: 0;
}
.ui-tabs .ui-tabs-panel a.button {
	margin-top: 1.5em;
	margin-bottom: -1em;
}
.ui-tabs .ui-tabs-hide {
	display: none !important;
}

/* Extended Search */
#tabs-search .ui-tabs-panel {
	padding: 1em 1.5em;
	background-color: #f9f9f9;
}
#tabs-search .ui-tabs-panel form {
	margin-bottom: 0;
	padding: 0;
	border-style: none;
	background-color: transparent;
}
#tabs-search #submit {
	margin-bottom: -0.5em;
	padding: .5em 1.25em;
}

/* UI Dialog */
.ui-dialog {
	padding: 3px;
	border: 1px solid #ccc;
}
.ui-dialog-titlebar {
	background-color: #C02824;
}
.ui-widget button {
	color: #000 !important;
}

/* Dialogs: Messages */
div.error .ui-dialog-content {
    color: #c00;
}
div.warning .ui-dialog-content {
    color: #ec8b00;
}
div.success .ui-dialog-content {
    color: #258300;
}
div.info .ui-dialog-content {
    color: #000;
}
div.ui-dialog-content {
    text-align: left;
    margin: 1ex 0 0 0;
    padding-left: .5ex;
}
div.error .ui-dialog-content img,
div.warning .ui-dialog-content img,
div.success .ui-dialog-content img,
div.info .ui-dialog-content img {
    margin-right: 1.5ex;
    vertical-align: middle;
}

/* Boxes */

/* Box: Type 1 */
.box-1 {
	position: relative;
	margin: 1em 0 2.5em;
	padding: 2em 1.5em 1.25em;
	border: 1px solid #ccc;
	border-bottom-color: #ddd;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	background: #fff;
	color: #333;
}
.box-1 h2.box-heading {
	height: 28px;
	float: left;
	position: absolute;
	left: .75em;
	top: -1.3em;
	margin: .1em 0 .5em;
	padding-left: 1em;
	background: transparent url("../images/corner-1-l.png") no-repeat;
	color: #fff;
	font-weight: bold;
	font-size: 100%;
	line-height: 28px;
}
.box-1 h2.box-heading span {
	display: block;
	padding-right: 1em;
	background: transparent url("../images/corner-1-r.png") no-repeat right top;
}
.box-1 h2.box-heading strong {
	display: block;
	background-color: #666;
}

/* Box: Type 2 */
.box-2, div.texy-reference { /* FIXME - pryc s texy */
	margin: 1em 0;
	padding: .5em 1em;
	border: 1px solid #ccc;
	background-color: #f9f9f9;
}
.box-2 h3, div.texy-reference h3 { /* FIXME - totez */
	margin: 0;
	padding-left: 0 !important;
	background-image: none !important;
	font-size: 1em;
}

/* Box: Type 3 */
.box-3 {
	margin: 1em 0;
	padding: 1em;
	border: 1px solid #ccc;
	background-color: #eee;
}

/* Box: Type 4 -om */
.box-4 {
	clear: both;
	margin: .25em 0;
	padding: .75em;
	border: 1px solid #ccc;
	background-color: #f9f9f9;
	height: 60px;
}

/* Box: Intro */
#intro p {
	margin: 0;
}

/* Box: Texy Reference */
div.texy-reference h3 {
	margin: .5em 0 1em;
	border-bottom: 1px solid #ccc;
	font-size: 115%;
}
div.texy-reference dt {
	margin-top: 1em;
}
div.texy-reference dd {
	margin-bottom: 0;
}

/* Box: Search */
#search-box {
	margin-bottom: 2em;
	padding-bottom: .5em;
	background-color: #eee;
}
#search-box form {
	position: relative;
	margin: 0;
	padding: 0;
	border-style: none;
	background-color: transparent;
}
#search-box fieldset {
	margin: 0;
	padding: 0;
	border-style: none;
}
#search-box dd {
	margin-bottom: .75em;
}

#search-box #age-label {
	position: absolute;
	top: 0;
	left: 52%;
}
#search-box #age-element {
	position: absolute;
	top: 1.5em;
	left: 52%;
}
#search-box #text {
	width: 47%;
}
#search-box #target_group, #search-box #cost {
	width: 48%;
}
#search-box #submit {
	position: absolute;
	top: 8.2em;
	left: 52%;
	padding: .5em 3em;
}
#search-box a.extended-search-link {
	position: absolute;
	top: 10.3em;
	right: 0;
}

/* Projects & Features */
h2.project {
	padding-left: 2.25em;
	background: transparent url("../images/icon_project.png") no-repeat left top;
}
h2.tool {
	padding-left: 2.25em;
	background: transparent url("../images/icon_tool.png") no-repeat left top;
}
h2.note {
	padding-left: 2.25em;
	background: transparent url("../images/icon_note.png") no-repeat left top;
}
h2.event {
	padding-left: 2.25em;
	background: transparent url("../images/icon_event.png") no-repeat left top;
}
h2.photo {
	padding-left: 2.25em;
	background: transparent url("../images/icon_photo.png") no-repeat left top;
}
h2.video {
	padding-left: 2.25em;
	background: transparent url("../images/icon_video.png") no-repeat left top;
}

/* Projects */
h2.news-feed {
	float: left;
	margin: .5em 0 0;
}
#newsfeed {
	clear: both;
	padding-top: 1.5em;
}
#newsfeed p {
	display: block;
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 1em;
	border-top: 1px dotted #ccc;
	background-position: left 1.2em;
}
div.new-photos {
	margin: .75em 0 1.5em;
}
div.new-photos a, div.new-photos a:link, div.new-photos a:visited {
	text-decoration: none !important;
}
img.loading {
	margin-top: 5em;
	margin-left: 24em;
}

/* Projects: Filter */
#filter {
	float: right;
	margin-bottom: .25em;
}
#filter strong {
	display: inline-block;
	position: relative;
	bottom: .75em;
	right: 1ex;
	font-size: 90%;
}
#filter a:link, #filter a:visited {
	display: inline-block;
	margin: 2px;
	outline: none;
	background: transparent url("../images/filter-active.png") no-repeat 0 0;
}
#filter a img {
	display: block;
	padding: 0;
	border-style: none;
}
#filter a.active img {
	visibility: hidden;
}

#filter-notes {
	background-position: -53px 0 !important;
}
#filter-events {
	background-position: -106px 0 !important;
}
#filter-photos {
	background-position: -79px 0 !important;
}
#filter-videos {
	background-position: -26px 0 !important;
}

/* Project Preview */
div.item-preview {
	position: relative;
	clear: both;
	padding: 1em 0em;
	border-top: 1px solid #ddd;
	color: #888;
}
div.item-preview:hover {
	color: #333;
}
div.item-preview h3 {
	margin: 0;
	padding-left: 0 !important;
	background-image: none !important;
}
div.item-preview img.picture {
	float: left;
	margin: 0 1.5em 0 0;
	padding: 0;
	border: 1px solid #C02824;
}
div.item-preview img.video {
	width: 120px;
}
div.item-preview div.info {
	width: 70%;
	float: left;
}
#
div.item-preview div.info ul {
	float: left;
}
div.status {
	font-size: 90%;
}
ul.new-events {
	margin-left: 0;
	padding: 0;
}
ul.new-events li {
	display: block;
}
a.view-details:link, a.view-details:visited {
	visibility: hidden;
	margin: 0;
	padding: .15em .5em;
	position: absolute;
	top: .5em;
	right: 0;
}
div.item-preview:hover a.view-details {
	visibility: visible;
}

/* View Older Projects */
a.view-more-projects:link, a.view-more-projects:visited {
	float: left;
}

/* Project */
div.project-latest-updates ul.new-events {
	margin: .5em 0;
	font-size: 90%;
}
div.project-latest-updates a.feature {
	padding-left: 2.3em;
}

div.project-summary, div.event-details {
	border-top-width: 3px;
	border-top-color: #666;
}

/* Project: Details */
table.details {
	width: 100%;
}
table.details th, table.details td {
	text-align: left;
}
table.details th {
	width: 33%;
}

p.featured-in {
	padding: .5em 1em;
	font-size: 90%;
}

div.attached-files {
	margin-top: 2em;
}

/* Feature: Event */
div.event-details {
	margin: 2em 0;
}
div.event-details ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
div.event-details ul strong {
	width: 8em;
	display: inline-block;
}

/* Features: Video */
div.video {
	margin: 2em 0;
}
div.video-description {
	padding: 1em;
}

/* Feature: Photo: Thumbnails */
div.photo-thumbnails {
	margin: 2em 0;
	text-align: center;
}
div.photo-thumbnails a:link, div.photo-thumbnails a:visited {
	width: 150px;
	height: 100px;
	display: inline-block;
	overflow: hidden;
	margin: 0 .5em .5em;
	border: 1px solid #888;
	background-color: #f9f9f9;
	text-align: center;
}
div.photo-thumbnails a img {
	height: 100px;
	margin: 0 auto;
	padding: 0;
	border: 0;
}
div.photo-thumbnails a:hover {
	border-color: #C02824;
}

/* Feature: Photo: Detail */
div.photo-detail {
	margin: 2em 0;
	text-align: center;
}

div.photo-navigation {
	position: relative;
	margin: 0 auto 1em;
	text-align: center;
}
.previous-photo {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0 !important;
}
.next-photo {
	position: absolute;
	top: 0;
	right: 0;
	margin: 0 !important;
}
a.show-thumbnails {
	line-height: 2.5em;
}

div.photo-detail p.description {
	margin: 1em auto;
	text-align: center;
}



/*---------------------------------------------------------------
ADMIN
---------------------------------------------------------------*/

/* Admin Controls */
#admin-controls {
	margin-bottom: -0.75em;
	opacity: 0.5;
	filter: alpha(opacity=50);
	-moz-opacity: 0.5;
	-khtml-opacity: 0.5;
	text-align: right;
}
#admin-controls:hover {
	opacity: 1;
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	-khtml-opacity: 1;
}
#admin-controls a.button {
	margin: 0;
	padding: .15em .5em;
}
a.delete:hover {
	background-color: #C02824;
	color: #fff;
}

/* Admin: Add Features */
#admin-manage-features {
	margin: 1em 0 1.5em;
	padding: .5ex;
	padding-right: 0;
	border: 1px solid #ccc;
	background-color: #eee;
}
#admin-manage-features a.button {
	margin: 0;
	padding-left: 1.5ex;
	padding-right: 1.5ex;
}
#admin-manage-features a.button:hover {
	background-image: none;
}
#admin-manage-features a.button:active {
	background-color: #ddd;
}

/* Project list */
table.project-list th, table.project-list td {
	padding: .5em .9ex;
}
th.id {
	min-width: 3.5em;
}
th.manage-content {
	min-width: 9em;
	max-width: 9em;
}
img.order-arrow {
	display: inline-block;
	border-style: none !important;
	text-decoration: none !important;
}


