/*  
 
	Copyright (c) 2008-2012 by the President and Fellows of Harvard College. All rights reserved.  
	Profiles Research Networking Software was developed under the supervision of Griffin M Weber, MD, PhD.,
	and Harvard Catalyst: The Harvard Clinical and Translational Science Center, with support from the 
	National Center for Research Resources and Harvard University.


	Code licensed under a BSD License. 
	For details, see: LICENSE.txt 
  
*/

body
{
	padding: 0px;
	margin: 0px;
	/*Adding in font declaration on body so it can be removed from inline styles'*/
	font-family: Helvetica, Arial, sans-serif;
}
form
{
	padding: 0px;
	margin: 0px;
}

.actionbuttons input
{
	margin: 0px 2px;
}
/***************************************************/
/*Loading gif inline styling from Template.Master*/
/**************************************************/
#divStatus 
{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: 999999;
	display: none;
}
#divStatus .loader 
{
	width: 400px;
	border: 1px solid #666;
	padding: 5px;
	position: relative;
	left: 50%;
	margin-left: -200px;
	top: 40%;
	background-color: #FFFFFF;
}
/********************************************/
/* Customize this part                      */
/********************************************/

.Searchlink
{
	display: block;
	text-decoration: none;
	color: #000000;
}
.Searchlink.selected:hover
{
	color: #ffffff;
}

.PropertyGroup
{
	font-weight: bold;
	font-size: 15px;
	color: #993333;
	padding-bottom: 12px;
}
.PropertyItemHeader
{
	background-color: #EEEBE5;
	color: #666;
	font-size: 14px;
	height: 24px;
	font-weight: bold;
	vertical-align: middle;
	padding-left: 6px;
	padding-top: 2px;
}
.PropertyGroupItem
{
	border-left: solid 1px #ccc;
	border-right: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
	border-top: solid 1px #ccc;
}
.PropertyGroupData
{
	padding-left: 8px;
	padding-bottom: 12px;
	padding-left: 6px;
}
.institutionHeader
{
	background-color: #000;
	text-align: center;
	padding: 4px 0px 4px 0px;
	border-bottom: 4px solid #B23F45;
}

.activeSectionDetails
{
	font-size: 11px;
	margin-left: 2px;
}
/********************************************/
/* New Search button - edit the colours to match your branding*/
/********************************************/
/*Dont touch this container as it provides spacing on top of CSS search button*/
.profiles .search-button-container 
{ 
	margin-top: 10px;
}
.profiles a.search-button 
{
	background-color: #B23F45;
	color: #ffffff;
	background-image: url(../images/search.png);
	background-repeat: no-repeat;
	background-position: 5% 50%;
	background-size: 18px;
	padding: 5px 15px 5px 28px;
	font-size: 16px;
	border-radius: 5px;
	border: 2px solid #b23f45;
}
.profiles a.search-button:hover 
{
	text-decoration: none;
	box-shadow: 0 0 2px 2px #b23f45;
}
/********************************************/
/* Profiles Shell Layout                    */
/********************************************/

.profiles
{
	margin-top: 15px;
	text-align: center;
/*these two styles have been added to replace the now obsolete html 'center' attribute from Template.Master.*/
	margin: 30px auto;
	max-width: 967px;
}
.profiles .profilesHeader
{
	width: 967px;
	text-align: left;
}
.profiles .profilesFooter
{
	width: 967px;
	text-align: left;
}
.profiles .profilesPage
{
	width: 967px;
	text-align: left;
}
/*Replacing inline styles for the form headings in the main app*/
.profiles .profilesPage .headings 
{
	font-size: 18px; 
	color: #b23f45; 
	font-weight: bold; 
	margin-bottom: 3px;
}
.profiles .profilesPage table
{
	border-collapse: collapse;
}
.profiles .profilesPageColumnLeft
{
	width: 190px;
	vertical-align: top;
	margin: 0;
	padding: 0 20px 0 0;
}
.profiles .profilesPageColumnRight
{
	width: 777px;
	vertical-align: top;
	margin: 0;
	padding: 0;
}
.profiles .profilesPageColumnRightTop 
{
	background-color: #000000;
	/*The below was used to add soft corners and box shadow to the app container - now replicated with CSS in profilesPageColumnRightCenter*/
	/*background-image: url('../Images/passive_top.gif');*/
	/*width: 777px; No longer needed*/
	height: 12px;
	overflow: hidden;
	padding: 0;
	margin: 0;
	-ms-border-radius: 10px 10px 0px 0px;
	border-radius: 10px 10px 0 0;
}

