/** CSS for forms **/


/**************************************** general **/

.form-item
{
	position: static;
	margin: 0 0 30px 0;
}
fieldset .form-item,
.form-item .form-item
{
	margin: 12px 0;
}
.compact-form .form-item
{
	float: left;
	margin: 0 2px 8px 0 !important;
}
.form-no-float .form-item
{
	float: none;
}

.form-item label,
form th
{
}

form .description,
.form-item .description
{
	margin: 4px 0;
	font-size: .85em;
	line-height: 1.3em;
	color: #999;
}

/**************************************** fieldset **/

.fieldset,
.fieldset-title,
.fieldset-title a,
.fieldset-content 
{ display:block; }

fieldset,
.collapsed .fieldset-title
{
}

fieldset
{
	border: 1px solid #ddd;
	padding: 0;
	width: 100%;
	margin: 15px 0 30px 0;
	position: relative;
}
fieldset.collapsed 
{
	margin-bottom: 30px !important;
}
fieldset .fieldset-inner
{
	margin: 15px;
}
.fieldset.titled 
{
	display: block;
	min-height: 32px;
}
html.js fieldset.collapsed 
{
	margin-bottom: 5px;
	height: 15px;
}

.fieldset-title
{
	margin: 0 0 4px 0;
	padding: 0;
	font-family: Inspira, Arial, sans-serif;
	font-size: 1.2em;
	line-height: 1.6em;
	font-weight: 100;
	background: none;
	color: #747578;
}
.fieldset-title:hover
{
	color: #9056C7;
}
fieldset legend
{
	display: block;
	width: auto;
	margin-left: 7px;
}
fieldset .fieldset-title
{
	display: block !important;
	left: 0px;
	right: 0px;
	top: 0px;
	padding: 0 4px;
}

/**************************************** text input **/

input.form-autocomplete, 
input.form-text, 
textarea.form-textarea, 
select.form-select 
{
	padding: 2px 5px 1px 5px;
	margin: 0;
	color: #555;
	background-color: #F9F9F9;
	border: 1px #ddd solid;
	max-width: 100%;
	font-size: 1em;
}
#header input.form-autocomplete,
#header input.form-text, 
#header textarea.form-textarea, 
#header select.form-select,
#footer input.form-autocomplete,
#footer input.form-text, 
#footer textarea.form-textarea, 
#footer select.form-select 
{
	font-size: .9em;
	padding: 1px 2px;
}
input.form-autocomplete, 
input.form-text
{
	height: 21px;
}
textarea.form-textarea
{
	padding: 7px 10px;
}
select.form-select 
{
	font-size: .85em;
}
html.js input.form-autocomplete 
{
	background-position: 100% 5px;
}

input.form-autocomplete:focus, 
input.form-text:focus, 
textarea.form-textarea:focus, 
select.form-select:focus
{
	border-color: #555;
	background-color: #fff;
	color: #000;
	outline: 0;
}

/*
** Autocomplete styles
*/
#autocomplete {
  position: absolute;
  border: 1px solid;
  overflow: hidden;
  z-index: 100;
}
#autocomplete ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#autocomplete li {
  background: #fff;
  color: #000;
  white-space: pre;
  cursor: default;
  margin: 0;
  padding: 0 8px;
}
#autocomplete li.selected {
  background: #9056C7;
  color: #fff;
}

/**************************************** multiple fields **/

form .content-multiple-table thead th
{
	border: none;
}
form .content-multiple-table tr
{
	background-color: inherit;
	border: none;
}

/**************************************** form submit / button links **/

input.form-submit 
{
	margin: 8px 0 15px 0;
}

input#edit-submit,
input#edit-preview,
input#edit-delete,
.buttonLink
{
	box-shadow: inset #333 0px -12px 1px;
	-moz-box-shadow: inset #333 0px -12px 1px;
	-webkit-box-shadow: inset #333 0px -12px 1px;

	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;

	cursor: pointer;
	margin: 0 5px;
	padding: 2px 10px;
	color: #fff !important;
	text-align: center;
	font-weight: bold;
	font-size: 1em;
	border: none;
	background: #4b4a45;
}
.buttonLink
{
	padding-top: 5px;
	padding-bottom: 5px;
}
input#edit-submit:hover,
input#edit-preview:hover,
input#edit-delete:hover,
input.buttonLink:hover,
a.buttonLink:hover
{
	border-color: #71459C;
	background: #9056C7;
	box-shadow: inset #71459C 0px -12px 1px;
	-moz-box-shadow: inset #71459C 0px -12px 1px;
	-webkit-box-shadow: inset #71459C 0px -12px 1px;
	color: #fff;
	text-decoration: none;
}
input#edit-submit:active,
input#edit-preview:active,
input#edit-delete:active,
input.buttonLink:active,
a.buttonLink:active
{
	background: #666;
	box-shadow: inset #333 0px -12px 1px;
	-moz-box-shadow: inset #333 0px -12px 1px;
	-webkit-box-shadow: inset #333 0px -12px 1px;
	color: #fff;
	text-decoration: none;
}

