
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_ef91b827eca536e16e0ddf4e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8281f79bcf790289a6084788.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.858398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_dd2e5a1ca16762fbeb1c4781.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_22bf93e2689cd30ed881e706.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.103027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d6e7f2ee23c749bbc6f5b76c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_19ca90b6040e3d60ed4864ab.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.115234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_846f4e8ba632eda912980986.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_886ac3330beaaafbdb750858.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.835938;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_491cf2a018f9ec6dd3391591.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.115234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7b83cc374e1b10d1285704ce.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_7b83cc374e1b10d1285704ce.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_45a609ac0a6fe8adfd252876.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.926270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ae9ea7e796010d9b50e061e3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_382e1a8cadf87300aa60fe11.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_108d6181cdd1174fe120302d.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_5022be4a23dc182c1933b644.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.728027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_5022be4a23dc182c1933b644.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.728027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000002px;}
.ls2{letter-spacing:13.493525px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-76.499998px;}
.ws6{word-spacing:-58.500002px;}
.ws3{word-spacing:-29.999999px;}
.ws1{word-spacing:-20.003906px;}
.ws4{word-spacing:-18.336914px;}
.ws2{word-spacing:-16.669921px;}
.ws0{word-spacing:0.000000px;}
._7{margin-left:-7.980427px;}
._1{margin-left:-6.679691px;}
._14{margin-left:-5.343767px;}
._0{margin-left:-3.972647px;}
._11{margin-left:-2.483049px;}
._12{margin-left:-1.022198px;}
._5{width:4.500001px;}
._4{width:9.000009px;}
._3{width:13.499994px;}
._2{width:18.000003px;}
._6{width:22.500003px;}
._c{width:26.999994px;}
._b{width:31.500003px;}
._10{width:36.000003px;}
._13{width:40.500004px;}
._e{width:45.000008px;}
._d{width:49.500003px;}
._f{width:54.000003px;}
._8{width:55.089845px;}
._a{width:62.898790px;}
._9{width:67.444089px;}
.fc7{color:transparent;}
.fc6{color:rgb(17,85,204);}
.fc5{color:rgb(79,129,189);}
.fc4{color:rgb(54,96,145);}
.fc3{color:rgb(36,63,97);}
.fc8{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(166,28,0);}
.fc0{color:rgb(23,54,93);}
.fs5{font-size:59.999999px;}
.fs7{font-size:66.000002px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:78.000003px;}
.fs4{font-size:90.000000px;}
.fs6{font-size:101.999997px;}
.fs3{font-size:156.000006px;}
.fs1{font-size:167.999994px;}
.fs0{font-size:252.000000px;}
.y0{bottom:0.000000px;}
.y1a8{bottom:0.000006px;}
.y16d{bottom:13.640623px;}
.yc6{bottom:31.639891px;}
.ye7{bottom:31.640613px;}
.yb2{bottom:31.640617px;}
.yd3{bottom:31.640622px;}
.y16a{bottom:31.640623px;}
.y170{bottom:31.640625px;}
.yd9{bottom:31.640626px;}
.ye1{bottom:31.640629px;}
.yc3{bottom:31.640631px;}
.y162{bottom:31.640637px;}
.yb7{bottom:31.641348px;}
.ycc{bottom:31.641357px;}
.yd6{bottom:31.641358px;}
.ydd{bottom:31.641361px;}
.ybd{bottom:31.642078px;}
.y184{bottom:31.642087px;}
.y176{bottom:31.642090px;}
.y166{bottom:31.642102px;}
.yad{bottom:32.217032px;}
.ye3{bottom:32.217033px;}
.yba{bottom:32.217036px;}
.ybf{bottom:32.217040px;}
.yd0{bottom:32.217044px;}
.ya7{bottom:32.217768px;}
.ya9{bottom:32.217773px;}
.ye9{bottom:32.218503px;}
.yca{bottom:32.218506px;}
.ydb{bottom:32.218518px;}
.y15c{bottom:32.793457px;}
.y158{bottom:32.793458px;}
.y15a{bottom:32.794922px;}
.y16c{bottom:33.477539px;}
.y17{bottom:37.116211px;}
.yc2{bottom:51.475341px;}
.y17d{bottom:51.476062px;}
.y16f{bottom:51.476074px;}
.yd2{bottom:51.476075px;}
.y165{bottom:51.476077px;}
.ye6{bottom:51.476793px;}
.yb1{bottom:51.476797px;}
.yd5{bottom:51.476803px;}
.yc5{bottom:51.476807px;}
.yb6{bottom:51.477528px;}
.y183{bottom:51.477532px;}
.y181{bottom:51.477537px;}
.yce{bottom:51.477538px;}
.ybc{bottom:51.477539px;}
.y161{bottom:51.477552px;}
.yac{bottom:54.036617px;}
.yb9{bottom:54.036620px;}
.ya6{bottom:54.037352px;}
.y157{bottom:56.597168px;}
.y168{bottom:56.598632px;}
.y17c{bottom:71.311523px;}
.y160{bottom:71.311527px;}
.yc1{bottom:71.312257px;}
.yb0{bottom:71.312977px;}
.y180{bottom:71.312982px;}
.y175{bottom:71.312988px;}
.yb5{bottom:71.312989px;}
.y164{bottom:71.312992px;}
.y207{bottom:74.764159px;}
.y1aa{bottom:74.765614px;}
.yc8{bottom:74.765620px;}
.y35{bottom:74.765995px;}
.y5b{bottom:74.766355px;}
.yab{bottom:75.856201px;}
.y15{bottom:75.919186px;}
.y17f{bottom:91.148427px;}
.y179{bottom:91.148437px;}
.yaf{bottom:91.148438px;}
.y15f{bottom:91.148442px;}
.y174{bottom:91.149902px;}
.y1a9{bottom:109.601074px;}
.y34{bottom:109.601800px;}
.yc7{bottom:109.602535px;}
.y15e{bottom:110.983888px;}
.y178{bottom:110.985352px;}
.y146{bottom:129.249026px;}
.y1ef{bottom:131.756836px;}
.y1a7{bottom:131.756842px;}
.y14{bottom:132.695071px;}
.y76{bottom:134.837400px;}
.y206{bottom:137.979496px;}
.y1d6{bottom:138.471684px;}
.y33{bottom:139.209781px;}
.y5a{bottom:142.794805px;}
.y8c{bottom:143.948729px;}
.y167{bottom:144.814453px;}
.y123{bottom:144.884763px;}
.y193{bottom:145.913083px;}
.y1fd{bottom:146.456544px;}
.y108{bottom:148.106686px;}
.y169{bottom:152.749512px;}
.y145{bottom:160.297849px;}
.y1a6{bottom:162.804196px;}
.y75{bottom:165.884763px;}
.yef{bottom:168.120112px;}
.y1d5{bottom:169.519048px;}
.y16b{bottom:170.749512px;}
.y13{bottom:171.498046px;}
.y4d{bottom:172.334836px;}
.y59{bottom:173.842169px;}
.y8b{bottom:174.996090px;}
.y1bd{bottom:175.851556px;}
.y122{bottom:175.932126px;}
.y192{bottom:176.960446px;}
.y1fc{bottom:177.503908px;}
.y32{bottom:178.012756px;}
.y1ee{bottom:180.804196px;}
.y134{bottom:186.392575px;}
.y205{bottom:187.028326px;}
.y144{bottom:191.343745px;}
.y1a5{bottom:193.853027px;}
.y74{bottom:196.932126px;}
.y107{bottom:197.154046px;}
.yc0{bottom:197.759764px;}
.yee{bottom:199.167484px;}
.y1d4{bottom:200.566411px;}
.y58{bottom:204.889532px;}
.y8a{bottom:206.043453px;}
.y121{bottom:206.979489px;}
.y1fb{bottom:208.551271px;}
.y12{bottom:210.301021px;}
.y31{bottom:216.815731px;}
.y133{bottom:217.438471px;}
.yc4{bottom:217.595214px;}
.y4c{bottom:221.382196px;}
.y143{bottom:222.392575px;}
.y1bc{bottom:224.898921px;}
.y191{bottom:226.007809px;}
.y73{bottom:227.979489px;}
.y1ed{bottom:229.851570px;}
.yed{bottom:230.215577px;}
.ybe{bottom:235.447998px;}
.y204{bottom:236.074216px;}
.y89{bottom:237.090816px;}
.y120{bottom:238.026853px;}
.y1a4{bottom:244.080318px;}
.y15d{bottom:244.170404px;}
.y106{bottom:246.201414px;}
.y132{bottom:248.487302px;}
.y11{bottom:249.104011px;}
.y1d3{bottom:249.613764px;}
.y142{bottom:253.438471px;}
.y1bb{bottom:255.946284px;}
.y190{bottom:257.055172px;}
.y30{bottom:257.348513px;}
.y1fa{bottom:257.598634px;}
.y72{bottom:259.026853px;}
.y57{bottom:259.838383px;}
.y1ec{bottom:260.898933px;}
.y163{bottom:264.005853px;}
.y88{bottom:268.138179px;}
.y11f{bottom:269.074216px;}
.y4b{bottom:270.429571px;}
.yec{bottom:272.594973px;}
.y105{bottom:277.248778px;}
.y1d2{bottom:280.661128px;}
.y141{bottom:284.487302px;}
.y203{bottom:285.120121px;}
.y1ba{bottom:286.993648px;}
.y2f{bottom:287.102228px;}
.y10{bottom:287.906986px;}
.y18f{bottom:288.102535px;}
.y1f9{bottom:288.645997px;}
.y71{bottom:290.074216px;}
.y1eb{bottom:291.946296px;}
.y1a3{bottom:297.533208px;}
.y131{bottom:298.714593px;}
.y87{bottom:299.185543px;}
.y104{bottom:308.296141px;}
.yb8{bottom:309.016852px;}
.y1d1{bottom:311.708491px;}
.ybb{bottom:312.982917px;}
.y2e{bottom:316.855958px;}
.y1b9{bottom:318.041011px;}
.y11e{bottom:318.121576px;}
.y18e{bottom:319.149899px;}
.y4a{bottom:319.476931px;}
.y15b{bottom:319.546869px;}
.y1f8{bottom:319.693360px;}
.yeb{bottom:321.687751px;}
.y56{bottom:322.560055px;}
.y1ea{bottom:322.993659px;}
.yf{bottom:326.709961px;}
.y1a2{bottom:328.582039px;}
.y86{bottom:330.232906px;}
.y202{bottom:334.168951px;}
.y140{bottom:334.714593px;}
.y9e{bottom:339.121575px;}
.y70{bottom:339.121578px;}
.y1d0{bottom:342.755863px;}
.y2d{bottom:346.609673px;}
.y55{bottom:348.432865px;}
.y11d{bottom:349.168939px;}
.y18d{bottom:350.197262px;}
.y1f7{bottom:350.740724px;}
.y130{bottom:352.168938px;}
.y1e9{bottom:354.041023px;}
.y103{bottom:357.343510px;}
.y1a1{bottom:359.627934px;}
.ye{bottom:365.512936px;}
.y1b8{bottom:367.088375px;}
.y49{bottom:368.524291px;}
.y9d{bottom:370.168938px;}
.y6f{bottom:370.168941px;}
.ye8{bottom:372.606446px;}
.y1cf{bottom:373.803226px;}
.y54{bottom:374.305668px;}
.y2c{bottom:376.363403px;}
.yea{bottom:376.573974px;}
.y85{bottom:379.280278px;}
.y11c{bottom:380.216302px;}
.y1f6{bottom:381.788087px;}
.y12f{bottom:383.216301px;}
.y201{bottom:383.217766px;}
.y1e8{bottom:385.088386px;}
.y13f{bottom:388.168938px;}
.y102{bottom:388.390877px;}
.y1a0{bottom:390.676765px;}
.y156{bottom:395.099123px;}
.y1b7{bottom:398.135740px;}
.y53{bottom:400.178470px;}
.y18c{bottom:400.423098px;}
.y9c{bottom:401.216301px;}
.y6e{bottom:401.216304px;}
.yd{bottom:404.315911px;}
.yb3{bottom:404.405277px;}
.y1ce{bottom:404.850583px;}
.y2b{bottom:406.117133px;}
.y84{bottom:410.327642px;}
.yb4{bottom:410.355473px;}
.y11b{bottom:411.263665px;}
.y12e{bottom:414.263664px;}
.y48{bottom:417.571659px;}
.y159{bottom:418.901368px;}
.y13e{bottom:419.216301px;}
.y101{bottom:419.438231px;}
.y19f{bottom:421.722661px;}
.y1b6{bottom:429.183112px;}
.y9b{bottom:432.263664px;}
.y6d{bottom:432.263668px;}
.y1e7{bottom:434.135735px;}
.y2a{bottom:435.870848px;}
.y1cd{bottom:435.897946px;}
.y1f5{bottom:436.736578px;}
.y83{bottom:441.375014px;}
.y11a{bottom:442.311029px;}
.yc{bottom:443.118901px;}
.y52{bottom:444.051265px;}
.y12d{bottom:445.311028px;}
.y47{bottom:448.619023px;}
.y13d{bottom:450.263664px;}
.y100{bottom:450.485595px;}
.y18b{bottom:453.878911px;}
.y1b5{bottom:460.230466px;}
.y200{bottom:463.309559px;}
.y9a{bottom:463.311028px;}
.y6c{bottom:463.311031px;}
.y1e6{bottom:465.183100px;}
.y29{bottom:465.624578px;}
.ye5{bottom:467.995613px;}
.y19e{bottom:470.771484px;}
.y82{bottom:472.422368px;}
.y119{bottom:473.358392px;}
.y12c{bottom:476.358391px;}
.y46{bottom:479.666386px;}
.y13c{bottom:481.311028px;}
.yff{bottom:481.532967px;}
.yb{bottom:481.921876px;}
.ye2{bottom:483.864266px;}
.y18a{bottom:484.924805px;}
.y1cc{bottom:484.945316px;}
.y51{bottom:487.924064px;}
.y1b4{bottom:491.279297px;}
.y217{bottom:494.106440px;}
.y1ff{bottom:494.358390px;}
.y99{bottom:494.358391px;}
.y28{bottom:495.378293px;}
.y1e5{bottom:496.230472px;}
.y19d{bottom:501.817380px;}
.y81{bottom:503.469002px;}
.ye4{bottom:507.667244px;}
.y155{bottom:507.951408px;}
.y13b{bottom:512.358391px;}
.y6b{bottom:512.358405px;}
.yfe{bottom:512.580321px;}
.y50{bottom:513.796871px;}
.y189{bottom:515.973637px;}
.y1cb{bottom:515.992670px;}
.y216{bottom:517.907221px;}
.ya{bottom:520.724851px;}
.yae{bottom:521.613288px;}
.y118{bottom:523.585695px;}
.y27{bottom:525.132023px;}
.y12b{bottom:525.405765px;}
.y1fe{bottom:525.407221px;}
.y1e4{bottom:527.277826px;}
.y45{bottom:528.713737px;}
.y19c{bottom:532.866211px;}
.yaa{bottom:535.498542px;}
.y1b3{bottom:541.505133px;}
.y4f{bottom:542.030267px;}
.y98{bottom:543.405765px;}
.y6a{bottom:543.405768px;}
.yfd{bottom:543.626955px;}
.y188{bottom:547.019542px;}
.y1ca{bottom:547.040035px;}
.y26{bottom:554.885738px;}
.y12a{bottom:556.453128px;}
.y117{bottom:557.219973px;}
.y1e3{bottom:558.326657px;}
.y80{bottom:558.418213px;}
.y9{bottom:559.527826px;}
.y215{bottom:559.710932px;}
.y44{bottom:559.761104px;}
.y154{bottom:561.405756px;}
.y13a{bottom:561.405764px;}
.y19b{bottom:563.912100px;}
.y97{bottom:574.453128px;}
.y69{bottom:574.453131px;}
.y187{bottom:578.068364px;}
.y1c9{bottom:578.087407px;}
.ye0{bottom:579.253416px;}
.y1f4{bottom:581.912116px;}
.y214{bottom:583.514641px;}
.y25{bottom:584.639468px;}
.y129{bottom:587.500491px;}
.y43{bottom:590.808465px;}
.y4e{bottom:591.077631px;}
.yfc{bottom:591.494384px;}
.y153{bottom:592.453119px;}
.y139{bottom:592.453125px;}
.y19a{bottom:594.960931px;}
.y1b2{bottom:594.960940px;}
.yde{bottom:597.104735px;}
.y8{bottom:598.330816px;}
.ydf{bottom:599.088865px;}
.y96{bottom:605.500491px;}
.y68{bottom:605.500494px;}
.y1e2{bottom:608.553948px;}
.y186{bottom:609.115727px;}
.y1c8{bottom:609.134761px;}
.y116{bottom:610.675784px;}
.y1f3{bottom:612.960931px;}
.y24{bottom:614.393183px;}
.y128{bottom:618.547854px;}
.y42{bottom:621.855828px;}
.y152{bottom:623.500483px;}
.y7f{bottom:623.500488px;}
.y213{bottom:625.318366px;}
.y1b1{bottom:626.006836px;}
.y95{bottom:636.547854px;}
.y67{bottom:636.547858px;}
.y7{bottom:637.133791px;}
.yfb{bottom:639.134760px;}
.y1c7{bottom:640.183592px;}
.y115{bottom:641.721686px;}
.y199{bottom:644.006836px;}
.y23{bottom:644.146913px;}
.y127{bottom:649.595218px;}
.ya5{bottom:652.706545px;}
.y41{bottom:652.903191px;}
.y185{bottom:653.801521px;}
.y151{bottom:654.547846px;}
.y7e{bottom:654.547851px;}
.y1e1{bottom:662.006829px;}
.y212{bottom:667.122065px;}
.y94{bottom:667.595218px;}
.y66{bottom:667.595221px;}
.yfa{bottom:670.182123px;}
.yda{bottom:670.674311px;}
.y114{bottom:672.770508px;}
.y22{bottom:673.900628px;}
.ya8{bottom:674.526125px;}
.ydc{bottom:674.641839px;}
.y1b0{bottom:675.055667px;}
.y6{bottom:675.936766px;}
.y126{bottom:680.642581px;}
.y40{bottom:683.950554px;}
.y7d{bottom:685.595214px;}
.y1c6{bottom:690.409428px;}
.y211{bottom:690.922846px;}
.y1e0{bottom:693.055659px;}
.y198{bottom:693.055672px;}
.y93{bottom:698.642581px;}
.yf9{bottom:701.229486px;}
.y150{bottom:703.595208px;}
.y21{bottom:703.654358px;}
.y113{bottom:703.816404px;}
.y17e{bottom:704.720218px;}
.y1f2{bottom:706.101556px;}
.y1af{bottom:706.101562px;}
.y3f{bottom:714.997918px;}
.y7c{bottom:716.642578px;}
.y65{bottom:716.642580px;}
.y5{bottom:723.965335px;}
.y1df{bottom:724.101555px;}
.y197{bottom:724.101577px;}
.y182{bottom:724.555668px;}
.y125{bottom:729.689938px;}
.yf8{bottom:732.276849px;}
.y210{bottom:732.726557px;}
.y20{bottom:733.408073px;}
.y14f{bottom:734.642571px;}
.y112{bottom:734.865234px;}
.y1ae{bottom:737.150384px;}
.y1c5{bottom:743.865230px;}
.y17b{bottom:744.392583px;}
.y3e{bottom:746.045281px;}
.y7b{bottom:747.689941px;}
.y64{bottom:747.689943px;}
.y1de{bottom:755.150386px;}
.y1f1{bottom:755.150395px;}
.y196{bottom:755.150399px;}
.y20f{bottom:756.530266px;}
.y124{bottom:760.737301px;}
.ya4{bottom:761.591299px;}
.y1f{bottom:763.161803px;}
.yf7{bottom:763.324213px;}
.y14e{bottom:765.689934px;}
.y111{bottom:765.911130px;}
.yd8{bottom:766.063479px;}
.y1ad{bottom:768.196289px;}
.y1c4{bottom:774.911134px;}
.y92{bottom:778.737304px;}
.y63{bottom:778.737306px;}
.y4{bottom:779.505617px;}
.y17a{bottom:780.096684px;}
.yd7{bottom:783.916263px;}
.y1f0{bottom:786.196291px;}
.y195{bottom:786.197762px;}
.ya3{bottom:787.377678px;}
.y1e{bottom:792.915533px;}
.yf6{bottom:794.371576px;}
.y3d{bottom:795.092653px;}
.y14d{bottom:796.737298px;}
.y7a{bottom:796.737304px;}
.y138{bottom:796.737308px;}
.y110{bottom:796.959961px;}
.y20e{bottom:798.331052px;}
.y1ac{bottom:799.243652px;}
.y1dd{bottom:804.196291px;}
.y1c3{bottom:805.959965px;}
.y91{bottom:809.784667px;}
.y62{bottom:809.784669px;}
.y20d{bottom:822.134761px;}
.y1d{bottom:822.669248px;}
.y3c{bottom:826.140016px;}
.y14c{bottom:827.784661px;}
.y137{bottom:827.784669px;}
.y79{bottom:827.784671px;}
.y3{bottom:835.045901px;}
.y1dc{bottom:835.245122px;}
.y194{bottom:836.425053px;}
.y1c2{bottom:837.005860px;}
.y90{bottom:840.832030px;}
.ya2{bottom:840.832032px;}
.y61{bottom:840.832033px;}
.yf5{bottom:843.418945px;}
.y10f{bottom:846.005858px;}
.y1ab{bottom:849.472413px;}
.y1c{bottom:852.422978px;}
.y177{bottom:855.648926px;}
.y3b{bottom:857.187379px;}
.yd4{bottom:857.485107px;}
.y78{bottom:858.832032px;}
.y20c{bottom:863.938472px;}
.y1db{bottom:866.291017px;}
.y1c1{bottom:868.054691px;}
.y8f{bottom:871.879393px;}
.ya1{bottom:871.879395px;}
.y60{bottom:871.879396px;}
.ycf{bottom:873.353760px;}
.yf4{bottom:874.466308px;}
.y173{bottom:875.484375px;}
.y14b{bottom:876.832034px;}
.y10e{bottom:877.054689px;}
.yd1{bottom:877.321289px;}
.y1b{bottom:882.176693px;}
.y20b{bottom:887.742181px;}
.y3a{bottom:888.234742px;}
.y77{bottom:889.879395px;}
.y1da{bottom:897.339839px;}
.y1c0{bottom:899.100587px;}
.y8e{bottom:902.926757px;}
.yf3{bottom:905.513671px;}
.y14a{bottom:907.879395px;}
.y10d{bottom:908.101323px;}
.y1a{bottom:911.930423px;}
.y172{bottom:915.156738px;}
.y39{bottom:919.282106px;}
.y2{bottom:919.441407px;}
.y5f{bottom:920.926758px;}
.y1d9{bottom:928.385744px;}
.y20a{bottom:929.545902px;}
.y171{bottom:931.025389px;}
.y8d{bottom:933.974120px;}
.ya0{bottom:933.974122px;}
.yf2{bottom:936.561035px;}
.y149{bottom:938.926758px;}
.y10c{bottom:939.148677px;}
.y38{bottom:950.329469px;}
.y5e{bottom:951.974121px;}
.y136{bottom:951.974122px;}
.y209{bottom:953.349611px;}
.y1bf{bottom:954.049071px;}
.y1d8{bottom:959.433107px;}
.y9f{bottom:965.021485px;}
.yf1{bottom:967.608398px;}
.ycd{bottom:968.742188px;}
.y148{bottom:969.974121px;}
.y10b{bottom:970.195311px;}
.y19{bottom:972.035155px;}
.y5d{bottom:983.021485px;}
.yc9{bottom:984.610840px;}
.ycb{bottom:988.578369px;}
.y208{bottom:998.032470px;}
.y1be{bottom:998.033935px;}
.y147{bottom:1001.021484px;}
.y37{bottom:1005.278321px;}
.y16e{bottom:1006.579101px;}
.y1d7{bottom:1009.661865px;}
.y5c{bottom:1014.068848px;}
.yf0{bottom:1015.475831px;}
.y10a{bottom:1018.062745px;}
.y1{bottom:1018.845703px;}
.y135{bottom:1032.068848px;}
.y18{bottom:1042.142577px;}
.y36{bottom:1063.116211px;}
.y109{bottom:1064.523194px;}
.y16{bottom:1080.000000px;}
.h13{height:48.049806px;}
.h23{height:52.417969px;}
.hc{height:53.554686px;}
.hf{height:53.789061px;}
.he{height:54.287108px;}
.h11{height:55.833987px;}
.h16{height:59.715822px;}
.h5{height:64.265625px;}
.h4{height:64.546875px;}
.h6{height:65.144531px;}
.h9{height:65.522461px;}
.h10{height:70.573245px;}
.h20{height:71.585449px;}
.h21{height:71.586182px;}
.h29{height:73.420899px;}
.h28{height:73.422363px;}
.h1b{height:73.568847px;}
.h14{height:73.569581px;}
.hd{height:74.258787px;}
.h25{height:75.552246px;}
.h24{height:75.553711px;}
.ha{height:81.430664px;}
.h1f{height:91.420899px;}
.h1d{height:91.421631px;}
.h1a{height:91.422363px;}
.h19{height:95.388428px;}
.h12{height:95.389160px;}
.h22{height:99.355957px;}
.h27{height:99.357422px;}
.h7{height:108.000000px;}
.h2c{height:111.256347px;}
.h1c{height:111.257080px;}
.h18{height:111.257812px;}
.h15{height:117.208008px;}
.h2d{height:123.670899px;}
.hb{height:123.671625px;}
.h1e{height:123.672360px;}
.h8{height:128.654302px;}
.h17{height:131.093262px;}
.h2a{height:131.094726px;}
.h3{height:150.609370px;}
.h26{height:150.928711px;}
.h2b{height:150.930175px;}
.h1{height:167.958984px;}
.h2{height:171.404297px;}
.h0{height:1188.000000px;}
.w4{width:84.375000px;}
.w1{width:121.500000px;}
.w5{width:151.875000px;}
.w2{width:181.125000px;}
.w6{width:191.250000px;}
.w7{width:221.625000px;}
.w3{width:344.250000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:7.875000px;}
.x15{left:12.186035px;}
.xf{left:15.886205px;}
.x1c{left:17.802246px;}
.x18{left:20.416992px;}
.xc{left:23.643316px;}
.x16{left:31.684571px;}
.x19{left:33.424805px;}
.xd{left:37.378184px;}
.x11{left:38.379115px;}
.x1d{left:57.278321px;}
.x6{left:135.000000px;}
.x7{left:162.000000px;}
.x4{left:175.385665px;}
.x3{left:180.071034px;}
.xb{left:189.000000px;}
.x17{left:219.375000px;}
.x2{left:223.503662px;}
.xe{left:256.500000px;}
.x5{left:265.228157px;}
.x1a{left:371.250000px;}
.x10{left:437.625000px;}
.x1{left:459.000000px;}
.x1b{left:562.500000px;}
.x8{left:656.296459px;}
.xa{left:749.812500px;}
.x13{left:766.321931px;}
.x14{left:767.435186px;}
.x9{left:774.660960px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000002pt;}
.ls2{letter-spacing:11.994244pt;}
.ws5{word-spacing:-67.999998pt;}
.ws6{word-spacing:-52.000002pt;}
.ws3{word-spacing:-26.666666pt;}
.ws1{word-spacing:-17.781250pt;}
.ws4{word-spacing:-16.299479pt;}
.ws2{word-spacing:-14.817708pt;}
.ws0{word-spacing:0.000000pt;}
._7{margin-left:-7.093713pt;}
._1{margin-left:-5.937503pt;}
._14{margin-left:-4.750015pt;}
._0{margin-left:-3.531242pt;}
._11{margin-left:-2.207155pt;}
._12{margin-left:-0.908621pt;}
._5{width:4.000001pt;}
._4{width:8.000008pt;}
._3{width:11.999995pt;}
._2{width:16.000003pt;}
._6{width:20.000003pt;}
._c{width:23.999995pt;}
._b{width:28.000003pt;}
._10{width:32.000003pt;}
._13{width:36.000003pt;}
._e{width:40.000007pt;}
._d{width:44.000003pt;}
._f{width:48.000003pt;}
._8{width:48.968751pt;}
._a{width:55.910036pt;}
._9{width:59.950301pt;}
.fs5{font-size:53.333332pt;}
.fs7{font-size:58.666668pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:69.333336pt;}
.fs4{font-size:80.000000pt;}
.fs6{font-size:90.666664pt;}
.fs3{font-size:138.666672pt;}
.fs1{font-size:149.333328pt;}
.fs0{font-size:224.000000pt;}
.y0{bottom:0.000000pt;}
.y1a8{bottom:0.000005pt;}
.y16d{bottom:12.124999pt;}
.yc6{bottom:28.124348pt;}
.ye7{bottom:28.124989pt;}
.yb2{bottom:28.124993pt;}
.yd3{bottom:28.124997pt;}
.y16a{bottom:28.124999pt;}
.y170{bottom:28.125000pt;}
.yd9{bottom:28.125001pt;}
.ye1{bottom:28.125004pt;}
.yc3{bottom:28.125005pt;}
.y162{bottom:28.125011pt;}
.yb7{bottom:28.125643pt;}
.ycc{bottom:28.125651pt;}
.yd6{bottom:28.125652pt;}
.ydd{bottom:28.125655pt;}
.ybd{bottom:28.126292pt;}
.y184{bottom:28.126300pt;}
.y176{bottom:28.126303pt;}
.y166{bottom:28.126313pt;}
.yad{bottom:28.637361pt;}
.ye3{bottom:28.637363pt;}
.yba{bottom:28.637365pt;}
.ybf{bottom:28.637369pt;}
.yd0{bottom:28.637372pt;}
.ya7{bottom:28.638016pt;}
.ya9{bottom:28.638021pt;}
.ye9{bottom:28.638669pt;}
.yca{bottom:28.638672pt;}
.ydb{bottom:28.638683pt;}
.y15c{bottom:29.149740pt;}
.y158{bottom:29.149741pt;}
.y15a{bottom:29.151042pt;}
.y16c{bottom:29.757813pt;}
.y17{bottom:32.992188pt;}
.yc2{bottom:45.755859pt;}
.y17d{bottom:45.756500pt;}
.y16f{bottom:45.756511pt;}
.yd2{bottom:45.756512pt;}
.y165{bottom:45.756513pt;}
.ye6{bottom:45.757149pt;}
.yb1{bottom:45.757153pt;}
.yd5{bottom:45.757159pt;}
.yc5{bottom:45.757162pt;}
.yb6{bottom:45.757803pt;}
.y183{bottom:45.757807pt;}
.y181{bottom:45.757811pt;}
.yce{bottom:45.757812pt;}
.ybc{bottom:45.757813pt;}
.y161{bottom:45.757824pt;}
.yac{bottom:48.032548pt;}
.yb9{bottom:48.032551pt;}
.ya6{bottom:48.033202pt;}
.y157{bottom:50.308594pt;}
.y168{bottom:50.309896pt;}
.y17c{bottom:63.388021pt;}
.y160{bottom:63.388024pt;}
.yc1{bottom:63.388673pt;}
.yb0{bottom:63.389313pt;}
.y180{bottom:63.389317pt;}
.y175{bottom:63.389323pt;}
.yb5{bottom:63.389324pt;}
.y164{bottom:63.389327pt;}
.y207{bottom:66.457031pt;}
.y1aa{bottom:66.458324pt;}
.yc8{bottom:66.458329pt;}
.y35{bottom:66.458663pt;}
.y5b{bottom:66.458983pt;}
.yab{bottom:67.427734pt;}
.y15{bottom:67.483721pt;}
.y17f{bottom:81.020824pt;}
.y179{bottom:81.020833pt;}
.yaf{bottom:81.020834pt;}
.y15f{bottom:81.020837pt;}
.y174{bottom:81.022136pt;}
.y1a9{bottom:97.423177pt;}
.y34{bottom:97.423823pt;}
.yc7{bottom:97.424476pt;}
.y15e{bottom:98.652345pt;}
.y178{bottom:98.653646pt;}
.y146{bottom:114.888023pt;}
.y1ef{bottom:117.117188pt;}
.y1a7{bottom:117.117192pt;}
.y14{bottom:117.951174pt;}
.y76{bottom:119.855467pt;}
.y206{bottom:122.648441pt;}
.y1d6{bottom:123.085941pt;}
.y33{bottom:123.742028pt;}
.y5a{bottom:126.928715pt;}
.y8c{bottom:127.954426pt;}
.y167{bottom:128.723959pt;}
.y123{bottom:128.786456pt;}
.y193{bottom:129.700518pt;}
.y1fd{bottom:130.183595pt;}
.y108{bottom:131.650388pt;}
.y169{bottom:135.777344pt;}
.y145{bottom:142.486976pt;}
.y1a6{bottom:144.714840pt;}
.y75{bottom:147.453123pt;}
.yef{bottom:149.440099pt;}
.y1d5{bottom:150.683598pt;}
.y16b{bottom:151.777344pt;}
.y13{bottom:152.442708pt;}
.y4d{bottom:153.186521pt;}
.y59{bottom:154.526372pt;}
.y8b{bottom:155.552080pt;}
.y1bd{bottom:156.312494pt;}
.y122{bottom:156.384112pt;}
.y192{bottom:157.298174pt;}
.y1fc{bottom:157.781251pt;}
.y32{bottom:158.233561pt;}
.y1ee{bottom:160.714841pt;}
.y134{bottom:165.682288pt;}
.y205{bottom:166.247401pt;}
.y144{bottom:170.083328pt;}
.y1a5{bottom:172.313801pt;}
.y74{bottom:175.050779pt;}
.y107{bottom:175.248041pt;}
.yc0{bottom:175.786457pt;}
.yee{bottom:177.037763pt;}
.y1d4{bottom:178.281254pt;}
.y58{bottom:182.124028pt;}
.y8a{bottom:183.149736pt;}
.y121{bottom:183.981768pt;}
.y1fb{bottom:185.378907pt;}
.y12{bottom:186.934241pt;}
.y31{bottom:192.725094pt;}
.y133{bottom:193.278640pt;}
.yc4{bottom:193.417968pt;}
.y4c{bottom:196.784174pt;}
.y143{bottom:197.682288pt;}
.y1bc{bottom:199.910152pt;}
.y191{bottom:200.895830pt;}
.y73{bottom:202.648435pt;}
.y1ed{bottom:204.312506pt;}
.yed{bottom:204.636068pt;}
.ybe{bottom:209.287109pt;}
.y204{bottom:209.843748pt;}
.y89{bottom:210.747392pt;}
.y120{bottom:211.579425pt;}
.y1a4{bottom:216.960283pt;}
.y15d{bottom:217.040359pt;}
.y106{bottom:218.845701pt;}
.y132{bottom:220.877601pt;}
.y11{bottom:221.425787pt;}
.y1d3{bottom:221.878901pt;}
.y142{bottom:225.278640pt;}
.y1bb{bottom:227.507808pt;}
.y190{bottom:228.493486pt;}
.y30{bottom:228.754234pt;}
.y1fa{bottom:228.976563pt;}
.y72{bottom:230.246092pt;}
.y57{bottom:230.967452pt;}
.y1ec{bottom:231.910162pt;}
.y163{bottom:234.671869pt;}
.y88{bottom:238.345048pt;}
.y11f{bottom:239.177081pt;}
.y4b{bottom:240.381841pt;}
.yec{bottom:242.306643pt;}
.y105{bottom:246.443358pt;}
.y1d2{bottom:249.476558pt;}
.y141{bottom:252.877601pt;}
.y203{bottom:253.440108pt;}
.y1ba{bottom:255.105465pt;}
.y2f{bottom:255.201981pt;}
.y10{bottom:255.917321pt;}
.y18f{bottom:256.091142pt;}
.y1f9{bottom:256.574219pt;}
.y71{bottom:257.843748pt;}
.y1eb{bottom:259.507818pt;}
.y1a3{bottom:264.473962pt;}
.y131{bottom:265.524083pt;}
.y87{bottom:265.942705pt;}
.y104{bottom:274.041014pt;}
.yb8{bottom:274.681647pt;}
.y1d1{bottom:277.074214pt;}
.ybb{bottom:278.207037pt;}
.y2e{bottom:281.649741pt;}
.y1b9{bottom:282.703121pt;}
.y11e{bottom:282.774734pt;}
.y18e{bottom:283.688799pt;}
.y4a{bottom:283.979494pt;}
.y15b{bottom:284.041661pt;}
.y1f8{bottom:284.171875pt;}
.yeb{bottom:285.944667pt;}
.y56{bottom:286.720049pt;}
.y1ea{bottom:287.105475pt;}
.yf{bottom:290.408854pt;}
.y1a2{bottom:292.072923pt;}
.y86{bottom:293.540361pt;}
.y202{bottom:297.039068pt;}
.y140{bottom:297.524083pt;}
.y9e{bottom:301.441400pt;}
.y70{bottom:301.441403pt;}
.y1d0{bottom:304.671878pt;}
.y2d{bottom:308.097487pt;}
.y55{bottom:309.718103pt;}
.y11d{bottom:310.372390pt;}
.y18d{bottom:311.286455pt;}
.y1f7{bottom:311.769532pt;}
.y130{bottom:313.039056pt;}
.y1e9{bottom:314.703131pt;}
.y103{bottom:317.638675pt;}
.y1a1{bottom:319.669275pt;}
.ye{bottom:324.900388pt;}
.y1b8{bottom:326.300778pt;}
.y49{bottom:327.577148pt;}
.y9d{bottom:329.039056pt;}
.y6f{bottom:329.039059pt;}
.ye8{bottom:331.205729pt;}
.y1cf{bottom:332.269534pt;}
.y54{bottom:332.716149pt;}
.y2c{bottom:334.545247pt;}
.yea{bottom:334.732421pt;}
.y85{bottom:337.138025pt;}
.y11c{bottom:337.970046pt;}
.y1f6{bottom:339.367188pt;}
.y12f{bottom:340.636712pt;}
.y201{bottom:340.638014pt;}
.y1e8{bottom:342.300787pt;}
.y13f{bottom:345.039056pt;}
.y102{bottom:345.236335pt;}
.y1a0{bottom:347.268235pt;}
.y156{bottom:351.199220pt;}
.y1b7{bottom:353.898435pt;}
.y53{bottom:355.714196pt;}
.y18c{bottom:355.931643pt;}
.y9c{bottom:356.636712pt;}
.y6e{bottom:356.636715pt;}
.yd{bottom:359.391921pt;}
.yb3{bottom:359.471357pt;}
.y1ce{bottom:359.867185pt;}
.y2b{bottom:360.993007pt;}
.y84{bottom:364.735682pt;}
.yb4{bottom:364.760420pt;}
.y11b{bottom:365.567702pt;}
.y12e{bottom:368.234368pt;}
.y48{bottom:371.174808pt;}
.y159{bottom:372.356772pt;}
.y13e{bottom:372.636712pt;}
.y101{bottom:372.833983pt;}
.y19f{bottom:374.864587pt;}
.y1b6{bottom:381.496099pt;}
.y9b{bottom:384.234368pt;}
.y6d{bottom:384.234372pt;}
.y1e7{bottom:385.898432pt;}
.y2a{bottom:387.440754pt;}
.y1cd{bottom:387.464841pt;}
.y1f5{bottom:388.210292pt;}
.y83{bottom:392.333346pt;}
.y11a{bottom:393.165359pt;}
.yc{bottom:393.883467pt;}
.y52{bottom:394.712236pt;}
.y12d{bottom:395.832025pt;}
.y47{bottom:398.772465pt;}
.y13d{bottom:400.234368pt;}
.y100{bottom:400.431640pt;}
.y18b{bottom:403.447920pt;}
.y1b5{bottom:409.093747pt;}
.y200{bottom:411.830719pt;}
.y9a{bottom:411.832025pt;}
.y6c{bottom:411.832028pt;}
.y1e6{bottom:413.496089pt;}
.y29{bottom:413.888514pt;}
.ye5{bottom:415.996100pt;}
.y19e{bottom:418.463541pt;}
.y82{bottom:419.930994pt;}
.y119{bottom:420.763015pt;}
.y12c{bottom:423.429681pt;}
.y46{bottom:426.370121pt;}
.y13c{bottom:427.832025pt;}
.yff{bottom:428.029304pt;}
.yb{bottom:428.375001pt;}
.ye2{bottom:430.101569pt;}
.y18a{bottom:431.044271pt;}
.y1cc{bottom:431.062503pt;}
.y51{bottom:433.710279pt;}
.y1b4{bottom:436.692708pt;}
.y217{bottom:439.205724pt;}
.y1ff{bottom:439.429680pt;}
.y99{bottom:439.429681pt;}
.y28{bottom:440.336261pt;}
.y1e5{bottom:441.093753pt;}
.y19d{bottom:446.059893pt;}
.y81{bottom:447.528002pt;}
.ye4{bottom:451.259772pt;}
.y155{bottom:451.512363pt;}
.y13b{bottom:455.429681pt;}
.y6b{bottom:455.429693pt;}
.yfe{bottom:455.626952pt;}
.y50{bottom:456.708329pt;}
.y189{bottom:458.643232pt;}
.y1cb{bottom:458.660151pt;}
.y216{bottom:460.361974pt;}
.ya{bottom:462.866534pt;}
.yae{bottom:463.656256pt;}
.y118{bottom:465.409507pt;}
.y27{bottom:466.784021pt;}
.y12b{bottom:467.027347pt;}
.y1fe{bottom:467.028641pt;}
.y1e4{bottom:468.691401pt;}
.y45{bottom:469.967766pt;}
.y19c{bottom:473.658854pt;}
.yaa{bottom:475.998704pt;}
.y1b3{bottom:481.337896pt;}
.y4f{bottom:481.804681pt;}
.y98{bottom:483.027347pt;}
.y6a{bottom:483.027349pt;}
.yfd{bottom:483.223960pt;}
.y188{bottom:486.239592pt;}
.y1ca{bottom:486.257808pt;}
.y26{bottom:493.231767pt;}
.y12a{bottom:494.625002pt;}
.y117{bottom:495.306643pt;}
.y1e3{bottom:496.290362pt;}
.y80{bottom:496.371745pt;}
.y9{bottom:497.358068pt;}
.y215{bottom:497.520829pt;}
.y44{bottom:497.565426pt;}
.y154{bottom:499.027339pt;}
.y13a{bottom:499.027346pt;}
.y19b{bottom:501.255200pt;}
.y97{bottom:510.625002pt;}
.y69{bottom:510.625005pt;}
.y187{bottom:513.838546pt;}
.y1c9{bottom:513.855472pt;}
.ye0{bottom:514.891925pt;}
.y1f4{bottom:517.255214pt;}
.y214{bottom:518.679681pt;}
.y25{bottom:519.679527pt;}
.y129{bottom:522.222659pt;}
.y43{bottom:525.163080pt;}
.y4e{bottom:525.402339pt;}
.yfc{bottom:525.772785pt;}
.y153{bottom:526.624995pt;}
.y139{bottom:526.625000pt;}
.y19a{bottom:528.854161pt;}
.y1b2{bottom:528.854169pt;}
.yde{bottom:530.759764pt;}
.y8{bottom:531.849614pt;}
.ydf{bottom:532.523436pt;}
.y96{bottom:538.222659pt;}
.y68{bottom:538.222661pt;}
.y1e2{bottom:540.936843pt;}
.y186{bottom:541.436201pt;}
.y1c8{bottom:541.453120pt;}
.y116{bottom:542.822919pt;}
.y1f3{bottom:544.854161pt;}
.y24{bottom:546.127274pt;}
.y128{bottom:549.820314pt;}
.y42{bottom:552.760736pt;}
.y152{bottom:554.222651pt;}
.y7f{bottom:554.222656pt;}
.y213{bottom:555.838547pt;}
.y1b1{bottom:556.450521pt;}
.y95{bottom:565.820314pt;}
.y67{bottom:565.820318pt;}
.y7{bottom:566.341148pt;}
.yfb{bottom:568.119786pt;}
.y1c7{bottom:569.052081pt;}
.y115{bottom:570.419276pt;}
.y199{bottom:572.450521pt;}
.y23{bottom:572.575034pt;}
.y127{bottom:577.417972pt;}
.ya5{bottom:580.183596pt;}
.y41{bottom:580.358392pt;}
.y185{bottom:581.156907pt;}
.y151{bottom:581.820308pt;}
.y7e{bottom:581.820312pt;}
.y1e1{bottom:588.450514pt;}
.y212{bottom:592.997391pt;}
.y94{bottom:593.417972pt;}
.y66{bottom:593.417974pt;}
.yfa{bottom:595.717442pt;}
.yda{bottom:596.154943pt;}
.y114{bottom:598.018229pt;}
.y22{bottom:599.022781pt;}
.ya8{bottom:599.578777pt;}
.ydc{bottom:599.681635pt;}
.y1b0{bottom:600.049481pt;}
.y6{bottom:600.832681pt;}
.y126{bottom:605.015628pt;}
.y40{bottom:607.956048pt;}
.y7d{bottom:609.417968pt;}
.y1c6{bottom:613.697269pt;}
.y211{bottom:614.153641pt;}
.y1e0{bottom:616.049474pt;}
.y198{bottom:616.049486pt;}
.y93{bottom:621.015628pt;}
.yf9{bottom:623.315098pt;}
.y150{bottom:625.417962pt;}
.y21{bottom:625.470541pt;}
.y113{bottom:625.614581pt;}
.y17e{bottom:626.417972pt;}
.y1f2{bottom:627.645827pt;}
.y1af{bottom:627.645832pt;}
.y3f{bottom:635.553705pt;}
.y7c{bottom:637.015625pt;}
.y65{bottom:637.015626pt;}
.y5{bottom:643.524742pt;}
.y1df{bottom:643.645826pt;}
.y197{bottom:643.645846pt;}
.y182{bottom:644.049483pt;}
.y125{bottom:648.613278pt;}
.yf8{bottom:650.912755pt;}
.y210{bottom:651.312495pt;}
.y20{bottom:651.918287pt;}
.y14f{bottom:653.015618pt;}
.y112{bottom:653.213541pt;}
.y1ae{bottom:655.244786pt;}
.y1c5{bottom:661.213537pt;}
.y17b{bottom:661.682296pt;}
.y3e{bottom:663.151361pt;}
.y7b{bottom:664.613281pt;}
.y64{bottom:664.613282pt;}
.y1de{bottom:671.244787pt;}
.y1f1{bottom:671.244795pt;}
.y196{bottom:671.244799pt;}
.y20f{bottom:672.471347pt;}
.y124{bottom:676.210934pt;}
.ya4{bottom:676.970043pt;}
.y1f{bottom:678.366047pt;}
.yf7{bottom:678.510411pt;}
.y14e{bottom:680.613274pt;}
.y111{bottom:680.809893pt;}
.yd8{bottom:680.945315pt;}
.y1ad{bottom:682.841145pt;}
.y1c4{bottom:688.809897pt;}
.y92{bottom:692.210937pt;}
.y63{bottom:692.210938pt;}
.y4{bottom:692.893882pt;}
.y17a{bottom:693.419275pt;}
.yd7{bottom:696.814456pt;}
.y1f0{bottom:698.841147pt;}
.y195{bottom:698.842455pt;}
.ya3{bottom:699.891269pt;}
.y1e{bottom:704.813807pt;}
.yf6{bottom:706.108067pt;}
.y3d{bottom:706.749025pt;}
.y14d{bottom:708.210931pt;}
.y7a{bottom:708.210937pt;}
.y138{bottom:708.210940pt;}
.y110{bottom:708.408854pt;}
.y20e{bottom:709.627602pt;}
.y1ac{bottom:710.438801pt;}
.y1dd{bottom:714.841147pt;}
.y1c3{bottom:716.408857pt;}
.y91{bottom:719.808593pt;}
.y62{bottom:719.808595pt;}
.y20d{bottom:730.786454pt;}
.y1d{bottom:731.261554pt;}
.y3c{bottom:734.346680pt;}
.y14c{bottom:735.808587pt;}
.y137{bottom:735.808594pt;}
.y79{bottom:735.808597pt;}
.y3{bottom:742.263023pt;}
.y1dc{bottom:742.440108pt;}
.y194{bottom:743.488936pt;}
.y1c2{bottom:744.005208pt;}
.y90{bottom:747.406249pt;}
.ya2{bottom:747.406250pt;}
.y61{bottom:747.406251pt;}
.yf5{bottom:749.705728pt;}
.y10f{bottom:752.005207pt;}
.y1ab{bottom:755.086589pt;}
.y1c{bottom:757.709314pt;}
.y177{bottom:760.576823pt;}
.y3b{bottom:761.944336pt;}
.yd4{bottom:762.208984pt;}
.y78{bottom:763.406251pt;}
.y20c{bottom:767.945309pt;}
.y1db{bottom:770.036459pt;}
.y1c1{bottom:771.604169pt;}
.y8f{bottom:775.003905pt;}
.ya1{bottom:775.003906pt;}
.y60{bottom:775.003907pt;}
.ycf{bottom:776.314453pt;}
.yf4{bottom:777.303384pt;}
.y173{bottom:778.208333pt;}
.y14b{bottom:779.406252pt;}
.y10e{bottom:779.604168pt;}
.yd1{bottom:779.841145pt;}
.y1b{bottom:784.157061pt;}
.y20b{bottom:789.104161pt;}
.y3a{bottom:789.541992pt;}
.y77{bottom:791.003907pt;}
.y1da{bottom:797.635412pt;}
.y1c0{bottom:799.200521pt;}
.y8e{bottom:802.601562pt;}
.yf3{bottom:804.901040pt;}
.y14a{bottom:807.003906pt;}
.y10d{bottom:807.201176pt;}
.y1a{bottom:810.604821pt;}
.y172{bottom:813.472656pt;}
.y39{bottom:817.139649pt;}
.y2{bottom:817.281250pt;}
.y5f{bottom:818.601562pt;}
.y1d9{bottom:825.231772pt;}
.y20a{bottom:826.263024pt;}
.y171{bottom:827.578124pt;}
.y8d{bottom:830.199218pt;}
.ya0{bottom:830.199219pt;}
.yf2{bottom:832.498697pt;}
.y149{bottom:834.601562pt;}
.y10c{bottom:834.798824pt;}
.y38{bottom:844.737305pt;}
.y5e{bottom:846.199219pt;}
.y136{bottom:846.199219pt;}
.y209{bottom:847.421876pt;}
.y1bf{bottom:848.043619pt;}
.y1d8{bottom:852.829428pt;}
.y9f{bottom:857.796875pt;}
.yf1{bottom:860.096353pt;}
.ycd{bottom:861.104167pt;}
.y148{bottom:862.199218pt;}
.y10b{bottom:862.395832pt;}
.y19{bottom:864.031249pt;}
.y5d{bottom:873.796876pt;}
.yc9{bottom:875.209636pt;}
.ycb{bottom:878.736328pt;}
.y208{bottom:887.139973pt;}
.y1be{bottom:887.141276pt;}
.y147{bottom:889.796874pt;}
.y37{bottom:893.580730pt;}
.y16e{bottom:894.736979pt;}
.y1d7{bottom:897.477213pt;}
.y5c{bottom:901.394532pt;}
.yf0{bottom:902.645183pt;}
.y10a{bottom:904.944662pt;}
.y1{bottom:905.640625pt;}
.y135{bottom:917.394532pt;}
.y18{bottom:926.348957pt;}
.y36{bottom:944.992188pt;}
.y109{bottom:946.242839pt;}
.y16{bottom:960.000000pt;}
.h13{height:42.710938pt;}
.h23{height:46.593750pt;}
.hc{height:47.604165pt;}
.hf{height:47.812499pt;}
.he{height:48.255207pt;}
.h11{height:49.630210pt;}
.h16{height:53.080730pt;}
.h5{height:57.125000pt;}
.h4{height:57.375000pt;}
.h6{height:57.906250pt;}
.h9{height:58.242188pt;}
.h10{height:62.731773pt;}
.h20{height:63.631511pt;}
.h21{height:63.632161pt;}
.h29{height:65.263021pt;}
.h28{height:65.264323pt;}
.h1b{height:65.394531pt;}
.h14{height:65.395183pt;}
.hd{height:66.007811pt;}
.h25{height:67.157552pt;}
.h24{height:67.158855pt;}
.ha{height:72.382813pt;}
.h1f{height:81.263021pt;}
.h1d{height:81.263672pt;}
.h1a{height:81.264323pt;}
.h19{height:84.789713pt;}
.h12{height:84.790364pt;}
.h22{height:88.316407pt;}
.h27{height:88.317708pt;}
.h7{height:96.000000pt;}
.h2c{height:98.894531pt;}
.h1c{height:98.895183pt;}
.h18{height:98.895833pt;}
.h15{height:104.184896pt;}
.h2d{height:109.929688pt;}
.hb{height:109.930333pt;}
.h1e{height:109.930987pt;}
.h8{height:114.359379pt;}
.h17{height:116.527344pt;}
.h2a{height:116.528645pt;}
.h3{height:133.874995pt;}
.h26{height:134.158855pt;}
.h2b{height:134.160156pt;}
.h1{height:149.296875pt;}
.h2{height:152.359375pt;}
.h0{height:1056.000000pt;}
.w4{width:75.000000pt;}
.w1{width:108.000000pt;}
.w5{width:135.000000pt;}
.w2{width:161.000000pt;}
.w6{width:170.000000pt;}
.w7{width:197.000000pt;}
.w3{width:306.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:7.000000pt;}
.x15{left:10.832031pt;}
.xf{left:14.121071pt;}
.x1c{left:15.824219pt;}
.x18{left:18.148438pt;}
.xc{left:21.016281pt;}
.x16{left:28.164063pt;}
.x19{left:29.710938pt;}
.xd{left:33.225052pt;}
.x11{left:34.114769pt;}
.x1d{left:50.914063pt;}
.x6{left:120.000000pt;}
.x7{left:144.000000pt;}
.x4{left:155.898369pt;}
.x3{left:160.063141pt;}
.xb{left:168.000000pt;}
.x17{left:195.000000pt;}
.x2{left:198.669922pt;}
.xe{left:228.000000pt;}
.x5{left:235.758362pt;}
.x1a{left:330.000000pt;}
.x10{left:389.000000pt;}
.x1{left:408.000000pt;}
.x1b{left:500.000000pt;}
.x8{left:583.374630pt;}
.xa{left:666.500000pt;}
.x13{left:681.175050pt;}
.x14{left:682.164610pt;}
.x9{left:688.587520pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  