.profiles .profilesPageColumnRightTopLine
{
	border-right: 1px solid #FFF;
	width: 625px;
	height: 12px;
	overflow: hidden;
}
.profiles .profilesPageColumnRightBottom
{
	/*background-image: url('../Images/passive_bottom.gif');*/
	width: 777px;
	height: 18px;
	overflow: hidden;
	padding: 0px;
	margin: 0; /* nudge border up and to left */
	margin-left: -1px;
	margin-top: -2px;
}
.profiles .profilesPageColumnRightCenter 
{
	width: 777px;
	vertical-align: top;
	/*More unneeded background images now replicated in CSS below*/
	/*background-image: url('../Images/passive_back.gif') repeat;*/
	border-width: 0px 1px 1px 1px;
	border-style: solid;
	border-color: #cccccc;
	-ms-border-radius: 0px 0px 10px 10px;
	border-radius: 0px 0px 10px 10px;
	box-shadow: 4px 5px 15px 2px #cccccc;
}

.profiles .profilesPageColumnRightCenter table
{
	border-collapse: collapse;
}
.profiles .profilesMainColumnLeft
{
	width: 625px;
	vertical-align: top;
	margin: 0px;
	padding: 0px;
	padding-bottom: 10px;
}
.profilesMainColumnRight
{
	width: 150px;
	vertical-align: top;
	margin: 0px;
	padding: 0px;
	/*These styles are replacing inline styles from Template.Master.cs*/
	background-color: #f5f5f5;
	border-left: 1px solid #c9c9c9;
	border-radius: 0px 0px 10px 0px;
}

/********************************************/
/* Profiles Shell Content                   */
/********************************************/


.profiles, .profiles td, .profiles th, .profiles textarea, .profiles select, .profiles h2, .profiles h3, .profiles h4, .profiles h5, .profiles h6, .profiles ul, .profiles ol
{
	font-size: 13px;
	line-height: 16px;
}
.profiles ul, .profiles ol
{
	margin-top: 0px;
	margin-bottom: 0px;
}
.profiles a
{
	color: #3366CC;
	text-decoration: none;
}
.profiles a:hover
{
	text-decoration: underline;
}

/********************************************/
/* Profiles Content Active                  */
/********************************************/
/* The proceeding left navigation styles have had all their width attributes removed to avoid future confusion*/
.profiles .profilesContentActive
{
	/*width: 190px;*/
	padding: 0px;
	margin: 0px;
}
.profiles .profilesContentActive .activeContainer
{
	/*width: 188px;*/
	margin-bottom: 8px;
}
.profiles .profilesContentActive .activeContainerTop
{
	background-color: #B23F45;
	/*background-image: url('../Images/active_top.gif');*/
	/*width: 180px;*/
	height: 12px;
	overflow: hidden;
   	border-radius: 12px 12px 0 0;
	box-shadow: 3px 3px 10px 0px #ccc;
}
.profiles .profilesContentActive .activeContainerCenter
{
	background-color: #FFFFFF;
	/*background-image: url('../Images/active_center.gif');*/
	/*width: 188px;*/
	overflow: hidden;
	box-shadow: 3px 3px 10px 0px #ccc;
}
.profiles .profilesContentActive .activeContainerBottom
{
	background-color: #B23F45;
	/*background-image: url('../Images/active_bottom.gif');*/
	/*width: 180px;*/
	height: 12px;
	overflow: hidden;
	border-radius: 0 0 12px 12px;
	box-shadow: 3px 3px 10px 0px #ccc;
}
.profiles .profilesContentActive .activeSection
{
	/*width: 174px;*/
	/*margin-left: 1px;*/
	border: 1px solid #c9c9c9;
	border-width: 0 1px 0 1px;
}
.profiles .profilesContentActive .activeSectionHead
{
	background-color: #EEEBE5;
	/*increased padding to improve look of Sectionhead*/
	padding: 5px 8px;
	font-weight: bold;
	height: 100%;
	font-size: 1.1em;
}
.profiles .profilesContentActive .activeSectionBody
{
	padding: 1px 8px;
}