.compact-form input#edit-submit,
.compact-form input#edit-preview,
.compact-form input#edit-delete,
.compact-form .buttonLink
{
	margin-top: 2px;
	padding: 2px 6px;
	font-size: .85em;
}

#header input.form-submit,
#footer input.form-submit 
{
	margin-top: 0;
	margin-bottom: 0;
}

/**************************************** call to action buttons **/

.call-to-action
{
	display: block;
	margin: 8px 0 15px 0;
	width: 124px;
	text-align: center;
}

.call-to-action
{
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;

	border: none;
	background: #4b4a45;
	box-shadow: inset #333 0px -18px 1px;
	-moz-box-shadow: inset #333 0px -18px 1px;
	-webkit-box-shadow: inset #333 0px -18px 1px;

	cursor: pointer;
	margin: 0 5px;
	padding: 10px 0;
	font-family: Arial, sans-serif;
	color: #fff !important;
	text-align: center;
	font-weight: bold;
	font-size: 12px;
	line-height: 18px;
}
.call-to-action:hover
{
	border-color: none;
	background: #9056C7;
	box-shadow: inset #71459C 0px -18px 1px;
	-moz-box-shadow: inset #71459C 0px -18px 1px;
	-webkit-box-shadow: inset #71459C 0px -18px 1px;

	color: #fff;
	text-decoration: none;
}
.call-to-action:active
{
	background: #666;
	box-shadow: inset #333 0px -18px 1px;
	-moz-box-shadow: inset #333 0px -18px 1px;
	-webkit-box-shadow: inset #333 0px -18px 1px;
	color: #fff;
	text-decoration: none;
}

/************************************************** active tags **/

.tag-holder
{
	margin: 0;
	padding: 0;
}
.tag-holder::after
{
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.tag-holder .tag-tag 
{
	display: block;
	float: left;
	margin: 3px 3px 3px 0;
	padding: 2px 4px;
	border: 1px solid #DDD;
	background-color: #fff;
}
.form-item .tag-entry
{
	margin-top: 2px;
}

/*********************************************************************************************/
/********************************************************************* Upload Form ***********/
/*********************************************************************************************/

/************************************************** steps sub title **/

.subtitle-steps
{
	font-family: Inspira, Arial, sans-serif;
	font-size: 1.35em;
	font-weight: 100;
	color: #bbb;
	margin-bottom: 35px;
}
.subtitle-steps .current
{
	color: #555;
}

/************************************************** submit buttons **/

.upload-form #content input#edit-submit-upload,
.upload-form #content input#edit-submit-url,
.upload-form #content input#edit-submit
{
	width: 110px;
}

/************************************************** step 1 **/

#uploadStep1Help{
  float:left;
  margin-right: 50px;
}

#uploadStep1Help .small
{
	display: inline;
	font-size: .9em;
	color: #999;
	margin-left: 8px;
}
#uploadStep1Help ul
{
	padding: 0;
	margin: 12px 5px 25px 10px;
}
#uploadStep1Help li
{
	margin-bottom: 8px;
}
#uploadStep1Help .helpLink
{
	text-align: center;
	font-size: .85em;
}

.pin
{
  width:397px;
  border: #eaeaea solid 1px;
  border-bottom: none;
  border-top: none;
  background-color: #fff9d9;
}
.pinTop
{
  border-top: #eaeaea solid 1px;
  background:  url(img/pinTop.png) no-repeat;
  height: 34px;
}
.pinMid
{
	padding: 10px 25px;
	width: 347px;
}

.pinMid ul{
  list-style: none;
}

.pinBottom{
  border: none;
  background:  url(img/pinBottom.png) no-repeat;
  height: 22px;
  margin-bottom: 20px;
}

.page-upload .col-right{
  margin-left: 450px; 
}

#seedge-uploadproject-form{
  color:#555555;
}
#seedge-uploadproject-form label{
  font-size: 16px;
}

.page-upload #content #edit-upload-wrapper{
  position: relative;
  height: 48px;
}

