
    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_4ccfe923d882989c5f6ce089.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.139160;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_0f37dda089ffc180f6e808e6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.145508;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_3716c5a560e844aec1f8f125.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.145508;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_2ee64ee646fde58eca956698.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.168945;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_640a96d849ca3d1a103c7e71.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.753906;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_b8f48f01235638785fba2399.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.145508;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_c373558f67fe9fa3052648c7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_92f44a7a160e2c5fc958f4bb.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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;}
.ls3d{letter-spacing:-1.272000px;}
.ls27{letter-spacing:-0.978000px;}
.ls58{letter-spacing:-0.960000px;}
.ls1c{letter-spacing:-0.936000px;}
.ls43{letter-spacing:-0.906000px;}
.ls42{letter-spacing:-0.894000px;}
.ls3e{letter-spacing:-0.888000px;}
.ls31{letter-spacing:-0.870000px;}
.ls26{letter-spacing:-0.822000px;}
.ls18{letter-spacing:-0.550200px;}
.lsd{letter-spacing:-0.432000px;}
.ls57{letter-spacing:-0.414600px;}
.ls49{letter-spacing:-0.325200px;}
.ls23{letter-spacing:-0.291000px;}
.lsa{letter-spacing:-0.288000px;}
.ls35{letter-spacing:-0.259200px;}
.ls1e{letter-spacing:-0.256200px;}
.ls4d{letter-spacing:-0.230400px;}
.ls47{letter-spacing:-0.224400px;}
.ls24{letter-spacing:-0.219000px;}
.ls22{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.201600px;}
.ls19{letter-spacing:-0.187200px;}
.ls1f{letter-spacing:-0.175800px;}
.ls25{letter-spacing:-0.166800px;}
.ls16{letter-spacing:-0.158400px;}
.ls1a{letter-spacing:-0.150000px;}
.ls48{letter-spacing:-0.132600px;}
.ls14{letter-spacing:-0.106800px;}
.ls17{letter-spacing:-0.100800px;}
.ls38{letter-spacing:-0.092400px;}
.lsb{letter-spacing:-0.090000px;}
.ls28{letter-spacing:-0.057600px;}
.ls40{letter-spacing:-0.028800px;}
.ls53{letter-spacing:-0.011520px;}
.ls52{letter-spacing:-0.002880px;}
.ls7{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.012240px;}
.ls9{letter-spacing:0.018000px;}
.ls56{letter-spacing:0.030720px;}
.ls4{letter-spacing:0.036000px;}
.ls37{letter-spacing:0.058320px;}
.ls51{letter-spacing:0.083400px;}
.ls3f{letter-spacing:0.090000px;}
.ls0{letter-spacing:0.132480px;}
.ls36{letter-spacing:0.152400px;}
.ls2{letter-spacing:0.159120px;}
.ls10{letter-spacing:0.169800px;}
.ls4e{letter-spacing:0.169920px;}
.ls1{letter-spacing:0.216000px;}
.lse{letter-spacing:0.220800px;}
.ls45{letter-spacing:0.221760px;}
.ls8{letter-spacing:0.222000px;}
.ls3{letter-spacing:0.288000px;}
.ls46{letter-spacing:0.305400px;}
.ls15{letter-spacing:0.306000px;}
.ls2f{letter-spacing:0.322800px;}
.ls3a{letter-spacing:0.331200px;}
.lsc{letter-spacing:0.333600px;}
.ls3c{letter-spacing:0.339600px;}
.ls34{letter-spacing:0.339840px;}
.lsf{letter-spacing:0.342000px;}
.ls6{letter-spacing:0.366000px;}
.ls11{letter-spacing:0.388200px;}
.ls55{letter-spacing:0.401760px;}
.ls44{letter-spacing:0.463800px;}
.ls39{letter-spacing:0.504000px;}
.ls50{letter-spacing:0.888000px;}
.ls30{letter-spacing:2.381760px;}
.ls2e{letter-spacing:2.622000px;}
.ls29{letter-spacing:2.730000px;}
.ls2c{letter-spacing:3.048000px;}
.ls2a{letter-spacing:3.049920px;}
.ls2b{letter-spacing:3.101760px;}
.ls2d{letter-spacing:3.768000px;}
.ls41{letter-spacing:3.821760px;}
.ls3b{letter-spacing:5.981760px;}
.ls12{letter-spacing:8.226000px;}
.ls21{letter-spacing:8.861760px;}
.ls4f{letter-spacing:11.021760px;}
.ls59{letter-spacing:11.741760px;}
.ls13{letter-spacing:18.306000px;}
.ls4b{letter-spacing:24.161760px;}
.ls20{letter-spacing:27.665280px;}
.ls4a{letter-spacing:29.201760px;}
.ls1d{letter-spacing:56.465280px;}
.ls32{letter-spacing:68.688000px;}
.ls33{letter-spacing:108.288000px;}
.ls4c{letter-spacing:109.661760px;}
.ls54{letter-spacing:382.661760px;}
.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;}
}
.ws12{word-spacing:-66.240000px;}
.ws1d{word-spacing:-54.000000px;}
.ws8{word-spacing:-43.344000px;}
.ws1a{word-spacing:-22.668240px;}
.ws6{word-spacing:-21.960000px;}
.ws2{word-spacing:-21.672000px;}
.ws4{word-spacing:-21.240000px;}
.ws1f{word-spacing:-20.269440px;}
.ws1b{word-spacing:-20.261040px;}
.ws28{word-spacing:-20.243640px;}
.ws26{word-spacing:-20.154240px;}
.ws17{word-spacing:-20.108040px;}
.ws2c{word-spacing:-20.021640px;}
.ws9{word-spacing:-19.938240px;}
.ws2d{word-spacing:-19.935360px;}
.ws2e{word-spacing:-19.926720px;}
.ws23{word-spacing:-19.909440px;}
.ws19{word-spacing:-19.880640px;}
.ws10{word-spacing:-19.837440px;}
.ws2a{word-spacing:-19.805640px;}
.wse{word-spacing:-19.788240px;}
.ws16{word-spacing:-19.779840px;}
.ws15{word-spacing:-19.771440px;}
.ws11{word-spacing:-19.762440px;}
.ws27{word-spacing:-19.751040px;}
.wsf{word-spacing:-19.736640px;}
.ws18{word-spacing:-19.722240px;}
.ws14{word-spacing:-19.719240px;}
.ws29{word-spacing:-19.713840px;}
.ws20{word-spacing:-19.682040px;}
.ws1e{word-spacing:-19.679040px;}
.ws13{word-spacing:-19.647240px;}
.ws2b{word-spacing:-19.613040px;}
.ws2f{word-spacing:-19.523640px;}
.ws31{word-spacing:-19.388040px;}
.ws22{word-spacing:-19.116240px;}
.ws24{word-spacing:-19.044240px;}
.ws25{word-spacing:-19.032240px;}
.ws30{word-spacing:-18.978240px;}
.wsb{word-spacing:-18.353760px;}
.wsa{word-spacing:-17.987760px;}
.ws3{word-spacing:-17.454480px;}
.ws5{word-spacing:-17.341680px;}
.wsd{word-spacing:-16.506480px;}
.ws7{word-spacing:-16.290000px;}
.ws1c{word-spacing:-16.254000px;}
.ws1{word-spacing:-16.164000px;}
.ws21{word-spacing:-16.038000px;}
.ws0{word-spacing:-15.966000px;}
.wsc{word-spacing:0.000000px;}
._27{margin-left:-2.038560px;}
._0{margin-left:-1.017600px;}
._1{width:1.080000px;}
._b{width:2.191200px;}
._d{width:3.334800px;}
._12{width:5.130000px;}
._17{width:6.132000px;}
._18{width:7.154400px;}
._7{width:8.328000px;}
._4{width:9.342000px;}
._5{width:10.530000px;}
._6{width:11.751600px;}
._11{width:12.805200px;}
._a{width:14.052000px;}
._c{width:15.162000px;}
._1b{width:16.223760px;}
._2{width:17.334000px;}
._3{width:18.381600px;}
._e{width:19.800000px;}
._20{width:21.064320px;}
._13{width:22.194000px;}
._14{width:23.430000px;}
._8{width:25.380000px;}
._9{width:26.568000px;}
._1c{width:28.323840px;}
._1d{width:29.476800px;}
._1f{width:31.020720px;}
._1e{width:32.207280px;}
._19{width:33.914880px;}
._1a{width:35.131200px;}
._15{width:36.504000px;}
._16{width:37.627200px;}
._24{width:38.682240px;}
._25{width:40.035600px;}
._21{width:41.651760px;}
._22{width:42.666240px;}
._47{width:43.850880px;}
._46{width:45.175680px;}
._26{width:46.182720px;}
._2c{width:47.520000px;}
._2b{width:48.737760px;}
._52{width:49.777440px;}
._51{width:50.855760px;}
._29{width:55.776480px;}
._28{width:56.962080px;}
._53{width:62.508960px;}
._54{width:63.704160px;}
._43{width:64.967040px;}
._44{width:65.975040px;}
._45{width:67.137120px;}
._4e{width:70.007040px;}
._4c{width:71.636640px;}
._4d{width:72.638400px;}
._2e{width:79.554240px;}
._2f{width:80.797920px;}
._10{width:82.027440px;}
._39{width:86.509440px;}
._3a{width:88.747200px;}
._49{width:93.795840px;}
._4a{width:95.130240px;}
._4f{width:101.711520px;}
._50{width:104.854560px;}
._30{width:106.646400px;}
._31{width:107.931840px;}
._32{width:109.236480px;}
._2a{width:111.077760px;}
._23{width:113.028240px;}
._38{width:146.160720px;}
._37{width:147.466320px;}
._2d{width:152.602080px;}
._34{width:267.622560px;}
._33{width:268.985760px;}
._3d{width:269.994240px;}
._3c{width:271.105440px;}
._3b{width:276.777600px;}
._35{width:317.289600px;}
._36{width:318.902880px;}
._40{width:383.183520px;}
._3f{width:385.759200px;}
._3e{width:386.959200px;}
._42{width:417.321600px;}
._41{width:418.621920px;}
._4b{width:445.449120px;}
._48{width:721.206240px;}
._f{width:2178.564000px;}
.fc5{color:transparent;}
.fc6{color:rgb(132,130,130);}
.fc4{color:rgb(179,44,22);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(65,71,81);}
.fs7{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:113.760000px;}
.fs5{font-size:144.000000px;}
.y38{bottom:-1.440000px;}
.y0{bottom:0.000000px;}
.y27{bottom:1.980000px;}
.y19a{bottom:7.554000px;}
.y118{bottom:7.560000px;}
.y179{bottom:7.740000px;}
.y198{bottom:8.454000px;}
.y11a{bottom:8.460000px;}
.y19e{bottom:14.760000px;}
.y37{bottom:16.020000px;}
.y26{bottom:19.980000px;}
.y199{bottom:23.214000px;}
.y18c{bottom:23.220000px;}
.y197{bottom:24.114000px;}
.y128{bottom:27.720000px;}
.y11f{bottom:27.900000px;}
.y12d{bottom:28.620000px;}
.y1a5{bottom:28.800000px;}
.y183{bottom:30.420000px;}
.y17e{bottom:31.860000px;}
.y36{bottom:33.480000px;}
.y130{bottom:34.920000px;}
.y25{bottom:37.980000px;}
.y18b{bottom:38.880000px;}
.y178{bottom:43.560000px;}
.y186{bottom:44.280000px;}
.y1a4{bottom:44.460000px;}
.y19c{bottom:45.180000px;}
.y194{bottom:46.080000px;}
.y127{bottom:48.780000px;}
.y11e{bottom:48.960000px;}
.y12c{bottom:49.680000px;}
.y131{bottom:49.860000px;}
.y182{bottom:50.580000px;}
.y12f{bottom:50.760000px;}
.y35{bottom:50.940000px;}
.y17d{bottom:52.920000px;}
.y24{bottom:55.980000px;}
.y2{bottom:56.016000px;}
.y3c{bottom:56.196000px;}
.y177{bottom:59.220000px;}
.y185{bottom:59.940000px;}
.y192{bottom:64.620000px;}
.y195{bottom:65.340000px;}
.y1a3{bottom:65.520000px;}
.y189{bottom:66.240000px;}
.y181{bottom:66.270000px;}
.y1a1{bottom:66.420000px;}
.y17c{bottom:68.580000px;}
.y34{bottom:68.610000px;}
.y1{bottom:68.616000px;}
.y126{bottom:69.840000px;}
.y11d{bottom:70.020000px;}
.y12b{bottom:70.740000px;}
.y11c{bottom:70.920000px;}
.y12a{bottom:71.640000px;}
.y3b{bottom:74.376000px;}
.y176{bottom:74.880000px;}
.y23{bottom:75.600000px;}
.y2d{bottom:75.960000px;}
.y191{bottom:80.280000px;}
.y18a{bottom:81.000000px;}
.y184{bottom:81.030000px;}
.y1a2{bottom:81.180000px;}
.y188{bottom:81.900000px;}
.y180{bottom:81.930000px;}
.y1a0{bottom:82.080000px;}
.y18f{bottom:86.580000px;}
.y33{bottom:87.510000px;}
.y17b{bottom:89.640000px;}
.y175{bottom:90.540000px;}
.y125{bottom:90.900000px;}
.y190{bottom:101.340000px;}
.y18e{bottom:102.240000px;}
.y32{bottom:105.150000px;}
.y17a{bottom:105.300000px;}
.y174{bottom:106.200000px;}
.y124{bottom:111.960000px;}
.y31{bottom:124.410000px;}
.y262{bottom:131.076000px;}
.y92{bottom:132.156000px;}
.y123{bottom:133.020000px;}
.y1ec{bottom:135.216000px;}
.y6a{bottom:137.376000px;}
.y210{bottom:139.356000px;}
.y22f{bottom:139.536000px;}
.y21{bottom:140.796000px;}
.y165{bottom:141.156000px;}
.yd7{bottom:141.336000px;}
.y1d6{bottom:142.416000px;}
.y30{bottom:143.490000px;}
.y196{bottom:143.676000px;}
.y1cc{bottom:148.356000px;}
.y261{bottom:150.150000px;}
.y122{bottom:154.080000px;}
.y91{bottom:154.290000px;}
.y151{bottom:156.270000px;}
.y1eb{bottom:157.350000px;}
.y20{bottom:158.970000px;}
.y69{bottom:159.330000px;}
.yb4{bottom:161.310000px;}
.y20f{bottom:161.490000px;}
.yec{bottom:162.210000px;}
.y2f{bottom:162.570000px;}
.yd6{bottom:163.470000px;}
.y1d5{bottom:164.370000px;}
.y1c3{bottom:168.510000px;}
.y246{bottom:169.230000px;}
.y260{bottom:169.410000px;}
.y1cb{bottom:170.490000px;}
.y13a{bottom:173.910000px;}
.y121{bottom:175.140000px;}
.y120{bottom:176.040000px;}
.y10f{bottom:176.250000px;}
.y90{bottom:176.430000px;}
.y1f{bottom:176.970000px;}
.y150{bottom:178.410000px;}
.y1ea{bottom:179.310000px;}
.y68{bottom:181.470000px;}
.yb3{bottom:183.270000px;}
.y21b{bottom:183.450000px;}
.y20e{bottom:183.630000px;}
.yeb{bottom:184.530000px;}
.y193{bottom:184.890000px;}
.yd5{bottom:185.430000px;}
.y1d4{bottom:186.510000px;}
.y25f{bottom:188.490000px;}
.y245{bottom:191.550000px;}
.y1ca{bottom:192.450000px;}
.y1e{bottom:194.970000px;}
.y139{bottom:196.050000px;}
.y22e{bottom:198.390000px;}
.y10e{bottom:198.570000px;}
.y14f{bottom:200.370000px;}
.y1e9{bottom:201.270000px;}
.y67{bottom:203.430000px;}
.yb2{bottom:205.410000px;}
.y1c2{bottom:205.590000px;}
.y1f7{bottom:206.490000px;}
.y164{bottom:207.390000px;}
.y1d{bottom:212.970000px;}
.y244{bottom:213.510000px;}
.y8f{bottom:214.230000px;}
.y1c9{bottom:214.410000px;}
.y25e{bottom:216.750000px;}
.y20d{bottom:220.350000px;}
.y10d{bottom:220.530000px;}
.yea{bottom:221.250000px;}
.yd4{bottom:222.330000px;}
.y14e{bottom:222.510000px;}
.y1d3{bottom:223.410000px;}
.y66{bottom:225.390000px;}
.yb1{bottom:227.370000px;}
.y1c1{bottom:227.730000px;}
.y163{bottom:229.530000px;}
.y1c{bottom:230.970000px;}
.y138{bottom:232.950000px;}
.y243{bottom:235.650000px;}
.y8e{bottom:236.550000px;}
.y21a{bottom:242.490000px;}
.y10c{bottom:242.670000px;}
.y1f6{bottom:243.390000px;}
.yd3{bottom:244.470000px;}
.y1e8{bottom:245.370000px;}
.y65{bottom:247.530000px;}
.y1b{bottom:248.970000px;}
.yb0{bottom:249.330000px;}
.y1c0{bottom:249.870000px;}
.y162{bottom:251.490000px;}
.y25d{bottom:253.470000px;}
.ye9{bottom:258.330000px;}
.y8d{bottom:258.510000px;}
.y1d2{bottom:259.950000px;}
.y10b{bottom:264.630000px;}
.y1f5{bottom:265.530000px;}
.yd2{bottom:266.430000px;}
.y14d{bottom:266.610000px;}
.y1a{bottom:266.970000px;}
.y1e7{bottom:267.510000px;}
.y64{bottom:269.490000px;}
.y137{bottom:269.850000px;}
.yaf{bottom:271.470000px;}
.y1bf{bottom:271.830000px;}
.y242{bottom:272.370000px;}
.y1c8{bottom:273.450000px;}
.y161{bottom:273.630000px;}
.y2c{bottom:275.970000px;}
.y22d{bottom:279.390000px;}
.y8c{bottom:280.650000px;}
.y18d{bottom:283.935000px;}
.y19{bottom:285.195000px;}
.y20c{bottom:286.635000px;}
.y1f4{bottom:287.715000px;}
.yd1{bottom:288.615000px;}
.y1e6{bottom:289.515000px;}
.y25c{bottom:290.235000px;}
.y63{bottom:291.675000px;}
.yae{bottom:293.475000px;}
.y1be{bottom:293.835000px;}
.y241{bottom:294.735000px;}
.ye8{bottom:295.455000px;}
.y160{bottom:295.635000px;}
.y136{bottom:301.215000px;}
.y10a{bottom:301.575000px;}
.y22c{bottom:301.755000px;}
.y8b{bottom:302.655000px;}
.y2b{bottom:302.970000px;}
.y18{bottom:303.195000px;}
.y14c{bottom:303.375000px;}
.y1f3{bottom:309.675000px;}
.y1c7{bottom:310.395000px;}
.yd0{bottom:310.575000px;}
.y1e5{bottom:311.475000px;}
.y62{bottom:313.635000px;}
.yad{bottom:315.615000px;}
.y1bd{bottom:315.975000px;}
.y240{bottom:316.695000px;}
.y15f{bottom:317.595000px;}
.y17{bottom:321.195000px;}
.y135{bottom:323.175000px;}
.y20b{bottom:323.535000px;}
.y109{bottom:323.715000px;}
.y8a{bottom:324.615000px;}
.y25b{bottom:325.335000px;}
.y14b{bottom:325.695000px;}
.ye7{bottom:332.535000px;}
.ycf{bottom:332.715000px;}
.y1e4{bottom:333.615000px;}
.y61{bottom:335.595000px;}
.yac{bottom:337.575000px;}
.y1bc{bottom:337.935000px;}
.y23f{bottom:338.835000px;}
.y16{bottom:339.195000px;}
.y15e{bottom:339.735000px;}
.y134{bottom:345.315000px;}
.y108{bottom:345.855000px;}
.y1f2{bottom:346.575000px;}
.y89{bottom:346.755000px;}
.y14a{bottom:347.655000px;}
.y2a{bottom:349.050000px;}
.ye6{bottom:354.675000px;}
.y1e3{bottom:355.575000px;}
.y15{bottom:357.195000px;}
.y60{bottom:357.735000px;}
.yab{bottom:359.535000px;}
.y1bb{bottom:360.075000px;}
.y25a{bottom:360.255000px;}
.y1d1{bottom:361.695000px;}
.y133{bottom:367.275000px;}
.y107{bottom:367.815000px;}
.y88{bottom:368.715000px;}
.yce{bottom:369.435000px;}
.y149{bottom:369.795000px;}
.y14{bottom:375.195000px;}
.y23e{bottom:375.555000px;}
.y15d{bottom:376.455000px;}
.ye5{bottom:376.635000px;}
.y1e2{bottom:377.715000px;}
.y5f{bottom:379.695000px;}
.y1ba{bottom:382.035000px;}
.y20a{bottom:382.575000px;}
.y1d0{bottom:383.835000px;}
.y132{bottom:388.155000px;}
.y106{bottom:389.775000px;}
.y1f1{bottom:390.855000px;}
.ycd{bottom:391.755000px;}
.y259{bottom:395.355000px;}
.yaa{bottom:396.435000px;}
.y29{bottom:396.930000px;}
.y23d{bottom:397.875000px;}
.y15c{bottom:398.775000px;}
.y1e1{bottom:399.675000px;}
.y5e{bottom:401.835000px;}
.y187{bottom:403.275000px;}
.y1b9{bottom:404.175000px;}
.y219{bottom:404.715000px;}
.y209{bottom:404.895000px;}
.y87{bottom:405.615000px;}
.y13{bottom:409.215000px;}
.y12e{bottom:410.475000px;}
.ye4{bottom:413.535000px;}
.ycc{bottom:413.715000px;}
.ya9{bottom:418.575000px;}
.y23c{bottom:419.835000px;}
.y1cf{bottom:420.555000px;}
.y15b{bottom:420.735000px;}
.y1e0{bottom:421.635000px;}
.y5d{bottom:423.795000px;}
.y1b8{bottom:426.135000px;}
.y105{bottom:426.675000px;}
.y208{bottom:426.855000px;}
.y1f0{bottom:427.575000px;}
.y86{bottom:427.755000px;}
.y148{bottom:428.655000px;}
.y258{bottom:430.275000px;}
.y28{bottom:435.855000px;}
.ya8{bottom:440.715000px;}
.y15a{bottom:442.875000px;}
.y1df{bottom:443.775000px;}
.y5c{bottom:445.755000px;}
.y12{bottom:446.295000px;}
.y1b7{bottom:448.095000px;}
.y104{bottom:448.995000px;}
.y85{bottom:449.895000px;}
.y23b{bottom:456.735000px;}
.ycb{bottom:457.815000px;}
.ya7{bottom:462.675000px;}
.y218{bottom:463.755000px;}
.y1ef{bottom:464.655000px;}
.y159{bottom:464.835000px;}
.y257{bottom:465.375000px;}
.y147{bottom:465.735000px;}
.y5b{bottom:467.895000px;}
.y1b6{bottom:470.235000px;}
.y103{bottom:470.955000px;}
.y84{bottom:471.855000px;}
.y129{bottom:478.335000px;}
.y23a{bottom:478.875000px;}
.y1c6{bottom:479.595000px;}
.yca{bottom:479.775000px;}
.y11{bottom:483.375000px;}
.y207{bottom:485.715000px;}
.y217{bottom:485.895000px;}
.y158{bottom:486.795000px;}
.y146{bottom:487.875000px;}
.y5a{bottom:489.855000px;}
.y83{bottom:493.995000px;}
.ya6{bottom:499.575000px;}
.y256{bottom:500.475000px;}
.y239{bottom:501.015000px;}
.yc9{bottom:501.915000px;}
.y17f{bottom:502.275000px;}
.y2e{bottom:505.515000px;}
.y1b5{bottom:506.955000px;}
.y102{bottom:507.855000px;}
.y206{bottom:508.035000px;}
.y157{bottom:508.935000px;}
.y145{bottom:509.835000px;}
.y59{bottom:511.995000px;}
.y10{bottom:520.275000px;}
.y255{bottom:520.455000px;}
.y22b{bottom:522.795000px;}
.y238{bottom:522.975000px;}
.y1ce{bottom:523.695000px;}
.yc8{bottom:523.875000px;}
.y1b4{bottom:529.275000px;}
.y205{bottom:529.995000px;}
.y82{bottom:530.715000px;}
.y156{bottom:530.895000px;}
.y1de{bottom:531.795000px;}
.y144{bottom:531.975000px;}
.y58{bottom:533.955000px;}
.ya5{bottom:536.655000px;}
.y254{bottom:540.435000px;}
.y101{bottom:544.755000px;}
.y22a{bottom:544.935000px;}
.yc7{bottom:546.015000px;}
.y1b3{bottom:551.235000px;}
.y216{bottom:551.955000px;}
.y81{bottom:553.035000px;}
.y143{bottom:553.935000px;}
.yf{bottom:557.355000px;}
.ya4{bottom:558.795000px;}
.y237{bottom:559.875000px;}
.y204{bottom:566.925000px;}
.y100{bottom:567.105000px;}
.yc6{bottom:568.005000px;}
.y57{bottom:570.885000px;}
.y1b2{bottom:573.405000px;}
.y80{bottom:575.025000px;}
.y253{bottom:575.565000px;}
.y1dd{bottom:575.925000px;}
.y142{bottom:576.105000px;}
.ya3{bottom:580.965000px;}
.y229{bottom:581.865000px;}
.y236{bottom:582.045000px;}
.y215{bottom:588.885000px;}
.yff{bottom:589.065000px;}
.y155{bottom:589.785000px;}
.yc5{bottom:589.965000px;}
.ye{bottom:594.465000px;}
.y1b1{bottom:595.365000px;}
.y7f{bottom:596.985000px;}
.y1dc{bottom:598.065000px;}
.y173{bottom:601.305000px;}
.ya2{bottom:602.925000px;}
.y228{bottom:604.185000px;}
.ye3{bottom:604.905000px;}
.y56{bottom:607.425000px;}
.y252{bottom:610.485000px;}
.yfe{bottom:611.205000px;}
.yc4{bottom:612.105000px;}
.y141{bottom:612.465000px;}
.y1db{bottom:620.025000px;}
.y227{bottom:626.145000px;}
.y1c5{bottom:626.865000px;}
.ye2{bottom:627.045000px;}
.y251{bottom:630.645000px;}
.yd{bottom:631.545000px;}
.y1b0{bottom:632.265000px;}
.y140{bottom:632.445000px;}
.yfd{bottom:633.165000px;}
.y7e{bottom:633.885000px;}
.yc3{bottom:634.065000px;}
.ya1{bottom:639.825000px;}
.y1da{bottom:641.985000px;}
.y55{bottom:642.525000px;}
.y203{bottom:647.925000px;}
.y226{bottom:648.105000px;}
.ye1{bottom:649.185000px;}
.y250{bottom:650.625000px;}
.y13f{bottom:652.605000px;}
.y1af{bottom:654.405000px;}
.yfc{bottom:655.125000px;}
.yc2{bottom:656.205000px;}
.y54{bottom:662.505000px;}
.y235{bottom:663.045000px;}
.y1d9{bottom:664.125000px;}
.yc{bottom:668.445000px;}
.y214{bottom:670.065000px;}
.y202{bottom:670.245000px;}
.y24f{bottom:670.605000px;}
.y7d{bottom:670.965000px;}
.ye0{bottom:671.145000px;}
.y13e{bottom:672.585000px;}
.y1ae{bottom:676.545000px;}
.ya0{bottom:676.725000px;}
.yfb{bottom:677.265000px;}
.yc1{bottom:678.165000px;}
.y53{bottom:681.945000px;}
.y225{bottom:685.005000px;}
.y234{bottom:685.185000px;}
.y1d8{bottom:686.085000px;}
.y24e{bottom:690.765000px;}
.y201{bottom:692.205000px;}
.y7c{bottom:693.105000px;}
.y1ad{bottom:698.505000px;}
.y52{bottom:700.125000px;}
.yb{bottom:705.525000px;}
.y224{bottom:707.145000px;}
.y13d{bottom:708.045000px;}
.y1d7{bottom:708.225000px;}
.y24d{bottom:710.745000px;}
.y9f{bottom:713.805000px;}
.yfa{bottom:714.165000px;}
.y213{bottom:714.345000px;}
.y1ee{bottom:715.065000px;}
.ydf{bottom:715.245000px;}
.y51{bottom:718.125000px;}
.y1ac{bottom:720.465000px;}
.y154{bottom:722.265000px;}
.y172{bottom:725.325000px;}
.y200{bottom:729.105000px;}
.y233{bottom:729.285000px;}
.y7b{bottom:730.005000px;}
.y13c{bottom:730.185000px;}
.y24c{bottom:730.725000px;}
.y50{bottom:736.125000px;}
.y212{bottom:736.305000px;}
.yc0{bottom:737.025000px;}
.yde{bottom:737.205000px;}
.ya{bottom:742.605000px;}
.y223{bottom:744.045000px;}
.y24b{bottom:750.705000px;}
.yf9{bottom:751.065000px;}
.y1ff{bottom:751.245000px;}
.y7a{bottom:752.145000px;}
.y4f{bottom:754.125000px;}
.y1ab{bottom:757.365000px;}
.y153{bottom:759.165000px;}
.ybf{bottom:759.345000px;}
.y11b{bottom:760.245000px;}
.y171{bottom:765.285000px;}
.y232{bottom:766.185000px;}
.y222{bottom:766.365000px;}
.y4e{bottom:772.125000px;}
.y9e{bottom:772.845000px;}
.y211{bottom:773.205000px;}
.yf8{bottom:773.385000px;}
.ydd{bottom:774.105000px;}
.y79{bottom:774.285000px;}
.y9{bottom:779.145000px;}
.y1aa{bottom:779.685000px;}
.ybe{bottom:781.305000px;}
.y170{bottom:783.285000px;}
.y24a{bottom:785.805000px;}
.y221{bottom:788.325000px;}
.y4d{bottom:790.125000px;}
.yf7{bottom:795.345000px;}
.y152{bottom:796.065000px;}
.y78{bottom:796.245000px;}
.y1a9{bottom:801.645000px;}
.ybd{bottom:803.265000px;}
.y4c{bottom:808.125000px;}
.y9d{bottom:809.925000px;}
.y220{bottom:810.285000px;}
.y8{bottom:814.245000px;}
.y16f{bottom:817.125000px;}
.yf6{bottom:817.305000px;}
.y77{bottom:818.385000px;}
.y249{bottom:820.905000px;}
.y1a8{bottom:823.605000px;}
.ybc{bottom:825.405000px;}
.y4b{bottom:826.305000px;}
.y1fe{bottom:832.245000px;}
.y231{bottom:832.425000px;}
.yf5{bottom:839.445000px;}
.y76{bottom:840.345000px;}
.y4a{bottom:844.305000px;}
.y1a7{bottom:845.745000px;}
.y9c{bottom:847.005000px;}
.y21f{bottom:847.185000px;}
.ybb{bottom:847.410000px;}
.y119{bottom:848.310000px;}
.y7{bottom:849.390000px;}
.y1fd{bottom:854.430000px;}
.y248{bottom:855.870000px;}
.y16e{bottom:861.450000px;}
.y1cd{bottom:862.170000px;}
.y49{bottom:862.350000px;}
.y230{bottom:869.370000px;}
.yba{bottom:869.550000px;}
.y117{bottom:874.590000px;}
.yf4{bottom:876.390000px;}
.y1fc{bottom:876.570000px;}
.y48{bottom:880.350000px;}
.y1a6{bottom:881.610000px;}
.y16d{bottom:883.590000px;}
.y9b{bottom:883.950000px;}
.y6{bottom:884.310000px;}
.y75{bottom:884.490000px;}
.y247{bottom:891.330000px;}
.y21e{bottom:891.510000px;}
.y19f{bottom:894.930000px;}
.y22{bottom:896.370000px;}
.y47{bottom:898.350000px;}
.yf3{bottom:898.530000px;}
.y116{bottom:905.370000px;}
.y16c{bottom:905.550000px;}
.yb9{bottom:906.270000px;}
.y74{bottom:906.450000px;}
.y1fb{bottom:913.290000px;}
.y21d{bottom:913.470000px;}
.y46{bottom:916.350000px;}
.y5{bottom:919.410000px;}
.yf2{bottom:920.490000px;}
.y9a{bottom:921.030000px;}
.y115{bottom:923.370000px;}
.y16b{bottom:927.690000px;}
.y73{bottom:928.590000px;}
.y45{bottom:934.530000px;}
.y1fa{bottom:935.610000px;}
.yf1{bottom:942.630000px;}
.ydc{bottom:943.350000px;}
.y16a{bottom:949.650000px;}
.y21c{bottom:950.370000px;}
.y72{bottom:950.550000px;}
.y44{bottom:952.530000px;}
.y4{bottom:954.690000px;}
.y114{bottom:957.390000px;}
.y1f9{bottom:957.570000px;}
.y99{bottom:958.110000px;}
.y13b{bottom:965.310000px;}
.ydb{bottom:965.490000px;}
.y169{bottom:971.610000px;}
.y71{bottom:972.690000px;}
.yf0{bottom:979.530000px;}
.y113{bottom:979.710000px;}
.y98{bottom:980.250000px;}
.y43{bottom:986.370000px;}
.yda{bottom:987.630000px;}
.y3{bottom:988.170000px;}
.y19d{bottom:994.110000px;}
.y1f8{bottom:994.470000px;}
.y70{bottom:994.650000px;}
.y97{bottom:999.510000px;}
.y112{bottom:1001.670000px;}
.y168{bottom:1008.510000px;}
.y1c4{bottom:1009.410000px;}
.yd9{bottom:1009.590000px;}
.yef{bottom:1016.430000px;}
.yb8{bottom:1016.610000px;}
.y42{bottom:1023.450000px;}
.y6f{bottom:1031.550000px;}
.yd8{bottom:1031.730000px;}
.y96{bottom:1036.410000px;}
.y111{bottom:1038.570000px;}
.yb7{bottom:1038.750000px;}
.y41{bottom:1045.050000px;}
.y167{bottom:1045.590000px;}
.y1ed{bottom:1053.510000px;}
.y6e{bottom:1053.690000px;}
.y95{bottom:1058.550000px;}
.yb6{bottom:1060.710000px;}
.y40{bottom:1065.210000px;}
.y110{bottom:1075.470000px;}
.y6d{bottom:1075.650000px;}
.y19b{bottom:1077.450000px;}
.y166{bottom:1082.670000px;}
.yee{bottom:1082.850000px;}
.y3f{bottom:1085.190000px;}
.y94{bottom:1096.530000px;}
.yb5{bottom:1097.610000px;}
.y6c{bottom:1097.790000px;}
.y3e{bottom:1104.630000px;}
.y93{bottom:1118.670000px;}
.yed{bottom:1119.570000px;}
.y6b{bottom:1119.750000px;}
.y3d{bottom:1122.630000px;}
.y3a{bottom:1181.340000px;}
.y39{bottom:1197.180000px;}
.h12{height:24.660000px;}
.h13{height:25.560000px;}
.h1d{height:41.220000px;}
.he{height:44.236406px;}
.h2{height:49.517578px;}
.h3{height:50.572266px;}
.hf{height:52.048828px;}
.h10{height:54.799453px;}
.h14{height:55.503491px;}
.h6{height:55.966641px;}
.h1e{height:57.816000px;}
.h7{height:60.741562px;}
.h4{height:62.035312px;}
.h5{height:63.846562px;}
.h9{height:66.023438px;}
.hc{height:67.429688px;}
.h18{height:67.860000px;}
.h11{height:68.084282px;}
.h21{height:74.004654px;}
.h1f{height:83.340000px;}
.h15{height:88.056000px;}
.h17{height:88.776000px;}
.h8{height:92.520000px;}
.h1b{height:99.000000px;}
.h1a{height:99.036000px;}
.h20{height:99.180000px;}
.h1c{height:119.340000px;}
.h19{height:123.300000px;}
.hb{height:132.046875px;}
.hd{height:178.050000px;}
.h16{height:193.140000px;}
.ha{height:430.815000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:106.380000px;}
.w8{width:117.000000px;}
.w3{width:309.135000px;}
.w5{width:405.075000px;}
.w9{width:521.025000px;}
.w7{width:530.745000px;}
.w4{width:652.065000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:8.100000px;}
.x4{left:10.830000px;}
.xd{left:22.140000px;}
.x11{left:35.100000px;}
.x13{left:44.634000px;}
.x12{left:62.145000px;}
.xc{left:119.556000px;}
.x2{left:127.655987px;}
.x5{left:141.156000px;}
.xb{left:148.895987px;}
.xa{left:154.469987px;}
.x9{left:181.649987px;}
.x6{left:202.179000px;}
.xe{left:225.930000px;}
.xf{left:230.805000px;}
.x14{left:236.550000px;}
.x7{left:362.415000px;}
.x3{left:460.695000px;}
.x8{left:716.189987px;}
.x1{left:765.689987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3d{letter-spacing:-1.130667pt;}
.ls27{letter-spacing:-0.869333pt;}
.ls58{letter-spacing:-0.853333pt;}
.ls1c{letter-spacing:-0.832000pt;}
.ls43{letter-spacing:-0.805333pt;}
.ls42{letter-spacing:-0.794667pt;}
.ls3e{letter-spacing:-0.789333pt;}
.ls31{letter-spacing:-0.773333pt;}
.ls26{letter-spacing:-0.730667pt;}
.ls18{letter-spacing:-0.489067pt;}
.lsd{letter-spacing:-0.384000pt;}
.ls57{letter-spacing:-0.368533pt;}
.ls49{letter-spacing:-0.289067pt;}
.ls23{letter-spacing:-0.258667pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls35{letter-spacing:-0.230400pt;}
.ls1e{letter-spacing:-0.227733pt;}
.ls4d{letter-spacing:-0.204800pt;}
.ls47{letter-spacing:-0.199467pt;}
.ls24{letter-spacing:-0.194667pt;}
.ls22{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.179200pt;}
.ls19{letter-spacing:-0.166400pt;}
.ls1f{letter-spacing:-0.156267pt;}
.ls25{letter-spacing:-0.148267pt;}
.ls16{letter-spacing:-0.140800pt;}
.ls1a{letter-spacing:-0.133333pt;}
.ls48{letter-spacing:-0.117867pt;}
.ls14{letter-spacing:-0.094933pt;}
.ls17{letter-spacing:-0.089600pt;}
.ls38{letter-spacing:-0.082133pt;}
.lsb{letter-spacing:-0.080000pt;}
.ls28{letter-spacing:-0.051200pt;}
.ls40{letter-spacing:-0.025600pt;}
.ls53{letter-spacing:-0.010240pt;}
.ls52{letter-spacing:-0.002560pt;}
.ls7{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.010880pt;}
.ls9{letter-spacing:0.016000pt;}
.ls56{letter-spacing:0.027307pt;}
.ls4{letter-spacing:0.032000pt;}
.ls37{letter-spacing:0.051840pt;}
.ls51{letter-spacing:0.074133pt;}
.ls3f{letter-spacing:0.080000pt;}
.ls0{letter-spacing:0.117760pt;}
.ls36{letter-spacing:0.135467pt;}
.ls2{letter-spacing:0.141440pt;}
.ls10{letter-spacing:0.150933pt;}
.ls4e{letter-spacing:0.151040pt;}
.ls1{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.196267pt;}
.ls45{letter-spacing:0.197120pt;}
.ls8{letter-spacing:0.197333pt;}
.ls3{letter-spacing:0.256000pt;}
.ls46{letter-spacing:0.271467pt;}
.ls15{letter-spacing:0.272000pt;}
.ls2f{letter-spacing:0.286933pt;}
.ls3a{letter-spacing:0.294400pt;}
.lsc{letter-spacing:0.296533pt;}
.ls3c{letter-spacing:0.301867pt;}
.ls34{letter-spacing:0.302080pt;}
.lsf{letter-spacing:0.304000pt;}
.ls6{letter-spacing:0.325333pt;}
.ls11{letter-spacing:0.345067pt;}
.ls55{letter-spacing:0.357120pt;}
.ls44{letter-spacing:0.412267pt;}
.ls39{letter-spacing:0.448000pt;}
.ls50{letter-spacing:0.789333pt;}
.ls30{letter-spacing:2.117120pt;}
.ls2e{letter-spacing:2.330667pt;}
.ls29{letter-spacing:2.426667pt;}
.ls2c{letter-spacing:2.709333pt;}
.ls2a{letter-spacing:2.711040pt;}
.ls2b{letter-spacing:2.757120pt;}
.ls2d{letter-spacing:3.349333pt;}
.ls41{letter-spacing:3.397120pt;}
.ls3b{letter-spacing:5.317120pt;}
.ls12{letter-spacing:7.312000pt;}
.ls21{letter-spacing:7.877120pt;}
.ls4f{letter-spacing:9.797120pt;}
.ls59{letter-spacing:10.437120pt;}
.ls13{letter-spacing:16.272000pt;}
.ls4b{letter-spacing:21.477120pt;}
.ls20{letter-spacing:24.591360pt;}
.ls4a{letter-spacing:25.957120pt;}
.ls1d{letter-spacing:50.191360pt;}
.ls32{letter-spacing:61.056000pt;}
.ls33{letter-spacing:96.256000pt;}
.ls4c{letter-spacing:97.477120pt;}
.ls54{letter-spacing:340.143787pt;}
.ws12{word-spacing:-58.880000pt;}
.ws1d{word-spacing:-48.000000pt;}
.ws8{word-spacing:-38.528000pt;}
.ws1a{word-spacing:-20.149547pt;}
.ws6{word-spacing:-19.520000pt;}
.ws2{word-spacing:-19.264000pt;}
.ws4{word-spacing:-18.880000pt;}
.ws1f{word-spacing:-18.017280pt;}
.ws1b{word-spacing:-18.009813pt;}
.ws28{word-spacing:-17.994347pt;}
.ws26{word-spacing:-17.914880pt;}
.ws17{word-spacing:-17.873813pt;}
.ws2c{word-spacing:-17.797013pt;}
.ws9{word-spacing:-17.722880pt;}
.ws2d{word-spacing:-17.720320pt;}
.ws2e{word-spacing:-17.712640pt;}
.ws23{word-spacing:-17.697280pt;}
.ws19{word-spacing:-17.671680pt;}
.ws10{word-spacing:-17.633280pt;}
.ws2a{word-spacing:-17.605013pt;}
.wse{word-spacing:-17.589547pt;}
.ws16{word-spacing:-17.582080pt;}
.ws15{word-spacing:-17.574613pt;}
.ws11{word-spacing:-17.566613pt;}
.ws27{word-spacing:-17.556480pt;}
.wsf{word-spacing:-17.543680pt;}
.ws18{word-spacing:-17.530880pt;}
.ws14{word-spacing:-17.528213pt;}
.ws29{word-spacing:-17.523413pt;}
.ws20{word-spacing:-17.495147pt;}
.ws1e{word-spacing:-17.492480pt;}
.ws13{word-spacing:-17.464213pt;}
.ws2b{word-spacing:-17.433813pt;}
.ws2f{word-spacing:-17.354347pt;}
.ws31{word-spacing:-17.233813pt;}
.ws22{word-spacing:-16.992213pt;}
.ws24{word-spacing:-16.928213pt;}
.ws25{word-spacing:-16.917547pt;}
.ws30{word-spacing:-16.869547pt;}
.wsb{word-spacing:-16.314453pt;}
.wsa{word-spacing:-15.989120pt;}
.ws3{word-spacing:-15.515093pt;}
.ws5{word-spacing:-15.414827pt;}
.wsd{word-spacing:-14.672427pt;}
.ws7{word-spacing:-14.480000pt;}
.ws1c{word-spacing:-14.448000pt;}
.ws1{word-spacing:-14.368000pt;}
.ws21{word-spacing:-14.256000pt;}
.ws0{word-spacing:-14.192000pt;}
.wsc{word-spacing:0.000000pt;}
._27{margin-left:-1.812053pt;}
._0{margin-left:-0.904533pt;}
._1{width:0.960000pt;}
._b{width:1.947733pt;}
._d{width:2.964267pt;}
._12{width:4.560000pt;}
._17{width:5.450667pt;}
._18{width:6.359467pt;}
._7{width:7.402667pt;}
._4{width:8.304000pt;}
._5{width:9.360000pt;}
._6{width:10.445867pt;}
._11{width:11.382400pt;}
._a{width:12.490667pt;}
._c{width:13.477333pt;}
._1b{width:14.421120pt;}
._2{width:15.408000pt;}
._3{width:16.339200pt;}
._e{width:17.600000pt;}
._20{width:18.723840pt;}
._13{width:19.728000pt;}
._14{width:20.826667pt;}
._8{width:22.560000pt;}
._9{width:23.616000pt;}
._1c{width:25.176747pt;}
._1d{width:26.201600pt;}
._1f{width:27.573973pt;}
._1e{width:28.628693pt;}
._19{width:30.146560pt;}
._1a{width:31.227733pt;}
._15{width:32.448000pt;}
._16{width:33.446400pt;}
._24{width:34.384213pt;}
._25{width:35.587200pt;}
._21{width:37.023787pt;}
._22{width:37.925547pt;}
._47{width:38.978560pt;}
._46{width:40.156160pt;}
._26{width:41.051307pt;}
._2c{width:42.240000pt;}
._2b{width:43.322453pt;}
._52{width:44.246613pt;}
._51{width:45.205120pt;}
._29{width:49.579093pt;}
._28{width:50.632960pt;}
._53{width:55.563520pt;}
._54{width:56.625920pt;}
._43{width:57.748480pt;}
._44{width:58.644480pt;}
._45{width:59.677440pt;}
._4e{width:62.228480pt;}
._4c{width:63.677013pt;}
._4d{width:64.567467pt;}
._2e{width:70.714880pt;}
._2f{width:71.820373pt;}
._10{width:72.913280pt;}
._39{width:76.897280pt;}
._3a{width:78.886400pt;}
._49{width:83.374080pt;}
._4a{width:84.560213pt;}
._4f{width:90.410240pt;}
._50{width:93.204053pt;}
._30{width:94.796800pt;}
._31{width:95.939413pt;}
._32{width:97.099093pt;}
._2a{width:98.735787pt;}
._23{width:100.469547pt;}
._38{width:129.920640pt;}
._37{width:131.081173pt;}
._2d{width:135.646293pt;}
._34{width:237.886720pt;}
._33{width:239.098453pt;}
._3d{width:239.994880pt;}
._3c{width:240.982613pt;}
._3b{width:246.024533pt;}
._35{width:282.035200pt;}
._36{width:283.469227pt;}
._40{width:340.607573pt;}
._3f{width:342.897067pt;}
._3e{width:343.963733pt;}
._42{width:370.952533pt;}
._41{width:372.108373pt;}
._4b{width:395.954773pt;}
._48{width:641.072213pt;}
._f{width:1936.501333pt;}
.fs7{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:101.120000pt;}
.fs5{font-size:128.000000pt;}
.y38{bottom:-1.280000pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:1.760000pt;}
.y19a{bottom:6.714667pt;}
.y118{bottom:6.720000pt;}
.y179{bottom:6.880000pt;}
.y198{bottom:7.514667pt;}
.y11a{bottom:7.520000pt;}
.y19e{bottom:13.120000pt;}
.y37{bottom:14.240000pt;}
.y26{bottom:17.760000pt;}
.y199{bottom:20.634667pt;}
.y18c{bottom:20.640000pt;}
.y197{bottom:21.434667pt;}
.y128{bottom:24.640000pt;}
.y11f{bottom:24.800000pt;}
.y12d{bottom:25.440000pt;}
.y1a5{bottom:25.600000pt;}
.y183{bottom:27.040000pt;}
.y17e{bottom:28.320000pt;}
.y36{bottom:29.760000pt;}
.y130{bottom:31.040000pt;}
.y25{bottom:33.760000pt;}
.y18b{bottom:34.560000pt;}
.y178{bottom:38.720000pt;}
.y186{bottom:39.360000pt;}
.y1a4{bottom:39.520000pt;}
.y19c{bottom:40.160000pt;}
.y194{bottom:40.960000pt;}
.y127{bottom:43.360000pt;}
.y11e{bottom:43.520000pt;}
.y12c{bottom:44.160000pt;}
.y131{bottom:44.320000pt;}
.y182{bottom:44.960000pt;}
.y12f{bottom:45.120000pt;}
.y35{bottom:45.280000pt;}
.y17d{bottom:47.040000pt;}
.y24{bottom:49.760000pt;}
.y2{bottom:49.792000pt;}
.y3c{bottom:49.952000pt;}
.y177{bottom:52.640000pt;}
.y185{bottom:53.280000pt;}
.y192{bottom:57.440000pt;}
.y195{bottom:58.080000pt;}
.y1a3{bottom:58.240000pt;}
.y189{bottom:58.880000pt;}
.y181{bottom:58.906667pt;}
.y1a1{bottom:59.040000pt;}
.y17c{bottom:60.960000pt;}
.y34{bottom:60.986667pt;}
.y1{bottom:60.992000pt;}
.y126{bottom:62.080000pt;}
.y11d{bottom:62.240000pt;}
.y12b{bottom:62.880000pt;}
.y11c{bottom:63.040000pt;}
.y12a{bottom:63.680000pt;}
.y3b{bottom:66.112000pt;}
.y176{bottom:66.560000pt;}
.y23{bottom:67.200000pt;}
.y2d{bottom:67.520000pt;}
.y191{bottom:71.360000pt;}
.y18a{bottom:72.000000pt;}
.y184{bottom:72.026667pt;}
.y1a2{bottom:72.160000pt;}
.y188{bottom:72.800000pt;}
.y180{bottom:72.826667pt;}
.y1a0{bottom:72.960000pt;}
.y18f{bottom:76.960000pt;}
.y33{bottom:77.786667pt;}
.y17b{bottom:79.680000pt;}
.y175{bottom:80.480000pt;}
.y125{bottom:80.800000pt;}
.y190{bottom:90.080000pt;}
.y18e{bottom:90.880000pt;}
.y32{bottom:93.466667pt;}
.y17a{bottom:93.600000pt;}
.y174{bottom:94.400000pt;}
.y124{bottom:99.520000pt;}
.y31{bottom:110.586667pt;}
.y262{bottom:116.512000pt;}
.y92{bottom:117.472000pt;}
.y123{bottom:118.240000pt;}
.y1ec{bottom:120.192000pt;}
.y6a{bottom:122.112000pt;}
.y210{bottom:123.872000pt;}
.y22f{bottom:124.032000pt;}
.y21{bottom:125.152000pt;}
.y165{bottom:125.472000pt;}
.yd7{bottom:125.632000pt;}
.y1d6{bottom:126.592000pt;}
.y30{bottom:127.546667pt;}
.y196{bottom:127.712000pt;}
.y1cc{bottom:131.872000pt;}
.y261{bottom:133.466667pt;}
.y122{bottom:136.960000pt;}
.y91{bottom:137.146667pt;}
.y151{bottom:138.906667pt;}
.y1eb{bottom:139.866667pt;}
.y20{bottom:141.306667pt;}
.y69{bottom:141.626667pt;}
.yb4{bottom:143.386667pt;}
.y20f{bottom:143.546667pt;}
.yec{bottom:144.186667pt;}
.y2f{bottom:144.506667pt;}
.yd6{bottom:145.306667pt;}
.y1d5{bottom:146.106667pt;}
.y1c3{bottom:149.786667pt;}
.y246{bottom:150.426667pt;}
.y260{bottom:150.586667pt;}
.y1cb{bottom:151.546667pt;}
.y13a{bottom:154.586667pt;}
.y121{bottom:155.680000pt;}
.y120{bottom:156.480000pt;}
.y10f{bottom:156.666667pt;}
.y90{bottom:156.826667pt;}
.y1f{bottom:157.306667pt;}
.y150{bottom:158.586667pt;}
.y1ea{bottom:159.386667pt;}
.y68{bottom:161.306667pt;}
.yb3{bottom:162.906667pt;}
.y21b{bottom:163.066667pt;}
.y20e{bottom:163.226667pt;}
.yeb{bottom:164.026667pt;}
.y193{bottom:164.346667pt;}
.yd5{bottom:164.826667pt;}
.y1d4{bottom:165.786667pt;}
.y25f{bottom:167.546667pt;}
.y245{bottom:170.266667pt;}
.y1ca{bottom:171.066667pt;}
.y1e{bottom:173.306667pt;}
.y139{bottom:174.266667pt;}
.y22e{bottom:176.346667pt;}
.y10e{bottom:176.506667pt;}
.y14f{bottom:178.106667pt;}
.y1e9{bottom:178.906667pt;}
.y67{bottom:180.826667pt;}
.yb2{bottom:182.586667pt;}
.y1c2{bottom:182.746667pt;}
.y1f7{bottom:183.546667pt;}
.y164{bottom:184.346667pt;}
.y1d{bottom:189.306667pt;}
.y244{bottom:189.786667pt;}
.y8f{bottom:190.426667pt;}
.y1c9{bottom:190.586667pt;}
.y25e{bottom:192.666667pt;}
.y20d{bottom:195.866667pt;}
.y10d{bottom:196.026667pt;}
.yea{bottom:196.666667pt;}
.yd4{bottom:197.626667pt;}
.y14e{bottom:197.786667pt;}
.y1d3{bottom:198.586667pt;}
.y66{bottom:200.346667pt;}
.yb1{bottom:202.106667pt;}
.y1c1{bottom:202.426667pt;}
.y163{bottom:204.026667pt;}
.y1c{bottom:205.306667pt;}
.y138{bottom:207.066667pt;}
.y243{bottom:209.466667pt;}
.y8e{bottom:210.266667pt;}
.y21a{bottom:215.546667pt;}
.y10c{bottom:215.706667pt;}
.y1f6{bottom:216.346667pt;}
.yd3{bottom:217.306667pt;}
.y1e8{bottom:218.106667pt;}
.y65{bottom:220.026667pt;}
.y1b{bottom:221.306667pt;}
.yb0{bottom:221.626667pt;}
.y1c0{bottom:222.106667pt;}
.y162{bottom:223.546667pt;}
.y25d{bottom:225.306667pt;}
.ye9{bottom:229.626667pt;}
.y8d{bottom:229.786667pt;}
.y1d2{bottom:231.066667pt;}
.y10b{bottom:235.226667pt;}
.y1f5{bottom:236.026667pt;}
.yd2{bottom:236.826667pt;}
.y14d{bottom:236.986667pt;}
.y1a{bottom:237.306667pt;}
.y1e7{bottom:237.786667pt;}
.y64{bottom:239.546667pt;}
.y137{bottom:239.866667pt;}
.yaf{bottom:241.306667pt;}
.y1bf{bottom:241.626667pt;}
.y242{bottom:242.106667pt;}
.y1c8{bottom:243.066667pt;}
.y161{bottom:243.226667pt;}
.y2c{bottom:245.306667pt;}
.y22d{bottom:248.346667pt;}
.y8c{bottom:249.466667pt;}
.y18d{bottom:252.386667pt;}
.y19{bottom:253.506667pt;}
.y20c{bottom:254.786667pt;}
.y1f4{bottom:255.746667pt;}
.yd1{bottom:256.546667pt;}
.y1e6{bottom:257.346667pt;}
.y25c{bottom:257.986667pt;}
.y63{bottom:259.266667pt;}
.yae{bottom:260.866667pt;}
.y1be{bottom:261.186667pt;}
.y241{bottom:261.986667pt;}
.ye8{bottom:262.626667pt;}
.y160{bottom:262.786667pt;}
.y136{bottom:267.746667pt;}
.y10a{bottom:268.066667pt;}
.y22c{bottom:268.226667pt;}
.y8b{bottom:269.026667pt;}
.y2b{bottom:269.306667pt;}
.y18{bottom:269.506667pt;}
.y14c{bottom:269.666667pt;}
.y1f3{bottom:275.266667pt;}
.y1c7{bottom:275.906667pt;}
.yd0{bottom:276.066667pt;}
.y1e5{bottom:276.866667pt;}
.y62{bottom:278.786667pt;}
.yad{bottom:280.546667pt;}
.y1bd{bottom:280.866667pt;}
.y240{bottom:281.506667pt;}
.y15f{bottom:282.306667pt;}
.y17{bottom:285.506667pt;}
.y135{bottom:287.266667pt;}
.y20b{bottom:287.586667pt;}
.y109{bottom:287.746667pt;}
.y8a{bottom:288.546667pt;}
.y25b{bottom:289.186667pt;}
.y14b{bottom:289.506667pt;}
.ye7{bottom:295.586667pt;}
.ycf{bottom:295.746667pt;}
.y1e4{bottom:296.546667pt;}
.y61{bottom:298.306667pt;}
.yac{bottom:300.066667pt;}
.y1bc{bottom:300.386667pt;}
.y23f{bottom:301.186667pt;}
.y16{bottom:301.506667pt;}
.y15e{bottom:301.986667pt;}
.y134{bottom:306.946667pt;}
.y108{bottom:307.426667pt;}
.y1f2{bottom:308.066667pt;}
.y89{bottom:308.226667pt;}
.y14a{bottom:309.026667pt;}
.y2a{bottom:310.266667pt;}
.ye6{bottom:315.266667pt;}
.y1e3{bottom:316.066667pt;}
.y15{bottom:317.506667pt;}
.y60{bottom:317.986667pt;}
.yab{bottom:319.586667pt;}
.y1bb{bottom:320.066667pt;}
.y25a{bottom:320.226667pt;}
.y1d1{bottom:321.506667pt;}
.y133{bottom:326.466667pt;}
.y107{bottom:326.946667pt;}
.y88{bottom:327.746667pt;}
.yce{bottom:328.386667pt;}
.y149{bottom:328.706667pt;}
.y14{bottom:333.506667pt;}
.y23e{bottom:333.826667pt;}
.y15d{bottom:334.626667pt;}
.ye5{bottom:334.786667pt;}
.y1e2{bottom:335.746667pt;}
.y5f{bottom:337.506667pt;}
.y1ba{bottom:339.586667pt;}
.y20a{bottom:340.066667pt;}
.y1d0{bottom:341.186667pt;}
.y132{bottom:345.026667pt;}
.y106{bottom:346.466667pt;}
.y1f1{bottom:347.426667pt;}
.ycd{bottom:348.226667pt;}
.y259{bottom:351.426667pt;}
.yaa{bottom:352.386667pt;}
.y29{bottom:352.826667pt;}
.y23d{bottom:353.666667pt;}
.y15c{bottom:354.466667pt;}
.y1e1{bottom:355.266667pt;}
.y5e{bottom:357.186667pt;}
.y187{bottom:358.466667pt;}
.y1b9{bottom:359.266667pt;}
.y219{bottom:359.746667pt;}
.y209{bottom:359.906667pt;}
.y87{bottom:360.546667pt;}
.y13{bottom:363.746667pt;}
.y12e{bottom:364.866667pt;}
.ye4{bottom:367.586667pt;}
.ycc{bottom:367.746667pt;}
.ya9{bottom:372.066667pt;}
.y23c{bottom:373.186667pt;}
.y1cf{bottom:373.826667pt;}
.y15b{bottom:373.986667pt;}
.y1e0{bottom:374.786667pt;}
.y5d{bottom:376.706667pt;}
.y1b8{bottom:378.786667pt;}
.y105{bottom:379.266667pt;}
.y208{bottom:379.426667pt;}
.y1f0{bottom:380.066667pt;}
.y86{bottom:380.226667pt;}
.y148{bottom:381.026667pt;}
.y258{bottom:382.466667pt;}
.y28{bottom:387.426667pt;}
.ya8{bottom:391.746667pt;}
.y15a{bottom:393.666667pt;}
.y1df{bottom:394.466667pt;}
.y5c{bottom:396.226667pt;}
.y12{bottom:396.706667pt;}
.y1b7{bottom:398.306667pt;}
.y104{bottom:399.106667pt;}
.y85{bottom:399.906667pt;}
.y23b{bottom:405.986667pt;}
.ycb{bottom:406.946667pt;}
.ya7{bottom:411.266667pt;}
.y218{bottom:412.226667pt;}
.y1ef{bottom:413.026667pt;}
.y159{bottom:413.186667pt;}
.y257{bottom:413.666667pt;}
.y147{bottom:413.986667pt;}
.y5b{bottom:415.906667pt;}
.y1b6{bottom:417.986667pt;}
.y103{bottom:418.626667pt;}
.y84{bottom:419.426667pt;}
.y129{bottom:425.186667pt;}
.y23a{bottom:425.666667pt;}
.y1c6{bottom:426.306667pt;}
.yca{bottom:426.466667pt;}
.y11{bottom:429.666667pt;}
.y207{bottom:431.746667pt;}
.y217{bottom:431.906667pt;}
.y158{bottom:432.706667pt;}
.y146{bottom:433.666667pt;}
.y5a{bottom:435.426667pt;}
.y83{bottom:439.106667pt;}
.ya6{bottom:444.066667pt;}
.y256{bottom:444.866667pt;}
.y239{bottom:445.346667pt;}
.yc9{bottom:446.146667pt;}
.y17f{bottom:446.466667pt;}
.y2e{bottom:449.346667pt;}
.y1b5{bottom:450.626667pt;}
.y102{bottom:451.426667pt;}
.y206{bottom:451.586667pt;}
.y157{bottom:452.386667pt;}
.y145{bottom:453.186667pt;}
.y59{bottom:455.106667pt;}
.y10{bottom:462.466667pt;}
.y255{bottom:462.626667pt;}
.y22b{bottom:464.706667pt;}
.y238{bottom:464.866667pt;}
.y1ce{bottom:465.506667pt;}
.yc8{bottom:465.666667pt;}
.y1b4{bottom:470.466667pt;}
.y205{bottom:471.106667pt;}
.y82{bottom:471.746667pt;}
.y156{bottom:471.906667pt;}
.y1de{bottom:472.706667pt;}
.y144{bottom:472.866667pt;}
.y58{bottom:474.626667pt;}
.ya5{bottom:477.026667pt;}
.y254{bottom:480.386667pt;}
.y101{bottom:484.226667pt;}
.y22a{bottom:484.386667pt;}
.yc7{bottom:485.346667pt;}
.y1b3{bottom:489.986667pt;}
.y216{bottom:490.626667pt;}
.y81{bottom:491.586667pt;}
.y143{bottom:492.386667pt;}
.yf{bottom:495.426667pt;}
.ya4{bottom:496.706667pt;}
.y237{bottom:497.666667pt;}
.y204{bottom:503.933333pt;}
.y100{bottom:504.093333pt;}
.yc6{bottom:504.893333pt;}
.y57{bottom:507.453333pt;}
.y1b2{bottom:509.693333pt;}
.y80{bottom:511.133333pt;}
.y253{bottom:511.613333pt;}
.y1dd{bottom:511.933333pt;}
.y142{bottom:512.093333pt;}
.ya3{bottom:516.413333pt;}
.y229{bottom:517.213333pt;}
.y236{bottom:517.373333pt;}
.y215{bottom:523.453333pt;}
.yff{bottom:523.613333pt;}
.y155{bottom:524.253333pt;}
.yc5{bottom:524.413333pt;}
.ye{bottom:528.413333pt;}
.y1b1{bottom:529.213333pt;}
.y7f{bottom:530.653333pt;}
.y1dc{bottom:531.613333pt;}
.y173{bottom:534.493333pt;}
.ya2{bottom:535.933333pt;}
.y228{bottom:537.053333pt;}
.ye3{bottom:537.693333pt;}
.y56{bottom:539.933333pt;}
.y252{bottom:542.653333pt;}
.yfe{bottom:543.293333pt;}
.yc4{bottom:544.093333pt;}
.y141{bottom:544.413333pt;}
.y1db{bottom:551.133333pt;}
.y227{bottom:556.573333pt;}
.y1c5{bottom:557.213333pt;}
.ye2{bottom:557.373333pt;}
.y251{bottom:560.573333pt;}
.yd{bottom:561.373333pt;}
.y1b0{bottom:562.013333pt;}
.y140{bottom:562.173333pt;}
.yfd{bottom:562.813333pt;}
.y7e{bottom:563.453333pt;}
.yc3{bottom:563.613333pt;}
.ya1{bottom:568.733333pt;}
.y1da{bottom:570.653333pt;}
.y55{bottom:571.133333pt;}
.y203{bottom:575.933333pt;}
.y226{bottom:576.093333pt;}
.ye1{bottom:577.053333pt;}
.y250{bottom:578.333333pt;}
.y13f{bottom:580.093333pt;}
.y1af{bottom:581.693333pt;}
.yfc{bottom:582.333333pt;}
.yc2{bottom:583.293333pt;}
.y54{bottom:588.893333pt;}
.y235{bottom:589.373333pt;}
.y1d9{bottom:590.333333pt;}
.yc{bottom:594.173333pt;}
.y214{bottom:595.613333pt;}
.y202{bottom:595.773333pt;}
.y24f{bottom:596.093333pt;}
.y7d{bottom:596.413333pt;}
.ye0{bottom:596.573333pt;}
.y13e{bottom:597.853333pt;}
.y1ae{bottom:601.373333pt;}
.ya0{bottom:601.533333pt;}
.yfb{bottom:602.013333pt;}
.yc1{bottom:602.813333pt;}
.y53{bottom:606.173333pt;}
.y225{bottom:608.893333pt;}
.y234{bottom:609.053333pt;}
.y1d8{bottom:609.853333pt;}
.y24e{bottom:614.013333pt;}
.y201{bottom:615.293333pt;}
.y7c{bottom:616.093333pt;}
.y1ad{bottom:620.893333pt;}
.y52{bottom:622.333333pt;}
.yb{bottom:627.133333pt;}
.y224{bottom:628.573333pt;}
.y13d{bottom:629.373333pt;}
.y1d7{bottom:629.533333pt;}
.y24d{bottom:631.773333pt;}
.y9f{bottom:634.493333pt;}
.yfa{bottom:634.813333pt;}
.y213{bottom:634.973333pt;}
.y1ee{bottom:635.613333pt;}
.ydf{bottom:635.773333pt;}
.y51{bottom:638.333333pt;}
.y1ac{bottom:640.413333pt;}
.y154{bottom:642.013333pt;}
.y172{bottom:644.733333pt;}
.y200{bottom:648.093333pt;}
.y233{bottom:648.253333pt;}
.y7b{bottom:648.893333pt;}
.y13c{bottom:649.053333pt;}
.y24c{bottom:649.533333pt;}
.y50{bottom:654.333333pt;}
.y212{bottom:654.493333pt;}
.yc0{bottom:655.133333pt;}
.yde{bottom:655.293333pt;}
.ya{bottom:660.093333pt;}
.y223{bottom:661.373333pt;}
.y24b{bottom:667.293333pt;}
.yf9{bottom:667.613333pt;}
.y1ff{bottom:667.773333pt;}
.y7a{bottom:668.573333pt;}
.y4f{bottom:670.333333pt;}
.y1ab{bottom:673.213333pt;}
.y153{bottom:674.813333pt;}
.ybf{bottom:674.973333pt;}
.y11b{bottom:675.773333pt;}
.y171{bottom:680.253333pt;}
.y232{bottom:681.053333pt;}
.y222{bottom:681.213333pt;}
.y4e{bottom:686.333333pt;}
.y9e{bottom:686.973333pt;}
.y211{bottom:687.293333pt;}
.yf8{bottom:687.453333pt;}
.ydd{bottom:688.093333pt;}
.y79{bottom:688.253333pt;}
.y9{bottom:692.573333pt;}
.y1aa{bottom:693.053333pt;}
.ybe{bottom:694.493333pt;}
.y170{bottom:696.253333pt;}
.y24a{bottom:698.493333pt;}
.y221{bottom:700.733333pt;}
.y4d{bottom:702.333333pt;}
.yf7{bottom:706.973333pt;}
.y152{bottom:707.613333pt;}
.y78{bottom:707.773333pt;}
.y1a9{bottom:712.573333pt;}
.ybd{bottom:714.013333pt;}
.y4c{bottom:718.333333pt;}
.y9d{bottom:719.933333pt;}
.y220{bottom:720.253333pt;}
.y8{bottom:723.773333pt;}
.y16f{bottom:726.333333pt;}
.yf6{bottom:726.493333pt;}
.y77{bottom:727.453333pt;}
.y249{bottom:729.693333pt;}
.y1a8{bottom:732.093333pt;}
.ybc{bottom:733.693333pt;}
.y4b{bottom:734.493333pt;}
.y1fe{bottom:739.773333pt;}
.y231{bottom:739.933333pt;}
.yf5{bottom:746.173333pt;}
.y76{bottom:746.973333pt;}
.y4a{bottom:750.493333pt;}
.y1a7{bottom:751.773333pt;}
.y9c{bottom:752.893333pt;}
.y21f{bottom:753.053333pt;}
.ybb{bottom:753.253333pt;}
.y119{bottom:754.053333pt;}
.y7{bottom:755.013333pt;}
.y1fd{bottom:759.493333pt;}
.y248{bottom:760.773333pt;}
.y16e{bottom:765.733333pt;}
.y1cd{bottom:766.373333pt;}
.y49{bottom:766.533333pt;}
.y230{bottom:772.773333pt;}
.yba{bottom:772.933333pt;}
.y117{bottom:777.413333pt;}
.yf4{bottom:779.013333pt;}
.y1fc{bottom:779.173333pt;}
.y48{bottom:782.533333pt;}
.y1a6{bottom:783.653333pt;}
.y16d{bottom:785.413333pt;}
.y9b{bottom:785.733333pt;}
.y6{bottom:786.053333pt;}
.y75{bottom:786.213333pt;}
.y247{bottom:792.293333pt;}
.y21e{bottom:792.453333pt;}
.y19f{bottom:795.493333pt;}
.y22{bottom:796.773333pt;}
.y47{bottom:798.533333pt;}
.yf3{bottom:798.693333pt;}
.y116{bottom:804.773333pt;}
.y16c{bottom:804.933333pt;}
.yb9{bottom:805.573333pt;}
.y74{bottom:805.733333pt;}
.y1fb{bottom:811.813333pt;}
.y21d{bottom:811.973333pt;}
.y46{bottom:814.533333pt;}
.y5{bottom:817.253333pt;}
.yf2{bottom:818.213333pt;}
.y9a{bottom:818.693333pt;}
.y115{bottom:820.773333pt;}
.y16b{bottom:824.613333pt;}
.y73{bottom:825.413333pt;}
.y45{bottom:830.693333pt;}
.y1fa{bottom:831.653333pt;}
.yf1{bottom:837.893333pt;}
.ydc{bottom:838.533333pt;}
.y16a{bottom:844.133333pt;}
.y21c{bottom:844.773333pt;}
.y72{bottom:844.933333pt;}
.y44{bottom:846.693333pt;}
.y4{bottom:848.613333pt;}
.y114{bottom:851.013333pt;}
.y1f9{bottom:851.173333pt;}
.y99{bottom:851.653333pt;}
.y13b{bottom:858.053333pt;}
.ydb{bottom:858.213333pt;}
.y169{bottom:863.653333pt;}
.y71{bottom:864.613333pt;}
.yf0{bottom:870.693333pt;}
.y113{bottom:870.853333pt;}
.y98{bottom:871.333333pt;}
.y43{bottom:876.773333pt;}
.yda{bottom:877.893333pt;}
.y3{bottom:878.373333pt;}
.y19d{bottom:883.653333pt;}
.y1f8{bottom:883.973333pt;}
.y70{bottom:884.133333pt;}
.y97{bottom:888.453333pt;}
.y112{bottom:890.373333pt;}
.y168{bottom:896.453333pt;}
.y1c4{bottom:897.253333pt;}
.yd9{bottom:897.413333pt;}
.yef{bottom:903.493333pt;}
.yb8{bottom:903.653333pt;}
.y42{bottom:909.733333pt;}
.y6f{bottom:916.933333pt;}
.yd8{bottom:917.093333pt;}
.y96{bottom:921.253333pt;}
.y111{bottom:923.173333pt;}
.yb7{bottom:923.333333pt;}
.y41{bottom:928.933333pt;}
.y167{bottom:929.413333pt;}
.y1ed{bottom:936.453333pt;}
.y6e{bottom:936.613333pt;}
.y95{bottom:940.933333pt;}
.yb6{bottom:942.853333pt;}
.y40{bottom:946.853333pt;}
.y110{bottom:955.973333pt;}
.y6d{bottom:956.133333pt;}
.y19b{bottom:957.733333pt;}
.y166{bottom:962.373333pt;}
.yee{bottom:962.533333pt;}
.y3f{bottom:964.613333pt;}
.y94{bottom:974.693333pt;}
.yb5{bottom:975.653333pt;}
.y6c{bottom:975.813333pt;}
.y3e{bottom:981.893333pt;}
.y93{bottom:994.373333pt;}
.yed{bottom:995.173333pt;}
.y6b{bottom:995.333333pt;}
.y3d{bottom:997.893333pt;}
.y3a{bottom:1050.080000pt;}
.y39{bottom:1064.160000pt;}
.h12{height:21.920000pt;}
.h13{height:22.720000pt;}
.h1d{height:36.640000pt;}
.he{height:39.321250pt;}
.h2{height:44.015625pt;}
.h3{height:44.953125pt;}
.hf{height:46.265625pt;}
.h10{height:48.710625pt;}
.h14{height:49.336436pt;}
.h6{height:49.748125pt;}
.h1e{height:51.392000pt;}
.h7{height:53.992500pt;}
.h4{height:55.142500pt;}
.h5{height:56.752500pt;}
.h9{height:58.687500pt;}
.hc{height:59.937500pt;}
.h18{height:60.320000pt;}
.h11{height:60.519362pt;}
.h21{height:65.781915pt;}
.h1f{height:74.080000pt;}
.h15{height:78.272000pt;}
.h17{height:78.912000pt;}
.h8{height:82.240000pt;}
.h1b{height:88.000000pt;}
.h1a{height:88.032000pt;}
.h20{height:88.160000pt;}
.h1c{height:106.080000pt;}
.h19{height:109.600000pt;}
.hb{height:117.375000pt;}
.hd{height:158.266667pt;}
.h16{height:171.680000pt;}
.ha{height:382.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:94.560000pt;}
.w8{width:104.000000pt;}
.w3{width:274.786667pt;}
.w5{width:360.066667pt;}
.w9{width:463.133333pt;}
.w7{width:471.773333pt;}
.w4{width:579.613333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:7.200000pt;}
.x4{left:9.626667pt;}
.xd{left:19.680000pt;}
.x11{left:31.200000pt;}
.x13{left:39.674667pt;}
.x12{left:55.240000pt;}
.xc{left:106.272000pt;}
.x2{left:113.471988pt;}
.x5{left:125.472000pt;}
.xb{left:132.351988pt;}
.xa{left:137.306655pt;}
.x9{left:161.466655pt;}
.x6{left:179.714667pt;}
.xe{left:200.826667pt;}
.xf{left:205.160000pt;}
.x14{left:210.266667pt;}
.x7{left:322.146667pt;}
.x3{left:409.506667pt;}
.x8{left:636.613322pt;}
.x1{left:680.613322pt;}
}




    .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; }
  