Project

General

Profile

« Previous | Next » 

Revision e2617c7e

Added by Andreas Kohlbecker almost 4 years ago

ref #9034 simple agent search page with filter function by query parameter

View differences:

modules/cdm_dataportal/cdm_api/cdm_api.module
971 971
      $ws_base_uri = CDM_WS_DESCRIPTIONELEMENT;
972 972
      break;
973 973

  
974
    case 'Person':
975
    case 'Team':
976
    case 'AgentBase':
977
      $ws_base_uri = CDM_WS_AGENT;
978
      break;
979

  
974 980
    case 'PolytomousKey':
975 981
    case 'MediaKey':
976 982
    case 'MultiAccessKey':
......
1029 1035
 * Sends a http GET request to the generic page method which allows for filtering entities by Restrictions.
1030 1036
 *
1031 1037
 * @param $cdm_entity_type
1038
 * @param $class_restriction
1039
 *   Optional param to narrow down polymorph types to a specific type.
1032 1040
 * @param array $restrictions
1033 1041
 *   An array of Restriction objects
1034 1042
 * @param array $init_strategy
......
1045 1053
 *
1046 1054
 * @return object
1047 1055
 *   A CDM Pager object
1048
 *
1049 1056
 */
1050
function cdm_ws_page_by_restriction($cdm_entity_type, array $restrictions, array $init_strategy, $page_size, $page_index) {
1057
function cdm_ws_page_by_restriction($cdm_entity_type, $class_restriction, array $restrictions, array $init_strategy, $page_size, $page_index) {
1051 1058

  
1052 1059
  $restrictions_json = array(); // json_encode($restrictions);
1053 1060
  foreach ($restrictions as $restr){
1054 1061
    $restrictions_json[] = json_encode($restr);
1055 1062
  }
1063
  $filter_parameters = [
1064
    'restriction' => $restrictions_json,
1065
    'initStrategy' => $init_strategy
1066
  ];
1067
  if($class_restriction){
1068
    $filter_parameters['class'] = $class_restriction;
1069
  }
1070

  
1056 1071
  return cdm_ws_page(
1057 1072
      'portal/' . cdm_ws_base_uri($cdm_entity_type),
1058 1073
      $page_size,
1059 1074
      $page_index,
1060
      array(
1061
        'restriction' => $restrictions_json,
1062
        'initStrategy' => $init_strategy
1063
      ),
1064
      "GET"
1075
    $filter_parameters,
1076
    "GET"
1065 1077
    );
1066 1078
}
1067 1079

  
......
1069 1081
 * Fetches all entities returned by the the generic page method for the Restrictions applied as filter.
1070 1082
 *
1071 1083
 * @param $cdm_entity_type
1084
 * @param $class_restriction
1085
 *   Optional param to narrow down polymorph types to a specific type.
1072 1086
 * @param array $restrictions
1073 1087
 *   An array of Restriction objects
1074 1088
 * @param array $init_strategy
1075 1089
 *   The init strategy to initialize the entity beans while being loaded from the
1076 1090
 *   persistent storage by the cdm
1077
 * @param int $page_size
1078
 *   The maximum number of entities returned per page.
1079
 *   The default page size as configured in the cdm server
1080
 *   will be used if set to NULL
1081
 *   to return all entities in a single page).
1082
 * @param int $page_index
1083
 *   The number of the page to be returned, the first page has the
1084
 *   pageNumber = 0
1085 1091
 *
1086 1092
 * @return array
1087 1093
 *   A array of CDM entities
1088
 *
1089 1094
 */