.profiles .profilesContentActive ul
{
	list-style-type: none;
	padding: 0px;
	margin: 4px 0px 8px 0px;
	line-height: 18px;
}


/********************************************/
/* Profiles Content Main                    */
/********************************************/

.profiles .profilesContentMain
{
	width: 604px;
	padding: 0px;
	margin: 10px 10px 0px 10px;
}
/* backLink */
.profiles .profilesContentMain .backLink
{
	padding: 0px 8px 0 0;
	float: right;
}
.profiles .profilesContentMain .backLink .backLinkIcon
{
	margin-right: 4px;
	position: relative;
	top: 1px;
}
/* pageTitle */
.profiles .profilesContentMain .pageTitle
{
	display: inline;
}
.profiles .profilesContentMain .pageTitle h2
{
	display: block;
	padding: 0px;
	margin: 0px 0px 12px 0px;
	color: #AC1B30;
	font-size: 18px;
	font-weight: normal;
}
.profiles .profilesContentMain .pageTitle .pageIcon
{
	margin-right: 4px;
	position: relative;
	top: 2px;
}
/* pageSubTitle */
.profiles .profilesContentMain .pageSubTitle
{
	display: inline;
}
.profiles .profilesContentMain .pageSubTitle h3
{
	display: block;
	padding: 0px;
	margin: 0px 0px 12px 0px;
	color: #666666;
	font-weight: bold;
}
/* panelPage */
.profiles .profilesContentMain .panelPage
{
	display: inline;
}
/* pageDescription */
.profiles .profilesContentMain .pageDescription
{
	display: inline;
}
.profiles .profilesContentMain .pageDescription p
{
	display: block;
	padding: 0px;
	margin: 0px 0px 12px 0px;
}
/* pageTabs */
.profiles .profilesContentMain .pageTabs .tabBack
{
	background-image: url('../Images/tab_back.gif');
	height: 28px;
	overflow: hidden;
	margin: 12px 0 12px 0;
	padding-left: 4px;
}
.profiles .profilesContentMain .pageTabs .tabBack a
{
	line-height: 27px;
	font-weight: bold;
	font-size: 12px;
	color: #666;
	cursor: pointer;
}
.profiles .profilesContentMain .pageTabs .tabBack a:hover
{
	text-decoration: none;
	color: #36C;
}
.profiles .profilesContentMain .pageTabs .activeTab
{
	height: 28px;
	display: inline;
	float: left;
	margin: 0px 2px;
	line-height: 27px;
	font-weight: bold;
	color: #333;
}
.profiles .profilesContentMain .pageTabs .disabledTab
{
	height: 28px;
	display: inline;
	float: left;
	margin: 0px 2px;
	line-height: 27px;
	font-weight: bold;
	font-size: 12px;
	color: #666;
	cursor: pointer;
}
.profiles .profilesContentMain .pageTabs .activeTab .tabLeft
{
	background-image: url('../Images/tab_a_left.gif');
	height: 28px;
	width: 9px;
	overflow: hidden;
	float: left;
}
.profiles .profilesContentMain .pageTabs .activeTab .tabCenter
{
	background-image: url('../Images/tab_a_center.gif');
	height: 28px;
	overflow: hidden;
	float: left;
	padding: 0 4px;
}
.profiles .profilesContentMain .pageTabs .activeTab .tabRight
{
	background-image: url('../Images/tab_a_right.gif');
	height: 28px;
	width: 9px;
	overflow: hidden;
	float: left;
}
.profiles .profilesContentMain .pageTabs .disabledTab .tabLeft
{
	background-image: url('../Images/tab_d_left.gif');
	height: 28px;
	width: 9px;
	overflow: hidden;
	float: left;
}
.profiles .profilesContentMain .pageTabs .disabledTab .tabCenter
{
	background-image: url('../Images/tab_d_center.gif');
	height: 28px;
	overflow: hidden;
	float: left;
	padding: 0 4px;
}
.profiles .profilesContentMain .pageTabs .disabledTab .tabRight
{
	background-image: url('../Images/tab_d_right.gif');
	height: 28px;
	width: 9px;
	overflow: hidden;
	float: left;
}