.page-upload #content #edit-url-wrapper{
  margin-top: 60px;
  margin-bottom: 0;
}

/*

.page-upload #content input[type='text'],
.page-upload #content .fakeFileField{
  color:#c2c2c2;
  font-weight: bold;
  padding: 5px;
  background-color: #f9f9f9;
  border:1px #eaeaea solid;
  width:485px;
}
.page-upload #content input[type='text']:focus{
  color:#555555;
}

.page-upload #content .fakeFileField{
  cursor: default;
  left: 450px;
  top:23px;
  position: absolute;
}

.page-upload #edit-upload{
  position: absolute;
  top: 23px;
  z-index: 100;
  left: 450px;
  opacity:.001;
}
*/
.page-upload #edit-upload
{
	font-size: 1.2em;
	margin-top: 10px;
	color: #777;
}

.upload-form .form-column{
  width:460px;
  float: left;
  overflow: hidden;
}

.upload-form .form-column-1{

}

.upload-form .form-column-2{
  margin-left: 24px;
}



/************************************************** step 2 **/

.upload-form #content .form-item label[for],
.upload-form #content th 
{
  font-size: 18px;
  color: #555;
}
.upload-form #content .content-multiple-table .form-item label
{
	font-size: 10px;
}

.upload-form #content .cm-field_external_data label,
.upload-form #content .form-item label.option,
.upload-form #content .widget-edit label{
  font-size: 14px !important;
  color: #777 !important;
  font-weight: bold;
}

.upload-form #content input[type='text'],
.upload-form #content textarea
{
  width:440px;
}

.upload-form #content input.tag-entry
{
	width: 400px;
	margin-right: 5px;
}

.upload-form #content .grippie,
.upload-form #content .body-field-wrapper
{
  display: none;
}

.upload-form #content .content-multiple-table .widget-edit input[type='text']
{
  width:268px;
  margin-right: 10px;
}

/*
.upload-form #content input.form-autocomplete {
  background-position: 100% 5px !important;
}
*/

.upload-form #content .cm-taxonomy,
.upload-form #content #edit-body-wrapper,
.upload-form #content .content-multiple-label,
.upload-form #content .description
{
  
}
.upload-form #content .cm-taxonomy,
.upload-form ul.tips,
.upload-form .form-column-1 p
{
	display: none;
}

.upload-form #content .cm-field_main_image tr{
  border-bottom: 1px #eaeaea solid !important;
}

.upload-form #content #field-related-data-items,
.upload-form #content #field-external-data-items
{
	margin-bottom: 30px;
}

.upload-form #content .content-multiple-table input[type='text']
{
  width: 403px;
  margin-right: 5px;
}
.upload-form #content .cm-field_main_image * input[type='text']
{
  width: 293px;
}
.upload-form #content .content-multiple tbody,
.upload-form #content .content-multiple thead th
{
  border: none;
}
.upload-form #content .content-multiple tr
{
  background: #fff;
  border: none;
}

.upload-form #content .content-multiple .handle{
  position: relative;
  top:7px;
}

.upload-form #content .cm-field_main_image .handle {
  top: 0px;
}
.upload-form #content .group-depricated,
fieldset.group-deprecated
{
  display: none;
}

.upload-form #content .cm-field_external_data .handle 
{
  top: -18px;
}

.upload-form .cm-field_external_data * input[type="text"] 
{
  width: 195px;
}

.upload-form .link-field-column
{
  width: 202px;
}
.upload-form  .link-field-title
{
  margin-right: 10px;
}
.upload-form .cm-field_external_data table 
{
  margin-bottom: 0px;
}

.upload-form .form-bottom
{
  border-top: 1px #EAEAEA solid;
  margin-top: 20px;
  padding-top: 30px;
  text-align: center;
  clear: both;
} 

.upload-form #req-instruct
{
	float: left;
}

.upload-form .cm-field_abstract .collapse-processed{
  display: none; 
}

.upload-form .cm-field_external_data{

}

.cc-disclaimer img {
	float: left;
	margin-right: 10px;
}
.upload-form .form-terms-agree {
	margin-top: 30px;
}
.upload-form .form-terms-agree #edit-terms-agree-wrapper
{
	margin: 10px 0 20px 0;
}

/************************************************** node edit form **/

#edit-preview
{
	display: none;
}