1090
function cdm_ws_fetch_all_by_restriction($cdm_entity_type, array $restrictions, array $init_strategy){
1095
function cdm_ws_fetch_all_by_restriction($cdm_entity_type, $class_restriction, array $restrictions, array $init_strategy){
1091 1096
  $page_index = 0;
1092 1097
  // using a bigger page size to avoid to many multiple requests
1093 1098
  $page_size = 500;
1094 1099
  $entities = array();
1095 1100

  
1096 1101
  while ($page_index !== FALSE && $page_index < 1){
1097
    $pager =  cdm_ws_page_by_restriction($cdm_entity_type, $restrictions, $init_strategy, $page_size, $page_index);
1102
    $pager =  cdm_ws_page_by_restriction($cdm_entity_type, $class_restriction, $restrictions, $init_strategy, $page_size, $page_index);
1098 1103
    if(isset($pager->records) && is_array($pager->records)) {
1099 1104
      $entities = array_merge($entities, $pager->records);
1100 1105
      if(!empty($pager->nextIndex)){
......
1795 1800

  
1796 1801
  static $annotations_types_filter = null;
1797 1802
  if(!$annotations_types_filter) {
1798
    $annotations_types_filter = unserialize(ANNOTATIONS_TYPES_AS_FOOTNOTES_DEFAULT);
1803
    $annotations_types_filter = unserialize(EXTENSION_TYPES_VISIBLE_DEFAULT);
1799 1804
  }
1800 1805
  return cdm_ws_getAnnotationsFor($cdmBase, variable_get(ANNOTATION_TYPES_VISIBLE, $annotations_types_filter));
1801 1806
}
modules/cdm_dataportal/cdm_api/webservice_uris.php
6 6

  
7 7
define('CDM_WS_PORTAL_GENERIC', 'portal/$0');
8 8

  
9
define('CDM_WS_AGENT', 'agent');
9 10
define('CDM_WS_PORTAL_AGENT', 'portal/agent');
10 11
define('CDM_WS_REFERENCE', 'reference');
11 12
define('CDM_WS_REFERENCE_AUTHORTEAM', 'reference/$0/authorship');
modules/cdm_dataportal/cdm_dataportal.info
10 10
files[] = classes/footnotemanager.php
11 11
files[] = classes/renderhints.php
12 12
files[] = classes/TypedEntityReference.php
13

  
13
files[] = classes/ItemComposeHandler.php
14
files[] = classes/RegistrationDtoComposeHandler.php
15
files[] = classes/AgentComposeHandler.php
14 16

  
15 17
configure = admin/config/cdm_dataportal/settings
modules/cdm_dataportal/cdm_dataportal.module
23 23
  module_load_include('php', 'cdm_dataportal', 'cdm_dataportal.search');
24 24

  
25 25
  module_load_include('inc', 'cdm_dataportal', 'includes/common');
26
  module_load_include('inc', 'cdm_dataportal', 'includes/agent');
26 27
  module_load_include('inc', 'cdm_dataportal', 'includes/name');
27 28
  module_load_include('inc', 'cdm_dataportal', 'includes/taxon');
28 29
  module_load_include('inc', 'cdm_dataportal', 'includes/taxon-node');
......
723 724
    'type' => MENU_LOCAL_TASK,
724 725
  );
725 726

  
727
  // Optional callback arguments: page.
728
  $items['cdm_dataportal/search/agent'] = array(
729
    'page callback' => 'cdm_dataportal_view_search_agent',
730
    'access arguments' => array('access cdm content'),
731
    'type' => MENU_CALLBACK,
732
    // Expected callback arguments: uuid.
733
  );
734

  
726 735
  // ------------ menu items with variable path elements -----------
727 736

  
728 737
  // 'May not cache' in D5.
......
2048 2057
    "name.nomenclaturalReference.inReference.inReference.authorship",
2049 2058
    "name.nomenclaturalReference.inReference.inReference.inReference.authorship"
2050 2059
  );
2051
  $taxa = cdm_ws_fetch_all_by_restriction("Taxon", $restrictions, $init_strategy);
2060
  $taxa = cdm_ws_fetch_all_by_restriction("Taxon", NULL, $restrictions, $init_strategy);
2052 2061

  
2053 2062
  // Removing the name where we came from.
2054 2063
  foreach ($taxa as $k => &$taxon) {
......
2304 2313
  drupal_set_title(t('Search registrations'), PASS_THROUGH);
2305 2314

  
2306 2315
  $render_array = _block_get_renderable_array(_block_render_blocks(array($block)));
2307
  $registrations_pager_array = compose_registrations_search_results($registration_pager);
2316
  $registrations_pager_array = compose_search_results($registration_pager, new RegistrationDTOComposeHandler());
2308 2317
  $render_array = array_merge($render_array, $registrations_pager_array);
2309 2318

  
2310 2319
  return $render_array;
2311 2320
}
2312 2321

  
2322
/**
2323
 * Executes the search for registrations and generates the result list..
2324
 */
2325
function cdm_dataportal_view_search_agent() {
2326

  
2327
  $render_array = [];
2328
  $title = isset($_REQUEST['class']) && $_REQUEST['class'] ? $_REQUEST['class'] : 'Persons & Teams';
2329
  drupal_set_title(t($title), PASS_THROUGH);
2330
  // TODO $block = block_load('cdm_dataportal', 'search_agent_filter');
2331
  // $block->title = null;
2332
  // $render_array = _block_get_renderable_array(_block_render_blocks(array($block)));
2333
  $pager = cdm_dataportal_search_agent_execute();
2334
  $pager_render_array = compose_search_results($pager, new AgentComposeHandler());
2335
  $render_array = array_merge($render_array, $pager_render_array);
2336
  return $render_array;
2337
}
2338

  
2313 2339

  
2314 2340
/**
2315 2341
 * Provides the standard image which indicated a loading process
modules/cdm_dataportal/cdm_dataportal.search.php
4 4
 * Search related functions.
5 5
 */
6 6

  
7
define("SESSION_KEY_SEARCH_REGISTRATION_FILTER", "SESSION_KEY_SEARCH_REGISTRATION_FILTER");
8
define('SESSION_KEY_SEARCH_TAXONGRAPH_FOR_REGISTRATION_FILTER', 'SESSION_KEY_SEARCH_TAXONGRAPH_FOR_REGISTRATION_FILTER');
7
const SESSION_KEY_SEARCH_REGISTRATION_FILTER = "SESSION_KEY_SEARCH_REGISTRATION_FILTER";
8
const SESSION_KEY_SEARCH_TAXONGRAPH_FOR_REGISTRATION_FILTER = 'SESSION_KEY_SEARCH_TAXONGRAPH_FOR_REGISTRATION_FILTER';
9
const SESSION_KEY_SEARCH_AGENT_FILTER = 'SEARCH_AGENT_FILTER';
9 10

  
10 11
/**
11 12
 * Returns a Drupal path to a search form for a CDM webservice.
......
1001 1002

  
1002 1003
/**
1003 1004
 * @param $session_key
1005
 *   The key to be used for storing the search params in $_SESSION['cdm'][]
1004 1006
 * @param $query_param_map
1007
 *    An array which maps the filter_key to the web service query parameter.
1008
 *    The filter key may be used as form element name or as drupal url
1009
 *    query parameter.
1005 1010
 * @return array
1006 1011
 */
1007 1012
function cdm_dataportal_search_request_params($session_key, $query_param_map)
......
1191 1196
/**
1192 1197
 * Compose the result set of a registration search from a pager object
1193 1198
 *
1194
 * @param $registration_pager
1199
 * @param $cdm_item_pager
1195 1200
 *    The pager containing registration objects
1196 1201
 *
1197 1202
 * @return
......
1201 1206
 *
1202 1207
 * TODO compose function into search.inc ?
1203 1208
 */
1204
function compose_registrations_search_results($registration_pager){
1209
function compose_search_results($cdm_item_pager, ItemComposeHandler $item_compose_handler){
1205 1210

  
1206 1211
  $render_array = array();
1207 1212
  $render_array['pre'] = markup_to_render_array("<div class=\"cdm-item-list\">");
1208 1213

  
1209
  if($registration_pager != null && count($registration_pager->records) > 0){
1214
  if($cdm_item_pager != null && count($cdm_item_pager->records) > 0){
1210 1215
    $items_render_array = array();
1211
    foreach($registration_pager->records as $registration_dto) {
1216
    foreach($cdm_item_pager->records as $registration_dto) {
1212 1217

  
1213 1218
      $items_render_array[]  = array(
1214
        '#prefix' => "<div class=\"item\"><div class=\"" . html_class_attribute_ref(new TypedEntityReference("Registration", $registration_dto->uuid)) . "\">",
1215
         'item_data' => compose_registration_dto_compact($registration_dto, 'item-style', 'div'),
1219
        '#prefix' => "<div class=\"item\"><div class=\"" . $item_compose_handler->getClassAttributes($registration_dto) . "\">",
1220
         'item_data' => $item_compose_handler->composeItem($registration_dto),
1216 1221
        '#suffix' => "</div></div>"
1217 1222
        );
1218 1223
      ;
......
1220 1225

  
1221 1226
    $render_array['items'] = $items_render_array;
1222 1227
    $render_array['pager'] =  markup_to_render_array(theme('cdm_pager', array(
1223
          'pager' => $registration_pager,
1228
          'pager' => $cdm_item_pager,
1224 1229
          'path' => $_REQUEST['q'], // stay on same page
1225 1230
          'parameters' => $_REQUEST,
1226 1231
        )));
1227 1232

  
1228 1233
  } else {
1229
    if($registration_pager != null && $registration_pager->count > 0 && count($registration_pager->records) == 0){
1234
    if($cdm_item_pager != null && $cdm_item_pager->count > 0 && count($cdm_item_pager->records) == 0){
1230 1235
      $render_array['items'] = markup_to_render_array("<div id=\"no_results\">Result page out of range.</div>");
1231 1236
    } else {
1232 1237
      $render_array['items'] = markup_to_render_array("<div id=\"no_results\">No results found.</div>");
......
1236 1241

  
1237 1242
  return $render_array;
1238 1243

  
1239
}
1244
}
1245

  
1246

  
1247
/**
1248
 * Sends a search request for agents to the cdm server.
1249
 */
1250
function cdm_dataportal_search_agent_execute()
1251
{
1252

  
1253
  static $query_param_map = array(
1254
    'markerType' => 'markerType',
1255
    'cdmType' => 'class'
1256
  );
1257

  
1258
  $session_key = SESSION_KEY_SEARCH_AGENT_FILTER;
1259
  $request_params = cdm_dataportal_search_request_params($session_key, $query_param_map);
1260

  
1261
  // cleanup
1262
  if(isset($request_params['taxonNameFilter'])){
1263
    // trim and remove empty taxon name query strings
1264
    $request_params['taxonNameFilter'] = trim($request_params['taxonNameFilter']);
1265
    if(!$request_params['taxonNameFilter']){
1266
      unset($request_params['taxonNameFilter']);
1267
    }
1268
  }
1269
  $restrictions = array(new Restriction("markers.markerType.uuid","EXACT", array($request_params['markerType']), 'AND'));
1270
  $init_strategy = array(
1271
    "$",
1272
    "titleCache",
1273
    "extensions.$",
1274
    "identifiers.type"
1275
  );
1276

  
1277
  $type_restriction = null;
1278
  if(isset($query_param_map['class']) && ($query_param_map['class'] == 'Team' || $query_param_map['class'] == 'Person')){
1279
    $type_restriction = $query_param_map['class'];
1280
  }
1281
  $pager = cdm_ws_page_by_restriction('AgentBase', $type_restriction, $restrictions, $init_strategy, 50, 0);
1282

  
1283
  return $pager;
1284
}
1285

  
modules/cdm_dataportal/includes/common.inc
785 785
 */
786 786
function compose_extensions($extensions)
787 787
{
788
  $extensions_render_array= null;
788
  $render_array= null;
789 789
  $extensions_by_type = array();
790 790
  foreach ($extensions as $extension) {
791 791
    if (@is_string($extension->value)) {
......
801 801
    foreach ($extensions_by_type as $type_label => $text_list) {
802 802
      @_description_list_group_add($sub_dl_groups, $type_label . ':', $text_list);
803 803
    }
804
    $extensions_render_array = array(
804
    $render_array = array(
805 805
      array('#theme' => 'description_list', '#groups' => $sub_dl_groups)
806 806
    );
807
    return $extensions_render_array;
807
    return $render_array;
808 808
  }
809
  return $extensions_render_array;
809
  return $render_array;
810
}
811

  
812
/**
813
 * Compose an render array from a CDM Identifier objects.
814
 *
815
 * @param $extensions
816
 *    An array of CDM Identifier objects
817
 * @return array
818
 *   A render array containing the fields of the supplied $sequence
819
 *
820
 * @ingroup compose
821
 */
822
function compose_identifiers($identifiers){
823

  
824
  $render_array = [];
825
  foreach($identifiers as $identifier){
826
    if($identifier->identifier){
827
      $render_array[] = markup_to_render_array('<span class="label">' . $identifier->type->representation_L10n . ':</span> ' . $identifier->identifier, null, '<span class="'. html_class_attribute_ref($identifier) . '">', '</span>');
828
    }
829
  }
830

  
831
  return $render_array;
832

  
810 833
}
811 834

  
812 835
function formatParams($params) {
themes/zen_dataportal/css/cdm.css
1
@import url("../fonts/droid-sans/stylesheet.css");@import url("../fonts/droid-sans-mono-fontfacekit/web fonts/droidsansmono_regular/stylesheet.css");@import url("../fonts/notosans-webfont-2017-2/stylesheet.css");.pie-element,.lt-ie9 #page{behavior:url("/polyfills/css3pie/PIE-1.0.0.htc");position:relative}.pie-container{z-index:0;position:relative}.z-pie-element,.lt-ie9 #page{behavior:url("/polyfills/css3pie/PIE-1.0.0.htc");z-index:0}.lt-ie9 #header{padding-right:0;margin-right:20px}.block a:link,.block a:visited,.node a:link,.node a:visited,#identificationKey a:link,#identificationKey a:visited,#content a:link,#content a:visited{color:#115e92;text-decoration:none}.block a:hover,.block a:focus,.node a:hover,.node a:focus,#identificationKey a:hover,#identificationKey a:focus,#content a:hover,#content a:focus{text-decoration:underline}.block .Synonym a:link,.block .Synonym a:visited,.block .misapplied-name a:link,.block .misapplied-name a:visited,.node .Synonym a:link,.node .Synonym a:visited,.node .misapplied-name a:link,.node .misapplied-name a:visited,#identificationKey .Synonym a:link,#identificationKey .Synonym a:visited,#identificationKey .misapplied-name a:link,#identificationKey .misapplied-name a:visited,#content .Synonym a:link,#content .Synonym a:visited,#content .misapplied-name a:link,#content .misapplied-name a:visited{color:#7c7c7c}.block .Taxon a:link,.block .Taxon a:visited,.node .Taxon a:link,.node .Taxon a:visited,#identificationKey .Taxon a:link,#identificationKey .Taxon a:visited,#content .Taxon a:link,#content .Taxon a:visited{color:#115e92}.node-cdm-name .name-page-name{margin-top:10px;margin-bottom:10px}.node-cdm-name .registered_name{font-weight:bold}.node-cdm-name .type-status{font-weight:bold}#content a.tabs-primary__tab-link{color:#333}#content table{caption-side:top}#content table th{text-align:left}#content table caption{text-align:right;font-size:smaller}#page-toc{float:right;background-color:#fff}#page-toc h3{margin-top:0;line-height:18px}#taxonProfileImage{float:left}.block-cdm-dataportal-feature .content-caption{text-align:right}.block-cdm-dataportal-feature .label{font-style:italic}.block-cdm-dataportal-feature,.media-caption,.specimens{clear:both;margin-bottom:18px}.block-cdm-dataportal-feature dt,.media-caption dt,.specimens dt{float:left;font-weight:bold;margin-right:0.3em}.block-cdm-dataportal-feature dd,.media-caption dd,.specimens dd{margin:0;margin-left:20px}.block-cdm-dataportal-feature dl dl,.media-caption dl dl,.specimens dl dl{margin:0}.breadcrumbs li{padding:0 0 0 0}.description-table .described-entities .label{font-weight:bold}#search_results a:link,#search_results a:visited{color:#115e92;text-decoration:none}#search_results a:hover,#search_results a:focus{text-decoration:underline}#search_results .Synonym a:link,#search_results .Synonym a:visited,#search_results .misapplied-name a:link,#search_results .misapplied-name a:visited{color:#7c7c7c}#search_results .Taxon a:link,#search_results .Taxon a:visited{color:#115e92}#search_results table{margin:1em 0}div.cdm-item-list div.item{margin:9px 0}.page-part{margin-bottom:18px;clear:none}.description_list h3{font-size:12px;line-height:18px;font-weight:bold}#synonymy div.accepted-name{margin-bottom:-1em;margin-top:1em}#synonymy .homotypic-synonymy-group,#synonymy .heterotypic-synonymy-group,#synonymy .taxon-relationships{border-bottom:1px solid #DEDEDE;margin:1em 0px;padding:0}dl.media-caption{margin:0}.media-caption dd{margin-left:0}.media-caption dd .title{font-size:100%}.image-gallerie td.caption{padding-bottom:1em}#specimens table.media_gallery{margin-top:0.2em}#specimens .description_list{clear:both}#specimens .description_list h3{margin-top:0;background-color:#ddd}#specimens .description_list h4{clear:left;margin-bottom:0;font-style:italic}#specimens .dynabox_content{margin-left:10px;margin-right:10px}#specimens .block-cdm-dataportal-feature{margin-left:20px;margin-bottom:0}#specimens .block-cdm-dataportal-feature h2{font-size:12px;line-height:18px;font-weight:bold}#specimens ul.typeDesignations{clear:both}#specimens .dna-sequence div{font-size:12px;font-family:monospace;clear:left;padding-left:20px}#specimens .derived_from{clear:both}.openlayers-container{margin-top:5px;margin-bottom:5px}.registration .type-status{font-weight:bold}.registration .registration-date-and-institute{color:#999}.registration .published-name .TaxonName .name{font-weight:bold}.registration .typified-name .cdm\:TaxonName{color:#999}.registration .typified-name .cdm\:TaxonName a{color:#999}.registration .typified-name .cdm\:TaxonName .TaxonName .name{font-weight:bold}.registration .registration-summary .registered_name .name{font-weight:bold}.registration .registration-summary .referenced_typified_name{color:#999}.registration .registration-summary .label{font-weight:bold}#system-theme-settings .image-preview{width:600px;max-height:150px;overflow:auto}#system-theme-settings .image-preview img{max-width:none}#classification-breadcrumbs{font-size:1.5em;line-height:1.5em}@media all and (min-width: 960px){#classification-breadcrumbs{font-size:1em}}.font-noto{font-family:"Noto Sans",sans-serif !important}
1
/**
2
 * @file
3
 * cdm_dataportal specific styling
4
 *
5
 * Style the markup found in the cdm_dataportal module.
6
 */
7
@import url("../fonts/droid-sans/stylesheet.css");
8
@import url("../fonts/droid-sans-mono-fontfacekit/web fonts/droidsansmono_regular/stylesheet.css");
9
@import url("../fonts/notosans-webfont-2017-2/stylesheet.css");
10
/* line 30, ../sass/ie-legacy.scss */
11
.pie-element, .lt-ie9 #page {
12
  behavior: url("/polyfills/css3pie/PIE-1.0.0.htc");
13
  position: relative;
14
}
15

  
16
/* line 43, ../sass/ie-legacy.scss */
17
.pie-container {
18
  z-index: 0;
19
  position: relative;
20
}
21

  
22
/* line 47, ../sass/ie-legacy.scss */
23
.z-pie-element, .lt-ie9 #page {
24
  behavior: url("/polyfills/css3pie/PIE-1.0.0.htc");
25
  z-index: 0;
26
}
27

  
28
/* line 63, ../sass/ie-legacy.scss */
29
.lt-ie9 #header {
30
  /* 
31
   * reset right padding to zero and use margin-right instead,
32
   * this avoids the need for background-clip: content-box
33
   * which is not suppoorted in IE < 9
34
   */
35
  padding-right: 0;
36
  margin-right: 20px;
37
}
38

  
39
/* line 43, ../sass/_mixins.scss */
40
.block a:link,
41
.block a:visited, .node a:link,
42
.node a:visited, #identificationKey a:link,
43
#identificationKey a:visited, #content a:link,
44
#content a:visited {
45
  color: #115e92;
46
  text-decoration: none;
47
}
48
/* line 49, ../sass/_mixins.scss */
49
.block a:hover,
50
.block a:focus, .node a:hover,
51
.node a:focus, #identificationKey a:hover,
52
#identificationKey a:focus, #content a:hover,
53
#content a:focus {
54
  text-decoration: underline;
55
}
56
/* line 58, ../sass/_mixins.scss */
57
.block .Synonym a:link,
58
.block .Synonym a:visited, .block .misapplied-name a:link,
59
.block .misapplied-name a:visited, .node .Synonym a:link,
60
.node .Synonym a:visited, .node .misapplied-name a:link,
61
.node .misapplied-name a:visited, #identificationKey .Synonym a:link,
62
#identificationKey .Synonym a:visited, #identificationKey .misapplied-name a:link,
63
#identificationKey .misapplied-name a:visited, #content .Synonym a:link,
64
#content .Synonym a:visited, #content .misapplied-name a:link,
65
#content .misapplied-name a:visited {
66
  color: #7c7c7c;
67
}
68
/* line 64, ../sass/_mixins.scss */
69
.block .Taxon a:link,
70
.block .Taxon a:visited, .node .Taxon a:link,
71
.node .Taxon a:visited, #identificationKey .Taxon a:link,
72
#identificationKey .Taxon a:visited, #content .Taxon a:link,
73
#content .Taxon a:visited {
74
  color: #115e92;
75
}
76

  
77
/* line 21, ../sass/cdm.scss */
78
.node-cdm-name .name-page-name {
79
  margin-top: 10px;
80
  margin-bottom: 10px;
81
}
82
/* line 25, ../sass/cdm.scss */
83
.node-cdm-name .registered_name {
84
  font-weight: bold;
85
}
86
/* line 28, ../sass/cdm.scss */
87
.node-cdm-name .type-status {
88
  font-weight: bold;
89
}
90

  
91
/* line 34, ../sass/cdm.scss */
92
#content a.tabs-primary__tab-link {
93
  color: #333;
94
}
95
/* line 38, ../sass/cdm.scss */
96
#content table {
97
  caption-side: top;
98
}
99
/* line 39, ../sass/cdm.scss */
100
#content table th {
101
  text-align: left;
102
}
103
/* line 43, ../sass/cdm.scss */
104
#content table caption {
105
  text-align: right;
106
  font-size: smaller;
107
}
108

  
109
/* line 50, ../sass/cdm.scss */
110
#page-toc {
111
  float: right;
