
    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_1f08e50240750cb8e5bb7202.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.128906;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_218d6a858d31cf21c5764f28.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_d56da8f11fe9a02d4ed20f98.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.936523;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_56ee8c28fb8226d8db114269.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.972656;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_bee5f8ce75549c143dd4c929.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.936523;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_3dc75e4eccd204ef117b2b03.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_e89a8eb9b43ea7b5bf71db94.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;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_0d876041e2b12102491c3750.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.080566;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_fcc96f463d897da76ca92fbd.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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_fa8416ffb5d0df002de47a2a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.049805;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_08d39f4dab28cc8381d62427.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.972656;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_9fc192b978c1643c9c26ebaa.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.128906;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_707ce9dc4ea08897fbe5e2a8.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_25e54a0568a445c8bd8b67ad.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_1f83532f108fece8f815be23.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.955078;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_1b67769bb44ebfcc747eddd8.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.284180;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);}
.v1{vertical-align:-69.120000px;}
.v2{vertical-align:-29.520000px;}
.v0{vertical-align:0.000000px;}
.ls3c{letter-spacing:-0.738000px;}
.ls3e{letter-spacing:-0.612000px;}
.ls3b{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.370200px;}
.ls10{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.303600px;}
.ls2c{letter-spacing:-0.291600px;}
.ls3f{letter-spacing:-0.269400px;}
.ls3d{letter-spacing:-0.108000px;}
.ls11{letter-spacing:-0.053280px;}
.ls3a{letter-spacing:-0.018000px;}
.lse{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.015120px;}
.ls1b{letter-spacing:0.018000px;}
.ls3{letter-spacing:0.053280px;}
.ls32{letter-spacing:0.106800px;}
.ls37{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.131040px;}
.ls4{letter-spacing:0.180000px;}
.ls36{letter-spacing:0.198000px;}
.ls13{letter-spacing:0.206400px;}
.ls15{letter-spacing:0.216000px;}
.ls2a{letter-spacing:0.259800px;}
.ls1f{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.276480px;}
.ls2{letter-spacing:0.316800px;}
.ls5{letter-spacing:0.360000px;}
.ls2b{letter-spacing:0.439920px;}
.ls14{letter-spacing:0.460200px;}
.ls39{letter-spacing:0.468000px;}
.ls24{letter-spacing:0.738000px;}
.ls23{letter-spacing:0.900000px;}
.ls20{letter-spacing:1.620000px;}
.ls6{letter-spacing:3.060000px;}
.ls34{letter-spacing:3.780000px;}
.ls27{letter-spacing:5.220000px;}
.ls26{letter-spacing:5.400000px;}
.lsa{letter-spacing:5.940000px;}
.ls9{letter-spacing:6.660000px;}
.ls1e{letter-spacing:8.586720px;}
.ls25{letter-spacing:8.820000px;}
.ls30{letter-spacing:9.540000px;}
.ls1c{letter-spacing:12.420000px;}
.ls33{letter-spacing:14.580000px;}
.ls2f{letter-spacing:15.066720px;}
.ls22{letter-spacing:15.300000px;}
.ls1d{letter-spacing:15.948000px;}
.ls29{letter-spacing:19.620000px;}
.ls2e{letter-spacing:21.060000px;}
.ls8{letter-spacing:25.380000px;}
.ls35{letter-spacing:26.100000px;}
.ls31{letter-spacing:29.880000px;}
.lsb{letter-spacing:31.860000px;}
.ls17{letter-spacing:32.580000px;}
.lsd{letter-spacing:39.780000px;}
.ls2d{letter-spacing:44.562720px;}
.ls1a{letter-spacing:45.516000px;}
.lsc{letter-spacing:45.540000px;}
.ls21{letter-spacing:48.540000px;}
.ls28{letter-spacing:49.140000px;}
.ls16{letter-spacing:54.156000px;}
.ls38{letter-spacing:64.260000px;}
.ls18{letter-spacing:70.020000px;}
.ls19{letter-spacing:1260.336000px;}
.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;}
}
.wsc{word-spacing:-72.000000px;}
.ws10{word-spacing:-59.760000px;}
.wsf{word-spacing:-54.000000px;}
.ws3{word-spacing:-16.280640px;}
.wsb{word-spacing:-15.400200px;}
.ws8{word-spacing:-15.300000px;}
.ws13{word-spacing:-15.199800px;}
.wsa{word-spacing:-15.146400px;}
.ws5{word-spacing:-15.120000px;}
.ws15{word-spacing:-15.046800px;}
.ws4{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.ws12{word-spacing:-14.886720px;}
.ws14{word-spacing:-14.648400px;}
.ws6{word-spacing:-14.580000px;}
.ws16{word-spacing:-13.968000px;}
.ws11{word-spacing:-13.716000px;}
.wse{word-spacing:-13.500000px;}
.ws17{word-spacing:-13.482000px;}
.ws19{word-spacing:-13.392000px;}
.ws18{word-spacing:-12.762000px;}
.ws1a{word-spacing:-11.790600px;}
.ws0{word-spacing:-11.625840px;}
.ws9{word-spacing:-11.340000px;}
.ws2{word-spacing:-10.064160px;}
.ws1{word-spacing:-9.760560px;}
.wsd{word-spacing:0.000000px;}
._30{margin-left:-3.884400px;}
._19{margin-left:-2.671200px;}
._1{margin-left:-1.153440px;}
._0{width:1.041360px;}
._2{width:2.353440px;}
._4{width:3.466800px;}
._9{width:5.235840px;}
._8{width:6.324480px;}
._c{width:7.957440px;}
._5{width:9.752400px;}
._1f{width:10.816560px;}
._22{width:12.250800px;}
._32{width:13.266720px;}
._12{width:14.430960px;}
._11{width:15.513120px;}
._1d{width:16.647600px;}
._6{width:17.891280px;}
._7{width:19.297440px;}
._14{width:20.399760px;}
._20{width:21.453840px;}
._1a{width:22.589280px;}
._a{width:24.403680px;}
._b{width:25.421040px;}
._13{width:27.034560px;}
._3{width:28.350000px;}
._18{width:29.820240px;}
._d{width:31.162320px;}
._1b{width:32.675280px;}
._1c{width:34.097520px;}
._10{width:35.717760px;}
._1e{width:37.589040px;}
._e{width:39.074400px;}
._f{width:40.143600px;}
._23{width:41.353920px;}
._27{width:42.967440px;}
._26{width:44.102880px;}
._21{width:45.178560px;}
._2e{width:46.983600px;}
._28{width:48.047040px;}
._2a{width:49.720320px;}
._33{width:50.770560px;}
._29{width:51.811920px;}
._2b{width:54.462720px;}
._16{width:55.509600px;}
._15{width:56.712240px;}
._2d{width:57.822240px;}
._31{width:58.863600px;}
._2f{width:60.357600px;}
._25{width:62.090640px;}
._37{width:63.398880px;}
._2c{width:64.959120px;}
._17{width:68.305680px;}
._34{width:69.893760px;}
._24{width:82.264080px;}
._36{width:87.847200px;}
._35{width:158.563680px;}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,0,0);}
.fsc{font-size:5.760000px;}
.fs6{font-size:18.000000px;}
.fsb{font-size:23.760000px;}
.fs4{font-size:36.000000px;}
.fs1{font-size:41.760000px;}
.fs8{font-size:45.360000px;}
.fs0{font-size:48.240000px;}
.fs9{font-size:51.120000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fsa{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y79{bottom:1.980000px;}
.yda{bottom:2.700000px;}
.ye9{bottom:2.880000px;}
.y227{bottom:3.060000px;}
.y167{bottom:3.240000px;}
.ye3{bottom:3.600000px;}
.y75{bottom:4.140000px;}
.y3{bottom:4.320000px;}
.y2{bottom:5.940000px;}
.yd1{bottom:6.195000px;}
.y7{bottom:6.300000px;}
.ycf{bottom:7.050000px;}
.y77{bottom:7.200000px;}
.ycd{bottom:7.410000px;}
.yd4{bottom:9.930000px;}
.ydb{bottom:10.080000px;}
.y16c{bottom:10.620000px;}
.yec{bottom:10.980000px;}
.y1c5{bottom:11.520000px;}
.y232{bottom:11.880000px;}
.y78{bottom:12.240000px;}
.y153{bottom:13.500000px;}
.y149{bottom:17.280000px;}
.yd9{bottom:17.460000px;}
.y157{bottom:17.640000px;}
.y165{bottom:18.000000px;}
.ye0{bottom:18.360000px;}
.y13f{bottom:18.540000px;}
.y22c{bottom:18.570000px;}
.ye8{bottom:18.585000px;}
.y13e{bottom:18.900000px;}
.y158{bottom:19.440000px;}
.yce{bottom:23.610000px;}
.y161{bottom:25.020000px;}
.y16b{bottom:25.380000px;}
.y1c8{bottom:25.920000px;}
.y155{bottom:26.280000px;}
.ydd{bottom:26.640000px;}
.ye5{bottom:26.865000px;}
.y164{bottom:32.760000px;}
.y8{bottom:32.940000px;}
.ye2{bottom:33.120000px;}
.y156{bottom:33.300000px;}
.y140{bottom:33.660000px;}
.y224{bottom:34.020000px;}
.y22b{bottom:34.050000px;}
.ydf{bottom:34.200000px;}
.ye7{bottom:34.245000px;}
.y160{bottom:40.680000px;}
.y15a{bottom:41.040000px;}
.yeb{bottom:41.580000px;}
.y15d{bottom:48.060000px;}
.y170{bottom:48.090000px;}
.y163{bottom:48.420000px;}
.y6{bottom:48.600000px;}
.ye1{bottom:48.960000px;}
.y171{bottom:48.990000px;}
.y223{bottom:49.500000px;}
.y22a{bottom:49.530000px;}
.yde{bottom:49.860000px;}
.ye6{bottom:50.085000px;}
.y15f{bottom:55.485000px;}
.y16a{bottom:55.800000px;}
.y173{bottom:55.830000px;}
.y162{bottom:63.225000px;}
.y169{bottom:63.720000px;}
.y16f{bottom:63.750000px;}
.y15c{bottom:63.765000px;}
.y222{bottom:64.980000px;}
.y229{bottom:65.010000px;}
.y172{bottom:70.770000px;}
.y15e{bottom:71.145000px;}
.y5{bottom:72.900000px;}
.y16e{bottom:78.510000px;}
.y15b{bottom:78.525000px;}
.y234{bottom:85.320000px;}
.y233{bottom:87.120000px;}
.y73{bottom:88.200000px;}
.y231{bottom:88.560000px;}
.y52{bottom:93.240000px;}
.y1c2{bottom:94.320000px;}
.y1af{bottom:96.480000px;}
.y13b{bottom:98.280000px;}
.yca{bottom:101.160000px;}
.y72{bottom:105.480000px;}
.y51{bottom:106.200000px;}
.y175{bottom:106.380000px;}
.y115{bottom:107.820000px;}
.y1c1{bottom:111.420000px;}
.y1f8{bottom:112.680000px;}
.y1ae{bottom:113.580000px;}
.y13a{bottom:115.380000px;}
.yc9{bottom:118.440000px;}
.y50{bottom:119.160000px;}
.y230{bottom:122.580000px;}
.y71{bottom:122.760000px;}
.y174{bottom:123.480000px;}
.y114{bottom:125.100000px;}
.y1c0{bottom:128.700000px;}
.y1f7{bottom:129.960000px;}
.y1ad{bottom:130.860000px;}
.y22f{bottom:131.400000px;}
.y4f{bottom:132.120000px;}
.y139{bottom:132.660000px;}
.yc8{bottom:135.720000px;}
.y16d{bottom:138.240000px;}
.y70{bottom:140.040000px;}
.y113{bottom:142.380000px;}
.y4e{bottom:145.080000px;}
.y1bf{bottom:145.980000px;}
.y1f6{bottom:147.240000px;}
.y1ac{bottom:148.140000px;}
.y22e{bottom:148.680000px;}
.y138{bottom:149.940000px;}
.yc7{bottom:153.000000px;}
.y6f{bottom:157.140000px;}
.y4d{bottom:157.860000px;}
.y112{bottom:159.660000px;}
.y1be{bottom:163.260000px;}
.y1f5{bottom:164.520000px;}
.y1ab{bottom:165.420000px;}
.y22d{bottom:165.780000px;}
.y137{bottom:167.220000px;}
.yc6{bottom:170.280000px;}
.y4c{bottom:170.820000px;}
.y6e{bottom:174.420000px;}
.y111{bottom:176.940000px;}
.y228{bottom:179.820000px;}
.y1bd{bottom:180.540000px;}
.y1f4{bottom:181.620000px;}
.y1aa{bottom:182.700000px;}
.y4b{bottom:183.810000px;}
.y136{bottom:184.530000px;}
.yc5{bottom:187.410000px;}
.y6d{bottom:191.730000px;}
.y110{bottom:194.250000px;}
.y4a{bottom:196.770000px;}
.y1bc{bottom:197.670000px;}
.y1f3{bottom:198.930000px;}
.y1a9{bottom:200.010000px;}
.y135{bottom:201.630000px;}
.yc4{bottom:204.690000px;}
.y6c{bottom:209.010000px;}
.y49{bottom:209.730000px;}
.y10f{bottom:211.350000px;}
.y1bb{bottom:214.950000px;}
.y1f2{bottom:216.210000px;}
.y1a8{bottom:217.110000px;}
.y134{bottom:218.910000px;}
.yc3{bottom:221.970000px;}
.y48{bottom:222.690000px;}
.y6b{bottom:226.290000px;}
.y10e{bottom:228.630000px;}
.y168{bottom:230.430000px;}
.y1ba{bottom:232.230000px;}
.y1ed{bottom:233.490000px;}
.y1a7{bottom:234.390000px;}
.y47{bottom:235.650000px;}
.y133{bottom:236.190000px;}
.yc2{bottom:239.250000px;}
.y1f1{bottom:242.490000px;}
.y6a{bottom:243.570000px;}
.y10d{bottom:245.910000px;}
.y46{bottom:248.430000px;}
.y1b9{bottom:249.510000px;}
.y1ec{bottom:250.770000px;}
.y1a6{bottom:251.670000px;}
.y132{bottom:253.470000px;}
.yc1{bottom:256.530000px;}
.y226{bottom:257.430000px;}
.y1f0{bottom:259.770000px;}
.y69{bottom:260.670000px;}
.y45{bottom:261.390000px;}
.y10c{bottom:263.190000px;}
.y1b8{bottom:266.790000px;}
.y1eb{bottom:268.050000px;}
.y1a5{bottom:268.950000px;}
.y131{bottom:270.750000px;}
.y225{bottom:273.090000px;}
.y44{bottom:274.350000px;}
.y1ef{bottom:277.050000px;}
.y68{bottom:277.950000px;}
.yc0{bottom:278.850000px;}
.y10b{bottom:280.470000px;}
.y1b7{bottom:284.070000px;}
.y1a4{bottom:286.230000px;}
.y43{bottom:287.310000px;}
.y130{bottom:288.030000px;}
.y221{bottom:288.570000px;}
.y1ea{bottom:289.650000px;}
.ycc{bottom:290.700000px;}
.y1ee{bottom:294.150000px;}
.y67{bottom:295.230000px;}
.ybf{bottom:296.130000px;}
.y10a{bottom:298.830000px;}
.y42{bottom:300.270000px;}
.y1b6{bottom:301.170000px;}
.y1a3{bottom:303.510000px;}
.y12f{bottom:305.130000px;}
.y166{bottom:307.830000px;}
.y1e9{bottom:311.430000px;}
.y66{bottom:312.510000px;}
.y41{bottom:313.230000px;}
.ycb{bottom:314.850000px;}
.y109{bottom:315.930000px;}
.y1b5{bottom:318.450000px;}
.y1a2{bottom:320.610000px;}
.y12e{bottom:322.410000px;}
.y40{bottom:326.190000px;}
.y1e8{bottom:328.710000px;}
.y65{bottom:329.790000px;}
.ybe{bottom:330.690000px;}
.y108{bottom:333.210000px;}
.y1b4{bottom:335.730000px;}
.y1a1{bottom:337.890000px;}
.y3f{bottom:339.150000px;}
.y12d{bottom:339.690000px;}
.y1e7{bottom:345.990000px;}
.y64{bottom:347.070000px;}
.ybd{bottom:347.970000px;}
.y107{bottom:351.570000px;}
.y3e{bottom:351.930000px;}
.y1b3{bottom:353.010000px;}
.y1a0{bottom:355.170000px;}
.y12c{bottom:356.970000px;}
.y1e6{bottom:363.270000px;}
.y63{bottom:364.170000px;}
.y3d{bottom:364.890000px;}
.ybc{bottom:365.070000px;}
.y220{bottom:366.150000px;}
.yd3{bottom:367.200000px;}
.y106{bottom:369.930000px;}
.y1b2{bottom:370.290000px;}
.y159{bottom:370.470000px;}
.y19f{bottom:372.450000px;}
.y12b{bottom:374.250000px;}
.y3c{bottom:377.850000px;}
.y1e5{bottom:380.550000px;}
.y62{bottom:381.450000px;}
.ybb{bottom:382.350000px;}
.y21f{bottom:384.870000px;}
.y105{bottom:387.210000px;}
.y1b1{bottom:387.570000px;}
.y3b{bottom:390.810000px;}
.y12a{bottom:391.530000px;}
.yd2{bottom:393.870000px;}
.y1e4{bottom:397.650000px;}
.y20c{bottom:398.730000px;}
.yba{bottom:399.630000px;}
.y21e{bottom:401.430000px;}
.y61{bottom:401.610000px;}
.y3a{bottom:403.770000px;}
.y104{bottom:404.310000px;}
.y1b0{bottom:404.670000px;}
.y19e{bottom:407.910000px;}
.y129{bottom:408.630000px;}
.y1e3{bottom:414.930000px;}
.y20b{bottom:416.010000px;}
.yb9{bottom:416.550000px;}
.y39{bottom:416.730000px;}
.y103{bottom:421.590000px;}
.y60{bottom:421.950000px;}
.y128{bottom:425.955000px;}
.y19d{bottom:426.315000px;}
.y38{bottom:429.735000px;}
.yb8{bottom:432.075000px;}
.y1e2{bottom:432.255000px;}
.y20a{bottom:433.335000px;}
.y102{bottom:438.915000px;}
.y5f{bottom:439.275000px;}
.y37{bottom:442.695000px;}
.y127{bottom:443.235000px;}
.y19c{bottom:443.595000px;}
.yd0{bottom:447.300000px;}
.yb7{bottom:447.735000px;}
.y1e1{bottom:449.535000px;}
.y209{bottom:450.435000px;}
.y36{bottom:455.475000px;}
.y101{bottom:456.195000px;}
.y5e{bottom:456.555000px;}
.y126{bottom:460.515000px;}
.y19b{bottom:460.875000px;}
.y154{bottom:462.675000px;}
.yb6{bottom:463.215000px;}
.y1e0{bottom:466.815000px;}
.y208{bottom:467.715000px;}
.y35{bottom:468.435000px;}
.y100{bottom:473.475000px;}
.y5d{bottom:473.835000px;}
.y125{bottom:477.795000px;}
.yb5{bottom:479.055000px;}
.y19a{bottom:479.235000px;}
.y34{bottom:481.395000px;}
.y1df{bottom:484.095000px;}
.y207{bottom:484.995000px;}
.yff{bottom:490.755000px;}
.y5c{bottom:490.935000px;}
.y33{bottom:494.355000px;}
.y124{bottom:494.895000px;}
.y9f{bottom:496.335000px;}
.y199{bottom:496.515000px;}
.y1de{bottom:501.195000px;}
.y206{bottom:502.275000px;}
.y32{bottom:507.315000px;}
.yfe{bottom:507.855000px;}
.y5b{bottom:508.215000px;}
.y123{bottom:512.175000px;}
.y9e{bottom:513.435000px;}
.y198{bottom:514.695000px;}
.y1dd{bottom:518.475000px;}
.y205{bottom:519.555000px;}
.y31{bottom:520.275000px;}
.yfd{bottom:525.135000px;}
.y152{bottom:525.315000px;}
.y5a{bottom:525.495000px;}
.y122{bottom:529.455000px;}
.y9d{bottom:530.715000px;}
.y197{bottom:531.975000px;}
.y30{bottom:533.235000px;}
.y1dc{bottom:535.755000px;}
.y204{bottom:536.835000px;}
.yfc{bottom:542.415000px;}
.y59{bottom:542.775000px;}
.y2f{bottom:546.015000px;}
.y121{bottom:546.735000px;}
.y9c{bottom:547.995000px;}
.y196{bottom:549.255000px;}
.y1db{bottom:553.035000px;}
.y203{bottom:553.935000px;}
.y2e{bottom:558.975000px;}
.yfb{bottom:559.695000px;}
.y58{bottom:560.055000px;}
.y120{bottom:564.015000px;}
.y9b{bottom:565.275000px;}
.y195{bottom:566.535000px;}
.y1da{bottom:570.315000px;}
.y202{bottom:571.215000px;}
.y2d{bottom:571.935000px;}
.yfa{bottom:576.975000px;}
.y57{bottom:577.335000px;}
.y151{bottom:579.135000px;}
.y11f{bottom:581.295000px;}
.y9a{bottom:582.555000px;}
.y194{bottom:583.815000px;}
.y2c{bottom:584.895000px;}
.y1d9{bottom:587.415000px;}
.y201{bottom:588.495000px;}
.y56{bottom:594.435000px;}
.yf9{bottom:595.155000px;}
.y150{bottom:596.055000px;}
.y2b{bottom:597.855000px;}
.y11e{bottom:598.395000px;}
.y99{bottom:599.835000px;}
.y193{bottom:600.915000px;}
.y1d8{bottom:604.695000px;}
.y200{bottom:605.775000px;}
.y2a{bottom:610.815000px;}
.y55{bottom:611.715000px;}
.y14f{bottom:611.895000px;}
.yf8{bottom:612.435000px;}
.y11d{bottom:615.675000px;}
.y98{bottom:616.935000px;}
.y192{bottom:618.195000px;}
.y1d7{bottom:621.975000px;}
.y1ff{bottom:623.055000px;}
.y29{bottom:623.775000px;}
.y54{bottom:628.995000px;}
.y14e{bottom:629.175000px;}
.yf7{bottom:629.715000px;}
.y11c{bottom:632.955000px;}
.y97{bottom:634.215000px;}
.y191{bottom:635.475000px;}
.y28{bottom:636.735000px;}
.y1d6{bottom:639.255000px;}
.y1fe{bottom:640.335000px;}
.y53{bottom:646.275000px;}
.yf6{bottom:648.075000px;}
.y11b{bottom:650.235000px;}
.y27{bottom:650.595000px;}
.y96{bottom:651.495000px;}
.y190{bottom:652.755000px;}
.y1d5{bottom:656.535000px;}
.y1fd{bottom:657.435000px;}
.y14d{bottom:663.375000px;}
.y26{bottom:663.555000px;}
.yf5{bottom:665.355000px;}
.y11a{bottom:667.545000px;}
.y95{bottom:668.805000px;}
.y74{bottom:669.525000px;}
.y18f{bottom:671.145000px;}
.y1d4{bottom:673.845000px;}
.y1fc{bottom:674.745000px;}
.y14c{bottom:679.245000px;}
.y25{bottom:680.865000px;}
.yf4{bottom:682.665000px;}
.y119{bottom:684.825000px;}
.y94{bottom:686.085000px;}
.y18e{bottom:688.425000px;}
.y1d3{bottom:690.945000px;}
.y1fb{bottom:692.025000px;}
.y14b{bottom:693.825000px;}
.y24{bottom:697.965000px;}
.yf3{bottom:700.845000px;}
.y118{bottom:701.925000px;}
.y93{bottom:703.365000px;}
.y18d{bottom:705.525000px;}
.y1d2{bottom:708.225000px;}
.y1fa{bottom:709.305000px;}
.y23{bottom:715.245000px;}
.yf2{bottom:718.125000px;}
.y117{bottom:719.205000px;}
.y18c{bottom:723.885000px;}
.y14a{bottom:724.245000px;}
.y92{bottom:724.965000px;}
.y1d1{bottom:725.505000px;}
.y1f9{bottom:726.585000px;}
.y22{bottom:732.525000px;}
.yf1{bottom:735.405000px;}
.y116{bottom:736.485000px;}
.y18b{bottom:741.165000px;}
.y1d0{bottom:742.785000px;}
.y21d{bottom:743.865000px;}
.y91{bottom:746.745000px;}
.y21{bottom:749.085000px;}
.yb4{bottom:749.805000px;}
.yf0{bottom:753.765000px;}
.y148{bottom:754.485000px;}
.y18a{bottom:758.445000px;}
.y1cf{bottom:760.065000px;}
.y21c{bottom:760.965000px;}
.y20{bottom:763.665000px;}
.y90{bottom:764.025000px;}
.yb3{bottom:767.085000px;}
.yef{bottom:771.045000px;}
.y189{bottom:776.805000px;}
.y1ce{bottom:777.345000px;}
.y21b{bottom:778.245000px;}
.y1f{bottom:780.045000px;}
.y8f{bottom:781.305000px;}
.yb2{bottom:784.365000px;}
.y147{bottom:784.725000px;}
.yee{bottom:788.325000px;}
.y188{bottom:793.905000px;}
.y1cd{bottom:794.445000px;}
.y1e{bottom:794.625000px;}
.y21a{bottom:795.525000px;}
.y8e{bottom:798.585000px;}
.yb1{bottom:801.465000px;}
.yed{bottom:804.345000px;}
.y187{bottom:811.185000px;}
.y1cc{bottom:811.725000px;}
.y1d{bottom:811.905000px;}
.y219{bottom:812.805000px;}
.y146{bottom:814.965000px;}
.y8d{bottom:815.865000px;}
.yb0{bottom:818.745000px;}
.y186{bottom:828.465000px;}
.y1cb{bottom:829.005000px;}
.y1c{bottom:829.185000px;}
.y218{bottom:830.085000px;}
.yea{bottom:830.625000px;}
.y8c{bottom:832.965000px;}
.yaf{bottom:836.025000px;}
.y1b{bottom:846.285000px;}
.y185{bottom:846.825000px;}
.y217{bottom:847.185000px;}
.y8b{bottom:850.245000px;}
.yae{bottom:853.305000px;}
.y1ca{bottom:861.045000px;}
.y145{bottom:861.765000px;}
.y1a{bottom:862.845000px;}
.y184{bottom:864.105000px;}
.y216{bottom:864.465000px;}
.y8a{bottom:867.525000px;}
.yad{bottom:870.585000px;}
.y19{bottom:877.425000px;}
.y144{bottom:878.865000px;}
.y215{bottom:881.745000px;}
.y183{bottom:882.465000px;}
.y89{bottom:884.805000px;}
.yac{bottom:887.685000px;}
.ye4{bottom:894.165000px;}
.y18{bottom:894.705000px;}
.y214{bottom:899.025000px;}
.y182{bottom:899.565000px;}
.y88{bottom:902.085000px;}
.yab{bottom:904.965000px;}
.y1c9{bottom:908.970000px;}
.y143{bottom:909.510000px;}
.y17{bottom:912.030000px;}
.y213{bottom:916.350000px;}
.y181{bottom:916.890000px;}
.y87{bottom:919.230000px;}
.yaa{bottom:922.290000px;}
.y16{bottom:929.130000px;}
.y212{bottom:933.630000px;}
.y180{bottom:935.250000px;}
.y86{bottom:936.510000px;}
.ya9{bottom:939.570000px;}
.y15{bottom:945.690000px;}
.y211{bottom:950.730000px;}
.y17f{bottom:952.530000px;}
.y85{bottom:953.790000px;}
.ya8{bottom:956.850000px;}
.y142{bottom:957.390000px;}
.ydc{bottom:957.930000px;}
.y14{bottom:960.990000px;}
.y210{bottom:968.010000px;}
.y17e{bottom:969.810000px;}
.y84{bottom:971.070000px;}
.y1c7{bottom:971.610000px;}
.ya7{bottom:974.130000px;}
.y13{bottom:981.690000px;}
.y20f{bottom:985.290000px;}
.y17d{bottom:987.990000px;}
.y83{bottom:988.350000px;}
.ya6{bottom:991.230000px;}
.y12{bottom:1002.390000px;}
.y20e{bottom:1002.570000px;}
.y141{bottom:1005.270000px;}
.y82{bottom:1005.630000px;}
.ya5{bottom:1008.510000px;}
.y20d{bottom:1019.850000px;}
.yd8{bottom:1021.470000px;}
.y11{bottom:1021.650000px;}
.y17c{bottom:1022.550000px;}
.y81{bottom:1022.730000px;}
.ya4{bottom:1025.790000px;}
.y1c6{bottom:1034.250000px;}
.y10{bottom:1036.950000px;}
.y17b{bottom:1039.830000px;}
.y80{bottom:1040.010000px;}
.ya3{bottom:1043.070000px;}
.y13d{bottom:1053.150000px;}
.y17a{bottom:1057.110000px;}
.y7f{bottom:1057.290000px;}
.yf{bottom:1057.650000px;}
.ya2{bottom:1060.350000px;}
.yd7{bottom:1065.390000px;}
.y7e{bottom:1074.570000px;}
.y179{bottom:1075.470000px;}
.ya1{bottom:1077.630000px;}
.ye{bottom:1078.350000px;}
.y1c4{bottom:1082.130000px;}
.yd6{bottom:1082.670000px;}
.y7d{bottom:1091.850000px;}
.y178{bottom:1092.570000px;}
.ya0{bottom:1094.730000px;}
.yd{bottom:1097.610000px;}
.yd5{bottom:1099.050000px;}
.y13c{bottom:1101.030000px;}
.y7c{bottom:1109.130000px;}
.y177{bottom:1110.930000px;}
.yc{bottom:1112.010000px;}
.y7b{bottom:1126.230000px;}
.y176{bottom:1128.210000px;}
.yb{bottom:1129.290000px;}
.y1c3{bottom:1130.010000px;}
.ya{bottom:1146.570000px;}
.y9{bottom:1163.880000px;}
.y4{bottom:1184.940000px;}
.y7a{bottom:1187.820000px;}
.y76{bottom:1199.880000px;}
.y1{bottom:1200.060000px;}
.h3d{height:5.729063px;}
.h32{height:14.760000px;}
.h35{height:15.480000px;}
.h39{height:15.660000px;}
.h7{height:17.903320px;}
.h2{height:20.340000px;}
.h1c{height:20.520000px;}
.h8{height:21.420000px;}
.h22{height:22.500000px;}
.h3b{height:23.319141px;}
.h1d{height:27.210938px;}
.h2d{height:29.340000px;}
.h25{height:29.520000px;}
.h3c{height:32.580000px;}
.h1e{height:32.835938px;}
.h2a{height:35.332031px;}
.h2e{height:36.360000px;}
.h15{height:37.386562px;}
.h16{height:37.829531px;}
.h5{height:38.089687px;}
.h21{height:39.420000px;}
.h20{height:40.680000px;}
.h13{height:40.964766px;}
.h24{height:40.985156px;}
.h3{height:44.000156px;}
.h14{height:44.496211px;}
.h17{height:44.518359px;}
.h26{height:45.035156px;}
.h23{height:45.720000px;}
.h2c{height:47.160000px;}
.h34{height:47.196000px;}
.h11{height:47.321367px;}
.hf{height:47.344922px;}
.hc{height:48.616875px;}
.h19{height:49.838906px;}
.h9{height:50.068125px;}
.h18{height:50.171484px;}
.h1f{height:51.677227px;}
.h36{height:52.971680px;}
.h4{height:52.998047px;}
.h38{height:53.709961px;}
.h33{height:54.421875px;}
.h28{height:55.503491px;}
.h10{height:58.621992px;}
.hb{height:58.651172px;}
.h6{height:59.439023px;}
.h12{height:60.226875px;}
.h2b{height:61.423863px;}
.h2f{height:61.920000px;}
.he{height:62.261719px;}
.h27{height:62.820000px;}
.h29{height:63.036000px;}
.ha{height:65.884219px;}
.hd{height:72.562500px;}
.h1a{height:73.260000px;}
.h31{height:76.680000px;}
.h37{height:77.580000px;}
.h3a{height:77.616000px;}
.h30{height:91.476000px;}
.h1b{height:282.656250px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:21.060000px;}
.w7{width:71.136000px;}
.w23{width:84.960000px;}
.w1b{width:91.260000px;}
.w16{width:94.680000px;}
.w1f{width:105.480000px;}
.w13{width:117.180000px;}
.w18{width:158.610000px;}
.w10{width:183.960000px;}
.wf{width:185.220000px;}
.w1e{width:185.970000px;}
.w1c{width:187.410000px;}
.w11{width:207.720000px;}
.w1d{width:212.070000px;}
.w4{width:223.230000px;}
.w3{width:228.450000px;}
.w2{width:228.630000px;}
.w8{width:229.350000px;}
.wc{width:239.940000px;}
.wd{width:248.220000px;}
.w15{width:253.830000px;}
.w17{width:264.810000px;}
.w21{width:275.070000px;}
.w20{width:296.715000px;}
.w14{width:306.435000px;}
.w19{width:338.970000px;}
.w1a{width:339.195000px;}
.wa{width:434.235000px;}
.we{width:504.900000px;}
.w24{width:595.545000px;}
.wb{width:680.325000px;}
.w22{width:682.485000px;}
.w12{width:684.645000px;}
.w6{width:690.945000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5a{left:1.980000px;}
.x2{left:8.100000px;}
.x1d{left:9.180000px;}
.x1f{left:10.260000px;}
.x1b{left:11.340000px;}
.x45{left:13.140000px;}
.x3d{left:14.220000px;}
.x4e{left:16.740000px;}
.x55{left:18.540000px;}
.x39{left:19.980000px;}
.x47{left:21.990000px;}
.x51{left:23.760000px;}
.x41{left:25.410000px;}
.x34{left:26.460000px;}
.x3a{left:28.980000px;}
.x4d{left:32.760000px;}
.x43{left:37.800000px;}
.x33{left:39.960000px;}
.x48{left:41.430000px;}
.x44{left:43.020000px;}
.x3f{left:52.200000px;}
.x29{left:53.670000px;}
.x59{left:55.074000px;}
.x27{left:58.425000px;}
.x2d{left:60.870000px;}
.x46{left:64.650000px;}
.x38{left:65.700000px;}
.x4{left:70.740000px;}
.x31{left:72.075000px;}
.x36{left:77.085000px;}
.x2a{left:85.890000px;}
.x54{left:88.020000px;}
.x6{left:95.796000px;}
.x1c{left:104.256000px;}
.x1{left:106.416000px;}
.x20{left:108.360000px;}
.x5b{left:114.516000px;}
.xd{left:120.455987px;}
.xc{left:122.255987px;}
.x17{left:127.655987px;}
.x57{left:133.235987px;}
.x9{left:137.375987px;}
.x49{left:139.355987px;}
.x50{left:146.015987px;}
.x8{left:152.489987px;}
.xa{left:157.889987px;}
.x58{left:159.869987px;}
.x4a{left:166.349987px;}
.x28{left:183.960000px;}
.x2c{left:188.309987px;}
.x2b{left:199.080000px;}
.x3e{left:202.530000px;}
.xe{left:205.949987px;}
.x3b{left:210.269987px;}
.x52{left:213.330000px;}
.x35{left:225.030000px;}
.x22{left:230.969987px;}
.x23{left:313.454987px;}
.x3c{left:315.614987px;}
.x21{left:326.739000px;}
.x4f{left:329.439000px;}
.x32{left:330.519000px;}
.x7{left:332.859000px;}
.x24{left:333.974987px;}
.x3{left:335.055000px;}
.x30{left:344.880000px;}
.x1e{left:354.675000px;}
.x2f{left:374.654987px;}
.x4b{left:387.255000px;}
.x56{left:418.574987px;}
.xf{left:440.894987px;}
.xb{left:446.474987px;}
.x10{left:448.814987px;}
.x19{left:459.254987px;}
.x40{left:468.075000px;}
.x1a{left:480.524987px;}
.x26{left:482.940000px;}
.x53{left:510.945000px;}
.x18{left:518.144987px;}
.x37{left:532.185000px;}
.x5{left:563.505000px;}
.x25{left:570.164987px;}
.x15{left:587.984987px;}
.x11{left:596.984987px;}
.x4c{left:600.045000px;}
.x12{left:607.424987px;}
.x2e{left:619.124987px;}
.x42{left:627.405000px;}
.x16{left:661.244987px;}
.x14{left:664.664987px;}
.x13{left:786.749987px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v2{vertical-align:-26.240000pt;}
.v0{vertical-align:0.000000pt;}
.ls3c{letter-spacing:-0.656000pt;}
.ls3e{letter-spacing:-0.544000pt;}
.ls3b{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.329067pt;}
.ls10{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.269867pt;}
.ls2c{letter-spacing:-0.259200pt;}
.ls3f{letter-spacing:-0.239467pt;}
.ls3d{letter-spacing:-0.096000pt;}
.ls11{letter-spacing:-0.047360pt;}
.ls3a{letter-spacing:-0.016000pt;}
.lse{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.013440pt;}
.ls1b{letter-spacing:0.016000pt;}
.ls3{letter-spacing:0.047360pt;}
.ls32{letter-spacing:0.094933pt;}
.ls37{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.116480pt;}
.ls4{letter-spacing:0.160000pt;}
.ls36{letter-spacing:0.176000pt;}
.ls13{letter-spacing:0.183467pt;}
.ls15{letter-spacing:0.192000pt;}
.ls2a{letter-spacing:0.230933pt;}
.ls1f{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.245760pt;}
.ls2{letter-spacing:0.281600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls2b{letter-spacing:0.391040pt;}
.ls14{letter-spacing:0.409067pt;}
.ls39{letter-spacing:0.416000pt;}
.ls24{letter-spacing:0.656000pt;}
.ls23{letter-spacing:0.800000pt;}
.ls20{letter-spacing:1.440000pt;}
.ls6{letter-spacing:2.720000pt;}
.ls34{letter-spacing:3.360000pt;}
.ls27{letter-spacing:4.640000pt;}
.ls26{letter-spacing:4.800000pt;}
.lsa{letter-spacing:5.280000pt;}
.ls9{letter-spacing:5.920000pt;}
.ls1e{letter-spacing:7.632640pt;}
.ls25{letter-spacing:7.840000pt;}
.ls30{letter-spacing:8.480000pt;}
.ls1c{letter-spacing:11.040000pt;}
.ls33{letter-spacing:12.960000pt;}
.ls2f{letter-spacing:13.392640pt;}
.ls22{letter-spacing:13.600000pt;}
.ls1d{letter-spacing:14.176000pt;}
.ls29{letter-spacing:17.440000pt;}
.ls2e{letter-spacing:18.720000pt;}
.ls8{letter-spacing:22.560000pt;}
.ls35{letter-spacing:23.200000pt;}
.ls31{letter-spacing:26.560000pt;}
.lsb{letter-spacing:28.320000pt;}
.ls17{letter-spacing:28.960000pt;}
.lsd{letter-spacing:35.360000pt;}
.ls2d{letter-spacing:39.611307pt;}
.ls1a{letter-spacing:40.458667pt;}
.lsc{letter-spacing:40.480000pt;}
.ls21{letter-spacing:43.146667pt;}
.ls28{letter-spacing:43.680000pt;}
.ls16{letter-spacing:48.138667pt;}
.ls38{letter-spacing:57.120000pt;}
.ls18{letter-spacing:62.240000pt;}
.ls19{letter-spacing:1120.298667pt;}
.wsc{word-spacing:-64.000000pt;}
.ws10{word-spacing:-53.120000pt;}
.wsf{word-spacing:-48.000000pt;}
.ws3{word-spacing:-14.471680pt;}
.wsb{word-spacing:-13.689067pt;}
.ws8{word-spacing:-13.600000pt;}
.ws13{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.463467pt;}
.ws5{word-spacing:-13.440000pt;}
.ws15{word-spacing:-13.374933pt;}
.ws4{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.ws12{word-spacing:-13.232640pt;}
.ws14{word-spacing:-13.020800pt;}
.ws6{word-spacing:-12.960000pt;}
.ws16{word-spacing:-12.416000pt;}
.ws11{word-spacing:-12.192000pt;}
.wse{word-spacing:-12.000000pt;}
.ws17{word-spacing:-11.984000pt;}
.ws19{word-spacing:-11.904000pt;}
.ws18{word-spacing:-11.344000pt;}
.ws1a{word-spacing:-10.480533pt;}
.ws0{word-spacing:-10.334080pt;}
.ws9{word-spacing:-10.080000pt;}
.ws2{word-spacing:-8.945920pt;}
.ws1{word-spacing:-8.676053pt;}
.wsd{word-spacing:0.000000pt;}
._30{margin-left:-3.452800pt;}
._19{margin-left:-2.374400pt;}
._1{margin-left:-1.025280pt;}
._0{width:0.925653pt;}
._2{width:2.091947pt;}
._4{width:3.081600pt;}
._9{width:4.654080pt;}
._8{width:5.621760pt;}
._c{width:7.073280pt;}
._5{width:8.668800pt;}
._1f{width:9.614720pt;}
._22{width:10.889600pt;}
._32{width:11.792640pt;}
._12{width:12.827520pt;}
._11{width:13.789440pt;}
._1d{width:14.797867pt;}
._6{width:15.903360pt;}
._7{width:17.153280pt;}
._14{width:18.133120pt;}
._20{width:19.070080pt;}
._1a{width:20.079360pt;}
._a{width:21.692160pt;}
._b{width:22.596480pt;}
._13{width:24.030720pt;}
._3{width:25.200000pt;}
._18{width:26.506880pt;}
._d{width:27.699840pt;}
._1b{width:29.044693pt;}
._1c{width:30.308907pt;}
._10{width:31.749120pt;}
._1e{width:33.412480pt;}
._e{width:34.732800pt;}
._f{width:35.683200pt;}
._23{width:36.759040pt;}
._27{width:38.193280pt;}
._26{width:39.202560pt;}
._21{width:40.158720pt;}
._2e{width:41.763200pt;}
._28{width:42.708480pt;}
._2a{width:44.195840pt;}
._33{width:45.129387pt;}
._29{width:46.055040pt;}
._2b{width:48.411307pt;}
._16{width:49.341867pt;}
._15{width:50.410880pt;}
._2d{width:51.397547pt;}
._31{width:52.323200pt;}
._2f{width:53.651200pt;}
._25{width:55.191680pt;}
._37{width:56.354560pt;}
._2c{width:57.741440pt;}
._17{width:60.716160pt;}
._34{width:62.127787pt;}
._24{width:73.123627pt;}
._36{width:78.086400pt;}
._35{width:140.945493pt;}
.fsc{font-size:5.120000pt;}
.fs6{font-size:16.000000pt;}
.fsb{font-size:21.120000pt;}
.fs4{font-size:32.000000pt;}
.fs1{font-size:37.120000pt;}
.fs8{font-size:40.320000pt;}
.fs0{font-size:42.880000pt;}
.fs9{font-size:45.440000pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fsa{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y79{bottom:1.760000pt;}
.yda{bottom:2.400000pt;}
.ye9{bottom:2.560000pt;}
.y227{bottom:2.720000pt;}
.y167{bottom:2.880000pt;}
.ye3{bottom:3.200000pt;}
.y75{bottom:3.680000pt;}
.y3{bottom:3.840000pt;}
.y2{bottom:5.280000pt;}
.yd1{bottom:5.506667pt;}
.y7{bottom:5.600000pt;}
.ycf{bottom:6.266667pt;}
.y77{bottom:6.400000pt;}
.ycd{bottom:6.586667pt;}
.yd4{bottom:8.826667pt;}
.ydb{bottom:8.960000pt;}
.y16c{bottom:9.440000pt;}
.yec{bottom:9.760000pt;}
.y1c5{bottom:10.240000pt;}
.y232{bottom:10.560000pt;}
.y78{bottom:10.880000pt;}
.y153{bottom:12.000000pt;}
.y149{bottom:15.360000pt;}
.yd9{bottom:15.520000pt;}
.y157{bottom:15.680000pt;}
.y165{bottom:16.000000pt;}
.ye0{bottom:16.320000pt;}
.y13f{bottom:16.480000pt;}
.y22c{bottom:16.506667pt;}
.ye8{bottom:16.520000pt;}
.y13e{bottom:16.800000pt;}
.y158{bottom:17.280000pt;}
.yce{bottom:20.986667pt;}
.y161{bottom:22.240000pt;}
.y16b{bottom:22.560000pt;}
.y1c8{bottom:23.040000pt;}
.y155{bottom:23.360000pt;}
.ydd{bottom:23.680000pt;}
.ye5{bottom:23.880000pt;}
.y164{bottom:29.120000pt;}
.y8{bottom:29.280000pt;}
.ye2{bottom:29.440000pt;}
.y156{bottom:29.600000pt;}
.y140{bottom:29.920000pt;}
.y224{bottom:30.240000pt;}
.y22b{bottom:30.266667pt;}
.ydf{bottom:30.400000pt;}
.ye7{bottom:30.440000pt;}
.y160{bottom:36.160000pt;}
.y15a{bottom:36.480000pt;}
.yeb{bottom:36.960000pt;}
.y15d{bottom:42.720000pt;}
.y170{bottom:42.746667pt;}
.y163{bottom:43.040000pt;}
.y6{bottom:43.200000pt;}
.ye1{bottom:43.520000pt;}
.y171{bottom:43.546667pt;}
.y223{bottom:44.000000pt;}
.y22a{bottom:44.026667pt;}
.yde{bottom:44.320000pt;}
.ye6{bottom:44.520000pt;}
.y15f{bottom:49.320000pt;}
.y16a{bottom:49.600000pt;}
.y173{bottom:49.626667pt;}
.y162{bottom:56.200000pt;}
.y169{bottom:56.640000pt;}
.y16f{bottom:56.666667pt;}
.y15c{bottom:56.680000pt;}
.y222{bottom:57.760000pt;}
.y229{bottom:57.786667pt;}
.y172{bottom:62.906667pt;}
.y15e{bottom:63.240000pt;}
.y5{bottom:64.800000pt;}
.y16e{bottom:69.786667pt;}
.y15b{bottom:69.800000pt;}
.y234{bottom:75.840000pt;}
.y233{bottom:77.440000pt;}
.y73{bottom:78.400000pt;}
.y231{bottom:78.720000pt;}
.y52{bottom:82.880000pt;}
.y1c2{bottom:83.840000pt;}
.y1af{bottom:85.760000pt;}
.y13b{bottom:87.360000pt;}
.yca{bottom:89.920000pt;}
.y72{bottom:93.760000pt;}
.y51{bottom:94.400000pt;}
.y175{bottom:94.560000pt;}
.y115{bottom:95.840000pt;}
.y1c1{bottom:99.040000pt;}
.y1f8{bottom:100.160000pt;}
.y1ae{bottom:100.960000pt;}
.y13a{bottom:102.560000pt;}
.yc9{bottom:105.280000pt;}
.y50{bottom:105.920000pt;}
.y230{bottom:108.960000pt;}
.y71{bottom:109.120000pt;}
.y174{bottom:109.760000pt;}
.y114{bottom:111.200000pt;}
.y1c0{bottom:114.400000pt;}
.y1f7{bottom:115.520000pt;}
.y1ad{bottom:116.320000pt;}
.y22f{bottom:116.800000pt;}
.y4f{bottom:117.440000pt;}
.y139{bottom:117.920000pt;}
.yc8{bottom:120.640000pt;}
.y16d{bottom:122.880000pt;}
.y70{bottom:124.480000pt;}
.y113{bottom:126.560000pt;}
.y4e{bottom:128.960000pt;}
.y1bf{bottom:129.760000pt;}
.y1f6{bottom:130.880000pt;}
.y1ac{bottom:131.680000pt;}
.y22e{bottom:132.160000pt;}
.y138{bottom:133.280000pt;}
.yc7{bottom:136.000000pt;}
.y6f{bottom:139.680000pt;}
.y4d{bottom:140.320000pt;}
.y112{bottom:141.920000pt;}
.y1be{bottom:145.120000pt;}
.y1f5{bottom:146.240000pt;}
.y1ab{bottom:147.040000pt;}
.y22d{bottom:147.360000pt;}
.y137{bottom:148.640000pt;}
.yc6{bottom:151.360000pt;}
.y4c{bottom:151.840000pt;}
.y6e{bottom:155.040000pt;}
.y111{bottom:157.280000pt;}
.y228{bottom:159.840000pt;}
.y1bd{bottom:160.480000pt;}
.y1f4{bottom:161.440000pt;}
.y1aa{bottom:162.400000pt;}
.y4b{bottom:163.386667pt;}
.y136{bottom:164.026667pt;}
.yc5{bottom:166.586667pt;}
.y6d{bottom:170.426667pt;}
.y110{bottom:172.666667pt;}
.y4a{bottom:174.906667pt;}
.y1bc{bottom:175.706667pt;}
.y1f3{bottom:176.826667pt;}
.y1a9{bottom:177.786667pt;}
.y135{bottom:179.226667pt;}
.yc4{bottom:181.946667pt;}
.y6c{bottom:185.786667pt;}
.y49{bottom:186.426667pt;}
.y10f{bottom:187.866667pt;}
.y1bb{bottom:191.066667pt;}
.y1f2{bottom:192.186667pt;}
.y1a8{bottom:192.986667pt;}
.y134{bottom:194.586667pt;}
.yc3{bottom:197.306667pt;}
.y48{bottom:197.946667pt;}
.y6b{bottom:201.146667pt;}
.y10e{bottom:203.226667pt;}
.y168{bottom:204.826667pt;}
.y1ba{bottom:206.426667pt;}
.y1ed{bottom:207.546667pt;}
.y1a7{bottom:208.346667pt;}
.y47{bottom:209.466667pt;}
.y133{bottom:209.946667pt;}
.yc2{bottom:212.666667pt;}
.y1f1{bottom:215.546667pt;}
.y6a{bottom:216.506667pt;}
.y10d{bottom:218.586667pt;}
.y46{bottom:220.826667pt;}
.y1b9{bottom:221.786667pt;}
.y1ec{bottom:222.906667pt;}
.y1a6{bottom:223.706667pt;}
.y132{bottom:225.306667pt;}
.yc1{bottom:228.026667pt;}
.y226{bottom:228.826667pt;}
.y1f0{bottom:230.906667pt;}
.y69{bottom:231.706667pt;}
.y45{bottom:232.346667pt;}
.y10c{bottom:233.946667pt;}
.y1b8{bottom:237.146667pt;}
.y1eb{bottom:238.266667pt;}
.y1a5{bottom:239.066667pt;}
.y131{bottom:240.666667pt;}
.y225{bottom:242.746667pt;}
.y44{bottom:243.866667pt;}
.y1ef{bottom:246.266667pt;}
.y68{bottom:247.066667pt;}
.yc0{bottom:247.866667pt;}
.y10b{bottom:249.306667pt;}
.y1b7{bottom:252.506667pt;}
.y1a4{bottom:254.426667pt;}
.y43{bottom:255.386667pt;}
.y130{bottom:256.026667pt;}
.y221{bottom:256.506667pt;}
.y1ea{bottom:257.466667pt;}
.ycc{bottom:258.400000pt;}
.y1ee{bottom:261.466667pt;}
.y67{bottom:262.426667pt;}
.ybf{bottom:263.226667pt;}
.y10a{bottom:265.626667pt;}
.y42{bottom:266.906667pt;}
.y1b6{bottom:267.706667pt;}
.y1a3{bottom:269.786667pt;}
.y12f{bottom:271.226667pt;}
.y166{bottom:273.626667pt;}
.y1e9{bottom:276.826667pt;}
.y66{bottom:277.786667pt;}
.y41{bottom:278.426667pt;}
.ycb{bottom:279.866667pt;}
.y109{bottom:280.826667pt;}
.y1b5{bottom:283.066667pt;}
.y1a2{bottom:284.986667pt;}
.y12e{bottom:286.586667pt;}
.y40{bottom:289.946667pt;}
.y1e8{bottom:292.186667pt;}
.y65{bottom:293.146667pt;}
.ybe{bottom:293.946667pt;}
.y108{bottom:296.186667pt;}
.y1b4{bottom:298.426667pt;}
.y1a1{bottom:300.346667pt;}
.y3f{bottom:301.466667pt;}
.y12d{bottom:301.946667pt;}
.y1e7{bottom:307.546667pt;}
.y64{bottom:308.506667pt;}
.ybd{bottom:309.306667pt;}
.y107{bottom:312.506667pt;}
.y3e{bottom:312.826667pt;}
.y1b3{bottom:313.786667pt;}
.y1a0{bottom:315.706667pt;}
.y12c{bottom:317.306667pt;}
.y1e6{bottom:322.906667pt;}
.y63{bottom:323.706667pt;}
.y3d{bottom:324.346667pt;}
.ybc{bottom:324.506667pt;}
.y220{bottom:325.466667pt;}
.yd3{bottom:326.400000pt;}
.y106{bottom:328.826667pt;}
.y1b2{bottom:329.146667pt;}
.y159{bottom:329.306667pt;}
.y19f{bottom:331.066667pt;}
.y12b{bottom:332.666667pt;}
.y3c{bottom:335.866667pt;}
.y1e5{bottom:338.266667pt;}
.y62{bottom:339.066667pt;}
.ybb{bottom:339.866667pt;}
.y21f{bottom:342.106667pt;}
.y105{bottom:344.186667pt;}
.y1b1{bottom:344.506667pt;}
.y3b{bottom:347.386667pt;}
.y12a{bottom:348.026667pt;}
.yd2{bottom:350.106667pt;}
.y1e4{bottom:353.466667pt;}
.y20c{bottom:354.426667pt;}
.yba{bottom:355.226667pt;}
.y21e{bottom:356.826667pt;}
.y61{bottom:356.986667pt;}
.y3a{bottom:358.906667pt;}
.y104{bottom:359.386667pt;}
.y1b0{bottom:359.706667pt;}
.y19e{bottom:362.586667pt;}
.y129{bottom:363.226667pt;}
.y1e3{bottom:368.826667pt;}
.y20b{bottom:369.786667pt;}
.yb9{bottom:370.266667pt;}
.y39{bottom:370.426667pt;}
.y103{bottom:374.746667pt;}
.y60{bottom:375.066667pt;}
.y128{bottom:378.626667pt;}
.y19d{bottom:378.946667pt;}
.y38{bottom:381.986667pt;}
.yb8{bottom:384.066667pt;}
.y1e2{bottom:384.226667pt;}
.y20a{bottom:385.186667pt;}
.y102{bottom:390.146667pt;}
.y5f{bottom:390.466667pt;}
.y37{bottom:393.506667pt;}
.y127{bottom:393.986667pt;}
.y19c{bottom:394.306667pt;}
.yd0{bottom:397.600000pt;}
.yb7{bottom:397.986667pt;}
.y1e1{bottom:399.586667pt;}
.y209{bottom:400.386667pt;}
.y36{bottom:404.866667pt;}
.y101{bottom:405.506667pt;}
.y5e{bottom:405.826667pt;}
.y126{bottom:409.346667pt;}
.y19b{bottom:409.666667pt;}
.y154{bottom:411.266667pt;}
.yb6{bottom:411.746667pt;}
.y1e0{bottom:414.946667pt;}
.y208{bottom:415.746667pt;}
.y35{bottom:416.386667pt;}
.y100{bottom:420.866667pt;}
.y5d{bottom:421.186667pt;}
.y125{bottom:424.706667pt;}
.yb5{bottom:425.826667pt;}
.y19a{bottom:425.986667pt;}
.y34{bottom:427.906667pt;}
.y1df{bottom:430.306667pt;}
.y207{bottom:431.106667pt;}
.yff{bottom:436.226667pt;}
.y5c{bottom:436.386667pt;}
.y33{bottom:439.426667pt;}
.y124{bottom:439.906667pt;}
.y9f{bottom:441.186667pt;}
.y199{bottom:441.346667pt;}
.y1de{bottom:445.506667pt;}
.y206{bottom:446.466667pt;}
.y32{bottom:450.946667pt;}
.yfe{bottom:451.426667pt;}
.y5b{bottom:451.746667pt;}
.y123{bottom:455.266667pt;}
.y9e{bottom:456.386667pt;}
.y198{bottom:457.506667pt;}
.y1dd{bottom:460.866667pt;}
.y205{bottom:461.826667pt;}
.y31{bottom:462.466667pt;}
.yfd{bottom:466.786667pt;}
.y152{bottom:466.946667pt;}
.y5a{bottom:467.106667pt;}
.y122{bottom:470.626667pt;}
.y9d{bottom:471.746667pt;}
.y197{bottom:472.866667pt;}
.y30{bottom:473.986667pt;}
.y1dc{bottom:476.226667pt;}
.y204{bottom:477.186667pt;}
.yfc{bottom:482.146667pt;}
.y59{bottom:482.466667pt;}
.y2f{bottom:485.346667pt;}
.y121{bottom:485.986667pt;}
.y9c{bottom:487.106667pt;}
.y196{bottom:488.226667pt;}
.y1db{bottom:491.586667pt;}
.y203{bottom:492.386667pt;}
.y2e{bottom:496.866667pt;}
.yfb{bottom:497.506667pt;}
.y58{bottom:497.826667pt;}
.y120{bottom:501.346667pt;}
.y9b{bottom:502.466667pt;}
.y195{bottom:503.586667pt;}
.y1da{bottom:506.946667pt;}
.y202{bottom:507.746667pt;}
.y2d{bottom:508.386667pt;}
.yfa{bottom:512.866667pt;}
.y57{bottom:513.186667pt;}
.y151{bottom:514.786667pt;}
.y11f{bottom:516.706667pt;}
.y9a{bottom:517.826667pt;}
.y194{bottom:518.946667pt;}
.y2c{bottom:519.906667pt;}
.y1d9{bottom:522.146667pt;}
.y201{bottom:523.106667pt;}
.y56{bottom:528.386667pt;}
.yf9{bottom:529.026667pt;}
.y150{bottom:529.826667pt;}
.y2b{bottom:531.426667pt;}
.y11e{bottom:531.906667pt;}
.y99{bottom:533.186667pt;}
.y193{bottom:534.146667pt;}
.y1d8{bottom:537.506667pt;}
.y200{bottom:538.466667pt;}
.y2a{bottom:542.946667pt;}
.y55{bottom:543.746667pt;}
.y14f{bottom:543.906667pt;}
.yf8{bottom:544.386667pt;}
.y11d{bottom:547.266667pt;}
.y98{bottom:548.386667pt;}
.y192{bottom:549.506667pt;}
.y1d7{bottom:552.866667pt;}
.y1ff{bottom:553.826667pt;}
.y29{bottom:554.466667pt;}
.y54{bottom:559.106667pt;}
.y14e{bottom:559.266667pt;}
.yf7{bottom:559.746667pt;}
.y11c{bottom:562.626667pt;}
.y97{bottom:563.746667pt;}
.y191{bottom:564.866667pt;}
.y28{bottom:565.986667pt;}
.y1d6{bottom:568.226667pt;}
.y1fe{bottom:569.186667pt;}
.y53{bottom:574.466667pt;}
.yf6{bottom:576.066667pt;}
.y11b{bottom:577.986667pt;}
.y27{bottom:578.306667pt;}
.y96{bottom:579.106667pt;}
.y190{bottom:580.226667pt;}
.y1d5{bottom:583.586667pt;}
.y1fd{bottom:584.386667pt;}
.y14d{bottom:589.666667pt;}
.y26{bottom:589.826667pt;}
.yf5{bottom:591.426667pt;}
.y11a{bottom:593.373333pt;}
.y95{bottom:594.493333pt;}
.y74{bottom:595.133333pt;}
.y18f{bottom:596.573333pt;}
.y1d4{bottom:598.973333pt;}
.y1fc{bottom:599.773333pt;}
.y14c{bottom:603.773333pt;}
.y25{bottom:605.213333pt;}
.yf4{bottom:606.813333pt;}
.y119{bottom:608.733333pt;}
.y94{bottom:609.853333pt;}
.y18e{bottom:611.933333pt;}
.y1d3{bottom:614.173333pt;}
.y1fb{bottom:615.133333pt;}
.y14b{bottom:616.733333pt;}
.y24{bottom:620.413333pt;}
.yf3{bottom:622.973333pt;}
.y118{bottom:623.933333pt;}
.y93{bottom:625.213333pt;}
.y18d{bottom:627.133333pt;}
.y1d2{bottom:629.533333pt;}
.y1fa{bottom:630.493333pt;}
.y23{bottom:635.773333pt;}
.yf2{bottom:638.333333pt;}
.y117{bottom:639.293333pt;}
.y18c{bottom:643.453333pt;}
.y14a{bottom:643.773333pt;}
.y92{bottom:644.413333pt;}
.y1d1{bottom:644.893333pt;}
.y1f9{bottom:645.853333pt;}
.y22{bottom:651.133333pt;}
.yf1{bottom:653.693333pt;}
.y116{bottom:654.653333pt;}
.y18b{bottom:658.813333pt;}
.y1d0{bottom:660.253333pt;}
.y21d{bottom:661.213333pt;}
.y91{bottom:663.773333pt;}
.y21{bottom:665.853333pt;}
.yb4{bottom:666.493333pt;}
.yf0{bottom:670.013333pt;}
.y148{bottom:670.653333pt;}
.y18a{bottom:674.173333pt;}
.y1cf{bottom:675.613333pt;}
.y21c{bottom:676.413333pt;}
.y20{bottom:678.813333pt;}
.y90{bottom:679.133333pt;}
.yb3{bottom:681.853333pt;}
.yef{bottom:685.373333pt;}
.y189{bottom:690.493333pt;}
.y1ce{bottom:690.973333pt;}
.y21b{bottom:691.773333pt;}
.y1f{bottom:693.373333pt;}
.y8f{bottom:694.493333pt;}
.yb2{bottom:697.213333pt;}
.y147{bottom:697.533333pt;}
.yee{bottom:700.733333pt;}
.y188{bottom:705.693333pt;}
.y1cd{bottom:706.173333pt;}
.y1e{bottom:706.333333pt;}
.y21a{bottom:707.133333pt;}
.y8e{bottom:709.853333pt;}
.yb1{bottom:712.413333pt;}
.yed{bottom:714.973333pt;}
.y187{bottom:721.053333pt;}
.y1cc{bottom:721.533333pt;}
.y1d{bottom:721.693333pt;}
.y219{bottom:722.493333pt;}
.y146{bottom:724.413333pt;}
.y8d{bottom:725.213333pt;}
.yb0{bottom:727.773333pt;}
.y186{bottom:736.413333pt;}
.y1cb{bottom:736.893333pt;}
.y1c{bottom:737.053333pt;}
.y218{bottom:737.853333pt;}
.yea{bottom:738.333333pt;}
.y8c{bottom:740.413333pt;}
.yaf{bottom:743.133333pt;}
.y1b{bottom:752.253333pt;}
.y185{bottom:752.733333pt;}
.y217{bottom:753.053333pt;}
.y8b{bottom:755.773333pt;}
.yae{bottom:758.493333pt;}
.y1ca{bottom:765.373333pt;}
.y145{bottom:766.013333pt;}
.y1a{bottom:766.973333pt;}
.y184{bottom:768.093333pt;}
.y216{bottom:768.413333pt;}
.y8a{bottom:771.133333pt;}
.yad{bottom:773.853333pt;}
.y19{bottom:779.933333pt;}
.y144{bottom:781.213333pt;}
.y215{bottom:783.773333pt;}
.y183{bottom:784.413333pt;}
.y89{bottom:786.493333pt;}
.yac{bottom:789.053333pt;}
.ye4{bottom:794.813333pt;}
.y18{bottom:795.293333pt;}
.y214{bottom:799.133333pt;}
.y182{bottom:799.613333pt;}
.y88{bottom:801.853333pt;}
.yab{bottom:804.413333pt;}
.y1c9{bottom:807.973333pt;}
.y143{bottom:808.453333pt;}
.y17{bottom:810.693333pt;}
.y213{bottom:814.533333pt;}
.y181{bottom:815.013333pt;}
.y87{bottom:817.093333pt;}
.yaa{bottom:819.813333pt;}
.y16{bottom:825.893333pt;}
.y212{bottom:829.893333pt;}
.y180{bottom:831.333333pt;}
.y86{bottom:832.453333pt;}
.ya9{bottom:835.173333pt;}
.y15{bottom:840.613333pt;}
.y211{bottom:845.093333pt;}
.y17f{bottom:846.693333pt;}
.y85{bottom:847.813333pt;}
.ya8{bottom:850.533333pt;}
.y142{bottom:851.013333pt;}
.ydc{bottom:851.493333pt;}
.y14{bottom:854.213333pt;}
.y210{bottom:860.453333pt;}
.y17e{bottom:862.053333pt;}
.y84{bottom:863.173333pt;}
.y1c7{bottom:863.653333pt;}
.ya7{bottom:865.893333pt;}
.y13{bottom:872.613333pt;}
.y20f{bottom:875.813333pt;}
.y17d{bottom:878.213333pt;}
.y83{bottom:878.533333pt;}
.ya6{bottom:881.093333pt;}
.y12{bottom:891.013333pt;}
.y20e{bottom:891.173333pt;}
.y141{bottom:893.573333pt;}
.y82{bottom:893.893333pt;}
.ya5{bottom:896.453333pt;}
.y20d{bottom:906.533333pt;}
.yd8{bottom:907.973333pt;}
.y11{bottom:908.133333pt;}
.y17c{bottom:908.933333pt;}
.y81{bottom:909.093333pt;}
.ya4{bottom:911.813333pt;}
.y1c6{bottom:919.333333pt;}
.y10{bottom:921.733333pt;}
.y17b{bottom:924.293333pt;}
.y80{bottom:924.453333pt;}
.ya3{bottom:927.173333pt;}
.y13d{bottom:936.133333pt;}
.y17a{bottom:939.653333pt;}
.y7f{bottom:939.813333pt;}
.yf{bottom:940.133333pt;}
.ya2{bottom:942.533333pt;}
.yd7{bottom:947.013333pt;}
.y7e{bottom:955.173333pt;}
.y179{bottom:955.973333pt;}
.ya1{bottom:957.893333pt;}
.ye{bottom:958.533333pt;}
.y1c4{bottom:961.893333pt;}
.yd6{bottom:962.373333pt;}
.y7d{bottom:970.533333pt;}
.y178{bottom:971.173333pt;}
.ya0{bottom:973.093333pt;}
.yd{bottom:975.653333pt;}
.yd5{bottom:976.933333pt;}
.y13c{bottom:978.693333pt;}
.y7c{bottom:985.893333pt;}
.y177{bottom:987.493333pt;}
.yc{bottom:988.453333pt;}
.y7b{bottom:1001.093333pt;}
.y176{bottom:1002.853333pt;}
.yb{bottom:1003.813333pt;}
.y1c3{bottom:1004.453333pt;}
.ya{bottom:1019.173333pt;}
.y9{bottom:1034.560000pt;}
.y4{bottom:1053.280000pt;}
.y7a{bottom:1055.840000pt;}
.y76{bottom:1066.560000pt;}
.y1{bottom:1066.720000pt;}
.h3d{height:5.092500pt;}
.h32{height:13.120000pt;}
.h35{height:13.760000pt;}
.h39{height:13.920000pt;}
.h7{height:15.914062pt;}
.h2{height:18.080000pt;}
.h1c{height:18.240000pt;}
.h8{height:19.040000pt;}
.h22{height:20.000000pt;}
.h3b{height:20.728125pt;}
.h1d{height:24.187500pt;}
.h2d{height:26.080000pt;}
.h25{height:26.240000pt;}
.h3c{height:28.960000pt;}
.h1e{height:29.187500pt;}
.h2a{height:31.406250pt;}
.h2e{height:32.320000pt;}
.h15{height:33.232500pt;}
.h16{height:33.626250pt;}
.h5{height:33.857500pt;}
.h21{height:35.040000pt;}
.h20{height:36.160000pt;}
.h13{height:36.413125pt;}
.h24{height:36.431250pt;}
.h3{height:39.111250pt;}
.h14{height:39.552188pt;}
.h17{height:39.571875pt;}
.h26{height:40.031250pt;}
.h23{height:40.640000pt;}
.h2c{height:41.920000pt;}
.h34{height:41.952000pt;}
.h11{height:42.063437pt;}
.hf{height:42.084375pt;}
.hc{height:43.215000pt;}
.h19{height:44.301250pt;}
.h9{height:44.505000pt;}
.h18{height:44.596875pt;}
.h1f{height:45.935313pt;}
.h36{height:47.085938pt;}
.h4{height:47.109375pt;}
.h38{height:47.742188pt;}
.h33{height:48.375000pt;}
.h28{height:49.336436pt;}
.h10{height:52.108438pt;}
.hb{height:52.134375pt;}
.h6{height:52.834688pt;}
.h12{height:53.535000pt;}
.h2b{height:54.598989pt;}
.h2f{height:55.040000pt;}
.he{height:55.343750pt;}
.h27{height:55.840000pt;}
.h29{height:56.032000pt;}
.ha{height:58.563750pt;}
.hd{height:64.500000pt;}
.h1a{height:65.120000pt;}
.h31{height:68.160000pt;}
.h37{height:68.960000pt;}
.h3a{height:68.992000pt;}
.h30{height:81.312000pt;}
.h1b{height:251.250000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:18.720000pt;}
.w7{width:63.232000pt;}
.w23{width:75.520000pt;}
.w1b{width:81.120000pt;}
.w16{width:84.160000pt;}
.w1f{width:93.760000pt;}
.w13{width:104.160000pt;}
.w18{width:140.986667pt;}
.w10{width:163.520000pt;}
.wf{width:164.640000pt;}
.w1e{width:165.306667pt;}
.w1c{width:166.586667pt;}
.w11{width:184.640000pt;}
.w1d{width:188.506667pt;}
.w4{width:198.426667pt;}
.w3{width:203.066667pt;}
.w2{width:203.226667pt;}
.w8{width:203.866667pt;}
.wc{width:213.280000pt;}
.wd{width:220.640000pt;}
.w15{width:225.626667pt;}
.w17{width:235.386667pt;}
.w21{width:244.506667pt;}
.w20{width:263.746667pt;}
.w14{width:272.386667pt;}
.w19{width:301.306667pt;}
.w1a{width:301.506667pt;}
.wa{width:385.986667pt;}
.we{width:448.800000pt;}
.w24{width:529.373333pt;}
.wb{width:604.733333pt;}
.w22{width:606.653333pt;}
.w12{width:608.573333pt;}
.w6{width:614.173333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5a{left:1.760000pt;}
.x2{left:7.200000pt;}
.x1d{left:8.160000pt;}
.x1f{left:9.120000pt;}
.x1b{left:10.080000pt;}
.x45{left:11.680000pt;}
.x3d{left:12.640000pt;}
.x4e{left:14.880000pt;}
.x55{left:16.480000pt;}
.x39{left:17.760000pt;}
.x47{left:19.546667pt;}
.x51{left:21.120000pt;}
.x41{left:22.586667pt;}
.x34{left:23.520000pt;}
.x3a{left:25.760000pt;}
.x4d{left:29.120000pt;}
.x43{left:33.600000pt;}
.x33{left:35.520000pt;}
.x48{left:36.826667pt;}
.x44{left:38.240000pt;}
.x3f{left:46.400000pt;}
.x29{left:47.706667pt;}
.x59{left:48.954667pt;}
.x27{left:51.933333pt;}
.x2d{left:54.106667pt;}
.x46{left:57.466667pt;}
.x38{left:58.400000pt;}
.x4{left:62.880000pt;}
.x31{left:64.066667pt;}
.x36{left:68.520000pt;}
.x2a{left:76.346667pt;}
.x54{left:78.240000pt;}
.x6{left:85.152000pt;}
.x1c{left:92.672000pt;}
.x1{left:94.592000pt;}
.x20{left:96.320000pt;}
.x5b{left:101.792000pt;}
.xd{left:107.071988pt;}
.xc{left:108.671988pt;}
.x17{left:113.471988pt;}
.x57{left:118.431988pt;}
.x9{left:122.111988pt;}
.x49{left:123.871988pt;}
.x50{left:129.791988pt;}
.x8{left:135.546655pt;}
.xa{left:140.346655pt;}
.x58{left:142.106655pt;}
.x4a{left:147.866655pt;}
.x28{left:163.520000pt;}
.x2c{left:167.386655pt;}
.x2b{left:176.960000pt;}
.x3e{left:180.026667pt;}
.xe{left:183.066655pt;}
.x3b{left:186.906655pt;}
.x52{left:189.626667pt;}
.x35{left:200.026667pt;}
.x22{left:205.306655pt;}
.x23{left:278.626655pt;}
.x3c{left:280.546655pt;}
.x21{left:290.434667pt;}
.x4f{left:292.834667pt;}
.x32{left:293.794667pt;}
.x7{left:295.874667pt;}
.x24{left:296.866655pt;}
.x3{left:297.826667pt;}
.x30{left:306.560000pt;}
.x1e{left:315.266667pt;}
.x2f{left:333.026655pt;}
.x4b{left:344.226667pt;}
.x56{left:372.066655pt;}
.xf{left:391.906655pt;}
.xb{left:396.866655pt;}
.x10{left:398.946655pt;}
.x19{left:408.226655pt;}
.x40{left:416.066667pt;}
.x1a{left:427.133322pt;}
.x26{left:429.280000pt;}
.x53{left:454.173333pt;}
.x18{left:460.573322pt;}
.x37{left:473.053333pt;}
.x5{left:500.893333pt;}
.x25{left:506.813322pt;}
.x15{left:522.653322pt;}
.x11{left:530.653322pt;}
.x4c{left:533.373333pt;}
.x12{left:539.933322pt;}
.x2e{left:550.333322pt;}
.x42{left:557.693333pt;}
.x16{left:587.773322pt;}
.x14{left:590.813322pt;}
.x13{left:699.333322pt;}
}




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