/****************************************** project details box */
.seedge-upload-basic-project-details
{
	background-color: #F2F2F2;
	margin-bottom: 40px;
	padding: 15px;
}
.seedge-upload-basic-project-details fieldset
{
	border: none;
	margin: 0;
}
.seedge-upload-basic-project-details fieldset .fieldset-inner
{
	margin: 0;
}
.seedge-upload-basic-project-details .seedge-upload-project-file,
.seedge-upload-basic-project-details .seedge-upload-project-url,
.seedge-upload-basic-project-details .seedge-upload-modify-link
{
	float: left;
}
.seedge-upload-basic-project-details .seedge-upload-project-file,
.seedge-upload-basic-project-details .seedge-upload-project-url
{
	color: #444;
	margin-right: 15px;
}


/****************************************** search form */

.search-form label
{
	font-weight: 100;
	font-size: .85em;
	color: #999;
}

/****************************************** contact form */
#contact-mail-user .form-item
{
	margin-bottom: 10px;
}
#contact-mail-user .form-item label
{
	float: left;
	margin-right: 12px;
}
#contact-mail-user #edit-message-wrapper label
{
	float: none;
}
#contact-mail-user #edit-copy-wrapper
{
	float: right;
}
#contact-mail-user #edit-copy-wrapper label
{
	float: none;
}
.grid-6 #contact-mail-user #edit-subject
{
	width: 446px;
}

/****************************** gallery edit form */
#seedge-gallery-items-table td
{
	padding: 3px 6px;
	vertical-align: top;
}
#seedge-gallery-items-table td.drag-cell
{
	padding-left: 9px;
	padding-right: 3px;
	text-align: center;
	vertical-align: middle;
}
#seedge-gallery-items-table td.drag-cell a.tabledrag-handle
{
	float: none;
}

/*********************************************************************************************/
/********************************************************************* Profile Form ***********/
/*********************************************************************************************/

.profile-edit-form #account-form-link
{
	position: absolute;
	z-index: 200;
	width: 220px;
	right: 89px;
}
.profile-edit-form fieldset
{
	border: none;
	margin-bottom: 30px;
}
.profile-edit-form fieldset fieldset
{
	margin-bottom: 10px;
}
.profile-edit-form fieldset .fieldset-inner
{
	margin: 0;
	padding: 15px 30px;
}
.profile-edit-form fieldset fieldset .fieldset-inner
{
	padding: 0 0 5px 0;
}
.profile-edit-form fieldset legend
{
	margin-left: 0;
	font-size: 1.5em;
	font-weight: bold;
}

.profile-edit-form .link-field-column .form-text 
{
	width: 93%;
}

.profile-edit-form .form-item label,
.profile-edit-form fieldset fieldset legend
{
	font-size: 1.1em;
	font-weight: bold;
	font-family: Inspira, Arial, sans-serif;
	-webkit-padding-start: 0;
	-webkit-padding-end: 0;
}
.profile-edit-form fieldset .fieldset-title
{
	padding: 0;
}

.profile-edit-form table
{
	font-size: 1em;
}

.profile-edit-form .form-checkboxes
{
	margin: 0 0 20px 0;
	column-count: 3;
	column-gap: 10px;
	-moz-column-count: 3;
	-moz-column-gap: 10px;
	-webkit-column-count: 3;
	-webkit-column-gap: 10px;
}
.profile-edit-form .form-column .form-checkboxes
{
	column-count: 2;
	-moz-column-count: 2;
	-webkit-column-count: 2;
}
.profile-edit-form .form-checkboxes .form-item
{
	margin: 0;
}
.profile-edit-form .form-checkboxes .form-item label
{
	font-family: Arial, sans-serif;
	font-size: 1em;
	font-weight: 100;
}

/**** location field ****/
.profile-edit-form .location .form-item 
{
	clear: none;
	float: left;
	width: 190px;
	margin-top: 5px;
}
.profile-edit-form .location .form-item label
{
	font-family: Arial, sans-serif;
	font-size: inherit;
	font-weight: inherit;
	color: inherit;
}
.profile-edit-form .location #edit-field-profile-location-0-delete-location-wrapper
{
	float: right;
	width: 100px;
}
.profile-edit-form .location .form-item .form-text
{
	width: 170px;
}
.profile-edit-form .location .form-item select
{
	width: 183px;
}

/**** follow links field ****/
.profile-edit-form .form-column
{
	float: left;
	width: 50%;
}
.profile-edit-form .follow-links .form-item .form-text
{
	width: 300px;
}
.profile-edit-form .follow-links #follow-links-weighted-form .form-item .form-text
{
	width: 263px;
}

.profile-edit-form .submit-buttons
{
	text-align: center;
	margin-bottom: 30px;
}