112
  background-color: white;
113
}
114
/* line 53, ../sass/cdm.scss */
115
#page-toc h3 {
116
  margin-top: 0;
117
  line-height: 18px;
118
}
119

  
120
/* line 59, ../sass/cdm.scss */
121
#taxonProfileImage {
122
  float: left;
123
}
124

  
125
/* line 64, ../sass/cdm.scss */
126
.block-cdm-dataportal-feature .content-caption {
127
  text-align: right;
128
}
129
/* line 67, ../sass/cdm.scss */
130
.block-cdm-dataportal-feature .label {
131
  font-style: italic;
132
}
133

  
134
/* line 72, ../sass/cdm.scss */
135
.block-cdm-dataportal-feature, .media-caption, .specimens {
136
  clear: both;
137
  margin-bottom: 18px;
138
}
139
/* line 75, ../sass/cdm.scss */
140
.block-cdm-dataportal-feature dt, .media-caption dt, .specimens dt {
141
  float: left;
142
  font-weight: bold;
143
  margin-right: 0.3em;
144
}
145
/* line 80, ../sass/cdm.scss */
146
.block-cdm-dataportal-feature dd, .media-caption dd, .specimens dd {
147
  margin: 0;
148
  margin-left: 20px;
149
}
150
/* line 84, ../sass/cdm.scss */
151
.block-cdm-dataportal-feature dl dl, .media-caption dl dl, .specimens dl dl {
152
  margin: 0;
153
  /* reset default from cdm_dataportal.css */
154
}
155

  
156
/* line 89, ../sass/cdm.scss */
157
.breadcrumbs li {
158
  padding: 0 0 0 0;
159
}
160

  
161
/* line 94, ../sass/cdm.scss */
162
.description-table .described-entities .label {
163
  font-weight: bold;
164
}
165

  
166
/*
167
 * Search results
168
 */
169
/* line 43, ../sass/_mixins.scss */
170
#search_results a:link,
171
#search_results a:visited {
172
  color: #115e92;
173
  text-decoration: none;
174
}
175
/* line 49, ../sass/_mixins.scss */
176
#search_results a:hover,
177
#search_results a:focus {
178
  text-decoration: underline;
179
}
180
/* line 58, ../sass/_mixins.scss */
181
#search_results .Synonym a:link,
182
#search_results .Synonym a:visited, #search_results .misapplied-name a:link,
183
#search_results .misapplied-name a:visited {
184
  color: #7c7c7c;
185
}
186
/* line 64, ../sass/_mixins.scss */
187
#search_results .Taxon a:link,
188
#search_results .Taxon a:visited {
189
  color: #115e92;
190
}
191
/* line 108, ../sass/cdm.scss */
192
#search_results table {
193
  margin: 1em 0;
194
}
195

  
196
/* line 114, ../sass/cdm.scss */
197
div.cdm-item-list .label {
198
  color: #9a9a9a;
199
}
200
/* line 117, ../sass/cdm.scss */
201
div.cdm-item-list div.item {
202
  margin: 9px 0;
203
}
204

  
205
/*
206
 * Taxon page and parts
207
 */
208
/* line 126, ../sass/cdm.scss */
209
.page-part {
210
  margin-bottom: 18px;
211
  clear: none;
212
}
213

  
214
/*
215
 * definition list container rendered by the
216
 * drupal theme function theme_description_list()
217
 */
218
/* line 136, ../sass/cdm.scss */
219
.description_list h3 {
220
  font-size: 12px;
221
  line-height: 18px;
222
  font-weight: bold;
223
}
224

  
225
/*
226
 * Synonymy
227
 */
228
/* line 150, ../sass/cdm.scss */
229
#synonymy div.accepted-name {
230
  margin-bottom: -1em;
231
  margin-top: 1em;
232
}
233
/* line 155, ../sass/cdm.scss */
234
#synonymy .homotypic-synonymy-group, #synonymy .heterotypic-synonymy-group, #synonymy .taxon-relationships {
235
  border-bottom: 1px solid #DEDEDE;
236
  /* replace padding by margin */
237
  margin: 1em 0px;
238
  padding: 0;
239
}
240

  
241
/*
242
 * Media
243
 */
244
/* line 166, ../sass/cdm.scss */
245
dl.media-caption {
246
  margin: 0;
247
}
248

  
249
/* line 170, ../sass/cdm.scss */
250
.media-caption dd {
251
  margin-left: 0;
252
}
253
/* line 172, ../sass/cdm.scss */
254
.media-caption dd .title {
255
  font-size: 100%;
256
}
257

  
258
/* line 177, ../sass/cdm.scss */
259
.image-gallerie td.caption {
260
  padding-bottom: 1em;
261
}
262

  
263
/*
264
 * specimens and type designations
265
 */
266
/* line 185, ../sass/cdm.scss */
267
#specimens table.media_gallery {
268
  margin-top: 0.2em;
269
}
270
/* line 188, ../sass/cdm.scss */
271
#specimens .description_list {
272
  clear: both;
273
}
274
/* line 190, ../sass/cdm.scss */
275
#specimens .description_list h3 {
276
  margin-top: 0;
277
  background-color: #ddd;
278
}
279
/* line 194, ../sass/cdm.scss */
280
#specimens .description_list h4 {
281
  clear: left;
282
  margin-bottom: 0;
283
  font-style: italic;
284
}
285
/* line 200, ../sass/cdm.scss */
286
#specimens .dynabox_content {
287
  margin-left: 10px;
288
  margin-right: 10px;
289
}
290
/* line 204, ../sass/cdm.scss */
291
#specimens .block-cdm-dataportal-feature {
292
  margin-left: 20px;
293
  margin-bottom: 0;
294
}
295
/* line 207, ../sass/cdm.scss */
296
#specimens .block-cdm-dataportal-feature h2 {
297
  font-size: 12px;
298
  line-height: 18px;
299
  font-weight: bold;
300
}
301
/* line 214, ../sass/cdm.scss */
302
#specimens ul.typeDesignations {
303
  clear: both;
304
}
305
/* line 217, ../sass/cdm.scss */
306
#specimens .dna-sequence div {
307
  font-size: 12px;
308
  font-family: monospace;
309
  clear: left;
310
  padding-left: 20px;
311
}
312
/* line 223, ../sass/cdm.scss */
313
#specimens .derived_from {
314
  clear: both;
315
}
316

  
317
/*
318
 * Map
319
 */
320
/* line 231, ../sass/cdm.scss */
321
.openlayers-container {
322
  margin-top: 5px;
323
  margin-bottom: 5px;
324
}
325

  
326
/*
327
 * Registration page & items
328
 */
329
/* line 241, ../sass/cdm.scss */
330
.registration .type-status {
331
  font-weight: bold;
332
}
333
/* line 245, ../sass/cdm.scss */
334
.registration .registration-date-and-institute {
335
  color: #999;
336
}
337
/* line 251, ../sass/cdm.scss */
338
.registration .published-name .TaxonName .name {
339
  font-weight: bold;
340
}
341
/* line 255, ../sass/cdm.scss */
342
.registration .typified-name .cdm\:TaxonName {
343
  color: #999;
344
}
345
/* line 257, ../sass/cdm.scss */
346
.registration .typified-name .cdm\:TaxonName a {
347
  color: #999;
348
}
349
/* line 260, ../sass/cdm.scss */
350
.registration .typified-name .cdm\:TaxonName .TaxonName .name {
351
  font-weight: bold;
352
}
353
/* line 266, ../sass/cdm.scss */
354
.registration .registration-summary .registered_name .name {
355
  font-weight: bold;
356
}
357
/* line 269, ../sass/cdm.scss */
358
.registration .registration-summary .referenced_typified_name {
359
  color: #999;
360
}
361
/* line 272, ../sass/cdm.scss */
362
.registration .registration-summary .label {
363
  font-weight: bold;
364
}
365

  
366
/*
367
 * Theme settings page
368
 */
369
/* line 283, ../sass/cdm.scss */
370
#system-theme-settings .image-preview {
371
  width: 600px;
372
  max-height: 150px;
373
  overflow: auto;
374
}
375
/* line 287, ../sass/cdm.scss */
376
#system-theme-settings .image-preview img {
377
  max-width: none;
378
  /* reset style in mormalize.scss */
379
}
380

  
381
/*****************************************************************************************
382
 * RESPONSIVE
383
 *
384
 * using the same media queries here as in layout/_responsive.scss
385
 *****************************************************************************************/
386
/* line 300, ../sass/cdm.scss */
387
#classification-breadcrumbs {
388
  font-size: 1.5em;
389
  line-height: 1.5em;
390
}
391

  
392
@media all and (min-width: 960px) {
393
  /* line 311, ../sass/cdm.scss */
394
  #classification-breadcrumbs {
395
    font-size: 1em;
396
  }
397
}
398
/***************************
399
 * TESTING ONLY 2020-02-20
400
 */
401
/* line 319, ../sass/cdm.scss */
402
.font-noto {
403
  font-family: "Noto Sans", sans-serif !important;
404
}
themes/zen_dataportal/css/ie-legacy.css
1
.pie-element,.lt-ie9 #page{behavior:url("/polyfills/css3pie/PIE-1.0.0.htc");position:relative}.pie-container{z-index:0;position:relative}.z-pie-element,.lt-ie9 #page{behavior:url("/polyfills/css3pie/PIE-1.0.0.htc");z-index:0}.lt-ie9 #header{padding-right:0;margin-right:20px}
1
/* line 30, ../sass/ie-legacy.scss */
2
.pie-element, .lt-ie9 #page {
3
  behavior: url("/polyfills/css3pie/PIE-1.0.0.htc");
4
  position: relative;
5
}
6

  
7
/* line 43, ../sass/ie-legacy.scss */
8
.pie-container {
9
  z-index: 0;
10
  position: relative;
11
}
12

  
13
/* line 47, ../sass/ie-legacy.scss */
14
.z-pie-element, .lt-ie9 #page {
15
  behavior: url("/polyfills/css3pie/PIE-1.0.0.htc");
16
  z-index: 0;
17
}
18

  
19
/* line 63, ../sass/ie-legacy.scss */
20
.lt-ie9 #header {
21
  /* 
22
   * reset right padding to zero and use margin-right instead,
23
   * this avoids the need for background-clip: content-box
24
   * which is not suppoorted in IE < 9
25
   */
26
  padding-right: 0;
27
  margin-right: 20px;
