﻿html {
	font-family: sans-serif;
	font-size: 62.5%;
}

body {
  margin: 20px auto;
  font-family: 'fira_sans_otlight', "Segoe UI Light", "Segoe UI";
  font-size: 14px;
  line-height: 20px;
  background-color: #ffffff;
  max-width:1050px;
}


/*Button - Modified - M. */
.btn {

  display: inline-block;
  *border-bottom: 0 none #b3b3b3;
	display: inline;
  /* IE7 inline-block hack */



  *zoom: 1;
    padding: 4px 12px;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    color: #333333;
  	background-color: #f5f5f5;
    background-image: none;
    border-color: #e6e6e6 #e6e6e6 #bfbfbf;
    -webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	margin-left: .3em;
	background-image: none;
*/* Darken IE7 buttons by default so they stand out more given they won't have borders */

  *border-left-style: none;
	border-left-color: inherit;
	border-left-width: 0;
	border-right-style: none;
	border-right-color: inherit;
	border-right-width: 0;
	border-top-style: none;
	border-top-color: inherit;
	border-top-width: 0;
	border-bottom-style:none;
	border-bottom-color: inherit;
	border-bottom-width:0;


}
.btn:hover,
.btn:focus,
.btn:active,
.btn.active,
.btn.disabled,
.btn[disabled] {
  color: #333333;
  background-color: #e6e6e6;
  *background-color: #d9d9d9;
}
.btn:active,
.btn.active {
  background-color: #cccccc \9;
}
.btn:first-child {
  *margin-left: 0;
}
.btn:hover,
.btn:focus {
  color: #333333;
  text-decoration: none;
  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
  -moz-transition: background-position 0.1s linear;
  -o-transition: background-position 0.1s linear;
  transition: background-position 0.1s linear;
}
.btn:focus {

  /*outline: thin dotted #333; M. */
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn.active,
.btn:active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
  -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
  box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
}
.btn.disabled,
.btn[disabled] {
  cursor: default;
  background-image: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/* End of M.'s .btn css */


/*bootstrap 3 carousel - abogatu */

/* Our version of the carousel */

.carousel {
  position: relative;
  margin-bottom: 20px;/**/ /* abogatu*/
  line-height: 1;
}
.carousel-inner {
  overflow: hidden;
  width: 100%;
  height: auto;
  position: relative;
}
.carousel-inner > .item {
  display: none;
  position: relative;
  -webkit-transition: opacity ease-in-out .9s; /* M. */
  -moz-transition: opacity ease-in-out .9s; /* M. */
  -o-transition: opacity ease-in-out .9s; /* M. */
  transition: opacity ease-in-out .9s; /* M. */
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  line-height: 1;
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
  left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
  left: 0; /* M. */
  opacity:1; /* M. */
  z-index:1; /* M. */
}
.carousel-inner > .prev {
  left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
.carousel-inner > .active.left {
  left: 0;
  opacity: 0; /* M. */
  z-index: 2; /* M. */

}
.carousel-inner > .active.right {
  left: 100%;
}
.carousel-control {
 /* position:absolute;
  width: 50px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  top: 50%;



  left: 15px;

  height: 40px;
  margin-top: -20px;
  font-size: 60px;
  font-weight: 100;

  color: #ffffff;
  text-align: center;
  background: #222222;
  border: 3px solid #ffffff;
  opacity: 0.5;
  filter: alpha(opacity=50);*/
}
.carousel-control.right {
  left: auto;
  right: 15px;
}
.carousel-control:hover,
.carousel-control:focus {
  color: #ffffff;
  text-decoration: none;
  opacity: 1;
  filter: alpha(opacity=100);


}

.carousel-indicators {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 5;
  margin: 0;
  list-style: none;
  left: inherit;
  width: inherit;
}
.carousel-indicators li:hover{
	cursor:pointer;
}
.carousel-indicators li {
  display: block;
  float: left;
  width: 14px;
  height: 14px;
  margin-left: 6px;
  text-indent: -999px;
  background-color: #ccc;
  background-color: rgba(255, 255, 255, 0.75); /* M. (a += 0.50 - mai vizibil) */
  border-radius: 0px;
  margin: 6px 8px 0 3px;
}
.carousel-indicators .active {
  width: 14px;
  height: 14px;
  margin: 6px 8px 0 3px;
}
.carousel-caption {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px; /* prev: "0px" */ /* abogatu */
  padding: 15px; /* prev: "15px" */ /* abogatu */

   /*height: 32px; abogatu */
  background: #333333;
  background: rgba(0, 0, 0, 0.30);
  text-align: left;
}

.carousel-caption #carousel-lib {
	position: absolute;
	top:50px;
	left: 100px;
	right: 600px;
	bottom: 250px;
	padding: 15px;
	background: #333333;
	background: rgba(0, 0, 0, 0.80);

}


.carousel-caption h4,
.carousel-caption span {
  color: #ffffff;
  line-height: 10px; /* M. */

}
.carousel-caption h4 {
  margin: 0 0 5px;
}
.carousel-caption span {
  margin-bottom: 0;
}

/* ALL */
#all {
	margin-left: 10px;
	margin-right: 10px;

}