.profiles .profilesContentMain .tabInfoText
{
	padding-bottom: 12px;
	margin-bottom: 12px;
	border-bottom: 1px dotted #999;
}


/********************************************/
/* Profiles Content Passive                 */
/********************************************/

.profiles .profilesContentPassive
{
	width: 136px;
	padding: 0px;
	margin: 0px 8px 0px 8px;
	height: 100%;
}
.profiles .profilesContentPassive .passiveSectionHead
{
	overflow: hidden;
	font-weight: bold;
	margin-top: 8px;
}
.profiles .profilesContentPassive .passiveSectionHead img
{
	position: relative;
	top: 1px;
	border: none;
}
.profiles .profilesContentPassive .passiveSectionHead .passiveSectionHeadDescription
{
	font-weight: normal;
	font-size: 10px;
	line-height: 11px;
	color: #333;
	margin: 4px 0 2px 0;
	display: none;
}
.profiles .profilesContentPassive .passiveSectionBody
{
	overflow: hidden; /* the following may or may not be needed */ /* white-space: pre; /* CSS 2.0 */ /* white-space: pre-wrap; /* CSS 2.1 */ /* white-space: pre-line; /* CSS 3.0 */ /* white-space: -pre-wrap; /* Opera 4-6 */ /* white-space: -o-pre-wrap; /* Opera 7 */ /* white-space: -moz-pre-wrap; /* Mozilla */
}
.profiles .profilesContentPassive .passiveSectionBody ul
{
	list-style-type: none;
	margin: 0px 0px 4px 0px;
	padding: 0px;
}
.profiles .profilesContentPassive .passiveSectionBody li
{
	padding: 4px 0 0 10px;
	padding-left: 1em;
	text-indent: -1em;
	line-height: 14px;
}
.profiles .profilesContentPassive .passiveSectionBodyDetails
{
	font-size: 11px;
	color: #666;
}
.profiles .profilesContentPassive .passiveSectionBodyDetails a
{
	font-size: 11px;
}
.profiles .profilesContentPassive .passiveSectionLine
{
	height: 1px;
	overflow: hidden;
	border-top: 1px solid #CCC;
	margin: 8px 0 0;
}


/********************************************/
/* Search                                   */
/********************************************/

.searchForm
{
	margin: 8px 0px;
	color: #666;
}
.searchForm .searchSection
{
	background-color: #EAF0F8;
	border: 1px solid #CCC;
	padding: 8px 0;
	margin-bottom: 12px;
}
.searchForm table
{
	border-collapse: collapse;
}
.searchForm th
{
	text-align: right;
	vertical-align: center;
	font-size: 13px;
	font-weight: bold;
	color: #666;
	width: 95px;
	padding: 5px 10px 5px 0px;
}
.searchForm td
{
	vertical-align: center;
	font-size: 13px;
	font-weight: normal;
	padding: 2px;
}
.searchForm .fieldMain
{
	width: 255px;
}
.searchForm .fieldOptions
{
}
.searchForm .inputText
{
	width: 250px;
}
.searchForm select
{
	/*searchForm was misaligned by one pixel*/
	width: 249px;
}
.searchForm .inputButton
{
	width: 70px;
	margin: 0px 20px 0px 0px;
}
.searchForm .spacerRow
{
	height: 16px;
	overflow: hidden;
}
.searchForm .spacerRowSmall
{
	height: 8px;
	overflow: hidden;
}
.searchForm b
{
	color: #666;
}
.searchForm .submitTable
{
	background-color: #FFF;
}