28
}
themes/zen_dataportal/css/pie.css
1
.pie-element,.bordered,.gradient{behavior:url("/d7/test/scripts/polyfills/PIE.htc");position:relative}.bordered{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px}.gradient{background:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ff0000), color-stop(100%, #0000ff));background:-webkit-linear-gradient(#ff0000,#0000ff);background:-moz-linear-gradient(#ff0000,#0000ff);background:-o-linear-gradient(#ff0000,#0000ff);-pie-background:linear-gradient(#ff0000,#0000ff);background:linear-gradient(#ff0000,#0000ff)}.pie-container,.widget{z-index:0;position:relative}.z-pie-element,.widget h3{behavior:url("/d7/test/scripts/polyfills/PIE.htc");z-index:0}.has-gradient{behavior:url("/d7/test/scripts/polyfills/PIE.htc");position:relative;background:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ff0000), color-stop(100%, #0000ff));background:-webkit-linear-gradient(#ff0000,#0000ff);background:-moz-linear-gradient(#ff0000,#0000ff);background:-o-linear-gradient(#ff0000,#0000ff);-pie-background:linear-gradient(#ff0000,#0000ff);background:linear-gradient(#ff0000,#0000ff)}
1
/* line 27, ../sass/pie.scss */
2
.pie-element, .bordered, .gradient {
3
  behavior: url("/d7/test/scripts/polyfills/PIE.htc");
4
  position: relative;
5
}
6

  
7
/* line 33, ../sass/pie.scss */
8
.bordered {
9
  -webkit-border-radius: 5px;
10
  -moz-border-radius: 5px;
11
  -ms-border-radius: 5px;
12
  -o-border-radius: 5px;
13
  border-radius: 5px;
14
}
15

  
16
/* line 38, ../sass/pie.scss */
17
.gradient {
18
  background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ff0000), color-stop(100%, #0000ff));
19
  background: -webkit-linear-gradient(#ff0000, #0000ff);
20
  background: -moz-linear-gradient(#ff0000, #0000ff);
21
  background: -o-linear-gradient(#ff0000, #0000ff);
22
  -pie-background: linear-gradient(#ff0000, #0000ff);
23
  background: linear-gradient(#ff0000, #0000ff);
24
}
25

  
26
/* line 52, ../sass/pie.scss */
27
.pie-container, .widget {
28
  z-index: 0;
29
  position: relative;
30
}
31

  
32
/* line 56, ../sass/pie.scss */
33
.z-pie-element, .widget h3 {
34
  behavior: url("/d7/test/scripts/polyfills/PIE.htc");
35
  z-index: 0;
36
}
37

  
38
/* line 71, ../sass/pie.scss */
39
.has-gradient {
40
  behavior: url("/d7/test/scripts/polyfills/PIE.htc");
41
  position: relative;
42
  background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ff0000), color-stop(100%, #0000ff));
43
  background: -webkit-linear-gradient(#ff0000, #0000ff);
44
  background: -moz-linear-gradient(#ff0000, #0000ff);
45
  background: -o-linear-gradient(#ff0000, #0000ff);
46
  -pie-background: linear-gradient(#ff0000, #0000ff);
47
  background: linear-gradient(#ff0000, #0000ff);
48
}
themes/zen_dataportal/css/styles-rtl.css
1
@import url("../fonts/droid-sans/stylesheet.css");@import url("../fonts/droid-sans-mono-fontfacekit/web fonts/droidsansmono_regular/stylesheet.css");@import url("../fonts/notosans-webfont-2017-2/stylesheet.css");.pie-element,.lt-ie9 #page{behavior:url("/polyfills/css3pie/PIE-1.0.0.htc");position:relative}.pie-container{z-index:0;position:relative}.z-pie-element,.lt-ie9 #page{behavior:url("/polyfills/css3pie/PIE-1.0.0.htc");z-index:0}.lt-ie9 #header{padding-right:0;margin-right:20px}dd{margin:0 30px 0 0}menu,ol,ul{padding:0 30px 0 0}legend{*margin-left:0;*margin-right:-7px}@media all and (min-width: 480px) and (max-width: 959px){.sidebar-first #content{float:right;width:66.66667%;margin-right:33.33333%;margin-left:-100%}.sidebar-first .region-sidebar-first{float:right;width:33.33333%;margin-right:0%;margin-left:-33.33333%}.sidebar-second #content{float:right;width:66.66667%;margin-right:0%;margin-left:-66.66667%}.sidebar-second .region-sidebar-second{float:right;width:33.33333%;margin-right:66.66667%;margin-left:-100%}.two-sidebars #content{float:right;width:66.66667%;margin-right:33.33333%;margin-left:-100%}.two-sidebars .region-sidebar-first{float:right;width:33.33333%;margin-right:0%;margin-left:-33.33333%}.two-sidebars .region-sidebar-second{float:right;width:100%;margin-right:0%;margin-left:-100%;padding-left:0;padding-right:0;clear:right}.two-sidebars .region-sidebar-second .block{padding-left:20px;padding-right:20px;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;word-wrap:break-word;*behavior:url("/polyfills/box-sizing-polyfill/boxsizing.htc");_display:inline;_overflow:hidden;_overflow-y:visible}.two-sidebars .region-sidebar-second .block:nth-child(3n+1){float:right;width:33.33333%;margin-right:0%;margin-left:-33.33333%;clear:right}.two-sidebars .region-sidebar-second .block:nth-child(3n+2){float:right;width:33.33333%;margin-right:33.33333%;margin-left:-66.66667%}.two-sidebars .region-sidebar-second .block:nth-child(3n){float:right;width:33.33333%;margin-right:66.66667%;margin-left:-100%}}@media all and (min-width: 960px){.sidebar-first #content{float:right;width:75%;margin-right:25%;margin-left:-100%}.sidebar-first .region-sidebar-first{float:right;width:25%;margin-right:0%;margin-left:-25%}.sidebar-second #content{float:right;width:75%;margin-right:0%;margin-left:-75%}.sidebar-second .region-sidebar-second{float:right;width:25%;margin-right:75%;margin-left:-100%}.two-sidebars #content{float:right;width:50%;margin-right:25%;margin-left:-75%}.two-sidebars .region-sidebar-first{float:right;width:25%;margin-right:0%;margin-left:-25%}.two-sidebars .region-sidebar-second{float:right;width:25%;margin-right:75%;margin-left:-100%}}.header__logo{float:right}.header__secondary-menu{float:left}#navigation .links,#navigation .menu{text-align:right}#navigation .links li,#navigation .menu li{float:right;padding:0 0 0 10px}.messages,.messages--status,.messages--warning,.messages--error{padding:10px 50px 10px 10px;background-position:99% 8px}.tabs-primary__tab,.tabs-primary__tab.is-active,.tabs-secondary__tab,.tabs-secondary__tab.is-active{float:right}.inline li{display:inline-block;padding:0 0 0 1em}span.field-label{padding:0 0 0 1em}.more-link{text-align:left}.more-help-link{text-align:left}.more-help-link a{background-position:100% 50%;padding:1px 20px 1px 0}.menu__item.is-collapsed{list-style-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABNJREFUCB1j4GASYFJgcmD+A4IADUIDfIUMT4wAAAAASUVORK5CYII=');*list-style-image:url('../images/menu-collapsed-rtl.png?1586353911')}.indented{margin-left:0;margin-right:30px}#user-login-form{text-align:right}html.js #user-login-form li.openid-link,#user-login-form li.openid-link{margin-left:0;margin-right:-20px}form th{text-align:right;padding-left:1em;padding-right:0}html.js .collapsible .fieldset-legend{background-position:98% 75%;padding-left:0;padding-right:15px}html.js .collapsed .fieldset-legend{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABNJREFUCB1j4GASYFJgcmD+A4IADUIDfIUMT4wAAAAASUVORK5CYII=');*background-image:url('../images/menu-collapsed-rtl.png?1586353911');background-position:98% 50%}
1
/**
2
 * @file
3
 * RTL companion for the styles.scss file.
4
 */
5
/* Import Sass mixins, variables, Compass modules, etc. */
6
@import url("../fonts/droid-sans/stylesheet.css");
7
@import url("../fonts/droid-sans-mono-fontfacekit/web fonts/droidsansmono_regular/stylesheet.css");
8
@import url("../fonts/notosans-webfont-2017-2/stylesheet.css");
9
/* line 30, ../sass/ie-legacy.scss */
10
.pie-element, .lt-ie9 #page {
11
  behavior: url("/polyfills/css3pie/PIE-1.0.0.htc");
12
  position: relative;
13
}
14

  
15
/* line 43, ../sass/ie-legacy.scss */
16
.pie-container {
17
  z-index: 0;
18
  position: relative;
19
}
20

  
21
/* line 47, ../sass/ie-legacy.scss */
22
.z-pie-element, .lt-ie9 #page {
23
  behavior: url("/polyfills/css3pie/PIE-1.0.0.htc");
24
  z-index: 0;
25
}
26

  
27
/* line 63, ../sass/ie-legacy.scss */
28
.lt-ie9 #header {
29
  /* 
30
   * reset right padding to zero and use margin-right instead,
31
   * this avoids the need for background-clip: content-box
32
   * which is not suppoorted in IE < 9
33
   */
34
  padding-right: 0;
35
  margin-right: 20px;
36
}
37

  
38
/* HTML element (SMACSS base) rules */
39
/**
40
 * @file
41
 * Normalize-rtl.scss is the RTL language extension of normalize.scss
42
 */
43
/**
44
 * Lists
45
 */
46
/* line 9, ../sass/_normalize-rtl.scss */
47
dd {
48
  margin: 0 30px 0 0;
49
}
50

  
51
/* Address paddings set differently in IE 6/7. */
52
/* line 16, ../sass/_normalize-rtl.scss */
53
menu,
54
ol,
55
ul {
56
  padding: 0 30px 0 0;
57
}
58

  
59
/**
60
 * Forms
61
 */
62
/* line 24, ../sass/_normalize-rtl.scss */
63
legend {
64
  /* Correct alignment displayed oddly in IE 6/7. */
65
  *margin-left: 0;
66
  *margin-right: -7px;
67
}
68

  
69
/* Layout rules */
70
/**
71
 * @file
72
 * RTL companion for the layout-responsive.css file.
73
 */
74
/**
75
 * @file
76
 * Positioning for a responsive layout.
77
 *
78
 * Define CSS classes to create a fluid grid layout with optional sidebars
79
 * depending on whether blocks are placed in the left or right sidebars.
80
 *
81
 * This layout uses the Zen Grids plugin for Compass: http://zengrids.com
82
 */
83
/**
84
 * Use 3 grid columns for smaller screens.
85

  
86
 * FIXME ?: see sass-old/layouts/responsive-sidebars.scss line 99
87
 */
88
@media all and (min-width: 480px) and (max-width: 959px) {
89
  /**
90
   * The layout when there is only one sidebar, the left one.
91
   */
92
  /* line 87, ../sass/layouts/_responsive.scss */
93
  .sidebar-first {
94
    /* Span 2 columns, starting in 2nd column from left. */
95
    /* Span 1 column, starting in 1st column from left. */
96
  }
97
  /* line 89, ../sass/layouts/_responsive.scss */
98
  .sidebar-first #content {
99
    float: right;
100
    width: 66.66667%;
101
    margin-right: 33.33333%;
102
    margin-left: -100%;
103
  }
104
  /* line 94, ../sass/layouts/_responsive.scss */
105
  .sidebar-first .region-sidebar-first {
106
    float: right;
107
    width: 33.33333%;
108
    margin-right: 0%;
109
    margin-left: -33.33333%;
110
  }
111

  
112
  /**
113
   * The layout when there is only one sidebar, the right one.
114
   */
115
  /* line 102, ../sass/layouts/_responsive.scss */
116
  .sidebar-second {
117
    /* Span 2 columns, starting in 1st column from left. */
118
    /* Span 1 column, starting in 3rd column from left. */
119
  }
120
  /* line 104, ../sass/layouts/_responsive.scss */
121
  .sidebar-second #content {
122
    float: right;
123
    width: 66.66667%;
124
    margin-right: 0%;
125
    margin-left: -66.66667%;
126
  }
127
  /* line 109, ../sass/layouts/_responsive.scss */
128
  .sidebar-second .region-sidebar-second {
129
    float: right;
130
    width: 33.33333%;
131
    margin-right: 66.66667%;
132
    margin-left: -100%;
133
  }
134

  
135
  /**
136
   * The layout when there are two sidebars.
137
   */
138
  /* line 117, ../sass/layouts/_responsive.scss */
139
  .two-sidebars {
140
    /* Span 2 columns, starting in 2nd column from left. */
141
    /* Span 1 column, starting in 1st column from left. */
142
    /* Start a new row and span all 3 columns. */
143
  }
144
  /* line 119, ../sass/layouts/_responsive.scss */
145
  .two-sidebars #content {
146
    float: right;
147
    width: 66.66667%;
148
    margin-right: 33.33333%;
149
    margin-left: -100%;
150
  }
151
  /* line 124, ../sass/layouts/_responsive.scss */
152
  .two-sidebars .region-sidebar-first {
153
    float: right;
154
    width: 33.33333%;
155
    margin-right: 0%;
156
    margin-left: -33.33333%;
157
  }
158
  /* line 129, ../sass/layouts/_responsive.scss */
159
  .two-sidebars .region-sidebar-second {
160
    float: right;
161
    width: 100%;
162
    margin-right: 0%;
163
    margin-left: -100%;
164
    padding-left: 0;
165
    padding-right: 0;
166
    clear: right;
167
    /* Apply the shared properties of grid items in a single, efficient ruleset. */
168
    /* Span 1 column, starting in the 1st column from left. */
169
    /* Span 1 column, starting in the 2nd column from left. */
170
    /* Span 1 column, starting in the 3rd column from left. */
171
  }
172
  /* line 135, ../sass/layouts/_responsive.scss */
173
  .two-sidebars .region-sidebar-second .block {
174
    padding-left: 20px;
175
    padding-right: 20px;
176
    -moz-box-sizing: border-box;
177
    -webkit-box-sizing: border-box;
178
    -ms-box-sizing: border-box;
179
    box-sizing: border-box;
180
    word-wrap: break-word;
181
    *behavior: url("/polyfills/box-sizing-polyfill/boxsizing.htc");
182
    _display: inline;
183
    _overflow: hidden;
184
    _overflow-y: visible;
185
  }
186
  /* line 139, ../sass/layouts/_responsive.scss */
187
  .two-sidebars .region-sidebar-second .block:nth-child(3n+1) {
188
    float: right;
189
    width: 33.33333%;
190
    margin-right: 0%;
191
    margin-left: -33.33333%;
192
    clear: right;
193
  }
194
  /* line 144, ../sass/layouts/_responsive.scss */
195
  .two-sidebars .region-sidebar-second .block:nth-child(3n+2) {
196
    float: right;
197
    width: 33.33333%;
198
    margin-right: 33.33333%;
199
    margin-left: -66.66667%;
200
  }
201
  /* line 148, ../sass/layouts/_responsive.scss */
202
  .two-sidebars .region-sidebar-second .block:nth-child(3n) {
203
    float: right;
204
    width: 33.33333%;
205
    margin-right: 66.66667%;
206
    margin-left: -100%;
207
  }
208
}
209
/**
210
 * Use 5 grid columns for larger screens.
211
 */
212
@media all and (min-width: 960px) {
213
  /**
214
   * The layout when there is only one sidebar, the left one.
215
   */
216
  /* line 166, ../sass/layouts/_responsive.scss */
217
  .sidebar-first {
218
    /* Span 4 columns, starting in 2nd column from left. */
219
    /* Span 1 column, starting in 1st column from left. */
220
  }
221
  /* line 168, ../sass/layouts/_responsive.scss */
222
  .sidebar-first #content {
223
    float: right;
224
    width: 75%;
225
    margin-right: 25%;
226
    margin-left: -100%;
227
  }
228
  /* line 173, ../sass/layouts/_responsive.scss */
229
  .sidebar-first .region-sidebar-first {
230
    float: right;
231
    width: 25%;
232
    margin-right: 0%;
233
    margin-left: -25%;
234
  }
235

  
236
  /**
237
   * The layout when there is only one sidebar, the right one.
238
   */
239
  /* line 181, ../sass/layouts/_responsive.scss */
240
  .sidebar-second {
241
    /* Span 4 columns, starting in 1st column from left. */
242
    /* Span 1 column, starting in 5th column from left. */
243
  }
244
  /* line 183, ../sass/layouts/_responsive.scss */
245
  .sidebar-second #content {
246
    float: right;
247
    width: 75%;
248
    margin-right: 0%;
249
    margin-left: -75%;
250
  }
251
  /* line 188, ../sass/layouts/_responsive.scss */
252
  .sidebar-second .region-sidebar-second {
253
    float: right;
254
    width: 25%;
255
    margin-right: 75%;
256
    margin-left: -100%;
257
  }
258

  
259
  /**
260
   * The layout when there are two sidebars.
261
   */
262
  /* line 196, ../sass/layouts/_responsive.scss */
263
  .two-sidebars {
264
    /* Span 3 columns, starting in 2nd column from left. */
265
    /* Span 1 column, starting in 1st column from left. */
266
    /* Span 1 column, starting in 5th column from left. */
267
  }
268
  /* line 198, ../sass/layouts/_responsive.scss */
269
  .two-sidebars #content {
270
    float: right;
271
    width: 50%;
272
    margin-right: 25%;
273
    margin-left: -75%;
274
  }
275
  /* line 203, ../sass/layouts/_responsive.scss */
276
  .two-sidebars .region-sidebar-first {
277
    float: right;
278
    width: 25%;
279
    margin-right: 0%;
280
    margin-left: -25%;
281
  }
282
  /* line 208, ../sass/layouts/_responsive.scss */
283
  .two-sidebars .region-sidebar-second {
284
    float: right;
285
    width: 25%;
286
    margin-right: 75%;
287
    margin-left: -100%;
288
  }
289
}
290
/* Component (SMACSS module) rules */
291
/**
292
 * @file
293
 * RTL companion for the modular-styles.css file.
294
 */
295
/**
296
 * Branding header.
297
 */
298
/* Wrapping link for logo. */
299
/* line 11, ../sass/components/_misc-rtl.scss */
300
.header__logo {
301
  float: right;
302
}
303

  
304
/* The secondary menu (login, etc.) */
305
/* line 16, ../sass/components/_misc-rtl.scss */
306
.header__secondary-menu {
307
  float: left;
308
}
309

  
310
/**
311
 * Navigation bar.
312
 */
313
/* Main menu and secondary menu links and menu block links. */
314
/* line 27, ../sass/components/_misc-rtl.scss */
315
#navigation .links,
316
#navigation .menu {
317
  text-align: right;
318
}
319
/* line 30, ../sass/components/_misc-rtl.scss */
320
#navigation .links li,
321
#navigation .menu li {
322
  /* A simple method to get navigation links to appear in one line. */
323
  float: right;
324
  padding: 0 0 0 10px;
325
}
326

  
327
/**
328
 * Messages.
329
 */
