.hiddenItem {
    display: none;
}

.shownItem {
    display: inherit;
}

/*** Filter by tags ***/

@media (max-width:480px) { 
	.tag-container-wrapper {
    	display: none;
	}
}

@media (min-width:480px) { 
	.tag-container-wrapper {
		margin-bottom: 20px;
	}
}

.tag-container-wrapper {
	margin-left: -10px;
}

.tag-container .tag label {
    margin-left: 10px;
    font-weight: normal;
}

/*** Staff summary cards ***/

.results-container li.profile.layout.boxstyle_ {
    padding: 1em;
}

.results-container li.profile.layout.boxstyle_.box2 {
    background-color: #eee;
}

/* Constrain image sizes when dimensions are unknown and variable */
/* extra small screens first and set default */
.results-container li.profile.layout img {
    float: right !important;
    margin: 0 0 0 20px !important;
	max-width: 200px;
	max-height: 130px;
}

/* medium screens and above */
@media (min-width: 768px) {
	.results-container li.profile.layout img {
		max-width: 275px;
        max-height: 145px;
	}	
}

/* Display 'Edit staff profiles' button to signed-in contributors */
a.edit-link {
    position: relative;
    top: 0px;
    left: 0px;
    background-color: #505882;
    color: white;
    padding: 5px;
}