/*TOP*/
#top-wrapper {
	height:170px;
	margin-bottom: 20px; /* abogatu; previously: N/A */
}

#logo-wrapper {
	float:left;
	margin-right:13px;
	width:17%;/*M*/
}

#title {
	font-size:2.2em;
	width:100%;
	padding:5% 0 0px 0px;
	line-height:30px;
	height:auto;
}

#subtitle {
	font-size: medium;
	width:100%;
	/*padding:50px 0 10px 0px; adrian */
	line-height:20px;
	margin-bottom: 20px;
}


#search-wrapper {
	float:right;
}

/*Navigation Bar*/
.menu-btn-lines {
	 float: left;
	 margin-right: 15px;
	 margin-top: 5px;
}

.menu-btn-title {
	 float: right;
	 margin-top: 4px;
	 font-size: 18px
}

.menu-btn {
	 margin-left: 5px;
}

#menu {
	font-size:medium;
	width:100%;

}

.submenu {
	font-size:small;
	width:100%;
	padding-top: 14px;

}

#subsubmenu {
	font-size:x-small;
	width:100%;
}

/*Content*/
.content {
	font-size:medium;
	font-family: 'fira_sans_otlight';/*"Segoe UI Light","Segoe UI";Calibri, sans-serif;*/
	width:100%;
	padding-top: 20px;
}

.content h1 {
	font-size:xx-large;
	font-weight:lighter;
	font-family: 'fira_sans_otlight', "Segoe UI Light","Segoe UI";
	width:100%;
}

.content h2 {
	font-size:large;
	font-weight:normal;
	font-family: 'fira_sans_otlight', "Segoe UI","Segoe UI";
	width:100%;
}

.content li {
	font-size:medium;
	font-weight:lighter;
	font-family: 'fira_sans_otlight', "Segoe UI Light","Segoe UI";
	width:100%;
	text-align:justify;
	line-height:23px; /* M. */
}

/* abogatu - Staff page table */
.content table {
	width: inherit;
}

.content th, td {
	padding: 8px;
	line-height: 20px;
	text-align: left;
	vertical-align: middle;
	border-top: 1px solid #dddddd;
}

.content th {
	/* border-bottom: 2px solid #dddddd; */
	/* MEH? */
	line-height: 30px;
}

/* Scrisoare Club Alumni */ /* M. */
.scrisoare{

	border-style:dotted;
	border-width:thin;
}
.scrisoare p{
	font-family:inherit;
	margin-left:30px;
	margin-right:30px;
}

/* Publications */ /* M. */
.publications p {
	margin:30px 0px 30px 0px;
	text-align:justify;
}

/* FOOTER - abogatu */
#footer ul {
	list-style: none;
	padding-left: 0px;
}

#footer h4 {
	font-size: 13px;
	font-family: fira_sans_otregular;
	color: gray;

}

#footer ul li {
	font-size: 12px;
}

#footer-menu {
	margin-top: 5px;
	margin-left: 32px;
	margin-right: 32px;
}

#footer-menu h1 {
	margin-top: 20px;
	font-size: 15px;
	float: left;
	font-style: italic;
	color: gray;
}

#footer-menu ul {
	list-style: none;
	display: block;
	float: right;
	margin-top: 20px;
}

#footer-menu ul li {
	display: inline;
	/*margin-left: 20px;*/
	margin-right: 20px; /* abogatu */
	font-family: fira_sans_otbold;
	font-size: 14px;

}

#footer-menu ul li a {
	color: gray;
	text-decoration:none; /* abogatu */
}


#site-map {
	margin-left: 20px;
}

/*Zoom img effect M.*/

.rowl figure {
	cursor:pointer;
	overflow:hidden;
	border: 5px solid white;
	-webkit-box-shadow: 0 0 22px rgba(0,0,0,0.5);
	-moz-box-shadow: 0 0 22px rgba(0,0,0,0.5);
	-o-box-shadow: 0 0 22px rgba(0,0,0,0.5);
	box-shadow: 0 0 22px rgba(0,0,0,0.5);
}

.rowl figure img {
	width:100%;
	-webkit-transition: all 1.2s ease-in-out;
	-moz-transition: all 1.2s ease-in-out;
	-o-transition: all 1.2s ease-in-out;
	transition: all 1.2s ease-in-out;

}
.rowl figure:hover img {
	-webkit-transform:scale(1.5);
    -moz-transform:scale(1.5);
    -o-transform:scale(1.5);
	transform: scale(1.5);
}