330
/* line 41, ../sass/components/_misc-rtl.scss */
331
.messages, .messages--status, .messages--warning, .messages--error {
332
  padding: 10px 50px 10px 10px;
333
  background-position: 99% 8px;
334
}
335

  
336
/**
337
 * Tabs.
338
 */
339
/* line 58, ../sass/components/_misc-rtl.scss */
340
.tabs-primary__tab, .tabs-primary__tab.is-active, .tabs-secondary__tab,
341
.tabs-secondary__tab.is-active {
342
  float: right;
343
}
344

  
345
/**
346
 * Inline styles.
347
 */
348
/* List of links */
349
/* line 77, ../sass/components/_misc-rtl.scss */
350
.inline li {
351
  /* Bug in Safari causes display: inline to fail. */
352
  display: inline-block;
353
  padding: 0 0 0 1em;
354
}
355

  
356
/* The inline field label used by the Fences.module */
357
/* line 84, ../sass/components/_misc-rtl.scss */
358
span.field-label {
359
  padding: 0 0 0 1em;
360
}
361

  
362
/**
363
 * "More" links.
364
 */
365
/* line 91, ../sass/components/_misc-rtl.scss */
366
.more-link {
367
  text-align: left;
368
}
369

  
370
/* line 94, ../sass/components/_misc-rtl.scss */
371
.more-help-link {
372
  text-align: left;
373
}
374

  
375
/* line 97, ../sass/components/_misc-rtl.scss */
376
.more-help-link a {
377
  background-position: 100% 50%;
378
  padding: 1px 20px 1px 0;
379
}
380

  
381
/**
382
 * Menus.
383
 */
384
/* line 105, ../sass/components/_misc-rtl.scss */
385
.menu__item.is-collapsed {
386
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABNJREFUCB1j4GASYFJgcmD+A4IADUIDfIUMT4wAAAAASUVORK5CYII=');
387
  *list-style-image: url('../images/menu-collapsed-rtl.png?1475577735');
388
}
389

  
390
/**
391
 * Comments.
392
 */
393
/* Nested comments are indented. */
394
/* line 117, ../sass/components/_misc-rtl.scss */
395
.indented {
396
  margin-left: 0;
397
  margin-right: 30px;
398
}
399

  
400
/**
401
 * Forms.
402
 */
403
/* Drupal's default login form block */
404
/* line 127, ../sass/components/_misc-rtl.scss */
405
#user-login-form {
406
  text-align: right;
407
}
408

  
409
/* line 132, ../sass/components/_misc-rtl.scss */
410
html.js #user-login-form li.openid-link,
411
#user-login-form li.openid-link {
412
  /* Un-do some of the padding on the ul list. */
413
  margin-left: 0;
414
  margin-right: -20px;
415
}
416

  
417
/*
418
 * Drupal admin tables.
419
 */
420
/* line 142, ../sass/components/_misc-rtl.scss */
421
form th {
422
  text-align: right;
423
  padding-left: 1em;
424
  padding-right: 0;
425
}
426

  
427
/**
428
 * Collapsible fieldsets.
429
 *
430
 * @see collapse.js
431
 */