.listTable
{
	margin: 0px;
}

.listTable table
{
	border-collapse: collapse;
	width: 602px;
	border: 1px solid #999;
}
.listTable tr
{
	cursor: default;
}
.listTable th
{
	background-color: #f7f3ef;
	text-align: center;
	font-weight: bold;
	border: 1px inset #efebde;
	padding: 5px 5px;
	cursor: default;
	color: #333;
}
.listTable th a
{
	color: #333;
	display: block;
}
.listTable th img
{
	margin-left: 3px;
}
.listTable td
{
	text-align: center;
	border-style: inset;
	border-color: #efebde;
	border-width: 1px;
	padding: 5px 5px;
}
.listTable td div
{
	/*white-space: nowrap; Removed as long text forces table width to be larger than intended. */
	overflow: hidden;
}
.listTable .alignLeft
{
	text-align: left;
}
.listTable .oddRow
{
	background-color: #FFFFFF;
}
.listTable .evenRow
{
	background-color: #F0F4F6;
}
.listTable .overRow
{
	background-color: #5A719C;
	color: #FFF;
}
.listTable .listTableLink
{
	color: #36C;
}
.listTable .overRow .listTableLink
{
	color: #FFF;
}
.listTable .overRow .listTableLink a
{
	text-decoration: none;
}
.listTable .listTableLinkOver
{
	background-color: #36C;
	text-decoration: none;
}
.listTablePagination
{
	background-color: #f7f3ef;
	border-top: none;
	border-left: solid 1px #999;
	border-right: solid 1px #999;
	border-bottom: solid 1px #999;
	padding: 6px; /* Align with results table */
	width: 588px;
}
.listTablePagination table
{
	width: 591px;
	border-collapse: collapse;
	padding: 0px;
	margin: 0px;
}
.listTablePagination td
{
	padding: 0px;
	margin: 0px;
	width: 200px;
}
.listTablePaginationMiddle
{
	width: 205px;
	text-align: center;
}
.listTablePaginationPN
{
	display: block;
	float: right;
	margin-left: 4px;
	text-align: center;
	padding: 2px 6px;
	color: #999;
	font-weight: bold;
	font-size: 11px;
	line-height: 15px;
}
.listTablePagination a
{
	font-size: 11px;
	line-height: 15px;
	color: #3f4a9d;
}
.listTablePaginationA img
{
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}
.listTablePaginationP img
{
	margin-right: 4px;
}
.listTablePaginationN img
{
	margin-left: 4px;
}
.listTablePaginationN
{
	margin-left: 8px;
}
.listTablePaginationFL
{
	display: block;
	width: 19px;
	height: 19px;
	float: right;
	margin-left: 4px;
}
.listTablePaginationFL img
{
	margin: 5px 6px;
}
.listTablePaginationA
{
	border-color: #999;
}

/********************************************/
/* Connection Summary                       */
/********************************************/

.connectionTableRow
{
	padding-left: 6px;
}

.connectionContainer
{
	margin: 12px 0 4px 0;
}
.connectionContainerTable
{
	width: 100%;
	border: 1px solid #999;
	background-color: #EAF0F8;
}
.connectionContainerTable td
{
	text-align: center;
	padding: 8px 0px;
}
.connectionContainerItem
{
	width: 305px;
}
.connectionContainerArrow
{
	width: 195px;
}
.connectionContainerTable a
{
	font-size: 13px;
	text-decoration: underline;
}
.connectionItemSubText
{
	font-size: 11px;
}
.connectionArrowTable td
{
	padding: 0px 0px;
}
.connectionLine
{
	background-image: url('../Images/connection_center.gif');
	height: 5px;
	overflow: hidden;
	padding: 0px;
}
.connectionLine div
{
	height: 5px;
	overflow: hidden;
}
.connectionDescription
{
	font-weight: bold;
	font-size: 12px;
	color: #333;
	padding: 0 4px;
}
.connectionSubDescription
{
	font-weight: normal;
	font-size: 11px;
	padding: 0 4px;
}

