styles.css 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484
  1. /**
  2. * Primary Drupal Styles
  3. * Author: g-u-i.net
  4. */
  5. /** COMMONS */
  6. /** colors */
  7. /** jscrollpane */
  8. .jspScrollable .jspContainer .jspVerticalBar {
  9. width: 4px;
  10. background-color: #F2F2F2;
  11. }
  12. .jspScrollable .jspContainer .jspHorizontalBar {
  13. height: 4px;
  14. background-color: #F2F2F2;
  15. }
  16. .jspScrollable .jspContainer .jspTrack {
  17. background-color: transparent;
  18. }
  19. .jspScrollable .jspContainer .jspTrack .jspDrag {
  20. background-color: #77787B;
  21. -webkit-border-radius: 2px;
  22. -moz-border-radius: 2px;
  23. border-radius: 2px;
  24. -moz-background-clip: padding;
  25. -webkit-background-clip: padding-box;
  26. background-clip: padding-box;
  27. -moz-opacity: 0.6;
  28. -khtml-opacity: 0.6;
  29. -webkit-opacity: 0.6;
  30. opacity: 0.6;
  31. -webkit-transition: opacity 0.2s ease-out;
  32. -moz-transition: opacity 0.2s ease-out;
  33. -o-transition: opacity 0.2s ease-out;
  34. transition: opacity 0.2s ease-out;
  35. }
  36. .jspScrollable .jspContainer .jspTrack:hover .jspDrag {
  37. -moz-opacity: 1;
  38. -khtml-opacity: 1;
  39. -webkit-opacity: 1;
  40. opacity: 1;
  41. }
  42. /**
  43. * Layouts
  44. *
  45. */
  46. #content,
  47. #center .page-title,
  48. #perfnode,
  49. #filters,
  50. #timeline,
  51. #timeline-container {
  52. -webkit-transition: height 1s ease-out;
  53. -moz-transition: height 1s ease-out;
  54. -o-transition: height 1s ease-out;
  55. transition: height 1s ease-out;
  56. /*-webkit-transition: height, 5s, ease-out;
  57. -moz-transition: height, 5s, ease-out;
  58. -o-transition: height, 5s, ease-out;
  59. transition: height, 5s, ease-out;
  60. */
  61. }
  62. #main {
  63. height: 97%;
  64. }
  65. body.layout-intro #perfnode {
  66. height: 0%!important;
  67. }
  68. body.layout-intro #filters {
  69. height: 0%;
  70. }
  71. body.layout-intro #timeline {
  72. height: 65%;
  73. }
  74. body.layout-intro #timeline #timeline-container {
  75. height: 0%;
  76. }
  77. body.layout-intro #timeline-loader {
  78. display: block;
  79. margin: 0 auto 5px;
  80. }
  81. body.layout-timeline #main #content,
  82. body.layout-timeline #main #center .page-title {
  83. height: 0%;
  84. }
  85. body.layout-timeline #perfnode {
  86. height: 0%!important;
  87. }
  88. body.layout-timeline #filters {
  89. height: 30%;
  90. }
  91. body.layout-timeline #timeline {
  92. height: 65%;
  93. }
  94. body.layout-timeline #timeline #timeline-container {
  95. height: 98%;
  96. }
  97. body.layout-timeline #timeline-loader {
  98. display: none;
  99. }
  100. body.layout-perfnode #main #content,
  101. body.layout-perfnode #main #center .page-title {
  102. height: 0%;
  103. }
  104. body.layout-perfnode #perfnode {
  105. height: 85%!important;
  106. }
  107. body.layout-perfnode #filters {
  108. height: 0%;
  109. }
  110. body.layout-perfnode #timeline {
  111. height: 3%;
  112. }
  113. body.layout-perfnode #timeline #timeline-container {
  114. height: 0%;
  115. }
  116. body.layout-perfnode #timeline-loader {
  117. display: none;
  118. }
  119. body > img {
  120. display: none;
  121. }
  122. @media (min-width: 800px) {
  123. body.front #container > .inner #main,
  124. body.node-type-performance #container > .inner #main {
  125. overflow-x: hidden;
  126. overflow-y: auto;
  127. height: 96vh;
  128. box-sizing: border-box;
  129. }
  130. }
  131. @media (max-width: 799px) {
  132. body {
  133. overflow: hidden!important;
  134. }
  135. #container {
  136. margin: 0!important;
  137. width: 100vw!important;
  138. height: 100vh!important;
  139. overflow: hidden;
  140. }
  141. #container > .inner {
  142. padding: 0!important;
  143. width: 100%!important;
  144. height: 100vh!important;
  145. display: flex;
  146. flex-direction: column;
  147. overflow: hidden;
  148. }
  149. #container > .inner #header {
  150. height: 3vh;
  151. flex: 0 0 auto;
  152. height: auto;
  153. padding: 0.5em;
  154. box-sizing: border-box;
  155. }
  156. #container > .inner #main {
  157. flex: 0 0 auto;
  158. overflow-x: hidden;
  159. overflow-y: auto;
  160. height: 96vh;
  161. box-sizing: border-box;
  162. padding-bottom: 5em;
  163. }
  164. #container > .inner #main #center {
  165. display: block;
  166. height: auto;
  167. }
  168. }
  169. .Museo {
  170. font-family: "Museo", Arial, sans-serif;
  171. -moz-font-feature-settings: "calt=0,liga=0";
  172. }
  173. .MuseoSans {
  174. font-family: "MuseoSans", Arial, sans-serif;
  175. -moz-font-feature-settings: "calt=0,liga=0";
  176. }
  177. .MuseoSlab {
  178. font-family: "MuseoSlab", Arial, sans-serif;
  179. -moz-font-feature-settings: "calt=0,liga=0";
  180. }
  181. a,
  182. a:visited {
  183. color: #000;
  184. }
  185. /*a.active, li a.active{color:@main-blue;}*/
  186. body {
  187. font-family: "MuseoSans", Arial, sans-serif;
  188. -moz-font-feature-settings: "calt=0,liga=0";
  189. font-size: 16px;
  190. }
  191. .8 {
  192. font-size: 8px;
  193. }
  194. .9 {
  195. font-size: 9px;
  196. }
  197. .10 {
  198. font-size: 10px;
  199. }
  200. .11 {
  201. font-size: 10px;
  202. }
  203. .12 {
  204. font-size: 12px;
  205. }
  206. .14 {
  207. font-size: 14px;
  208. }
  209. .16 {
  210. font-size: 16px;
  211. }
  212. .18 {
  213. font-size: 18px;
  214. }
  215. .24 {
  216. font-size: 24px;
  217. }
  218. .regular {
  219. font-weight: normal;
  220. }
  221. .bold {
  222. font-weight: bold;
  223. }
  224. .100 {
  225. font-weight: 100;
  226. }
  227. .300 {
  228. font-weight: 300;
  229. }
  230. .500 {
  231. font-weight: 500;
  232. }
  233. .700 {
  234. font-weight: 700;
  235. }
  236. .900 {
  237. font-weight: 900;
  238. }
  239. .upper {
  240. text-transform: uppercase;
  241. }
  242. .italic {
  243. font-style: italic;
  244. }
  245. .normal {
  246. font-style: normal;
  247. }
  248. /** FEUILLES DE STYLES */
  249. /** timeline */
  250. /** filters */
  251. /** time line */
  252. #timeline-loader {
  253. max-width: 700px;
  254. margin: 0 auto;
  255. font-family: "MuseoSans", Arial, sans-serif;
  256. -moz-font-feature-settings: "calt=0,liga=0";
  257. font-size: 12px;
  258. font-weight: 700;
  259. }
  260. #timeline-loader .progress {
  261. border-top: 4px solid #999;
  262. width: 0;
  263. /* .transition(width 4s linear);*/
  264. transition: width 3s linear;
  265. -moz-transition: width 3s linear;
  266. -o-transition: width 3s linear;
  267. -webkit-transition: width 3s linear;
  268. }
  269. #timeline-loader .progress.complete {
  270. /* .transition(width 0.1s linear);*/
  271. transition: width 0.1s linear;
  272. -moz-transition: width 0.1s linear;
  273. -o-transition: width 0.1s linear;
  274. -webkit-transition: width 0.1s linear;
  275. }
  276. #timeline {
  277. height: 65%;
  278. margin-top: 25px;
  279. }
  280. #timeline h3.title {
  281. cursor: pointer;
  282. font-family: "MuseoSans", Arial, sans-serif;
  283. -moz-font-feature-settings: "calt=0,liga=0";
  284. font-size: 10px;
  285. font-weight: 900;
  286. text-transform: uppercase;
  287. margin: 0;
  288. color: #A5A5A5;
  289. }
  290. @media screen and (min-width: 1201px) {
  291. #timeline h3.title {
  292. font-size: 12px;
  293. }
  294. }
  295. #timeline-container {
  296. width: 100%;
  297. height: 98%;
  298. border-top: 2px solid #A5A5A5;
  299. overflow: hidden;
  300. background-color: #F2F2F2;
  301. }
  302. #timeline-container .timeline-frame {
  303. border: 0 solid #999;
  304. }
  305. #timeline-container .timeline-navigation {
  306. top: 0;
  307. right: 0;
  308. height: 20px;
  309. border: 0 solid transparent;
  310. background-color: #fff;
  311. }
  312. #timeline-container .timeline-navigation div {
  313. padding: 2px 0 0 10px;
  314. }
  315. #timeline-container .timeline-navigation div.timeline-navigation-zoom-in {
  316. background-image: url('../images/btns_zoomin.png');
  317. }
  318. #timeline-container .timeline-navigation div.timeline-navigation-zoom-out {
  319. background-image: url('../images/btns_zoomout.png');
  320. }
  321. #timeline-container .timeline-navigation div.timeline-navigation-move-left {
  322. background-image: url('../images/btns_moveleft.png');
  323. }
  324. #timeline-container .timeline-navigation div.timeline-navigation-move-right {
  325. background-image: url('../images/btns_moveright.png');
  326. }
  327. #timeline-container .timeline-axis-text {
  328. font-family: "MuseoSans", Arial, sans-serif;
  329. -moz-font-feature-settings: "calt=0,liga=0";
  330. font-size: 10px;
  331. font-weight: 900;
  332. text-transform: uppercase;
  333. margin: 0;
  334. color: #A5A5A5;
  335. }
  336. @media screen and (min-width: 1201px) {
  337. #timeline-container .timeline-axis-text {
  338. font-size: 12px;
  339. }
  340. }
  341. #timeline-container .timeline-event {
  342. -webkit-border-radius: 0;
  343. -moz-border-radius: 0;
  344. border-radius: 0;
  345. -moz-background-clip: padding;
  346. -webkit-background-clip: padding-box;
  347. background-clip: padding-box;
  348. border: 0 solid transparent;
  349. /*
  350. TODO move events with css3
  351. */
  352. }
  353. #timeline-container .timeline-event.timeline-event-range {
  354. background-color: #fff;
  355. }
  356. #timeline-container .timeline-event-content {
  357. margin: 0;
  358. }
  359. #timeline-container .timeline-event-content div.date {
  360. display: block;
  361. text-decoration: none;
  362. text-align: left;
  363. cursor: pointer;
  364. padding: 4px 0;
  365. }
  366. #timeline-container .timeline-event-content div.date .text-content {
  367. padding: 0 5px;
  368. margin-bottom: 4px;
  369. border-left: 3px solid #A5A5A5;
  370. }
  371. #timeline-container .timeline-event-content div.date:hover .text-content {
  372. border-left: 3px solid #77787B;
  373. }
  374. #timeline-container .timeline-event-content div.date h4,
  375. #timeline-container .timeline-event-content div.date h5 {
  376. margin: 0;
  377. color: #A5A5A5;
  378. }
  379. #timeline-container .timeline-event-content div.date h4 {
  380. font-family: "MuseoSans", Arial, sans-serif;
  381. -moz-font-feature-settings: "calt=0,liga=0";
  382. font-size: 12px;
  383. font-weight: 500;
  384. font-style: italic;
  385. }
  386. #timeline-container .timeline-event-content div.date h5 {
  387. font-family: "MuseoSans", Arial, sans-serif;
  388. -moz-font-feature-settings: "calt=0,liga=0";
  389. font-size: 12px;
  390. font-weight: 700;
  391. }
  392. body.view-mode-dot #timeline-container .timeline-event-content div.date {
  393. padding: 0;
  394. }
  395. body.view-mode-dot #timeline-container .timeline-event-content div.date .text-content {
  396. min-height: 15px;
  397. }
  398. body.view-mode-dot #timeline-container .timeline-event-content div.date h4,
  399. body.view-mode-dot #timeline-container .timeline-event-content div.date h5,
  400. body.view-mode-dot #timeline-container .timeline-event-content div.date img {
  401. display: none;
  402. }
  403. body.view-mode-titles #timeline-container .timeline-event-content div.date {
  404. background-color: #fff;
  405. }
  406. body.view-mode-titles #timeline-container .timeline-event-content div.date h4,
  407. body.view-mode-titles #timeline-container .timeline-event-content div.date h5 {
  408. display: block;
  409. }
  410. body.view-mode-titles #timeline-container .timeline-event-content div.date img {
  411. display: none;
  412. }
  413. body.view-mode-thumbnails #timeline-container .timeline-event-content div.date h4,
  414. body.view-mode-thumbnails #timeline-container .timeline-event-content div.date h5,
  415. body.view-mode-thumbnails #timeline-container .timeline-event-content div.date img {
  416. display: block;
  417. }
  418. body.view-mode-thumbnails #timeline-container .timeline-event-content div.date img {
  419. max-width: 145px;
  420. height: auto;
  421. }
  422. body.view-mode-images #timeline-container .timeline-event-content div.date h4,
  423. body.view-mode-images #timeline-container .timeline-event-content div.date h5,
  424. body.view-mode-images #timeline-container .timeline-event-content div.date img {
  425. display: block;
  426. }
  427. #timeline-container .timeline-event-selected {
  428. background-color: transparent;
  429. }
  430. #timeline-container .timeline-event-selected .timeline-event-content div.date .text-content {
  431. border-left: 3px solid #77787B;
  432. }
  433. #timeline-container .timeline-event-selected .timeline-event-content div.date h4,
  434. #timeline-container .timeline-event-selected .timeline-event-content div.date h5 {
  435. color: #77787B;
  436. }
  437. .timeline-modal {
  438. width: 150px;
  439. min-height: 30px;
  440. padding: 5px;
  441. background-color: #fff;
  442. position: absolute;
  443. z-index: 99999;
  444. display: none;
  445. }
  446. .timeline-modal h4,
  447. .timeline-modal h5 {
  448. margin: 0;
  449. color: #77787B;
  450. }
  451. .timeline-modal h4 {
  452. font-family: "MuseoSans", Arial, sans-serif;
  453. -moz-font-feature-settings: "calt=0,liga=0";
  454. font-size: 12px;
  455. font-weight: 500;
  456. font-style: italic;
  457. }
  458. .timeline-modal h5 {
  459. font-family: "MuseoSans", Arial, sans-serif;
  460. -moz-font-feature-settings: "calt=0,liga=0";
  461. font-size: 12px;
  462. font-weight: 700;
  463. }
  464. /** layout */
  465. html,
  466. body {
  467. position: relative;
  468. width: 100%;
  469. height: 100%;
  470. /* background-color: red;*/
  471. overflow-y: hidden;
  472. }
  473. #container {
  474. width: 100%;
  475. height: 100%;
  476. min-width: none;
  477. min-height: 700px;
  478. margin: 0 auto;
  479. background-color: #FFF;
  480. }
  481. #container > .inner {
  482. width: 96%;
  483. height: 94%;
  484. padding: 1.5%;
  485. }
  486. /** HEADER */
  487. #header {
  488. height: 3%;
  489. width: 100%;
  490. position: relative;
  491. border-bottom: 2px solid #000;
  492. }
  493. #header .logo {
  494. height: 27px;
  495. position: relative;
  496. bottom: 0;
  497. left: 0;
  498. }
  499. html.oldie #header .logo {
  500. width: 49%;
  501. }
  502. #header .logo h1 {
  503. font-family: "MuseoSans", Arial, sans-serif;
  504. -moz-font-feature-settings: "calt=0,liga=0";
  505. font-size: 10px;
  506. font-weight: 900;
  507. text-decoration: none;
  508. color: #000;
  509. display: inline;
  510. /* @media screen and (max-width:1200px){ .11; }*/
  511. }
  512. @media screen and (min-width: 1201px) {
  513. #header .logo h1 {
  514. font-size: 12px;
  515. }
  516. }
  517. html.oldie #header .logo h1 {
  518. font-size: 9px;
  519. }
  520. #header .logo h1 a {
  521. text-decoration: none;
  522. }
  523. html.oldie #header #header-blocks {
  524. width: 62%;
  525. }
  526. #header ul.language-switcher-locale-url {
  527. padding: 0;
  528. margin: 0;
  529. }
  530. #header ul.language-switcher-locale-url li {
  531. padding-right: 0;
  532. }
  533. #header ul.language-switcher-locale-url li.active {
  534. display: none;
  535. }
  536. #header ul.language-switcher-locale-url a {
  537. font-family: "MuseoSans", Arial, sans-serif;
  538. -moz-font-feature-settings: "calt=0,liga=0";
  539. font-size: 10px;
  540. font-weight: 900;
  541. text-decoration: none;
  542. color: #000;
  543. display: inline;
  544. /* @media screen and (max-width:1200px){ .11; }*/
  545. }
  546. @media screen and (min-width: 1201px) {
  547. #header ul.language-switcher-locale-url a {
  548. font-size: 12px;
  549. }
  550. }
  551. html.oldie #header ul.language-switcher-locale-url a {
  552. font-size: 9px;
  553. }
  554. #header #search-block-form h2 {
  555. display: none;
  556. }
  557. #header #search-block-form .container-inline {
  558. height: 27px;
  559. line-height: 1;
  560. }
  561. #header #search-block-form .form-item {
  562. padding: 0;
  563. margin: 0;
  564. display: inline-block;
  565. vertical-align: middle;
  566. }
  567. #header #search-block-form .form-item label {
  568. display: none;
  569. }
  570. #header #search-block-form .form-item input.form-text {
  571. border: 1px solid #D4D4D4;
  572. width: 10em;
  573. font-family: "MuseoSans", Arial, sans-serif;
  574. -moz-font-feature-settings: "calt=0,liga=0";
  575. font-size: 10px;
  576. font-weight: 900;
  577. text-decoration: none;
  578. color: #000;
  579. display: inline;
  580. /* @media screen and (max-width:1200px){ .11; }*/
  581. font-weight: 500;
  582. padding: 2px;
  583. }
  584. @media screen and (min-width: 1201px) {
  585. #header #search-block-form .form-item input.form-text {
  586. font-size: 12px;
  587. }
  588. }
  589. html.oldie #header #search-block-form .form-item input.form-text {
  590. font-size: 9px;
  591. }
  592. #header #search-block-form #edit-actions {
  593. display: inline-block;
  594. vertical-align: middle;
  595. }
  596. #header #search-block-form #edit-actions input.form-submit {
  597. border: 0 solid #999;
  598. background-color: transparent;
  599. font-family: "MuseoSans", Arial, sans-serif;
  600. -moz-font-feature-settings: "calt=0,liga=0";
  601. font-size: 10px;
  602. font-weight: 900;
  603. text-decoration: none;
  604. color: #000;
  605. display: inline;
  606. /* @media screen and (max-width:1200px){ .11; }*/
  607. padding-right: 0;
  608. padding-top: 3px;
  609. }
  610. @media screen and (min-width: 1201px) {
  611. #header #search-block-form #edit-actions input.form-submit {
  612. font-size: 12px;
  613. }
  614. }
  615. html.oldie #header #search-block-form #edit-actions input.form-submit {
  616. font-size: 9px;
  617. }
  618. #header #search-block-form span.close-search {
  619. display: inline-block;
  620. vertical-align: middle;
  621. width: 20px;
  622. height: 20px;
  623. background-image: url('../images/btns_close.png');
  624. cursor: pointer;
  625. }
  626. #header #search-block-form.loading {
  627. background: transparent url('../images/ajax-loader.gif') no-repeat 98% center;
  628. }
  629. #header #search-block-form.loading input.form-submit {
  630. visibility: hidden;
  631. }
  632. /** RESPONSIVE */
  633. @media (min-width: 799px) {
  634. #header .logo {
  635. width: 340px;
  636. }
  637. #header-blocks {
  638. width: calc(100% - 340px);
  639. position: absolute;
  640. bottom: 0;
  641. right: 0;
  642. text-align: right;
  643. height: 27px;
  644. }
  645. #header-blocks .region {
  646. display: moz-inline-stack;
  647. display: inline-block;
  648. vertical-align: top;
  649. zoom: 1;
  650. *display: inline;
  651. /* margin-right:-.25em;*/
  652. }
  653. .ie7 #header-blocks .region,
  654. .ie8 #header-blocks .region {
  655. display: inline;
  656. }
  657. #header-blocks .region:not(:first-child) {
  658. margin-left: 0.5em;
  659. }
  660. html.oldie #header-blocks .region {
  661. float: left;
  662. margin-left: 10px;
  663. }
  664. #header-blocks ul.menu {
  665. padding: 0;
  666. margin: 0;
  667. }
  668. #header-blocks ul.menu li {
  669. display: moz-inline-stack;
  670. display: inline-block;
  671. vertical-align: top;
  672. zoom: 1;
  673. *display: inline;
  674. /* margin-right:-.25em;*/
  675. margin: 0;
  676. }
  677. .ie7 #header-blocks ul.menu li,
  678. .ie8 #header-blocks ul.menu li {
  679. display: inline;
  680. }
  681. #header-blocks ul.menu li:not(.last) {
  682. padding: 0 6px 0 0;
  683. }
  684. #header-blocks ul.menu li.last {
  685. padding: 0;
  686. }
  687. #header-blocks ul.menu li a {
  688. font-family: "MuseoSans", Arial, sans-serif;
  689. -moz-font-feature-settings: "calt=0,liga=0";
  690. font-size: 10px;
  691. font-weight: 900;
  692. text-decoration: none;
  693. color: #000;
  694. display: inline;
  695. /* @media screen and (max-width:1200px){ .11; }*/
  696. }
  697. html.oldie #header-blocks ul.menu li a {
  698. font-size: 9px;
  699. }
  700. }
  701. @media (min-width: 799px) and screen and (min-width: 1201px) {
  702. #header-blocks ul.menu li a {
  703. font-size: 12px;
  704. }
  705. }
  706. @media (max-width: 799px) {
  707. #header .logo {
  708. width: auto;
  709. z-index: 11;
  710. }
  711. #header-blocks {
  712. background-color: white;
  713. position: absolute;
  714. z-index: 10;
  715. bottom: 0;
  716. right: 0;
  717. height: 27px;
  718. text-align: right;
  719. transition: transform 0.5s ease-in-out;
  720. transform: translateX(150%);
  721. }
  722. #header-blocks .region {
  723. background-color: white;
  724. padding: 0 1em 0 1em;
  725. }
  726. #header-blocks .region:first-child {
  727. padding-top: 2em;
  728. }
  729. #header-blocks .region:last-child {
  730. padding-bottom: 1em;
  731. }
  732. #header-blocks ul {
  733. padding: 0;
  734. margin: 0;
  735. text-align: right;
  736. }
  737. #header-blocks ul li {
  738. list-style: none;
  739. margin: 0;
  740. padding: 0!important;
  741. }
  742. #header-blocks ul li a {
  743. font-family: "MuseoSans", Arial, sans-serif;
  744. -moz-font-feature-settings: "calt=0,liga=0";
  745. font-size: 10px;
  746. font-weight: 900;
  747. text-decoration: none;
  748. color: #000;
  749. display: inline;
  750. /* @media screen and (max-width:1200px){ .11; }*/
  751. }
  752. html.oldie #header-blocks ul li a {
  753. font-size: 9px;
  754. }
  755. body.burger-header-shown #header-blocks {
  756. transform: translateX(0);
  757. }
  758. .burger-icon {
  759. height: 15px;
  760. width: 20px;
  761. position: absolute;
  762. top: 0.5em;
  763. right: 0.5em;
  764. display: inline-block;
  765. vertical-align: middle;
  766. z-index: 20;
  767. cursor: pointer;
  768. }
  769. .burger-icon.sidebar-first {
  770. background-color: #A5A5A5;
  771. }
  772. .burger-icon span {
  773. display: block;
  774. background: #000;
  775. width: 100%;
  776. height: 2px;
  777. margin-top: -2px;
  778. position: absolute;
  779. left: 0;
  780. top: 50%;
  781. }
  782. .burger-icon:before,
  783. .burger-icon:after {
  784. content: "";
  785. display: block;
  786. background: #000;
  787. width: 100%;
  788. height: 2px;
  789. position: absolute;
  790. left: 0;
  791. transform-origin: center center;
  792. transform: rotate(0deg);
  793. transition: all 0.3s ease;
  794. }
  795. .burger-icon:before {
  796. top: 2px;
  797. margin-top: -2px;
  798. }
  799. .burger-icon:after {
  800. bottom: 2px;
  801. margin-bottom: -2px;
  802. }
  803. body.burger-header-shown .burger-icon.header span,
  804. body.burger-sidebar-first-shown .burger-icon.sidebar-first span {
  805. background: transparent;
  806. }
  807. body.burger-header-shown .burger-icon.header:before,
  808. body.burger-sidebar-first-shown .burger-icon.sidebar-first:before {
  809. top: 55%;
  810. transform: rotate(45deg);
  811. }
  812. body.burger-header-shown .burger-icon.header:after,
  813. body.burger-sidebar-first-shown .burger-icon.sidebar-first:after {
  814. bottom: 55%;
  815. transform: rotate(-45deg);
  816. }
  817. }
  818. @media (max-width: 799px) and screen and (min-width: 1201px) {
  819. #header-blocks ul li a {
  820. font-size: 12px;
  821. }
  822. }
  823. /** INTRO-MODAL */
  824. #intro-wrapper {
  825. position: fixed;
  826. z-index: 200;
  827. width: 100%;
  828. height: 100%;
  829. top: 0;
  830. left: 0;
  831. }
  832. #intro-wrapper .bg {
  833. background-color: #fff;
  834. -moz-opacity: 0.6;
  835. -khtml-opacity: 0.6;
  836. -webkit-opacity: 0.6;
  837. opacity: 0.6;
  838. width: 100%;
  839. height: 100%;
  840. position: absolute;
  841. }
  842. #intro-wrapper .modal {
  843. margin: 0 auto;
  844. top: 0;
  845. width: 40%;
  846. position: relative;
  847. overflow: hidden;
  848. -webkit-transition: margin-top 0.8s ease-out;
  849. -moz-transition: margin-top 0.8s ease-out;
  850. -o-transition: margin-top 0.8s ease-out;
  851. transition: margin-top 0.8s ease-out;
  852. -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.8);
  853. -moz-box-shadow: 0 0 7px rgba(0, 0, 0, 0.8);
  854. box-shadow: 0 0 7px rgba(0, 0, 0, 0.8);
  855. -webkit-border-radius: 5px;
  856. -moz-border-radius: 5px;
  857. border-radius: 5px;
  858. -moz-background-clip: padding;
  859. -webkit-background-clip: padding-box;
  860. background-clip: padding-box;
  861. background-color: #fff;
  862. }
  863. #intro-wrapper .modal > * {
  864. padding: 1em;
  865. }
  866. #intro-wrapper .modal p {
  867. font-size: 14px;
  868. }
  869. #intro-wrapper .btns {
  870. text-align: right;
  871. }
  872. #intro-wrapper .btns span {
  873. display: inline-block;
  874. -webkit-border-radius: 3px;
  875. -moz-border-radius: 3px;
  876. border-radius: 3px;
  877. -moz-background-clip: padding;
  878. -webkit-background-clip: padding-box;
  879. background-clip: padding-box;
  880. background-color: #ddd;
  881. cursor: pointer;
  882. padding: 0.1em 0.5em 0.1em 0.5em;
  883. font-size: 14px;
  884. margin: 0.5em;
  885. }
  886. /** MAIN */
  887. #main {
  888. height: 97%;
  889. position: relative;
  890. /** SIDEBAR FIRST */
  891. /** CENTER */
  892. /** SIDEBAR SECOND */
  893. }
  894. #main #sidebar-first {
  895. height: 99%;
  896. overflow-x: hidden;
  897. overflow-y: auto;
  898. }
  899. #main #sidebar-first .block-menu-block,
  900. #main #sidebar-first .block-menu-block > .content {
  901. height: 100%;
  902. }
  903. #main #sidebar-first #myList-nav {
  904. max-height: 100%;
  905. display: flex;
  906. flex-flow: row nowrap;
  907. }
  908. #main #sidebar-first #myList-nav > div {
  909. flex: 0 0 auto;
  910. width: 1em;
  911. }
  912. #main #sidebar-first #myList-nav > div .ln-letters {
  913. margin: 0;
  914. }
  915. #main #sidebar-first #myList-nav > ul {
  916. flex: 0 0 auto;
  917. box-sizing: border-box;
  918. width: calc(100% - 1em);
  919. max-height: 100%;
  920. padding-left: 2em;
  921. padding-right: 2em;
  922. overflow-x: hidden;
  923. overflow-y: auto;
  924. margin-top: 2em;
  925. }
  926. @media (min-width: 799px) {
  927. #main #sidebar-first {
  928. display: moz-inline-stack;
  929. display: inline-block;
  930. vertical-align: top;
  931. zoom: 1;
  932. *display: inline;
  933. /* margin-right:-.25em;*/
  934. width: 300px;
  935. }
  936. .ie7 #main #sidebar-first,
  937. .ie8 #main #sidebar-first {
  938. display: inline;
  939. }
  940. }
  941. @media (max-width: 799px) {
  942. #main #sidebar-first {
  943. position: absolute;
  944. top: 0;
  945. left: 0;
  946. width: 70%;
  947. background-color: #A5A5A5;
  948. z-index: 10;
  949. transition: transform 0.5s ease-in-out;
  950. transform: translateX(calc(-100% + 2em));
  951. }
  952. #main #sidebar-first #myList-nav ul {
  953. overflow-y: hidden;
  954. }
  955. body.burger-sidebar-first-shown #main #sidebar-first {
  956. transform: translateX(0);
  957. }
  958. body.burger-sidebar-first-shown #main #sidebar-first #myList-nav ul {
  959. overflow-y: auto;
  960. }
  961. }
  962. #main ul li.leaf {
  963. list-style-image: none;
  964. list-style-type: none;
  965. font-size: 12px;
  966. margin-bottom: 10px;
  967. }
  968. #main ul li.leaf a {
  969. text-decoration: none;
  970. }
  971. #main ul li.leaf a:visited {
  972. font-weight: 700;
  973. }
  974. #main ul li.leaf a:hover {
  975. font-weight: 700;
  976. }
  977. #main ul li.leaf a:active {
  978. font-weight: 700;
  979. }
  980. #main ul li.leaf .active-trail {
  981. font-weight: 700;
  982. }
  983. .not-front.node-type-page #main,
  984. .not-front.node-type-temoignage #main,
  985. .not-front.node-type-document-video #main,
  986. .not-front.node-type-biographie #main {
  987. background-color: #D3D3D3;
  988. }
  989. #main #center {
  990. display: moz-inline-stack;
  991. display: inline-block;
  992. vertical-align: top;
  993. zoom: 1;
  994. *display: inline;
  995. /* margin-right:-.25em;*/
  996. width: 100%;
  997. height: 99%;
  998. position: relative;
  999. padding-top: 1%;
  1000. /** CONTENT */
  1001. }
  1002. .ie7 #main #center,
  1003. .ie8 #main #center {
  1004. display: inline;
  1005. }
  1006. #main #center .page-title {
  1007. overflow: hidden;
  1008. font-family: "MuseoSans", Arial, sans-serif;
  1009. -moz-font-feature-settings: "calt=0,liga=0";
  1010. font-size: 10px;
  1011. font-weight: 900;
  1012. text-transform: uppercase;
  1013. margin: 0;
  1014. }
  1015. @media screen and (min-width: 1201px) {
  1016. #main #center .page-title {
  1017. font-size: 12px;
  1018. }
  1019. }
  1020. .timeline #main #center .page-title {
  1021. color: #A5A5A5;
  1022. }
  1023. .js .front #main #center #content,
  1024. .js .node-type-performance #main #center #content {
  1025. display: none;
  1026. overflow: hidden;
  1027. }
  1028. .layout-intro #main #center #content {
  1029. max-width: 700px;
  1030. margin: 0 auto;
  1031. }
  1032. #main #center #content .field-label {
  1033. font-size: 12px;
  1034. color: #000;
  1035. margin-top: 1em;
  1036. margin-bottom: 0,7em;
  1037. }
  1038. #main #center #perfnode {
  1039. height: 85%;
  1040. }
  1041. #main #center #perfnode .node .node-effectuation .field-item {
  1042. font-size: 10px;
  1043. }
  1044. #main #center #perfnode p {
  1045. margin: 0;
  1046. }
  1047. #main #center #perfnode .locality {
  1048. margin-left: -5px;
  1049. }
  1050. .not-front.node-type-page #main #center,
  1051. .not-front.node-type-temoignage #main #center,
  1052. .not-front.node-type-document-video #main #center,
  1053. .not-front.node-type-biographie #main #center {
  1054. box-sizing: border-box;
  1055. }
  1056. @media (min-width: 799px) {
  1057. .not-front.node-type-page #main #center,
  1058. .not-front.node-type-temoignage #main #center,
  1059. .not-front.node-type-document-video #main #center,
  1060. .not-front.node-type-biographie #main #center {
  1061. width: calc(99% - 300px);
  1062. padding: 20px;
  1063. }
  1064. }
  1065. @media (max-width: 799px) {
  1066. .not-front.node-type-page #main #center,
  1067. .not-front.node-type-temoignage #main #center,
  1068. .not-front.node-type-document-video #main #center,
  1069. .not-front.node-type-biographie #main #center {
  1070. width: 100%;
  1071. padding: 0.5em 3em;
  1072. }
  1073. }
  1074. .not-front.node-type-page #main #center #content p,
  1075. .not-front.node-type-temoignage #main #center #content p,
  1076. .not-front.node-type-document-video #main #center #content p,
  1077. .not-front.node-type-biographie #main #center #content p {
  1078. font-size: 12px;
  1079. color: #000;
  1080. line-height: 1.4;
  1081. }
  1082. .not-front.node-type-page #main #center #content a,
  1083. .not-front.node-type-temoignage #main #center #content a,
  1084. .not-front.node-type-document-video #main #center #content a,
  1085. .not-front.node-type-biographie #main #center #content a {
  1086. text-decoration: none;
  1087. font-size: 12px;
  1088. }
  1089. .not-front.node-type-page #main #center #content a:visited,
  1090. .not-front.node-type-temoignage #main #center #content a:visited,
  1091. .not-front.node-type-document-video #main #center #content a:visited,
  1092. .not-front.node-type-biographie #main #center #content a:visited {
  1093. font-weight: 700;
  1094. }
  1095. .not-front.node-type-page #main #center #content a:hover,
  1096. .not-front.node-type-temoignage #main #center #content a:hover,
  1097. .not-front.node-type-document-video #main #center #content a:hover,
  1098. .not-front.node-type-biographie #main #center #content a:hover {
  1099. font-weight: 700;
  1100. }
  1101. .not-front.node-type-page #main #center #content a:active,
  1102. .not-front.node-type-temoignage #main #center #content a:active,
  1103. .not-front.node-type-document-video #main #center #content a:active,
  1104. .not-front.node-type-biographie #main #center #content a:active {
  1105. font-weight: 700;
  1106. }
  1107. #main #sidebar-second {
  1108. display: moz-inline-stack;
  1109. display: inline-block;
  1110. vertical-align: top;
  1111. zoom: 1;
  1112. *display: inline;
  1113. /* margin-right:-.25em;*/
  1114. width: 18%;
  1115. }
  1116. .ie7 #main #sidebar-second,
  1117. .ie8 #main #sidebar-second {
  1118. display: inline;
  1119. }
  1120. /** filters */
  1121. #filters {
  1122. /* height:30%;*/
  1123. }
  1124. #filters .filter {
  1125. display: moz-inline-stack;
  1126. display: inline-block;
  1127. vertical-align: top;
  1128. zoom: 1;
  1129. *display: inline;
  1130. /* margin-right:-.25em;*/
  1131. width: 32%;
  1132. height: 100%;
  1133. margin-left: 2%;
  1134. }
  1135. .ie7 #filters .filter,
  1136. .ie8 #filters .filter {
  1137. display: inline;
  1138. }
  1139. #filters .filter.filter-0 {
  1140. margin-left: 0;
  1141. }
  1142. #filters .filter .filters-selection {
  1143. height: 100%;
  1144. overflow: hidden;
  1145. position: relative;
  1146. }
  1147. #filters .filter .filters-selection .list {
  1148. height: 100%;
  1149. overflow: auto;
  1150. margin-bottom: 10px;
  1151. }
  1152. #filters .filter .filters-selection .list ul,
  1153. #filters .filter .filters-selection .list li {
  1154. padding: 0;
  1155. margin: 0;
  1156. }
  1157. #filters .filter .filters-selection .list ul {
  1158. padding-bottom: 20px;
  1159. }
  1160. #filters .filter .filters-selection .list li {
  1161. cursor: pointer;
  1162. line-height: 1;
  1163. overflow: hidden;
  1164. height: auto;
  1165. -webkit-transition: height 0.1s linear;
  1166. -moz-transition: height 0.1s linear;
  1167. -o-transition: height 0.1s linear;
  1168. transition: height 0.1s linear;
  1169. }
  1170. #filters .filter .filters-selection .list li span {
  1171. font-family: "MuseoSans", Arial, sans-serif;
  1172. -moz-font-feature-settings: "calt=0,liga=0";
  1173. font-size: 10px;
  1174. font-weight: 500;
  1175. padding: 0.3em 0.4em 0.2em 0;
  1176. }
  1177. @media screen and (min-width: 1201px) {
  1178. #filters .filter .filters-selection .list li span {
  1179. font-size: 12px;
  1180. }
  1181. }
  1182. #filters .filter .filters-selection .list li:hover span {
  1183. padding-left: 0.3em;
  1184. }
  1185. #filters .filter .filters-selection .list li.subtracted {
  1186. height: 0;
  1187. }
  1188. #filters .filter .filters-selection .list li.subtracted.conserved {
  1189. height: auto;
  1190. }
  1191. #filters .filter .filters-selection .search {
  1192. position: absolute;
  1193. right: 10px;
  1194. bottom: 0;
  1195. width: 40%;
  1196. font-size: 10px;
  1197. height: 10px;
  1198. border: 1px solid #D4D4D4;
  1199. }
  1200. #filters .filter .filters-selection .title {
  1201. position: absolute;
  1202. left: 0;
  1203. bottom: 0;
  1204. background-color: #fff;
  1205. width: 90%;
  1206. padding: 0.5em 0 0;
  1207. font-family: "MuseoSans", Arial, sans-serif;
  1208. -moz-font-feature-settings: "calt=0,liga=0";
  1209. font-size: 10px;
  1210. font-weight: 900;
  1211. text-transform: uppercase;
  1212. margin: 0;
  1213. }
  1214. @media screen and (min-width: 1201px) {
  1215. #filters .filter .filters-selection .title {
  1216. font-size: 12px;
  1217. }
  1218. }
  1219. #filters .filter .filters-selected span {
  1220. cursor: pointer;
  1221. font-family: "MuseoSans", Arial, sans-serif;
  1222. -moz-font-feature-settings: "calt=0,liga=0";
  1223. font-size: 10px;
  1224. font-weight: 500;
  1225. padding: 0.2em 2em 0 0.4em;
  1226. display: moz-inline-stack;
  1227. display: inline-block;
  1228. vertical-align: top;
  1229. zoom: 1;
  1230. *display: inline;
  1231. /* margin-right:-.25em;*/
  1232. margin: 0.3em 0.3em 0 0;
  1233. background-repeat: no-repeat;
  1234. background-position: right center;
  1235. }
  1236. @media screen and (min-width: 1201px) {
  1237. #filters .filter .filters-selected span {
  1238. font-size: 12px;
  1239. }
  1240. }
  1241. .ie7 #filters .filter .filters-selected span,
  1242. .ie8 #filters .filter .filters-selected span {
  1243. display: inline;
  1244. }
  1245. #filters .filter.filter-0 .filters-selection {
  1246. border-bottom: 2px solid #98A572;
  1247. }
  1248. #filters .filter.filter-0 .list li {
  1249. color: #566B26;
  1250. }
  1251. #filters .filter.filter-0 .list li:hover {
  1252. color: #566B26;
  1253. }
  1254. #filters .filter.filter-0 .list li:hover span {
  1255. background-color: #D3DAC2;
  1256. }
  1257. #filters .filter.filter-0 .list li.selected {
  1258. color: #98A572;
  1259. }
  1260. #filters .filter.filter-0 .list .jspContainer .jspVerticalBar {
  1261. width: 4px;
  1262. background-color: #D3DAC2;
  1263. }
  1264. #filters .filter.filter-0 .list .jspContainer .jspHorizontalBar {
  1265. height: 4px;
  1266. background-color: #D3DAC2;
  1267. }
  1268. #filters .filter.filter-0 .list .jspContainer .jspTrack {
  1269. background-color: transparent;
  1270. }
  1271. #filters .filter.filter-0 .list .jspContainer .jspTrack .jspDrag {
  1272. background-color: #98A572;
  1273. -webkit-border-radius: 2px;
  1274. -moz-border-radius: 2px;
  1275. border-radius: 2px;
  1276. -moz-background-clip: padding;
  1277. -webkit-background-clip: padding-box;
  1278. background-clip: padding-box;
  1279. -moz-opacity: 0.6;
  1280. -khtml-opacity: 0.6;
  1281. -webkit-opacity: 0.6;
  1282. opacity: 0.6;
  1283. -webkit-transition: opacity 0.2s ease-out;
  1284. -moz-transition: opacity 0.2s ease-out;
  1285. -o-transition: opacity 0.2s ease-out;
  1286. transition: opacity 0.2s ease-out;
  1287. }
  1288. #filters .filter.filter-0 .list .jspContainer .jspTrack:hover .jspDrag {
  1289. -moz-opacity: 1;
  1290. -khtml-opacity: 1;
  1291. -webkit-opacity: 1;
  1292. opacity: 1;
  1293. }
  1294. #filters .filter.filter-0 .search {
  1295. color: #566B26;
  1296. }
  1297. #filters .filter.filter-0 .title {
  1298. color: #566B26;
  1299. }
  1300. #filters .filter.filter-0 .filters-selected span {
  1301. background-color: #D3DAC2;
  1302. color: #566B26;
  1303. font-weight: 700;
  1304. }
  1305. body.layout-timeline #filters .filter.filter-0 .filters-selected span {
  1306. background-image: url('../images/btns_close_color-02.png');
  1307. }
  1308. #filters .filter.filter-1 .filters-selection {
  1309. border-bottom: 2px solid #BDA3B7;
  1310. }
  1311. #filters .filter.filter-1 .list li {
  1312. color: #986C8F;
  1313. }
  1314. #filters .filter.filter-1 .list li:hover {
  1315. color: #986C8F;
  1316. }
  1317. #filters .filter.filter-1 .list li:hover span {
  1318. background-color: #E3D9E0;
  1319. }
  1320. #filters .filter.filter-1 .list li.selected {
  1321. color: #BDA3B7;
  1322. }
  1323. #filters .filter.filter-1 .list .jspContainer .jspVerticalBar {
  1324. width: 4px;
  1325. background-color: #E3D9E0;
  1326. }
  1327. #filters .filter.filter-1 .list .jspContainer .jspHorizontalBar {
  1328. height: 4px;
  1329. background-color: #E3D9E0;
  1330. }
  1331. #filters .filter.filter-1 .list .jspContainer .jspTrack {
  1332. background-color: transparent;
  1333. }
  1334. #filters .filter.filter-1 .list .jspContainer .jspTrack .jspDrag {
  1335. background-color: #BDA3B7;
  1336. -webkit-border-radius: 2px;
  1337. -moz-border-radius: 2px;
  1338. border-radius: 2px;
  1339. -moz-background-clip: padding;
  1340. -webkit-background-clip: padding-box;
  1341. background-clip: padding-box;
  1342. -moz-opacity: 0.6;
  1343. -khtml-opacity: 0.6;
  1344. -webkit-opacity: 0.6;
  1345. opacity: 0.6;
  1346. -webkit-transition: opacity 0.2s ease-out;
  1347. -moz-transition: opacity 0.2s ease-out;
  1348. -o-transition: opacity 0.2s ease-out;
  1349. transition: opacity 0.2s ease-out;
  1350. }
  1351. #filters .filter.filter-1 .list .jspContainer .jspTrack:hover .jspDrag {
  1352. -moz-opacity: 1;
  1353. -khtml-opacity: 1;
  1354. -webkit-opacity: 1;
  1355. opacity: 1;
  1356. }
  1357. #filters .filter.filter-1 .search {
  1358. color: #986C8F;
  1359. }
  1360. #filters .filter.filter-1 .title {
  1361. color: #986C8F;
  1362. }
  1363. #filters .filter.filter-1 .filters-selected span {
  1364. background-color: #E3D9E0;
  1365. color: #986C8F;
  1366. font-weight: 700;
  1367. }
  1368. body.layout-timeline #filters .filter.filter-1 .filters-selected span {
  1369. background-image: url('../images/btns_close_color-01.png');
  1370. }
  1371. #filters .filter.filter-2 .filters-selection {
  1372. border-bottom: 2px solid #6C9EB5;
  1373. }
  1374. #filters .filter.filter-2 .list li {
  1375. color: #00415C;
  1376. }
  1377. #filters .filter.filter-2 .list li:hover {
  1378. color: #00415C;
  1379. }
  1380. #filters .filter.filter-2 .list li:hover span {
  1381. background-color: #ADC7D6;
  1382. }
  1383. #filters .filter.filter-2 .list li.selected {
  1384. color: #6C9EB5;
  1385. }
  1386. #filters .filter.filter-2 .list .jspContainer .jspVerticalBar {
  1387. width: 4px;
  1388. background-color: #ADC7D6;
  1389. }
  1390. #filters .filter.filter-2 .list .jspContainer .jspHorizontalBar {
  1391. height: 4px;
  1392. background-color: #ADC7D6;
  1393. }
  1394. #filters .filter.filter-2 .list .jspContainer .jspTrack {
  1395. background-color: transparent;
  1396. }
  1397. #filters .filter.filter-2 .list .jspContainer .jspTrack .jspDrag {
  1398. background-color: #6C9EB5;
  1399. -webkit-border-radius: 2px;
  1400. -moz-border-radius: 2px;
  1401. border-radius: 2px;
  1402. -moz-background-clip: padding;
  1403. -webkit-background-clip: padding-box;
  1404. background-clip: padding-box;
  1405. -moz-opacity: 0.6;
  1406. -khtml-opacity: 0.6;
  1407. -webkit-opacity: 0.6;
  1408. opacity: 0.6;
  1409. -webkit-transition: opacity 0.2s ease-out;
  1410. -moz-transition: opacity 0.2s ease-out;
  1411. -o-transition: opacity 0.2s ease-out;
  1412. transition: opacity 0.2s ease-out;
  1413. }
  1414. #filters .filter.filter-2 .list .jspContainer .jspTrack:hover .jspDrag {
  1415. -moz-opacity: 1;
  1416. -khtml-opacity: 1;
  1417. -webkit-opacity: 1;
  1418. opacity: 1;
  1419. }
  1420. #filters .filter.filter-2 .search {
  1421. color: #00415C;
  1422. }
  1423. #filters .filter.filter-2 .title {
  1424. color: #00415C;
  1425. }
  1426. #filters .filter.filter-2 .filters-selected span {
  1427. background-color: #ADC7D6;
  1428. color: #00415C;
  1429. font-weight: 700;
  1430. }
  1431. body.layout-timeline #filters .filter.filter-2 .filters-selected span {
  1432. background-image: url('../images/btns_close_color-03.png');
  1433. }
  1434. /** perfnode */
  1435. #perfnode {
  1436. overflow: hidden;
  1437. position: relative;
  1438. background-color: #F2F2F2;
  1439. }
  1440. #perfnode .prev-perf {
  1441. position: absolute;
  1442. top: 50%;
  1443. width: 20px;
  1444. height: 20px;
  1445. margin-top: -10px;
  1446. cursor: pointer;
  1447. z-index: 150;
  1448. background-color: #fff;
  1449. left: 0;
  1450. background-image: url('../images/btns_moveleft.png');
  1451. margin-left: -4px;
  1452. }
  1453. #perfnode .next-perf {
  1454. position: absolute;
  1455. top: 50%;
  1456. width: 20px;
  1457. height: 20px;
  1458. margin-top: -10px;
  1459. cursor: pointer;
  1460. z-index: 150;
  1461. background-color: #fff;
  1462. right: 0;
  1463. background-image: url('../images/btns_moveright.png');
  1464. margin-right: -4px;
  1465. }
  1466. #perfnode .loader {
  1467. position: absolute;
  1468. top: 50%;
  1469. left: 50%;
  1470. width: 20px;
  1471. height: 20px;
  1472. margin-left: -10px;
  1473. margin-top: -10px;
  1474. background-image: url('../images/loader.gif');
  1475. z-index: 100;
  1476. display: none;
  1477. }
  1478. #perfnode.loading .loader {
  1479. display: block;
  1480. }
  1481. #perfnode .close {
  1482. position: absolute;
  1483. top: 0;
  1484. right: 0;
  1485. width: 19px;
  1486. height: 20px;
  1487. background-image: url('../images/btns_close.png');
  1488. z-index: 100;
  1489. display: block;
  1490. }
  1491. #perfnode.loading .close {
  1492. display: none;
  1493. }
  1494. #perfnode .node-container {
  1495. margin: 0 20px;
  1496. }
  1497. #perfnode .scroller > .node > .grid-block {
  1498. position: absolute;
  1499. }
  1500. #perfnode .scroller > .node h1.node-title {
  1501. margin: 0;
  1502. font-family: "MuseoSans", Arial, sans-serif;
  1503. -moz-font-feature-settings: "calt=0,liga=0";
  1504. font-weight: 900;
  1505. font-size: 24px;
  1506. width: 300px;
  1507. /* background-color:rgba(255,0,0,0.1);*/
  1508. padding: 0;
  1509. }
  1510. #perfnode .scroller > .node .field-label {
  1511. font-family: "MuseoSans", Arial, sans-serif;
  1512. -moz-font-feature-settings: "calt=0,liga=0";
  1513. font-weight: 900;
  1514. font-size: 10px;
  1515. text-transform: uppercase;
  1516. color: #A5A5A5;
  1517. }
  1518. #perfnode .scroller > .node .field-personne {
  1519. width: 200px;
  1520. /* background-color:rgba(255,0,0,0.1);*/
  1521. padding: 0;
  1522. font-family: "MuseoSans", Arial, sans-serif;
  1523. -moz-font-feature-settings: "calt=0,liga=0";
  1524. font-weight: 500;
  1525. font-size: 12px;
  1526. text-transform: uppercase;
  1527. }
  1528. #perfnode .scroller > .node .field-type-textauthor,
  1529. #perfnode .scroller > .node > .field-type-text-long {
  1530. width: 400px;
  1531. /* background-color:rgba(255,0,0,0.1);*/
  1532. padding: 0;
  1533. }
  1534. #perfnode .scroller > .node .field-type-textauthor .field-item,
  1535. #perfnode .scroller > .node > .field-type-text-long .field-item {
  1536. max-height: 300px;
  1537. overflow: auto;
  1538. font-family: "MuseoSans", Arial, sans-serif;
  1539. -moz-font-feature-settings: "calt=0,liga=0";
  1540. font-weight: 500;
  1541. font-size: 12px;
  1542. }
  1543. #perfnode .scroller > .node .field-type-textauthor address,
  1544. #perfnode .scroller > .node > .field-type-text-long address {
  1545. font-weight: 700;
  1546. }
  1547. #perfnode .scroller > .node .field-name-field-serie {
  1548. font-family: "MuseoSans", Arial, sans-serif;
  1549. -moz-font-feature-settings: "calt=0,liga=0";
  1550. font-weight: 500;
  1551. font-size: 16px;
  1552. width: 300px;
  1553. /* background-color:rgba(255,0,0,0.1);*/
  1554. padding: 0;
  1555. }
  1556. #perfnode .scroller > .node .field-name-field-type-de-performance {
  1557. font-family: "MuseoSans", Arial, sans-serif;
  1558. -moz-font-feature-settings: "calt=0,liga=0";
  1559. font-weight: 500;
  1560. font-size: 16px;
  1561. width: 300px;
  1562. /* background-color:rgba(255,0,0,0.1);*/
  1563. padding: 0;
  1564. }
  1565. #perfnode .scroller > .node .field-name-field-tags-libre {
  1566. font-family: "MuseoSans", Arial, sans-serif;
  1567. -moz-font-feature-settings: "calt=0,liga=0";
  1568. font-weight: 500;
  1569. font-size: 12px;
  1570. width: 200px;
  1571. /* background-color:rgba(255,0,0,0.1);*/
  1572. padding: 0;
  1573. }
  1574. #perfnode .scroller > .node .field-name-field-site-internet {
  1575. font-family: "MuseoSans", Arial, sans-serif;
  1576. -moz-font-feature-settings: "calt=0,liga=0";
  1577. font-weight: 500;
  1578. font-size: 12px;
  1579. width: 300px;
  1580. /* background-color:rgba(255,0,0,0.1);*/
  1581. padding: 0;
  1582. }
  1583. #perfnode .scroller > .node .field-name-field-site-internet a {
  1584. text-decoration: none;
  1585. }
  1586. #perfnode .scroller > .node .field-name-field-site-internet a:hover {
  1587. text-decoration: underline;
  1588. }
  1589. #perfnode .scroller > .node .node-effectuation {
  1590. width: 200px;
  1591. /* background-color:rgba(255,0,0,0.1);*/
  1592. padding: 0;
  1593. }
  1594. #perfnode .scroller > .node .node-effectuation h1 {
  1595. margin: 0;
  1596. }
  1597. #perfnode .scroller > .node .node-effectuation .field-item {
  1598. font-family: "MuseoSans", Arial, sans-serif;
  1599. -moz-font-feature-settings: "calt=0,liga=0";
  1600. font-weight: 500;
  1601. font-size: 16px;
  1602. }
  1603. #perfnode .scroller > .node .node-document-video {
  1604. width: 400px;
  1605. /* background-color:rgba(255,0,0,0.1);*/
  1606. padding: 0;
  1607. font-family: "MuseoSans", Arial, sans-serif;
  1608. -moz-font-feature-settings: "calt=0,liga=0";
  1609. font-weight: 500;
  1610. font-size: 12px;
  1611. }
  1612. #perfnode .scroller > .node .node-document {
  1613. width: 300px;
  1614. /* background-color:rgba(255,0,0,0.1);*/
  1615. padding: 0;
  1616. font-family: "MuseoSans", Arial, sans-serif;
  1617. -moz-font-feature-settings: "calt=0,liga=0";
  1618. font-weight: 500;
  1619. font-size: 12px;
  1620. }
  1621. #perfnode .scroller > .node .node-objet {
  1622. width: 300px;
  1623. /* background-color:rgba(255,0,0,0.1);*/
  1624. padding: 0;
  1625. font-family: "MuseoSans", Arial, sans-serif;
  1626. -moz-font-feature-settings: "calt=0,liga=0";
  1627. font-weight: 500;
  1628. font-size: 12px;
  1629. }
  1630. #perfnode .scroller > .node .node-temoignage {
  1631. width: 300px;
  1632. /* background-color:rgba(255,0,0,0.1);*/
  1633. padding: 0;
  1634. font-family: "MuseoSans", Arial, sans-serif;
  1635. -moz-font-feature-settings: "calt=0,liga=0";
  1636. font-weight: 500;
  1637. font-size: 12px;
  1638. }
  1639. #perfnode .scroller > .node figure {
  1640. position: relative;
  1641. }
  1642. #perfnode .scroller > .node figure figcaption {
  1643. position: absolute;
  1644. right: 0;
  1645. bottom: 0;
  1646. width: 96%;
  1647. padding: 2%;
  1648. background-color: rgba(255, 255, 255, 0.8);
  1649. -moz-opacity: 0;
  1650. -khtml-opacity: 0;
  1651. -webkit-opacity: 0;
  1652. opacity: 0;
  1653. -webkit-transition: opacity 0.5s ease-out;
  1654. -moz-transition: opacity 0.5s ease-out;
  1655. -o-transition: opacity 0.5s ease-out;
  1656. transition: opacity 0.5s ease-out;
  1657. color: #000;
  1658. font-size: 10px;
  1659. }
  1660. #perfnode .scroller > .node figure .blank {
  1661. position: absolute;
  1662. top: 0;
  1663. left: 0;
  1664. width: 100%;
  1665. height: 100%;
  1666. }
  1667. #perfnode .scroller > .node figure:hover figcaption {
  1668. -moz-opacity: 1;
  1669. -khtml-opacity: 1;
  1670. -webkit-opacity: 1;
  1671. opacity: 1;
  1672. }
  1673. /** FOOTER */
  1674. #footer {
  1675. height: 3%;
  1676. display: none;
  1677. }
  1678. #footer #footer-top {
  1679. text-align: center;
  1680. }
  1681. #footer #footer-top p {
  1682. margin: 0;
  1683. }
  1684. #footer #footer-bottom .block {
  1685. display: moz-inline-stack;
  1686. display: inline-block;
  1687. vertical-align: top;
  1688. zoom: 1;
  1689. *display: inline;
  1690. /* margin-right:-.25em;*/
  1691. font-family: "MuseoSans", Arial, sans-serif;
  1692. -moz-font-feature-settings: "calt=0,liga=0";
  1693. font-size: 8px;
  1694. font-weight: 500;
  1695. color: #494949;
  1696. text-decoration: none;
  1697. }
  1698. .ie7 #footer #footer-bottom .block,
  1699. .ie8 #footer #footer-bottom .block {
  1700. display: inline;
  1701. }
  1702. #footer #footer-bottom .block a {
  1703. color: #494949;
  1704. text-decoration: none;
  1705. }
  1706. /** MISC */
  1707. li,
  1708. .item-list ul li {
  1709. list-style: none inside url();
  1710. margin-left: 0;
  1711. }
  1712. /** Messages. */
  1713. div.messages {
  1714. padding: 9px;
  1715. margin: 0.5em 0 0;
  1716. color: #036;
  1717. background: #bdf;
  1718. border: 1px solid #ace;
  1719. -moz-border-radius: 5px;
  1720. -webkit-border-radius: 5px;
  1721. border-radius: 5px;
  1722. }
  1723. div.warning {
  1724. color: #840;
  1725. background: #fe6;
  1726. border-color: #ed5;
  1727. }
  1728. div.error {
  1729. color: #fff;
  1730. background: #e63;
  1731. border-color: #d52;
  1732. }
  1733. div.error p.error {
  1734. color: #333;
  1735. }
  1736. div.status {
  1737. color: #360;
  1738. background: #cf8;
  1739. border-color: #be7;
  1740. }
  1741. /** Tab navigation */
  1742. ul.primary,
  1743. .views-admin-links ul {
  1744. font: 13px/1.231 sans-serif;
  1745. *font-size: small;
  1746. border-collapse: collapse;
  1747. padding: 0 0 0 1em;
  1748. /* LTR */
  1749. white-space: nowrap;
  1750. list-style: none;
  1751. margin: 5px;
  1752. height: auto;
  1753. line-height: normal;
  1754. border-bottom: 1px solid #bbb;
  1755. }
  1756. ul.primary li,
  1757. .views-admin-links ul li {
  1758. display: inline;
  1759. }
  1760. ul.primary li a,
  1761. .views-admin-links ul li a {
  1762. background-color: #ddd;
  1763. border-color: #bbb;
  1764. border-width: 1px;
  1765. border-style: solid solid none solid;
  1766. height: auto;
  1767. margin-right: 0.5em;
  1768. /* LTR */
  1769. padding: 0 1em;
  1770. text-decoration: none;
  1771. -moz-border-radius-topleft: 5px;
  1772. -webkit-border-top-left-radius: 5px;
  1773. border-top-left-radius: 5px;
  1774. -moz-border-radius-topright: 5px;
  1775. -webkit-border-top-right-radius: 5px;
  1776. border-top-right-radius: 5px;
  1777. }
  1778. ul.primary li a:hover,
  1779. .views-admin-links ul li a:hover {
  1780. background-color: #eee;
  1781. border-color: #ccc;
  1782. border-bottom-color: #eee;
  1783. }
  1784. ul.primary li.active a,
  1785. .views-admin-links ul li.active a {
  1786. background-color: #fff;
  1787. border: 1px solid #bbb;
  1788. border-bottom: #fff 1px solid;
  1789. }
  1790. ul.secondary {
  1791. border-bottom: 1px solid #bbb;
  1792. padding: 0.5em 1em;
  1793. margin: 5px;
  1794. }
  1795. ul.secondary li {
  1796. display: inline;
  1797. padding: 0 1em;
  1798. border-right: 1px solid #ccc;
  1799. /* LTR */
  1800. }
  1801. ul.secondary li a {
  1802. padding: 0;
  1803. text-decoration: none;
  1804. }
  1805. ul.secondary li a.active {
  1806. border-bottom: 4px solid #999;
  1807. }
  1808. /** sound cloud player */
  1809. .pa-sc-player .sc-trackslist {
  1810. display: none;
  1811. }
  1812. .pa-sc-player .sc-controls,
  1813. .pa-sc-player .sc-time-indicators,
  1814. .pa-sc-player .sc-time-span {
  1815. display: moz-inline-stack;
  1816. display: inline-block;
  1817. vertical-align: top;
  1818. zoom: 1;
  1819. *display: inline;
  1820. /* margin-right:-.25em;*/
  1821. vertical-align: middle;
  1822. }
  1823. .ie7 .pa-sc-player .sc-controls,
  1824. .ie7 .pa-sc-player .sc-time-indicators,
  1825. .ie7 .pa-sc-player .sc-time-span,
  1826. .ie8 .pa-sc-player .sc-controls,
  1827. .ie8 .pa-sc-player .sc-time-indicators,
  1828. .ie8 .pa-sc-player .sc-time-span {
  1829. display: inline;
  1830. }
  1831. .pa-sc-player .sc-controls {
  1832. position: relative;
  1833. width: 20px;
  1834. height: 20px;
  1835. margin-right: 15px;
  1836. }
  1837. .pa-sc-player .sc-controls a.sc-play,
  1838. .pa-sc-player .sc-controls a.sc-pause {
  1839. position: absolute;
  1840. top: 0;
  1841. left: 0;
  1842. display: block;
  1843. width: 100%;
  1844. height: 100%;
  1845. text-decoration: none;
  1846. -webkit-border-radius: 5px;
  1847. -moz-border-radius: 5px;
  1848. border-radius: 5px;
  1849. -moz-background-clip: padding;
  1850. -webkit-background-clip: padding-box;
  1851. background-clip: padding-box;
  1852. overflow: hidden;
  1853. }
  1854. .pa-sc-player .sc-controls a.sc-play span,
  1855. .pa-sc-player .sc-controls a.sc-pause span {
  1856. margin-left: -100px;
  1857. }
  1858. .pa-sc-player .sc-controls a.sc-play {
  1859. background: #fff url('../images/player-sound-cloud-VA-bg-play.png') no-repeat center center;
  1860. }
  1861. .pa-sc-player .sc-controls a.sc-pause {
  1862. background: #fff url('../images/player-sound-cloud-VA-bg-pause.png') no-repeat center center;
  1863. display: none;
  1864. }
  1865. .pa-sc-player.playing .sc-controls a.sc-play {
  1866. display: none;
  1867. }
  1868. .pa-sc-player.playing .sc-controls a.sc-pause {
  1869. display: block;
  1870. }
  1871. .pa-sc-player .sc-time-indicators {
  1872. font-size: 14px;
  1873. margin-right: 10px;
  1874. padding-top: 3px;
  1875. min-width: 75px;
  1876. }
  1877. .pa-sc-player .sc-time-span {
  1878. width: 300px;
  1879. height: 10px;
  1880. background-color: #fff;
  1881. position: relative;
  1882. cursor: pointer;
  1883. }
  1884. .pa-sc-player .sc-time-span .sc-buffer,
  1885. .pa-sc-player .sc-time-span .sc-played {
  1886. width: 0;
  1887. height: 100%;
  1888. position: absolute;
  1889. }
  1890. .pa-sc-player .sc-time-span .sc-buffer {
  1891. background-color: #ddd;
  1892. }
  1893. .pa-sc-player .sc-time-span .sc-played {
  1894. background-color: #1A1A1A;
  1895. }
  1896. .node-temoignage.grid-block .pa-sc-player {
  1897. background-color: #D3D3D3;
  1898. -webkit-border-radius: 3;
  1899. -moz-border-radius: 3;
  1900. border-radius: 3;
  1901. -moz-background-clip: padding;
  1902. -webkit-background-clip: padding-box;
  1903. background-clip: padding-box;
  1904. padding: 2px;
  1905. }
  1906. .node-temoignage.grid-block .pa-sc-player .sc-time-span {
  1907. width: 170px;
  1908. }
  1909. /** navigation sans javascript **/
  1910. html.no-js body,
  1911. html.classic-nav body,
  1912. html.no-js #container,
  1913. html.classic-nav #container,
  1914. html.no-js #container > .inner,
  1915. html.classic-nav #container > .inner,
  1916. html.no-js #header,
  1917. html.classic-nav #header,
  1918. html.no-js #main,
  1919. html.classic-nav #main,
  1920. html.no-js #footer,
  1921. html.classic-nav #footer {
  1922. height: auto;
  1923. }
  1924. html.no-js body,
  1925. html.classic-nav body {
  1926. overflow: auto;
  1927. }
  1928. html.no-js #container,
  1929. html.classic-nav #container {
  1930. width: 95%;
  1931. }
  1932. html.no-js body.front #main,
  1933. html.classic-nav body.front #main {
  1934. background-color: #D3D3D3;
  1935. height: 100%;
  1936. }
  1937. html.no-js body.front #main #center,
  1938. html.classic-nav body.front #main #center {
  1939. height: 100%;
  1940. }
  1941. html.no-js body.front #main #center .page-title,
  1942. html.classic-nav body.front #main #center .page-title {
  1943. margin-left: 2.5em;
  1944. }
  1945. html.no-js body.front #main #center #content,
  1946. html.classic-nav body.front #main #center #content {
  1947. padding: 2%;
  1948. display: block;
  1949. }
  1950. html.no-js body.front #main #center #content a,
  1951. html.classic-nav body.front #main #center #content a,
  1952. html.no-js body.front #main #center #content a:visited,
  1953. html.classic-nav body.front #main #center #content a:visited {
  1954. font-size: 12px;
  1955. font-weight: 500;
  1956. text-decoration: none;
  1957. }
  1958. html.no-js body.front #main #center #content a:hover,
  1959. html.classic-nav body.front #main #center #content a:hover {
  1960. font-size: 12px;
  1961. font-weight: 700;
  1962. text-decoration: none;
  1963. }
  1964. html.no-js body.front .item-list .pager li,
  1965. html.classic-nav body.front .item-list .pager li {
  1966. background-color: transparent;
  1967. color: #000;
  1968. padding: 0 0.25em;
  1969. }
  1970. html.no-js body.front .item-list .pager li a,
  1971. html.classic-nav body.front .item-list .pager li a,
  1972. html.no-js body.front .item-list .pager li a:visited,
  1973. html.classic-nav body.front .item-list .pager li a:visited {
  1974. color: #000;
  1975. }
  1976. html.no-js body.front .item-list li,
  1977. html.classic-nav body.front .item-list li,
  1978. html.no-js body.front .item-list ul li,
  1979. html.classic-nav body.front .item-list ul li {
  1980. color: #A5A5A5;
  1981. background-color: #fff;
  1982. display: inline-block;
  1983. vertical-align: top;
  1984. line-height: 0.1em;
  1985. margin-bottom: 1em;
  1986. padding-right: 1em;
  1987. padding-left: 0.5em;
  1988. }
  1989. html.no-js body.front .item-list li a,
  1990. html.classic-nav body.front .item-list li a,
  1991. html.no-js body.front .item-list ul li a,
  1992. html.classic-nav body.front .item-list ul li a,
  1993. html.no-js body.front .item-list li a:visited,
  1994. html.classic-nav body.front .item-list li a:visited,
  1995. html.no-js body.front .item-list ul li a:visited,
  1996. html.classic-nav body.front .item-list ul li a:visited {
  1997. color: #A5A5A5;
  1998. }
  1999. html.no-js body.front #home-performances-list,
  2000. html.classic-nav body.front #home-performances-list {
  2001. display: flex;
  2002. flex-flow: row wrap;
  2003. justify-content: space-between;
  2004. align-items: space-between;
  2005. }
  2006. html.no-js body.front #home-performances-list > li,
  2007. html.classic-nav body.front #home-performances-list > li {
  2008. padding: 0 0.5em 0.5em;
  2009. margin: 0.5em;
  2010. }
  2011. html.no-js body.front #home-performances-list > li.with-image,
  2012. html.classic-nav body.front #home-performances-list > li.with-image {
  2013. flex: 0 1 auto;
  2014. }
  2015. html.no-js body.front #home-performances-list > li.without-image,
  2016. html.classic-nav body.front #home-performances-list > li.without-image {
  2017. flex: 1 1 auto;
  2018. }
  2019. html.no-js body.front #home-performances-list > li.borne-date,
  2020. html.classic-nav body.front #home-performances-list > li.borne-date {
  2021. background-color: #77787B;
  2022. color: #F2F2F2;
  2023. line-height: 1;
  2024. padding: 0.5em 1em;
  2025. }
  2026. html.no-js body.front #home-performances-list > li.borne-date span,
  2027. html.classic-nav body.front #home-performances-list > li.borne-date span {
  2028. font-family: "MuseoSans", Arial, sans-serif;
  2029. -moz-font-feature-settings: "calt=0,liga=0";
  2030. font-weight: 500;
  2031. font-size: 12px;
  2032. text-transform: uppercase;
  2033. }
  2034. html.no-js body.front #home-performances-list > li h4,
  2035. html.classic-nav body.front #home-performances-list > li h4,
  2036. html.no-js body.front #home-performances-list > li h5,
  2037. html.classic-nav body.front #home-performances-list > li h5 {
  2038. max-width: 200px;
  2039. margin: 0.5em 0;
  2040. line-height: 1.1;
  2041. }
  2042. html.no-js body.front #home-performances-list > li h4 a,
  2043. html.classic-nav body.front #home-performances-list > li h4 a,
  2044. html.no-js body.front #home-performances-list > li h5 a,
  2045. html.classic-nav body.front #home-performances-list > li h5 a {
  2046. line-height: 1.1;
  2047. }
  2048. html.no-js body.front #home-performances-list > li .date > a,
  2049. html.classic-nav body.front #home-performances-list > li .date > a {
  2050. display: block;
  2051. }
  2052. html.no-js body.front #home-performances-list > li figure,
  2053. html.classic-nav body.front #home-performances-list > li figure {
  2054. display: inline-block;
  2055. position: relative;
  2056. }
  2057. html.no-js body.front #home-performances-list > li figure img.image,
  2058. html.classic-nav body.front #home-performances-list > li figure img.image {
  2059. max-width: 100%;
  2060. }
  2061. html.no-js body.front #home-performances-list > li figure img.blank,
  2062. html.classic-nav body.front #home-performances-list > li figure img.blank {
  2063. position: absolute;
  2064. top: 0;
  2065. left: 0;
  2066. width: 100%;
  2067. height: 100%;
  2068. }
  2069. html.no-js body.front #home-performances-list > li figure figcaption,
  2070. html.classic-nav body.front #home-performances-list > li figure figcaption {
  2071. display: none;
  2072. }
  2073. @media (max-width: 799px) {
  2074. html.no-js body.front #home-performances-list > li,
  2075. html.classic-nav body.front #home-performances-list > li {
  2076. flex: 0 0 auto;
  2077. }
  2078. }
  2079. html.no-js body.node-type-performance #main,
  2080. html.classic-nav body.node-type-performance #main {
  2081. background-color: #D3D3D3;
  2082. height: 100%;
  2083. }
  2084. html.no-js body.node-type-performance #main #center,
  2085. html.classic-nav body.node-type-performance #main #center {
  2086. height: 100%;
  2087. }
  2088. html.no-js body.node-type-performance #main #center .page-title,
  2089. html.classic-nav body.node-type-performance #main #center .page-title {
  2090. margin-left: 2.5em;
  2091. }
  2092. html.no-js body.node-type-performance #main #center #content,
  2093. html.classic-nav body.node-type-performance #main #center #content {
  2094. padding: 2%;
  2095. display: block;
  2096. }
  2097. html.no-js body.node-type-performance #main #center #content a,
  2098. html.classic-nav body.node-type-performance #main #center #content a,
  2099. html.no-js body.node-type-performance #main #center #content a:visited,
  2100. html.classic-nav body.node-type-performance #main #center #content a:visited {
  2101. font-size: 12px;
  2102. font-weight: 500;
  2103. text-decoration: none;
  2104. }
  2105. html.no-js body.node-type-performance #main #center #content a:hover,
  2106. html.classic-nav body.node-type-performance #main #center #content a:hover {
  2107. font-size: 12px;
  2108. font-weight: 700;
  2109. text-decoration: none;
  2110. }
  2111. html.no-js body.node-type-performance #main,
  2112. html.classic-nav body.node-type-performance #main {
  2113. background-color: #F2F2F2;
  2114. }
  2115. html.no-js body.node-type-performance #main #center #content .node.type-performance > .content,
  2116. html.classic-nav body.node-type-performance #main #center #content .node.type-performance > .content {
  2117. display: flex;
  2118. flex-flow: row wrap;
  2119. justify-content: space-between;
  2120. align-items: flex-start;
  2121. }
  2122. html.no-js body.node-type-performance #main #center #content .node.type-performance > .content > section.field,
  2123. html.classic-nav body.node-type-performance #main #center #content .node.type-performance > .content > section.field {
  2124. flex: 0 0 auto;
  2125. max-width: calc(49% - 2em);
  2126. margin: 0.5em;
  2127. }
  2128. html.no-js body.node-type-performance #main #center #content .node.type-performance > .content > section.field.field-name-field-images,
  2129. html.classic-nav body.node-type-performance #main #center #content .node.type-performance > .content > section.field.field-name-field-images {
  2130. flex: 1 1 100%;
  2131. max-width: 100%;
  2132. }
  2133. html.no-js body.node-type-performance #main #center #content .node.type-performance > .content h1.node-title,
  2134. html.classic-nav body.node-type-performance #main #center #content .node.type-performance > .content h1.node-title {
  2135. margin: 0;
  2136. font-family: "MuseoSans", Arial, sans-serif;
  2137. -moz-font-feature-settings: "calt=0,liga=0";
  2138. font-weight: 900;
  2139. font-size: 24px;
  2140. }
  2141. html.no-js body.node-type-performance #main #center #content .node.type-performance > .content .field-label,
  2142. html.classic-nav body.node-type-performance #main #center #content .node.type-performance > .content .field-label {
  2143. font-family: "MuseoSans", Arial, sans-serif;
  2144. -moz-font-feature-settings: "calt=0,liga=0";
  2145. font-weight: 900;
  2146. font-size: 10px;
  2147. text-transform: uppercase;
  2148. color: #A5A5A5;
  2149. }
  2150. html.no-js body.node-type-performance #main #center #content .node.type-performance > .content .field-personne,
  2151. html.classic-nav body.node-type-performance #main #center #content .node.type-performance > .content .field-personne {
  2152. font-family: "MuseoSans", Arial, sans-serif;
  2153. -moz-font-feature-settings: "calt=0,liga=0";
  2154. font-weight: 500;
  2155. font-size: 12px;
  2156. text-transform: uppercase;
  2157. }
  2158. html.no-js body.node-type-performance #main #center #content .node.type-performance > .content .field-type-textauthor .field-item,
  2159. html.classic-nav body.node-type-performance #main #center #content .node.type-performance > .content .field-type-textauthor .field-item,
  2160. html.no-js body.node-type-performance #main #center #content .node.type-performance > .content .field-type-text-long .field-item,
  2161. html.classic-nav body.node-type-performance #main #center #content .node.type-performance > .content .field-type-text-long .field-item {
  2162. overflow: auto;
  2163. font-family: "MuseoSans", Arial, sans-serif;
  2164. -moz-font-feature-settings: "calt=0,liga=0";
  2165. font-weight: 500;
  2166. font-size: 12px;
  2167. }
  2168. html.no-js body.node-type-performance #main #center #content .node.type-performance > .content .field-type-textauthor address,
  2169. html.classic-nav body.node-type-performance #main #center #content .node.type-performance > .content .field-type-textauthor address,
  2170. html.no-js body.node-type-performance #main #center #content .node.type-performance > .content .field-type-text-long address,
  2171. html.classic-nav body.node-type-performance #main #center #content .node.type-performance > .content .field-type-text-long address {
  2172. font-weight: 700;
  2173. }
  2174. html.no-js body.node-type-performance #main #center #content .node.type-performance > .content .field-name-field-serie,
  2175. html.classic-nav body.node-type-performance #main #center #content .node.type-performance > .content .field-name-field-serie {
  2176. font-family: "MuseoSans", Arial, sans-serif;
  2177. -moz-font-feature-settings: "calt=0,liga=0";
  2178. font-weight: 500;
  2179. font-size: 16px;
  2180. }
  2181. html.no-js body.node-type-performance #main #center #content .node.type-performance > .content .field-name-field-images > .field-items,
  2182. html.classic-nav body.node-type-performance #main #center #content .node.type-performance > .content .field-name-field-images > .field-items {
  2183. display: flex;
  2184. flex-flow: row wrap;
  2185. justify-content: space-between;
  2186. align-items: stretch;
  2187. }
  2188. html.no-js body.node-type-performance #main #center #content .node.type-performance > .content .field-name-field-images .field-item,
  2189. html.classic-nav body.node-type-performance #main #center #content .node.type-performance > .content .field-name-field-images .field-item {
  2190. flex: 1 0 auto;
  2191. }
  2192. html.no-js body.node-type-performance #main #center #content .node.type-performance > .content .field-name-field-type-de-performance,
  2193. html.classic-nav body.node-type-performance #main #center #content .node.type-performance > .content .field-name-field-type-de-performance {
  2194. font-family: "MuseoSans", Arial, sans-serif;
  2195. -moz-font-feature-settings: "calt=0,liga=0";
  2196. font-weight: 500;
  2197. font-size: 16px;
  2198. }
  2199. html.no-js body.node-type-performance #main #center #content .node.type-performance > .content .field-name-field-tags-libre,
  2200. html.classic-nav body.node-type-performance #main #center #content .node.type-performance > .content .field-name-field-tags-libre {
  2201. font-family: "MuseoSans", Arial, sans-serif;
  2202. -moz-font-feature-settings: "calt=0,liga=0";
  2203. font-weight: 500;
  2204. font-size: 12px;
  2205. }
  2206. html.no-js body.node-type-performance #main #center #content .node.type-performance > .content .node-effectuation h1,
  2207. html.classic-nav body.node-type-performance #main #center #content .node.type-performance > .content .node-effectuation h1 {
  2208. margin: 0;
  2209. }
  2210. html.no-js body.node-type-performance #main #center #content .node.type-performance > .content .node-effectuation .field-item,
  2211. html.classic-nav body.node-type-performance #main #center #content .node.type-performance > .content .node-effectuation .field-item {
  2212. font-family: "MuseoSans", Arial, sans-serif;
  2213. -moz-font-feature-settings: "calt=0,liga=0";
  2214. font-weight: 500;
  2215. font-size: 16px;
  2216. }
  2217. html.no-js body.node-type-performance #main #center #content .node.type-performance > .content .node-document-video,
  2218. html.classic-nav body.node-type-performance #main #center #content .node.type-performance > .content .node-document-video {
  2219. font-family: "MuseoSans", Arial, sans-serif;
  2220. -moz-font-feature-settings: "calt=0,liga=0";
  2221. font-weight: 500;
  2222. font-size: 12px;
  2223. }
  2224. html.no-js body.node-type-performance #main #center #content .node.type-performance > .content .node-document,
  2225. html.classic-nav body.node-type-performance #main #center #content .node.type-performance > .content .node-document {
  2226. font-family: "MuseoSans", Arial, sans-serif;
  2227. -moz-font-feature-settings: "calt=0,liga=0";
  2228. font-weight: 500;
  2229. font-size: 12px;
  2230. }
  2231. html.no-js body.node-type-performance #main #center #content .node.type-performance > .content .node-objet,
  2232. html.classic-nav body.node-type-performance #main #center #content .node.type-performance > .content .node-objet {
  2233. font-family: "MuseoSans", Arial, sans-serif;
  2234. -moz-font-feature-settings: "calt=0,liga=0";
  2235. font-weight: 500;
  2236. font-size: 12px;
  2237. }
  2238. html.no-js body.node-type-performance #main #center #content .node.type-performance > .content figure,
  2239. html.classic-nav body.node-type-performance #main #center #content .node.type-performance > .content figure {
  2240. position: relative;
  2241. height: auto!important;
  2242. margin: 0.5em;
  2243. }
  2244. html.no-js body.node-type-performance #main #center #content .node.type-performance > .content figure figcaption,
  2245. html.classic-nav body.node-type-performance #main #center #content .node.type-performance > .content figure figcaption {
  2246. background-color: rgba(255, 255, 255, 0.8);
  2247. color: #000;
  2248. font-size: 10px;
  2249. max-width: 100%;
  2250. }
  2251. html.no-js body.node-type-performance #main #center #content .node.type-performance > .content figure .blank,
  2252. html.classic-nav body.node-type-performance #main #center #content .node.type-performance > .content figure .blank {
  2253. position: absolute;
  2254. top: 0;
  2255. left: 0;
  2256. width: 100%;
  2257. height: 100%;
  2258. }
  2259. html.no-js body.node-type-performance #main #center #content .node.type-performance > .content > .field,
  2260. html.classic-nav body.node-type-performance #main #center #content .node.type-performance > .content > .field {
  2261. display: inline-block;
  2262. vertical-align: top;
  2263. padding-left: 0.5em;
  2264. margin: 0 1em 0 0.5em;
  2265. border-left: 3px solid #A5A5A5;
  2266. }
  2267. html.no-js body.node-type-performance #main #center #content .node.type-performance > .content .field-name-field-effectuations,
  2268. html.classic-nav body.node-type-performance #main #center #content .node.type-performance > .content .field-name-field-effectuations,
  2269. html.no-js body.node-type-performance #main #center #content .node.type-performance > .content .field-name-field-documents-sonor,
  2270. html.classic-nav body.node-type-performance #main #center #content .node.type-performance > .content .field-name-field-documents-sonor,
  2271. html.no-js body.node-type-performance #main #center #content .node.type-performance > .content .field-name-field-documents,
  2272. html.classic-nav body.node-type-performance #main #center #content .node.type-performance > .content .field-name-field-documents {
  2273. display: inline-block;
  2274. vertical-align: top;
  2275. padding-left: 0.5em;
  2276. margin: 0 1em 0 0.5em;
  2277. border-left: 3px solid #A5A5A5;
  2278. }
  2279. html.no-js body.node-type-performance #main #center #content .node.type-performance > .content .field-name-field-effectuations,
  2280. html.classic-nav body.node-type-performance #main #center #content .node.type-performance > .content .field-name-field-effectuations {
  2281. font-family: "MuseoSans", Arial, sans-serif;
  2282. -moz-font-feature-settings: "calt=0,liga=0";
  2283. font-weight: 500;
  2284. font-size: 12px;
  2285. }
  2286. @media (max-width: 500px) {
  2287. html.no-js body.node-type-performance #main #center #content .node.type-performance > .content > section.field,
  2288. html.classic-nav body.node-type-performance #main #center #content .node.type-performance > .content > section.field {
  2289. max-width: calc(100% - 2em);
  2290. }
  2291. html.no-js body.node-type-performance #main #center #content .node.type-performance > .content > section.field.field-name-field-images,
  2292. html.classic-nav body.node-type-performance #main #center #content .node.type-performance > .content > section.field.field-name-field-images {
  2293. flex: 1 1 100%;
  2294. max-width: 100%;
  2295. }
  2296. }
  2297. html.no-js body.node-type-performance #block-perfart-perf-prevnext ul.perf-prev-next-btns,
  2298. html.classic-nav body.node-type-performance #block-perfart-perf-prevnext ul.perf-prev-next-btns,
  2299. html.no-js body.node-type-performance #block-perfart-perf-prevnext-bottom ul.perf-prev-next-btns,
  2300. html.classic-nav body.node-type-performance #block-perfart-perf-prevnext-bottom ul.perf-prev-next-btns {
  2301. display: flex;
  2302. flex-flow: row nowrap;
  2303. }
  2304. html.no-js body.node-type-performance #block-perfart-perf-prevnext ul.perf-prev-next-btns li.perf-prev-link,
  2305. html.classic-nav body.node-type-performance #block-perfart-perf-prevnext ul.perf-prev-next-btns li.perf-prev-link,
  2306. html.no-js body.node-type-performance #block-perfart-perf-prevnext-bottom ul.perf-prev-next-btns li.perf-prev-link,
  2307. html.classic-nav body.node-type-performance #block-perfart-perf-prevnext-bottom ul.perf-prev-next-btns li.perf-prev-link,
  2308. html.no-js body.node-type-performance #block-perfart-perf-prevnext ul.perf-prev-next-btns li.perf-next-link,
  2309. html.classic-nav body.node-type-performance #block-perfart-perf-prevnext ul.perf-prev-next-btns li.perf-next-link,
  2310. html.no-js body.node-type-performance #block-perfart-perf-prevnext-bottom ul.perf-prev-next-btns li.perf-next-link,
  2311. html.classic-nav body.node-type-performance #block-perfart-perf-prevnext-bottom ul.perf-prev-next-btns li.perf-next-link {
  2312. flex: 1 1 100%;
  2313. width: 50%;
  2314. }
  2315. html.no-js body.node-type-performance #block-perfart-perf-prevnext ul.perf-prev-next-btns li.perf-next-link,
  2316. html.classic-nav body.node-type-performance #block-perfart-perf-prevnext ul.perf-prev-next-btns li.perf-next-link,
  2317. html.no-js body.node-type-performance #block-perfart-perf-prevnext-bottom ul.perf-prev-next-btns li.perf-next-link,
  2318. html.classic-nav body.node-type-performance #block-perfart-perf-prevnext-bottom ul.perf-prev-next-btns li.perf-next-link {
  2319. text-align: right;
  2320. padding-right: 1em;
  2321. }
  2322. html.no-js body.node-type-performance #block-perfart-perf-prevnext ul.perf-prev-next-btns a,
  2323. html.classic-nav body.node-type-performance #block-perfart-perf-prevnext ul.perf-prev-next-btns a,
  2324. html.no-js body.node-type-performance #block-perfart-perf-prevnext-bottom ul.perf-prev-next-btns a,
  2325. html.classic-nav body.node-type-performance #block-perfart-perf-prevnext-bottom ul.perf-prev-next-btns a {
  2326. text-decoration: none;
  2327. font-family: "MuseoSans", Arial, sans-serif;
  2328. -moz-font-feature-settings: "calt=0,liga=0";
  2329. font-size: 10px;
  2330. font-weight: 500;
  2331. }
  2332. @media screen and (min-width: 1201px) {
  2333. html.no-js body.node-type-performance #block-perfart-perf-prevnext ul.perf-prev-next-btns a,
  2334. html.classic-nav body.node-type-performance #block-perfart-perf-prevnext ul.perf-prev-next-btns a,
  2335. html.no-js body.node-type-performance #block-perfart-perf-prevnext-bottom ul.perf-prev-next-btns a,
  2336. html.classic-nav body.node-type-performance #block-perfart-perf-prevnext-bottom ul.perf-prev-next-btns a {
  2337. font-size: 12px;
  2338. }
  2339. }
  2340. body.page-taxonomy-term #main {
  2341. overflow-x: hidden;
  2342. overflow-y: auto;
  2343. }
  2344. body.page-taxonomy-term #main {
  2345. background-color: #D3D3D3;
  2346. height: 100%;
  2347. }
  2348. body.page-taxonomy-term #main #center {
  2349. height: 100%;
  2350. }
  2351. body.page-taxonomy-term #main #center .page-title {
  2352. margin-left: 2.5em;
  2353. }
  2354. body.page-taxonomy-term #main #center #content {
  2355. padding: 2%;
  2356. display: block;
  2357. }
  2358. body.page-taxonomy-term #main #center #content a,
  2359. body.page-taxonomy-term #main #center #content a:visited {
  2360. font-size: 12px;
  2361. font-weight: 500;
  2362. text-decoration: none;
  2363. }
  2364. body.page-taxonomy-term #main #center #content a:hover {
  2365. font-size: 12px;
  2366. font-weight: 700;
  2367. text-decoration: none;
  2368. }
  2369. body.page-taxonomy-term #block-system-main > .content {
  2370. display: flex;
  2371. flex-flow: row wrap;
  2372. justify-content: space-between;
  2373. align-items: flex-start;
  2374. }
  2375. body.page-taxonomy-term #block-system-main > .content .term-listing-heading {
  2376. display: none;
  2377. }
  2378. body.page-taxonomy-term #block-system-main > .content > * {
  2379. flex: 1 1 auto;
  2380. margin: 0 0.5em 0.5em 0;
  2381. }
  2382. body.page-taxonomy-term #block-system-main > .content > *.item-list {
  2383. flex: 0 0 100%;
  2384. width: 100%;
  2385. }
  2386. body.page-taxonomy-term .node.type-performance {
  2387. color: #A5A5A5;
  2388. background-color: #fff;
  2389. display: inline-block;
  2390. vertical-align: top;
  2391. line-height: 1;
  2392. margin-bottom: 1em;
  2393. padding-right: 1em;
  2394. padding-left: 0.5em;
  2395. }
  2396. body.page-taxonomy-term .node.type-performance h1 {
  2397. margin: 0.7em 0;
  2398. }
  2399. body.page-taxonomy-term .node.type-performance figure {
  2400. position: relative;
  2401. height: auto!important;
  2402. }
  2403. body.page-taxonomy-term .node.type-performance figure .blank {
  2404. position: absolute;
  2405. top: 0;
  2406. left: 0;
  2407. width: 100%;
  2408. height: 100%;
  2409. }
  2410. body.node-type-document #main,
  2411. .node-type-document-sonor #main,
  2412. .node-type-object #main {
  2413. background-color: #D3D3D3;
  2414. height: 100%;
  2415. }
  2416. body.node-type-document #main #center,
  2417. .node-type-document-sonor #main #center,
  2418. .node-type-object #main #center {
  2419. height: 100%;
  2420. }
  2421. body.node-type-document #main #center .page-title,
  2422. .node-type-document-sonor #main #center .page-title,
  2423. .node-type-object #main #center .page-title {
  2424. margin-left: 2.5em;
  2425. }
  2426. body.node-type-document #main #center #content,
  2427. .node-type-document-sonor #main #center #content,
  2428. .node-type-object #main #center #content {
  2429. padding: 2%;
  2430. display: block;
  2431. }
  2432. body.node-type-document #main #center #content a,
  2433. .node-type-document-sonor #main #center #content a,
  2434. .node-type-object #main #center #content a,
  2435. body.node-type-document #main #center #content a:visited,
  2436. .node-type-document-sonor #main #center #content a:visited,
  2437. .node-type-object #main #center #content a:visited {
  2438. font-size: 12px;
  2439. font-weight: 500;
  2440. text-decoration: none;
  2441. }
  2442. body.node-type-document #main #center #content a:hover,
  2443. .node-type-document-sonor #main #center #content a:hover,
  2444. .node-type-object #main #center #content a:hover {
  2445. font-size: 12px;
  2446. font-weight: 700;
  2447. text-decoration: none;
  2448. }
  2449. body.node-type-document #center #content,
  2450. .node-type-document-sonor #center #content,
  2451. .node-type-object #center #content {
  2452. width: 720px;
  2453. font-size: 12px;
  2454. }
  2455. body.node-type-document #center #content img,
  2456. .node-type-document-sonor #center #content img,
  2457. .node-type-object #center #content img {
  2458. margin: 1em 0 1em 0;
  2459. }
  2460. body.node-type-document #center #content figure,
  2461. .node-type-document-sonor #center #content figure,
  2462. .node-type-object #center #content figure {
  2463. position: relative;
  2464. }
  2465. body.node-type-document #center #content img.blank,
  2466. .node-type-document-sonor #center #content img.blank,
  2467. .node-type-object #center #content img.blank {
  2468. position: absolute;
  2469. top: 0;
  2470. left: 0;
  2471. }
  2472. body.node-type-document #center #content figcaption,
  2473. .node-type-document-sonor #center #content figcaption,
  2474. .node-type-object #center #content figcaption {
  2475. font-weight: 300;
  2476. font-size: 11px;
  2477. width: 250px;
  2478. margin-bottom: 1em;
  2479. }
  2480. .field-type-video-embed-field iframe {
  2481. max-width: 100%;
  2482. height: auto;
  2483. aspect-ratio: 4/3;
  2484. }