432
/* line 155, ../sass/components/_misc-rtl.scss */
433
html.js .collapsible .fieldset-legend {
434
  background-position: 98% 75%;
435
  padding-left: 0;
436
  padding-right: 15px;
437
}
438
/* line 160, ../sass/components/_misc-rtl.scss */
439
html.js .collapsed .fieldset-legend {
440
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABNJREFUCB1j4GASYFJgcmD+A4IADUIDfIUMT4wAAAAASUVORK5CYII=');
441
  *background-image: url('../images/menu-collapsed-rtl.png?1475577735');
442
  background-position: 98% 50%;
443
}
444

  
445
/* SMACSS theme rules */
446
/* @import "theme-A-rtl"; */
447
/* @import "theme-B-rtl"; */
themes/zen_dataportal/css/styles.css
1
@import url("../fonts/droid-sans/stylesheet.css");@import url("../fonts/droid-sans-mono-fontfacekit/web fonts/droidsansmono_regular/stylesheet.css");@import url("../fonts/notosans-webfont-2017-2/stylesheet.css");@import url("../fonts/droid-sans/stylesheet.css");@import url("../fonts/droid-sans-mono-fontfacekit/web fonts/droidsansmono_regular/stylesheet.css");@import url("../fonts/notosans-webfont-2017-2/stylesheet.css");.pie-element,.lt-ie9 #page,#page{behavior:url("/polyfills/css3pie/PIE-1.0.0.htc");position:relative}.pie-container{z-index:0;position:relative}.z-pie-element,.lt-ie9 #page,#page{behavior:url("/polyfills/css3pie/PIE-1.0.0.htc");z-index:0}.lt-ie9 #header{padding-right:0;margin-right:20px}article,aside,details,figcaption,figure,footer,header,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-family:"Droid Sans",sans-serif;font-size:75%;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;line-height:1.5em}button,input,select,textarea{font-family:"Droid Sans",sans-serif}body{margin:0;padding:0}a:focus{outline:thin dotted}a:active,a:hover{outline:0}p,pre{margin:1.5em 0}blockquote{margin:1.5em 30px}h1{font-size:2em;line-height:1.5em;margin-top:0.75em;margin-bottom:0.75em}h2{font-size:1.6em;line-height:1.875em;margin-top:0.9375em;margin-bottom:0.9375em}h3{font-size:1.5em;line-height:2em;margin-top:1em;margin-bottom:1em}h4{font-size:1em;line-height:1.5em;margin-top:1.5em;margin-bottom:1.5em}h5{font-size:0.83em;line-height:1.80723em;margin-top:1.80723em;margin-bottom:1.80723em}h6{font-size:0.67em;line-height:2.23881em;margin-top:2.23881em;margin-bottom:2.23881em}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0;border:1px solid #666;padding-bottom:-1px;margin:1.5em 0}mark{background:#ff0;color:#000}code,kbd,pre,samp,tt,var{font-family:"droid_sans_monoregular",monospace,sans-serif;_font-family:'courier new', monospace;font-size:1em;line-height:1.5em}pre{white-space:pre;white-space:pre-wrap;word-wrap:break-word}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}dl,menu,ol,ul,.item-list ul{margin:12px 0}ol ol,ol ul,ul ol,ul ul{margin:0}dd{margin:0 0 0 30px}menu,ol,ul{padding:0 0 0 30px}nav ul,nav ol{list-style:none;list-style-image:none}img{border:0;-ms-interpolation-mode:bicubic;max-width:100%;height:auto}img .lt-ie9{width:auto}svg:not(:root){overflow:hidden}figure{margin:0}form{margin:0}fieldset{margin:0 2px;border-color:#c0c0c0;border-top-style:solid;border-top-width:0.08333em;padding-top:0.44167em;border-bottom-style:solid;border-bottom-width:0.08333em;padding-bottom:0.89167em;border-left-style:solid;border-left-width:0.08333em;padding-left:0.89167em;border-right-style:solid;border-right-width:0.08333em;padding-right:0.89167em}legend{border:0;padding:0;*margin-left:-7px}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle;max-width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}button,input{line-height:normal}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;*overflow:visible}button[disabled],html input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0;*height:13px;*width:13px}input[type="search"]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}label{display:block;font-weight:bold}table{border-collapse:collapse;border-spacing:0;margin-top:1.5em;margin-bottom:1.5em}td{vertical-align:top;text-align:left}#page,.region-bottom{margin-left:auto;margin-right:auto;max-width:960px}#header,#content,#navigation,.region-sidebar-first,.region-sidebar-second,#footer{padding-left:20px;padding-right:20px;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;word-wrap:break-word;*behavior:url("/polyfills/box-sizing-polyfill/boxsizing.htc");_display:inline;_overflow:hidden;_overflow-y:visible}#header,#main,#footer{*position:relative;*zoom:1}#header:before,#header:after,#main:before,#main:after,#footer:before,#footer:after{content:"";display:table}#header:after,#main:after,#footer:after{clear:both}#main{padding-top:60px;padding-bottom:40px;position:relative}#navigation{position:absolute;top:0;height:40px;width:100%}@media all and (min-width: 480px) and (max-width: 959px){.sidebar-first #content{float:left;width:66.66667%;margin-left:33.33333%;margin-right:-100%}.sidebar-first .region-sidebar-first{float:left;width:33.33333%;margin-left:0%;margin-right:-33.33333%}.sidebar-second #content{float:left;width:66.66667%;margin-left:0%;margin-right:-66.66667%}.sidebar-second .region-sidebar-second{float:left;width:33.33333%;margin-left:66.66667%;margin-right:-100%}.two-sidebars #content{float:left;width:66.66667%;margin-left:33.33333%;margin-right:-100%}.two-sidebars .region-sidebar-first{float:left;width:33.33333%;margin-left:0%;margin-right:-33.33333%}.two-sidebars .region-sidebar-second{float:left;width:100%;margin-left:0%;margin-right:-100%;padding-left:0;padding-right:0;clear:left}.two-sidebars .region-sidebar-second .block{padding-left:20px;padding-right:20px;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;word-wrap:break-word;*behavior:url("/polyfills/box-sizing-polyfill/boxsizing.htc");_display:inline;_overflow:hidden;_overflow-y:visible}.two-sidebars .region-sidebar-second .block:nth-child(3n+1){float:left;width:33.33333%;margin-left:0%;margin-right:-33.33333%;clear:left}.two-sidebars .region-sidebar-second .block:nth-child(3n+2){float:left;width:33.33333%;margin-left:33.33333%;margin-right:-66.66667%}.two-sidebars .region-sidebar-second .block:nth-child(3n){float:left;width:33.33333%;margin-left:66.66667%;margin-right:-100%}}@media all and (min-width: 960px){.sidebar-first #content{float:left;width:75%;margin-left:25%;margin-right:-100%}.sidebar-first .region-sidebar-first{float:left;width:25%;margin-left:0%;margin-right:-25%}.sidebar-second #content{float:left;width:75%;margin-left:0%;margin-right:-75%}.sidebar-second .region-sidebar-second{float:left;width:25%;margin-left:75%;margin-right:-100%}.two-sidebars #content{float:left;width:50%;margin-left:25%;margin-right:-75%}.two-sidebars .region-sidebar-first{float:left;width:25%;margin-left:0%;margin-right:-25%}.two-sidebars .region-sidebar-second{float:left;width:25%;margin-left:75%;margin-right:-100%}}.with-wireframes #header,.with-wireframes #main,.with-wireframes #content,.with-wireframes #navigation,.with-wireframes .region-sidebar-first,.with-wireframes .region-sidebar-second,.with-wireframes #footer,.with-wireframes .region-bottom{outline:1px solid #ccc}.lt-ie8 .with-wireframes #header,.lt-ie8 .with-wireframes #main,.lt-ie8 .with-wireframes #content,.lt-ie8 .with-wireframes #navigation,.lt-ie8 .with-wireframes .region-sidebar-first,.lt-ie8 .with-wireframes .region-sidebar-second,.lt-ie8 .with-wireframes #footer,.lt-ie8 .with-wireframes .region-bottom{border:1px solid #ccc}.element-invisible,.element-focusable,#navigation .block-menu .block__title,#navigation .block-menu-block .block__title{position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px 1px 1px 1px);clip:rect(1px, 1px, 1px, 1px)}.element-focusable:active,.element-focusable:focus{position:static !important;clip:auto;height:auto;width:auto;overflow:auto}#skip-link{margin:0}#skip-link a,#skip-link a:visited{display:block;width:100%;padding:2px 0 3px 0;text-align:center;background-color:#666;color:#fff}.header__logo{float:left;margin:0;padding:0}.header__logo-image{vertical-align:bottom}.header__name-and-slogan{float:left}.header__site-name{margin:0;font-size:2em;line-height:1.5em}.header__site-link:link,.header__site-link:visited{color:#000;text-decoration:none}.header__site-link:hover,.header__site-link:focus{text-decoration:underline}.header__site-slogan{margin:0}.header__secondary-menu{float:right}.header__region{clear:both}#navigation .block{margin-bottom:0}#navigation .links,#navigation .menu{margin:0;padding:0;margin-left:-20px;text-align:left;display:block}#navigation .links li,#navigation .menu li{float:left;line-height:20px;padding:0 20px;list-style-type:none;list-style-image:none;border-left:1px solid #000;border-right:1px solid #000;margin-left:-1px}#navigation .links li.first,#navigation .menu li.first{border-left:0}#navigation .links li.last,#navigation .menu li.last{border-right:0}#page{-webkit-box-shadow:0px 5px 20px #000;-moz-box-shadow:0px 5px 20px #000;box-shadow:0px 5px 20px #000;padding-top:20px;background-color:#fff}#sub-header{clear:both;min-height:20px}#sub-header #site-name{font-weight:lighter}#logo{float:left;margin:0;margin-right:20px;padding:0}#logo img{vertical-align:bottom}#admin-menu .dropdown .admin-menu-icon img{height:18px}#name-and-slogan{float:left;margin-right:20px}#site-name{font-size:2.5em;font-weight:bold;line-height:1.5em;margin:0}#site-name a:link,#site-name a:visited{color:#fff;text-decoration:none}#site-name a:hover,#site-name a:focus{color:#fff;text-decoration:none}#main-menu{padding:5px 0;padding-left:53px;background-color:#dedede;display:block;font-size:14.4px}#main-menu a:link,#main-menu a:visited{color:#000;text-decoration:none}#main-menu a:hover,#main-menu a:focus{text-decoration:underline}.breadcrumb ol{margin:0;padding:0}.breadcrumb li{display:inline;list-style-type:none;margin:0;padding:0}.page__title,.node__title,.block__title,.comments__title,.comments__form-title,.comment__title{margin:0}.node__title{display:none}.messages,.messages--status,.messages--warning,.messages--error{margin:1.5em 0;padding:10px 10px 10px 50px;background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAD6UlEQVR42s2WX0xbVRzH3YwmC4k+GF/0ZS/S267/bmnX9nL7bwstZlnbjTDYyoC5GCbB0ZW5pdJCe6swbLFA6bpWIGuRMWVjKGP+21QW3SZBSAjGh4XEaTZTH82Cm/3ztS2xs7mw4KLRk3xyzj33/H6fe5Pz7zEA/yr/vUDukj9FH6drqTaqT8EoPs/UV+nX6TD1BlUh9AqLHlmgPKLcRHmoCOWmElK/FOKTYpS8UwLJkASiUyLI3pKhlClN0g46qj+qL/pbArlbrlO1q25JeiSgR2iYJ8ywXLSg/qP6LNl2ro8+Q4MMkKCd9K2t3q3KdQnkXXIF5aISkgEJzONm1F2qW52pDJN1MI2bUBIuAdVOJWSMTPNQgX6/vkjVpvpREpag6oMqWCYta1IzbsHh9ga0RJtzY8URMdRO9U/KSuWmNQUqh2pY3CtG+fvlqJyofMAFNrZAE+7e/RWR4X4cD9tgOGsA2U2CdtMDqwqyMyIzQ5KKqAKmcyaYxkzYd3YvjGNGFtXRPRj58DT+LOemRrFnrBLyITmUDmUyO/NYgu2d26ukHVJo3tXAMGpAs+cQmh0NeClan30uwN7TgnQ6nRd4r3thOGOAJqYB2UVC79AfZAnKHGUxQa8A2tNaNLW/jKvXv8Dyb8s4yryKA4O10A3roIvpUB+swTdz1/LJZ27PQBvT5lBH1RD4BChzlQ2wBNtc22aE/ULQgzRCl4P5BPcT93GMOYz9wb2QhCRgAq35d8u/L2PXe7tADVGgBlcQ+AXQtmlvsP/gzbJZvp8PMkJCFBYh8m0knyiVSsHe0YIGZz1+/uVOvt8z7QGvnwf+ST5EIRHIUyR4fh50rbp5lsDcYR4ReAXgBrng9q/Qfa0bfy035r7Ot2dvz4IX4IEIEAXwvDzscOw4zxJUd1YfEXlE4Aa4BQHMlwzSSBeI7iXvoTxWDqKPYCFsFaKmr+YVliB0JfS89DVpiuhlB9k/tSOZTuYFvq98yI7L0/MAsVWcGp0bfW61hbahwltxSeARsIKyWKesSKQSWIwvYkvvllwfx88pgOvhwthu/AzAxlVX8vz385tLbaVxwpcLZtEw0QDjsBGctzksiE4CimZFfHp++oWHbnbuUfdB0komMgHsRN1r0MWBsEmYODF5onY92/UTwcvBxuzXcN1ccHycVSn2FaPYWwzCQUDWKIt7z3utAJ5c74Hz+OLSomynY+cVfiM/xW3JiDyZpB3FuZrj4oCwE+Ad4qWMjPHjpTtL0mzMoxyZz9yM39Q7Y85Ok930icqm+k59TL2wm9l90dZv8y/8sPAigGf/iUN/Q4anM2zOsdLe+L+4VfwBVVjDs2rTYx0AAAAASUVORK5CYII=');*background-image:url('../images/message-24-ok.png?1586353911');background-position:8px 8px;background-repeat:no-repeat;border:1px solid #be7}.messages--warning{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACuElEQVRIiWP4//8/Ay0xSYqntTpnT252zqeJBf0Njhsykrz/pyd6/e9vcNpGVQv6q2wlm0qc/r0+IPD/3UG+/61l9v9mdrjIUc2C7hqHUzc3S///eZwBjO9tF/vfWe1wjioWTKixVm8otPn38wQT3IKfxxn/t5Va/utpsNSg2ILWcttrNzdJgQ3+dpQRjEHs+9tE/zeXWt+gyILOamuTqlxrsOtPLub+7+emBsSq/88v5wL7oqHQ9H9nmbkF2RbUF1rev7lJEuziuU3i/90ddcB4UZsoJC62ifyvK7R4QJYFrcUGrmUZ5v9hYb9hosh/bzcDMN42VRgeF9W5hv8bi/XdSbagKtfs2c1NEvCIPbaQ/7+/pwkYn17Ki0hR24T/l2eZPCfJgsZ83dCiNOP/yCnn7iau/8G+5mD8aBsHSoqqyNL9X5erHUm0BcVpRm9ubhZHMoTh/4eDzP/DA23+RwTZ/P96hAlF7t5Wof8FyfpvibKgNk8noyDZ4D9quofg1Bjr/1kJlhjiIF+Upmn/r83RzCJoQXaC3qcbm8SwGMLwvybP/H8jMGlik7u7VeB/Zqz2J7wWVGdr1uTG62J1PQgfWST1/+hiCaxyIF8UJqv9r8hQrcVpQVqkzrcbG0WwGvB2H/P/lnx5MAaxsam5vYn3f2KY+jesFpSlqfZnxWjidP2OGWL/g/0swBjExu4Lhv958Ur/i5KU+lEsCA1lYI4JUv95bZ0gTo2Pt3P+z0myBmMQG5e6mxu4/kf4Kf8EmQm3oCRNebKrvSawIGPBqRG9sMOp5hjjfwdrlf/58bKT4RaUpWvtcLZV/39iscD/H0AFP46jYwYiMeP/44u4/9tbKQODSXUH3II9G7v18hI0n8YGKv+IDVT6joxj/BVx4mgcOCde/SnITPRUJAHEGlTCEkQV19TAAN8FC67hZdFXAAAAAElFTkSuQmCC');*background-image:url('../images/message-24-warning.png?1586353911');border-color:#ed5}.messages--error{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACpElEQVR42rWWTUgbQRiGQ0Tx4MWDeFM8eBA9iKAoggiCoCiiIiL4L3oQV1CJB0UEf6iRYFpK7UniTw9VSqL2kvQsVDBpSZrtRo35czVNW3oprRf17exSl4yzu1ikAy9h59vvedhkMrMGAGoxknAk2w8MJ/WosXThiZkZt9jdLeglPjn5ATc3mhJNuNjbK0QbG3ExMICL/n6IfX0gcxB7ekDAELu6IHZ2IlJbi1hLS1BLogmPtbUhMTv7oMSamzUlqnByMxLT0/8STQkDj9TV4ZLj5OysrODl8jIu5Gs68dFR7JG6dWkJ0fFx+TpSX89IDMnwcHU1yKec12Yz3rlc4HkeLwjkXJpPip3U3+7vIx6P4ymph4eG5PlwTQ0lMdytlmBxMWKtrXLeT0zA5XTibvj9fjxfXETkb/3N/Dz2dneVuiTZtliU/rPSUsQ5ziuxZYG03IIlJdKKUPJjdRUAKMmzuTnskB/VYbdTtd9HR4g2NCi9Z2VliDY1BSnBaUEBzsrLqXyzWCiQ9HU5HA4afniIUFWV0hOqqMBpURErOM7NxWlhIZOvCwvA7S3Uxq+DA5AnZ3pO8vJYQSArC8c5Oeqx2Rj4udeLQH6+6v2B7GxW8DkjA0JmJpONwUHY7XZGIAgCzCYTeJUewmIFfqMRfEoKlQ2yJbza2oLWcLvdeDI2hk/3+iQWKzAYkJzNjg5srq9TwJ9OJ76YTNScx+ORJT66X1/grKyEbW2NgfPp6XKd/JMZySrHaQsSU1Oe+0/w3WpVgyu5HBlR6lc+H8gioevDwz6JrWwV5+3txyoSFk5DcOX1MnCyJ4Vwfb1zt1UY9SR8aioDpuppaVpwZbPTl+hHF04dOKzk8XBF8DgJC3/woU/W/EciOtELOWi8DDwp//215Q+p7kiKh2lQSAAAAABJRU5ErkJggg==');*background-image:url('../images/message-24-error.png?1586353911');border-color:#ed541d}.messages__list{margin:0}.messages__item{list-style-image:none}.messages--error p.error{color:#333}.ok,.messages--status{background-color:#f8fff0;color:#234600}.warning,.messages--warning{background-color:#fffce5;color:#840}.error,.messages--error{background-color:#fef5f1;color:#8c2e0b}.tabs-primary,.tabs-secondary{overflow:hidden;*zoom:1;background:-webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(100%, #bbbbbb), color-stop(100%, transparent));background:-webkit-linear-gradient(bottom, #bbbbbb 1px,transparent 1px);background:-moz-linear-gradient(bottom, #bbbbbb 1px,transparent 1px);background:-o-linear-gradient(bottom, #bbbbbb 1px,transparent 1px);-pie-background:linear-gradient(bottom, #bbbbbb 1px,transparent 1px);background:linear-gradient(bottom, #bbbbbb 1px,transparent 1px);list-style:none;border-bottom:1px solid #bbb \0/ie;margin:1.5em 0;padding:0 2px;white-space:nowrap}.tabs-primary__tab,.tabs-primary__tab.is-active,.tabs-secondary__tab,.tabs-secondary__tab.is-active{float:left;margin:0 3px}a.tabs-primary__tab-link,a.tabs-primary__tab-link.is-active,a.tabs-secondary__tab-link,a.tabs-secondary__tab-link.is-active{border:1px solid #e9e9e9;border-right:0;border-bottom:0;display:block;line-height:1.5em;text-decoration:none}.tabs-primary__tab,.tabs-primary__tab.is-active{-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px;text-shadow:1px 1px 0 #fff;border:1px solid #bbb;border-bottom-color:transparent;border-bottom:0 \0/ie}.is-active.tabs-primary__tab{border-bottom-color:#fff}a.tabs-primary__tab-link,a.tabs-primary__tab-link.is-active{-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-webkit-transition:background-color 0.3s;-moz-transition:background-color 0.3s;-o-transition:background-color 0.3s;transition:background-color 0.3s;color:#333;background-color:#dedede;letter-spacing:1px;padding:0 1em;text-align:center}a.tabs-primary__tab-link:hover,a.tabs-primary__tab-link:focus{background-color:#e9e9e9;border-color:#f2f2f2}a.tabs-primary__tab-link:active,a.tabs-primary__tab-link.is-active{background-color:transparent;*zoom:1;filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFE9E9E9', endColorstr='#00E9E9E9');background:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e9e9e9), color-stop(100%, rgba(233,233,233,0)));background:-webkit-linear-gradient(#e9e9e9,rgba(233,233,233,0));background:-moz-linear-gradient(#e9e9e9,rgba(233,233,233,0));background:-o-linear-gradient(#e9e9e9,rgba(233,233,233,0));-pie-background:linear-gradient(#e9e9e9,rgba(233,233,233,0));background:linear-gradient(#e9e9e9,rgba(233,233,233,0));border-color:#fff}.tabs-secondary{font-size:.9em;margin-top:-1.5em}.tabs-secondary__tab,.tabs-secondary__tab.is-active{margin:0.75em 3px}a.tabs-secondary__tab-link,a.tabs-secondary__tab-link.is-active{-webkit-border-radius:0.75em;-moz-border-radius:0.75em;-ms-border-radius:0.75em;-o-border-radius:0.75em;border-radius:0.75em;-webkit-transition:background-color 0.3s;-moz-transition:background-color 0.3s;-o-transition:background-color 0.3s;transition:background-color 0.3s;text-shadow:1px 1px 0 #fff;background-color:#f2f2f2;color:#666;padding:0 .5em}a.tabs-secondary__tab-link:hover,a.tabs-secondary__tab-link:focus{background-color:#dedede;border-color:#999;color:#333}a.tabs-secondary__tab-link:active,a.tabs-secondary__tab-link.is-active{text-shadow:1px 1px 0 #333;background-color:#666;border-color:#000;color:#fff}.inline{display:inline;padding:0}.inline li{display:inline;list-style-type:none;padding:0 1em 0 0}span.field-label{padding:0 1em 0 0}.more-link{text-align:right}.more-help-link{text-align:right}.more-help-link a{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAA7UlEQVR42qWTPQqDQBCFcwSPkCNITpAj5AjeIm1uYpkyR7Cy2Mot7OwsBAsRwUKwmOwLGRle3EIy8PyBfZ/z3J2TiPylz8VWWZZpUB40BonRKyizaxkA88MYYiqCEgv4MTvnZJom0VqWRbz3FlJZgLYtqmEY1Lg9r+sKsIXcLSC3AC019H0vqLquLeC5AfiHYSGkcdAJimKIBQiJ4+CO92OAtm0FNc8zOjkMwE5Q63FAtbeg6zpAYvG8BWR7i5qmQYwY4MIHqYhE2DOPQWcGJBQF2XU72ZzyUeZ5GCNt5/hybJgYdAXsq5sOEE/jG6dC5IOqCXTmAAAAAElFTkSuQmCC');*background-image:url('../images/help.png?1586353911');background-position:0 50%;background-repeat:no-repeat;padding:1px 0 1px 20px}.pager{clear:both;padding:0;text-align:center}.pager-item,.pager-first,.pager-previous,.pager-next,.pager-last,.pager-ellipsis,.pager-current{display:inline;padding:0 0.5em;list-style-type:none;background-image:none}.pager-current{font-weight:bold}h1,h2,h3,h4,h5,h6{font-weight:normal}h1.title,h2.node-title,h2.block-title,h2.title,h2.comment-form,h3.title{margin:0}.block{margin-bottom:1.5em}.menu__item.is-leaf{list-style-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHBAMAAAA2fErgAAAAD1BMVEX///+/v7+Li4sAAADAwMBFvsw8AAAAAXRSTlMAQObYZgAAAB1JREFUCFtjYAADYwMGBmYVZSDhKAwkFJWhYiAAAB2+Aa/9ugeaAAAAAElFTkSuQmCC');*list-style-image:url('../images/menu-leaf.png?1586353911');list-style-type:square}.menu__item.is-expanded{list-style-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABJJREFUeJxj+MdQw2DBIMAABgAUsAHD3c3BpwAAAABJRU5ErkJggg==');*list-style-image:url('../images/menu-expanded.png?1586353911');list-style-type:circle}.menu__item.is-collapsed{list-style-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABFJREFUCB1jVmCGQClmEWYOAAZ8AMy3HPLXAAAAAElFTkSuQmCC');*list-style-image:url('../images/menu-collapsed.png?1586353911');list-style-type:disc}.menu a.active{color:#000}.new,.update{color:#c00;background-color:transparent}.unpublished{height:0;overflow:visible;background-color:transparent;color:#d8d8d8;font-size:75px;line-height:1;font-family:"Droid Sans",sans-serif;font-weight:bold;text-transform:uppercase;text-align:center;word-wrap:break-word}.lt-ie8 .node-unpublished>*,.lt-ie8 .comment-unpublished>*{position:relative}.comments{margin:1.5em 0}.comment-preview{background-color:#ffffea}.comment .permalink{text-transform:uppercase;font-size:75%}.indented{margin-left:30px}.form-item{margin:1.5em 0}.form-checkboxes .form-item,.form-radios .form-item{margin:0}tr.odd .form-item,tr.even .form-item{margin:0}.form-item input.error,.form-item textarea.error,.form-item select.error{border:1px solid #c00}.form-item .description{font-size:0.85em}.form-type-radio .description,.form-type-checkbox .description{margin-left:2.4em}.form-required{color:#c00}label.option{display:inline;font-weight:normal}a.button{-webkit-appearance:button;-moz-appearance:button;appearance:button}.password-parent,.confirm-parent{margin:0}#user-login-form{text-align:left}.openid-links{margin-bottom:0}.openid-link,.user-link{margin-top:1.5em}html.js #user-login-form li.openid-link,#user-login-form li.openid-link{margin-left:-20px}#user-login ul{margin:1.5em 0}form th{text-align:left;padding-right:1em;border-bottom:3px solid #ccc}form tbody{border-top:1px solid #ccc}form table ul{margin:0}tr.even,tr.odd{background-color:#eee;border-bottom:1px solid #ccc;padding:0.1em 0.6em}tr.even{background-color:#fff}.lt-ie8 tr.even th,.lt-ie8 tr.even td,.lt-ie8 tr.odd th,.lt-ie8 tr.odd td{border-bottom:1px solid #ccc}td.active{background-color:#ddd}td.checkbox,th.checkbox{text-align:center}td.menu-disabled{background:#ccc}#autocomplete .selected{background:#0072b9;color:#fff}html.js .collapsible .fieldset-legend{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABJJREFUeJxj+MdQw2DBIMAABgAUsAHD3c3BpwAAAABJRU5ErkJggg==');*background-image:url('../images/menu-expanded.png?1586353911');background-position:5px 65%;background-repeat:no-repeat;padding-left:15px}html.js .collapsed .fieldset-legend{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABFJREFUCB1jVmCGQClmEWYOAAZ8AMy3HPLXAAAAAElFTkSuQmCC');*background-image:url('../images/menu-collapsed.png?1586353911');background-position:5px 50%}.fieldset-legend .summary{color:#999;font-size:0.9em;margin-left:0.5em}tr.drag{background-color:#fffff0}tr.drag-previous{background-color:#ffd}.tabledrag-toggle-weight{font-size:0.9em}tr.selected td{background:#ffc}.progress{font-weight:bold}.progress .bar{background:#ccc;border-color:#666;margin:0 0.2em;-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px}.progress .filled{background-color:#0072b9;background-image:url('../images/progress.gif?1586353911')}@media print{a:link,a:visited{text-decoration:underline !important}a:link.header__site-link,a:visited.header__site-link{text-decoration:none !important}#content a[href]:after{content:" (" attr(href) ")";font-weight:normal;font-size:12px}#content a[href^="javascript:"]:after,#content a[href^="#"]:after{content:""}#content abbr[title]:after{content:" (" attr(title) ")"}#content{float:none !important;width:100% !important;margin:0 !important;padding:0 !important}body,#page,#main,#content{color:#000;background-color:transparent !important;background-image:none !important}#skip-link,#toolbar,#navigation,.region-sidebar-first,.region-sidebar-second,#footer,.breadcrumb,.tabs,.action-links,.links,.book-navigation,.forum-topic-navigation,.pager,.feed-icons{visibility:hidden;display:none}}.pie-element,.lt-ie9 #page,#page{behavior:url("/polyfills/css3pie/PIE-1.0.0.htc");position:relative}.pie-container{z-index:0;position:relative}.z-pie-element,.lt-ie9 #page,#page{behavior:url("/polyfills/css3pie/PIE-1.0.0.htc");z-index:0}.lt-ie9 #header{padding-right:0;margin-right:20px}.block a:link,.block a:visited,.node a:link,.node a:visited,#identificationKey a:link,#identificationKey a:visited,#content a:link,#content a:visited{color:#115e92;text-decoration:none}.block a:hover,.block a:focus,.node a:hover,.node a:focus,#identificationKey a:hover,#identificationKey a:focus,#content a:hover,#content a:focus{text-decoration:underline}.block .Synonym a:link,.block .Synonym a:visited,.block .misapplied-name a:link,.block .misapplied-name a:visited,.node .Synonym a:link,.node .Synonym a:visited,.node .misapplied-name a:link,.node .misapplied-name a:visited,#identificationKey .Synonym a:link,#identificationKey .Synonym a:visited,#identificationKey .misapplied-name a:link,#identificationKey .misapplied-name a:visited,#content .Synonym a:link,#content .Synonym a:visited,#content .misapplied-name a:link,#content .misapplied-name a:visited{color:#7c7c7c}.block .Taxon a:link,.block .Taxon a:visited,.node .Taxon a:link,.node .Taxon a:visited,#identificationKey .Taxon a:link,#identificationKey .Taxon a:visited,#content .Taxon a:link,#content .Taxon a:visited{color:#115e92}.node-cdm-name .name-page-name{margin-top:20px;margin-bottom:20px}.node-cdm-name .registered_name{font-weight:bold}.node-cdm-name .type-status{font-weight:bold}#content a.tabs-primary__tab-link{color:#333}#content table{caption-side:top}#content table th{text-align:left}#content table caption{text-align:right;font-size:smaller}#page-toc{float:right;background-color:#fff}#page-toc h3{margin-top:0;line-height:18px}#taxonProfileImage{float:left}.block-cdm-dataportal-feature .content-caption{text-align:right}.block-cdm-dataportal-feature .label{font-style:italic}.block-cdm-dataportal-feature,.media-caption,.specimens{clear:both;margin-bottom:18px}.block-cdm-dataportal-feature dt,.media-caption dt,.specimens dt{float:left;font-weight:bold;margin-right:0.3em}.block-cdm-dataportal-feature dd,.media-caption dd,.specimens dd{margin:0;margin-left:40px}.block-cdm-dataportal-feature dl dl,.media-caption dl dl,.specimens dl dl{margin:0}.breadcrumbs li{padding:0 0 0 0}.description-table .described-entities .label{font-weight:bold}#search_results a:link,#search_results a:visited{color:#115e92;text-decoration:none}#search_results a:hover,#search_results a:focus{text-decoration:underline}#search_results .Synonym a:link,#search_results .Synonym a:visited,#search_results .misapplied-name a:link,#search_results .misapplied-name a:visited{color:#7c7c7c}#search_results .Taxon a:link,#search_results .Taxon a:visited{color:#115e92}#search_results table{margin:1em 0}div.cdm-item-list div.item{margin:9px 0}.page-part{margin-bottom:18px;clear:none}.description_list h3{font-size:12px;line-height:18px;font-weight:bold}#synonymy div.accepted-name{margin-bottom:-1em;margin-top:1em}#synonymy .homotypic-synonymy-group,#synonymy .heterotypic-synonymy-group,#synonymy .taxon-relationships{border-bottom:1px solid #DEDEDE;margin:1em 0px;padding:0}dl.media-caption{margin:0}.media-caption dd{margin-left:0}.media-caption dd .title{font-size:100%}.image-gallerie td.caption{padding-bottom:1em}#specimens table.media_gallery{margin-top:0.2em}#specimens .description_list{clear:both}#specimens .description_list h3{margin-top:0;background-color:#ddd}#specimens .description_list h4{clear:left;margin-bottom:0;font-style:italic}#specimens .dynabox_content{margin-left:20px;margin-right:20px}#specimens .block-cdm-dataportal-feature{margin-left:40px;margin-bottom:0}#specimens .block-cdm-dataportal-feature h2{font-size:12px;line-height:18px;font-weight:bold}#specimens ul.typeDesignations{clear:both}#specimens .dna-sequence div{font-size:12px;font-family:monospace;clear:left;padding-left:40px}#specimens .derived_from{clear:both}.openlayers-container{margin-top:10px;margin-bottom:10px}.registration .type-status{font-weight:bold}.registration .registration-date-and-institute{color:#999}.registration .published-name .TaxonName .name{font-weight:bold}.registration .typified-name .cdm\:TaxonName{color:#999}.registration .typified-name .cdm\:TaxonName a{color:#999}.registration .typified-name .cdm\:TaxonName .TaxonName .name{font-weight:bold}.registration .registration-summary .registered_name .name{font-weight:bold}.registration .registration-summary .referenced_typified_name{color:#999}.registration .registration-summary .label{font-weight:bold}#system-theme-settings .image-preview{width:600px;max-height:150px;overflow:auto}#system-theme-settings .image-preview img{max-width:none}#classification-breadcrumbs{font-size:1.5em;line-height:1.5em}@media all and (min-width: 960px){#classification-breadcrumbs{font-size:1em}}.font-noto{font-family:"Noto Sans",sans-serif !important}
1
/**
2
 * @file
3
 * Styles are organized using the SMACSS technique. @see http://smacss.com/book/
4
 *
5
 * When you turn on CSS aggregation at admin/config/development/performance, all
6
 * of these @include files will be combined into a single file.
7
 */