/********************************************/
/* Profile - Concept                        */
/********************************************/
.profileKwCondenseList ol, .profileKwCondenseList ul
{
	margin-top: 0px;
	margin-bottom: 0px;
	position: relative;
	left: -25px;
	list-style-type: none;
}
.profileKwConcept
{
	display: none;
}
.publicationKwDesc
{
	margin-bottom: 5px;
}
.publicationKwMenuBox
{
	margin-bottom: 8px;
}
.profileKwMeshInfoDesc
{
	margin-bottom: 10px;
}

/********************************************/
/*        Edit Page                         */
/********************************************/
.editPage h2
{
	color: #AC1B30;
	font-size: 13px;
}
.editPage table
{
	padding-left: 5px;
}
.oddRow td, .evenRow td
{
	border-color: #808080;
}
.oddRow
{
	background-color: #FFFFFF;
}
.evenRow
{
	background-color: #F0F4F6;
}
.padding
{
	padding-left: 6px;
}

.edittable
{
	border: solid 1px #ccc;
}

.edittable tr
{
	padding: 5px;
}

.colItemCnt, .colSecurity
{
	text-align: center;
	width: 124px;
}

table tbody .height25
{
	height: 25px;
}

.editDisplayRow
{
	padding-top: 6px;
	padding-left: 6px;
	padding-right: 6px;
	padding-bottom: 6px;
	border-bottom: solid 1px #ccc;
}
.editPageDiv
{
	border-left: solid 1px #ccc;
	border-right: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
	border-top: solid 1px #ccc;
}

.editPage .topRow td
{
	background-color: #EEEBE5;
	font-weight: bold;
	color: #666;
	font-size: 13px;
	height: 24px;
	padding-left: 6px;
}
.topRow
{
	background-color: #EEEBE5;
	font-weight: bold;
	color: #666;
	font-size: 13px;
	height: 24px;
	padding-left: 6px;
	width: 100%;
}
.EditMenuTopRow
{
	background-color: #EEEBE5;
	color: #666;
	font-size: 13px;
	height: 24px;
	padding-left: 6px;
	width: 100%;
}
.editPage td
{
	height: 24px;
}
.firstCol
{
	padding-left: 6px;
}


.editPage tr
{
	height: 24px;
}


/*PubMed Styles*/

.textBoxSmall
{
	width: 75px;
}

.textBoxDate
{
	vertical-align: top;
	width: 75px;
	margin-right: 3px;
}

.textBoxBig
{
	width: 250px;
}

.textBoxBigger
{
	width: 550px;
}

.pubHeader
{
	margin-top: 20px;
	font-weight: bold;
}

.pubSubHeader
{
	font-weight: bold;
	color: #666666;
}

.pubSubSpacer
{
	margin-top: 10px;
}

/********************************************/
/* Link tabs								*/
/********************************************/
.anchor-tab
{
	margin: 10px 0 4px 0;
	color: #666;
}
.anchor-tab a.selected
{
	color: #333 !important;
	font-weight: bold;
	cursor: default;
}
.anchor-tab a.disabled
{
	color: silver !important;
	cursor: default;
}
.anchor-tab a.selected:hover, .anchor-tab a.disabled:hover
{
	text-decoration: none;
}
.anchor-tab a
{
	color: #36C;
	cursor: pointer;
}
.imageUploaderField input{
	width:100%
}

.ui-autocomplete {
    position: absolute;
    top: 100%;
    left: 10px;
    z-index: 1000;
    float: left;
    display: none;
    min-width: 160px;   
    padding: 4px 0;
    padding-left: 20px;
    margin: px 0 10px 25px;
    list-style: disc;
    background-color: #ffffff;
    border-color: #ccc;
    border-color: rgba(0, 0, 0, 0.2);
    border-style: solid;
    border-width: 1px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    *border-right-width: 2px;
    *border-bottom-width: 2px;
}


.ui-helper-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}