/*One big two small figures - M.*/

.rowl {
	width:100%;
    display: table;
    margin:20px 0px 0px 20px;
}

.colbig .colsmall {
    display: table-cell;
     /* depends on the number of columns */
    width:50%;
    float:right;
}

.colbigright figure{
	width:50%;
	float:right;
	margin:30px 60px 30px 30px;
}

.colbigleft figure{
	width:50%;
	float:left;
	margin:30px 60px 30px 30px;
}

.colsmall figure{
	width:25%;
	margin:30px 50px 30px 30px;

}

/* FONT STYLES*/
@font-face {
    font-family: 'fira_mono_otregular';
    src: url('/vendors/fonts/firamonoot-regular-webfont.eot');
    src: url('/vendors/fonts/firamonoot-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('/vendors/fonts/firamonoot-regular-webfont.woff') format('woff'),
         url('/vendors/fonts/firamonoot-regular-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'fira_sans_otregular';
    src: url('/vendors/fonts/firasansot-regular-webfont.eot');
    src: url('/vendors/fonts/firasansot-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('/vendors/fonts/firasansot-regular-webfont.woff') format('woff'),
         url('/vendors/fonts/firasansot-regular-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'fira_sans_otbold';
    src: url('/vendors/fonts/firasansot-bold-webfont.eot');
    src: url('/vendors/fonts/firasansot-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('/vendors/fonts/firasansot-bold-webfont.woff') format('woff'),
         url('/vendors/fonts/firasansot-bold-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'fira_sans_otlight';
    src: url('/vendors/fonts/firasansot-light-webfont.eot');
    src: url('/vendors/fonts/firasansot-light-webfont.eot?#iefix') format('embedded-opentype'),
         url('/vendors/fonts/firasansot-light-webfont.woff') format('woff'),
         url('/vendors/fonts/firasansot-light-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font- main-menufamily: 'fira_sans_otlight_italic';
    src: url('/vendors/fonts/firasansot-lightitalic-webfont.eot');
    src: url('/vendors/fonts/firasansot-lightitalic-webfont.eot?#iefix') format('embedded-opentype'),
         url('/vendors/fonts/firasansot-lightitalic-webfont.woff') format('woff'),
         url('/vendors/fonts/firasansot-lightitalic-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

img {
	/* Responsive images (ensure images don't scale beyond their parents) */
	max-width: 100%;

	/* Part 1: Set a maxium relative to the parent */
	width: auto\9;

	/* IE7-8 need help adjusting responsive images */
	height: auto;

	/* Part 2: Scale the height according to the width, otherwise you get stretching */
	vertical-align: middle;
	-ms-interpolation-mode: bicubic;
}

.navbar {
	margin-bottom: 0;
}

.navbar-default {
	background-color: #fff;
	border-color: #fff;
}

.container-fluid {
	padding-left: 0;
	padding-right: 0;
}

.navbar-collapse {
	max-height: 340px;
	padding-left: 0;
	padding-right: 0;
	border-color: #fff;
	-webkit-box-shadow: none;
			box-shadow: none;
}

.navbar-collapse.in {
  overflow-y: hidden;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
	border-color: #fff;
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
	border-color: #fff;
}

.nav {
	float: none;
}

.nav > li {
	position: static;
}

/* We don't want round shaped corners for our buttons */
.nav-tabs > li > a,
.menu-btn {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

/* Less padding to fit all our tabs */
.main-menu ul li a {
	padding: 10px 13px;
}

.hannah-arendt-prize-img {
	padding: 13px 0 13px 0;
}

.fellowships-submenu ul li a {
	padding-left: 13px;
	padding-right: 13px;
}

#static-map {
	margin-bottom: 30px;
}

#gmap-canvas-wrapper {
	overflow: hidden;
	height: 600px;
	width: 100%;
}

#gmap-canvas {
	height: 100%;
	width: 100%;
}

#gmap-canvas img{
	max-width: none!important;
	background: none!important;
}

.evaluations-submenu ul li a {
	padding: 10px 11px;
}

.publications-submenu ul li a {
	padding: 10px 12px;
}

/* Title picture */
#previous-events-title-img {
	height: 300px;
	overflow: hidden;
}

.pe-pe-description-content {
	height: 500px;
}

#current-program-short-description {
	margin: 20px 0;
}

#nec-carousel {
	padding-top: 10px;
}

@media (max-width: 768px) {
	.nav-tabs > li {
		float: none;
	}
}

.navbar-toggle {
	float: none;
	margin-left: 20px;
}

.underline {
	text-decoration: underline;
}

/* Styles for front page news */
.news {
	margin-bottom: -5px;
	color: #337AB7;
}

.timestamp {
	font-size:x-small;
}