8
/* Import Sass mixins, variables, Compass modules, etc. */
9
@import url("../fonts/droid-sans/stylesheet.css");
10
@import url("../fonts/droid-sans-mono-fontfacekit/web fonts/droidsansmono_regular/stylesheet.css");
11
@import url("../fonts/notosans-webfont-2017-2/stylesheet.css");
12
@import url("../fonts/droid-sans/stylesheet.css");
13
@import url("../fonts/droid-sans-mono-fontfacekit/web fonts/droidsansmono_regular/stylesheet.css");
14
@import url("../fonts/notosans-webfont-2017-2/stylesheet.css");
15
/* line 30, ../sass/ie-legacy.scss */
16
.pie-element, .lt-ie9 #page, #page {
17
  behavior: url("/polyfills/css3pie/PIE-1.0.0.htc");
18
  position: relative;
19
}
20

  
21
/* line 43, ../sass/ie-legacy.scss */
22
.pie-container {
23
  z-index: 0;
24
  position: relative;
25
}
26

  
27
/* line 47, ../sass/ie-legacy.scss */
28
.z-pie-element, .lt-ie9 #page, #page {
29
  behavior: url("/polyfills/css3pie/PIE-1.0.0.htc");
30
  z-index: 0;
31
}
32

  
33
/* line 63, ../sass/ie-legacy.scss */
34
.lt-ie9 #header {
35
  /* 
36
   * reset right padding to zero and use margin-right instead,
37
   * this avoids the need for background-clip: content-box
38
   * which is not suppoorted in IE < 9
39
   */
40
  padding-right: 0;
41
  margin-right: 20px;
42
}
43

  
44
/* HTML element (SMACSS base) rules */
45
/**
46
 * @file
47
 * Normalize.css is intended to be used as an alternative to CSS resets.
48
 *
49
 * This file is a slight fork of these original sources:
50
 * - normalize.css v2.1.2 | MIT License | git.io/normalize
51
 * - normalize.scss v2.1.2 | MIT/GPLv2 License | bit.ly/normalize-with-compass
52
 *
53
 * It's suggested that you read the normalize.scss file and customise it to meet
54
 * your needs, rather then including the file in your project and overriding the
55
 * defaults later in your CSS.
56
 * @see http://nicolasgallagher.com/about-normalize-css/
57
 *
58
 * Also: @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
59
 *       @see http://snook.ca/archives/html_and_css/no_css_reset/
60
 */
61
/**
62
 * HTML5 display definitions
63
 */
64
/* Correct `block` display not defined in IE 8/9. */
65
/* line 33, ../sass/_normalize.scss */
66
article,
67
aside,
68
details,
69
figcaption,
70
figure,
71
footer,
72
header,
73
main,
74
nav,
75
section,
76
summary {
77
  display: block;
78
}
79

  
80
/* Correct `inline-block` display not defined in IE 8/9. */
81
/* line 40, ../sass/_normalize.scss */
82
audio,
83
canvas,
84
video {
85
  display: inline-block;
86
  *display: inline;
87
  *zoom: 1;
88
}
89

  
90
/**
91
 * Prevent modern browsers from displaying `audio` without controls.
92
 * Remove excess height in iOS 5 devices.
93
 */
94
/* line 52, ../sass/_normalize.scss */
95
audio:not([controls]) {
96
  display: none;
97
  height: 0;
98
}
99

  
100
/* Address styling not present in IE 8/9. */
101
/* line 58, ../sass/_normalize.scss */
102
[hidden] {
103
  display: none;
104
}
105

  
106
/**
107
 * Base
108
 *
109
 * Instead of relying on the fonts that are available on a user's computer, you
110
 * can use web fonts which, like images, are resources downloaded to the user's
111
 * browser. Because of the bandwidth and rendering resources required, web fonts
112
 * should be used with care.
113
 *
114
 * Numerous resources for web fonts can be found on Google. Here are a few
115
 * websites where you can find Open Source fonts to download:
116
 * - http://www.fontsquirrel.com/fontface
117
 * - http://www.theleagueofmoveabletype.com
118
 *
119
 * In order to use these fonts, you will need to convert them into formats
120
 * suitable for web fonts. We recommend the free-to-use Font Squirrel's
121
 * Font-Face Generator:
122
 *   http://www.fontsquirrel.com/fontface/generator
123
 *
124
 * The following is an example @font-face declaration. This font can then be
125
 * used in any ruleset using a property like this:  font-family: Example, serif;
126
 *
127
 * Since we're using Sass, you'll need to declare your font faces here, then you
128
 * can add them to the font variables in the _init.scss partial.
129
 */
130
/*
131
@font-face {
132
  font-family: 'Example';
133
  src: url('../fonts/example.eot');
134
  src: url('../fonts/example.eot?iefix') format('eot'),
135
    url('../fonts/example.woff') format('woff'),
136
    url('../fonts/example.ttf') format('truetype'),
137
    url('../fonts/example.svg#webfontOkOndcij') format('svg');
138
  font-weight: normal;
139
  font-style: normal;
140
}
141
*/
142
/**
143
 * 1. Set default font family to sans-serif.
144
 * 2. Prevent iOS text size adjust after orientation change, without disabling
145
 *    user zoom.
146
 * 3. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
147
 *    `em` units.
148
 */
149
/* line 106, ../sass/_normalize.scss */
150
html {
151
  font-family: "Droid Sans", sans-serif;
152
  /* 1 */
153
  font-size: 75%;
154
  /* 3 */
155
  -ms-text-size-adjust: 100%;
156
  /* 2 */
157
  -webkit-text-size-adjust: 100%;
158
  /* 2 */
159
  line-height: 1.5em;
160
}
161

  
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff