
    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_2088588dff6afac608c8870b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_86728ec8b048947169b24270.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.120605;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_91037eeac507edf2b300d854.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2567e5b21cb11b3a4e5fa197.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_f72b1e2acae68d51ad10ab60.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.035156;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_ddfb85adfc70c64706d8abad.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_fb20dd09284f31a6cdbb5add.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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_63b77a4b280bf7124ffe2ca8.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_396b163ac273c3d5b09af363.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.435059;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_3946b3eb6b1461aede9c28e2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.089844;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_1a498453a75cd408615b9daa.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921387;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_95cf45273a6f4f77fb258d42.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_8662f4f6b88de2f2074d119c.woff2')format("woff");}.ffe{font-family:ffe;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);}
.v1{vertical-align:-87.840000px;}
.v3{vertical-align:-30.240000px;}
.vf{vertical-align:-27.360000px;}
.vd{vertical-align:-20.160000px;}
.ve{vertical-align:-15.120000px;}
.v4{vertical-align:-10.800000px;}
.v6{vertical-align:-9.360000px;}
.v9{vertical-align:-7.920000px;}
.vc{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:2.880000px;}
.v7{vertical-align:9.360000px;}
.v5{vertical-align:10.800000px;}
.vb{vertical-align:12.960000px;}
.v10{vertical-align:19.440000px;}
.v12{vertical-align:27.360000px;}
.v2{vertical-align:30.240000px;}
.v11{vertical-align:31.680000px;}
.v8{vertical-align:35.280000px;}
.ls22{letter-spacing:-1.368000px;}
.ls8{letter-spacing:-1.008000px;}
.ls39{letter-spacing:-0.828000px;}
.ls9{letter-spacing:-0.540000px;}
.ls21{letter-spacing:-0.234600px;}
.lsd{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.180000px;}
.ls36{letter-spacing:-0.017280px;}
.lsc{letter-spacing:-0.008640px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.017280px;}
.ls10{letter-spacing:0.018000px;}
.ls13{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.149760px;}
.ls4{letter-spacing:0.153360px;}
.ls2{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.256200px;}
.ls26{letter-spacing:0.306000px;}
.lsf{letter-spacing:0.324000px;}
.ls14{letter-spacing:0.332400px;}
.ls1{letter-spacing:0.360000px;}
.ls2a{letter-spacing:0.630000px;}
.ls37{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.774000px;}
.ls1a{letter-spacing:0.792000px;}
.lsb{letter-spacing:0.864000px;}
.ls12{letter-spacing:0.990000px;}
.ls2c{letter-spacing:1.248480px;}
.ls20{letter-spacing:1.440000px;}
.ls1c{letter-spacing:1.968480px;}
.ls29{letter-spacing:2.286000px;}
.ls1b{letter-spacing:2.688480px;}
.ls28{letter-spacing:3.052800px;}
.ls18{letter-spacing:3.365280px;}
.ls25{letter-spacing:3.772800px;}
.ls2d{letter-spacing:3.780000px;}
.ls1f{letter-spacing:5.940000px;}
.ls2f{letter-spacing:10.190880px;}
.ls1e{letter-spacing:14.928480px;}
.ls1d{letter-spacing:15.030000px;}
.ls16{letter-spacing:15.246000px;}
.ls24{letter-spacing:15.292800px;}
.ls31{letter-spacing:16.368480px;}
.ls2e{letter-spacing:16.542000px;}
.ls15{letter-spacing:17.452800px;}
.ls23{letter-spacing:18.172800px;}
.ls27{letter-spacing:18.614880px;}
.lse{letter-spacing:25.308000px;}
.ls2b{letter-spacing:26.100000px;}
.lsa{letter-spacing:28.062720px;}
.ls32{letter-spacing:42.462000px;}
.ls38{letter-spacing:52.668000px;}
.ls35{letter-spacing:64.026720px;}
.ls33{letter-spacing:66.114000px;}
.ls34{letter-spacing:68.652000px;}
.ls30{letter-spacing:74.754000px;}
.ls17{letter-spacing:79.794000px;}
.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;}
}
.ws11{word-spacing:-77.760000px;}
.ws14{word-spacing:-59.760000px;}
.wsf{word-spacing:-54.108000px;}
.ws13{word-spacing:-54.000000px;}
.ws4{word-spacing:-21.060000px;}
.ws6{word-spacing:-19.457280px;}
.ws8{word-spacing:-19.440000px;}
.ws9{word-spacing:-19.431360px;}
.ws2{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.226440px;}
.ws3{word-spacing:-14.940000px;}
.ws12{word-spacing:-13.860000px;}
.ws10{word-spacing:-13.824000px;}
.wsc{word-spacing:-13.716000px;}
.wsb{word-spacing:-13.518000px;}
.ws0{word-spacing:-13.500000px;}
.wsa{word-spacing:-13.284000px;}
.ws16{word-spacing:-12.672000px;}
.ws15{word-spacing:-12.060000px;}
.ws5{word-spacing:-10.440000px;}
.wse{word-spacing:-9.000000px;}
.wsd{word-spacing:-7.632000px;}
.ws7{word-spacing:0.000000px;}
._26{margin-left:-22.262640px;}
._22{margin-left:-11.688720px;}
._20{margin-left:-8.682720px;}
._21{margin-left:-7.512720px;}
._1f{margin-left:-5.760000px;}
._24{margin-left:-3.690000px;}
._25{margin-left:-2.486160px;}
._0{margin-left:-1.170000px;}
._1{width:1.080000px;}
._a{width:2.380320px;}
._6{width:3.649680px;}
._4{width:4.836240px;}
._5{width:5.856480px;}
._15{width:7.429680px;}
._7{width:8.488080px;}
._8{width:9.552960px;}
._9{width:11.414160px;}
._1e{width:12.474000px;}
._11{width:15.030000px;}
._10{width:16.362000px;}
._16{width:17.442000px;}
._f{width:18.846000px;}
._c{width:20.520000px;}
._b{width:21.708000px;}
._e{width:22.788000px;}
._d{width:23.850000px;}
._17{width:24.948000px;}
._18{width:26.352000px;}
._19{width:27.486000px;}
._1a{width:29.466000px;}
._12{width:30.510000px;}
._1c{width:31.698000px;}
._1d{width:32.940000px;}
._13{width:34.830000px;}
._29{width:35.856000px;}
._2d{width:37.074000px;}
._14{width:38.178000px;}
._37{width:45.522000px;}
._1b{width:46.548000px;}
._31{width:48.293040px;}
._27{width:49.656960px;}
._2a{width:57.348000px;}
._38{width:61.236000px;}
._39{width:62.586000px;}
._33{width:78.678000px;}
._32{width:79.758000px;}
._36{width:88.974000px;}
._30{width:91.184400px;}
._34{width:107.730000px;}
._2b{width:123.082560px;}
._2c{width:124.459680px;}
._2e{width:154.940400px;}
._2f{width:155.952000px;}
._23{width:163.845120px;}
._35{width:183.816000px;}
._28{width:225.336960px;}
._2{width:1169.580000px;}
._3{width:1664.520000px;}
.fc7{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc6{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc5{color:rgb(32,33,36);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:30.240000px;}
.fsb{font-size:36.000000px;}
.fsa{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fsd{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs9{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs5{font-size:90.000000px;}
.fs3{font-size:102.240000px;}
.fs2{font-size:108.000000px;}
.y3b{bottom:-9.900000px;}
.y0{bottom:0.000000px;}
.y3{bottom:4.680000px;}
.y1cf{bottom:5.220000px;}
.y2{bottom:7.560000px;}
.y1f3{bottom:9.165000px;}
.y1f2{bottom:9.345000px;}
.y1f9{bottom:9.360000px;}
.y1f7{bottom:9.540000px;}
.yff{bottom:9.705000px;}
.y132{bottom:9.720000px;}
.y101{bottom:10.065000px;}
.y105{bottom:10.080000px;}
.y103{bottom:10.245000px;}
.y108{bottom:10.260000px;}
.y1c8{bottom:12.270000px;}
.y1cb{bottom:13.500000px;}
.y1c9{bottom:16.770000px;}
.y1cc{bottom:18.360000px;}
.y1ce{bottom:23.040000px;}
.y1fc{bottom:25.200000px;}
.y1d0{bottom:27.900000px;}
.y1f6{bottom:29.910000px;}
.y4{bottom:39.780000px;}
.y1fb{bottom:45.540000px;}
.y1{bottom:60.660000px;}
.y38{bottom:67.500000px;}
.y37{bottom:87.300000px;}
.ya9{bottom:90.540000px;}
.y147{bottom:91.980000px;}
.y220{bottom:99.000000px;}
.y109{bottom:105.480000px;}
.y14f{bottom:106.560000px;}
.y1fa{bottom:106.740000px;}
.y2b{bottom:107.280000px;}
.y75{bottom:108.000000px;}
.ya8{bottom:108.360000px;}
.y2c{bottom:113.220000px;}
.y21f{bottom:116.820000px;}
.y146{bottom:118.800000px;}
.y1ad{bottom:121.500000px;}
.y14e{bottom:124.560000px;}
.y2a{bottom:126.000000px;}
.ya7{bottom:126.180000px;}
.y185{bottom:127.080000px;}
.y3a{bottom:131.760000px;}
.y107{bottom:133.020000px;}
.y21e{bottom:134.640000px;}
.y35{bottom:136.110000px;}
.y145{bottom:136.620000px;}
.y1ac{bottom:139.500000px;}
.y14d{bottom:142.380000px;}
.y74{bottom:143.820000px;}
.ya6{bottom:144.000000px;}
.y184{bottom:144.900000px;}
.y21d{bottom:152.460000px;}
.y29{bottom:153.900000px;}
.y144{bottom:154.440000px;}
.y34{bottom:155.910000px;}
.y1ab{bottom:157.320000px;}
.y106{bottom:160.740000px;}
.y39{bottom:160.920000px;}
.y73{bottom:161.640000px;}
.ya5{bottom:162.000000px;}
.y183{bottom:162.720000px;}
.y1f8{bottom:167.760000px;}
.y14c{bottom:169.200000px;}
.y1aa{bottom:175.140000px;}
.y21c{bottom:179.280000px;}
.y72{bottom:179.460000px;}
.ya4{bottom:179.820000px;}
.y182{bottom:180.540000px;}
.y143{bottom:181.260000px;}
.y14b{bottom:187.020000px;}
.y104{bottom:188.280000px;}
.y1a9{bottom:192.960000px;}
.y1f5{bottom:193.320000px;}
.y71{bottom:197.280000px;}
.ya3{bottom:197.640000px;}
.y181{bottom:198.540000px;}
.y142{bottom:199.260000px;}
.y28{bottom:199.980000px;}
.y32{bottom:204.510000px;}
.y14a{bottom:209.025000px;}
.y1a8{bottom:210.810000px;}
.y21b{bottom:215.130000px;}
.y70{bottom:215.310000px;}
.ya2{bottom:215.490000px;}
.y102{bottom:215.865000px;}
.y141{bottom:217.110000px;}
.y31{bottom:224.490000px;}
.y180{bottom:225.390000px;}
.y36{bottom:229.530000px;}
.y25c{bottom:231.330000px;}
.y21a{bottom:232.950000px;}
.ya1{bottom:233.310000px;}
.y140{bottom:234.930000px;}
.y149{bottom:236.745000px;}
.y1a7{bottom:237.810000px;}
.y1f4{bottom:239.445000px;}
.y6f{bottom:242.130000px;}
.y100{bottom:243.585000px;}
.y27{bottom:245.910000px;}
.y17f{bottom:247.365000px;}
.y219{bottom:250.770000px;}
.ya0{bottom:251.310000px;}
.y13f{bottom:252.750000px;}
.y1a6{bottom:255.630000px;}
.y6e{bottom:259.950000px;}
.y148{bottom:264.285000px;}
.y1f1{bottom:265.005000px;}
.y218{bottom:268.590000px;}
.y9f{bottom:269.130000px;}
.y13e{bottom:270.570000px;}
.yfe{bottom:271.125000px;}
.y2f{bottom:273.090000px;}
.y1a5{bottom:273.450000px;}
.y17e{bottom:274.905000px;}
.y25b{bottom:276.690000px;}
.y6d{bottom:277.770000px;}
.y217{bottom:286.410000px;}
.y9e{bottom:286.950000px;}
.y1a4{bottom:291.270000px;}
.y2e{bottom:292.890000px;}
.y26{bottom:293.250000px;}
.y6c{bottom:295.590000px;}
.y1f0{bottom:296.310000px;}
.y13d{bottom:297.570000px;}
.y33{bottom:297.930000px;}
.y17d{bottom:302.625000px;}
.yfd{bottom:304.410000px;}
.y9d{bottom:304.770000px;}
.y1c7{bottom:305.850000px;}
.y6b{bottom:313.410000px;}
.y1ef{bottom:314.130000px;}
.y2d{bottom:314.310000px;}
.y25{bottom:316.650000px;}
.y1a3{bottom:318.090000px;}
.y13c{bottom:319.545000px;}
.yd3{bottom:321.510000px;}
.yfc{bottom:322.230000px;}
.y9c{bottom:322.590000px;}
.y1c6{bottom:323.670000px;}
.y25a{bottom:326.550000px;}
.y216{bottom:331.230000px;}
.y6a{bottom:331.410000px;}
.y1ee{bottom:331.950000px;}
.y24{bottom:334.470000px;}
.y17c{bottom:335.730000px;}
.yd2{bottom:339.510000px;}
.yfb{bottom:340.050000px;}
.y1a2{bottom:340.065000px;}
.y9b{bottom:340.410000px;}
.y1c5{bottom:341.490000px;}
.y13b{bottom:347.085000px;}
.y241{bottom:348.510000px;}
.y215{bottom:349.050000px;}
.y69{bottom:349.230000px;}
.y23{bottom:352.470000px;}
.y17b{bottom:353.550000px;}
.yd1{bottom:357.330000px;}
.yfa{bottom:357.870000px;}
.y9a{bottom:358.410000px;}
.y1ed{bottom:358.770000px;}
.y1c4{bottom:359.490000px;}
.y30{bottom:366.510000px;}
.y214{bottom:366.870000px;}
.y68{bottom:367.050000px;}
.y1a1{bottom:367.785000px;}
.y259{bottom:371.370000px;}
.y22{bottom:372.090000px;}
.y13a{bottom:374.625000px;}
.yd0{bottom:375.150000px;}
.y240{bottom:375.330000px;}
.yf9{bottom:375.690000px;}
.y99{bottom:376.230000px;}
.y1ec{bottom:376.590000px;}
.y17a{bottom:380.370000px;}
.y213{bottom:384.690000px;}
.y67{bottom:384.870000px;}
.y1c3{bottom:386.310000px;}
.ycf{bottom:392.970000px;}
.y23f{bottom:393.150000px;}
.yf8{bottom:393.690000px;}
.y98{bottom:394.050000px;}
.y1eb{bottom:394.590000px;}
.y1a0{bottom:395.325000px;}
.y21{bottom:395.850000px;}
.y179{bottom:398.370000px;}
.y139{bottom:402.345000px;}
.y66{bottom:402.690000px;}
.yce{bottom:410.790000px;}
.y23e{bottom:410.970000px;}
.yf7{bottom:411.510000px;}
.y97{bottom:411.870000px;}
.y1ea{bottom:412.410000px;}
.y1c2{bottom:414.210000px;}
.y178{bottom:416.190000px;}
.y20{bottom:419.610000px;}
.y212{bottom:420.510000px;}
.y65{bottom:420.690000px;}
.ycd{bottom:428.610000px;}
.y23d{bottom:428.790000px;}
.y96{bottom:429.690000px;}
.y138{bottom:429.885000px;}
.y1e9{bottom:430.230000px;}
.y177{bottom:434.010000px;}
.yf6{bottom:438.330000px;}
.y64{bottom:438.510000px;}
.y1c1{bottom:441.975000px;}
.y1f{bottom:443.595000px;}
.y19f{bottom:446.475000px;}
.ycc{bottom:446.655000px;}
.y95{bottom:447.735000px;}
.y1e8{bottom:450.075000px;}
.y176{bottom:451.875000px;}
.yf5{bottom:456.195000px;}
.y63{bottom:456.375000px;}
.y137{bottom:457.455000px;}
.y258{bottom:461.055000px;}
.y19e{bottom:464.295000px;}
.ycb{bottom:464.475000px;}
.y23c{bottom:464.655000px;}
.y211{bottom:465.195000px;}
.y94{bottom:465.555000px;}
.y1e{bottom:467.355000px;}
.y1c0{bottom:469.875000px;}
.yf4{bottom:474.015000px;}
.y62{bottom:474.195000px;}
.y172{bottom:475.815000px;}
.y1e7{bottom:475.995000px;}
.y174{bottom:479.415000px;}
.y19d{bottom:482.115000px;}
.yca{bottom:482.295000px;}
.y23b{bottom:482.475000px;}
.y171{bottom:482.655000px;}
.y210{bottom:483.015000px;}
.y93{bottom:483.375000px;}
.y136{bottom:485.175000px;}
.y175{bottom:487.695000px;}
.y173{bottom:488.055000px;}
.y1d{bottom:490.935000px;}
.yf3{bottom:491.835000px;}
.y19c{bottom:499.935000px;}
.yc9{bottom:500.115000px;}
.y23a{bottom:500.295000px;}
.y20f{bottom:500.835000px;}
.y61{bottom:501.015000px;}
.y92{bottom:501.195000px;}
.y257{bottom:505.875000px;}
.y1e6{bottom:508.755000px;}
.yf2{bottom:509.835000px;}
.y135{bottom:512.715000px;}
.y170{bottom:513.075000px;}
.y1bf{bottom:514.155000px;}
.y1c{bottom:517.215000px;}
.yc8{bottom:517.935000px;}
.y239{bottom:518.115000px;}
.y60{bottom:518.835000px;}
.y91{bottom:519.015000px;}
.y1e5{bottom:526.575000px;}
.y19b{bottom:526.935000px;}
.yf1{bottom:527.655000px;}
.y16f{bottom:530.895000px;}
.yc7{bottom:535.935000px;}
.y20e{bottom:536.655000px;}
.y5f{bottom:536.835000px;}
.y134{bottom:540.255000px;}
.y1be{bottom:541.335000px;}
.y1e4{bottom:544.395000px;}
.y19a{bottom:544.755000px;}
.yf0{bottom:545.475000px;}
.y1b{bottom:547.995000px;}
.y16e{bottom:549.435000px;}
.y256{bottom:550.875000px;}
.yc6{bottom:553.755000px;}
.y238{bottom:553.935000px;}
.y20d{bottom:554.475000px;}
.y5e{bottom:554.655000px;}
.y90{bottom:554.835000px;}
.y1bd{bottom:559.155000px;}
.y1e3{bottom:562.215000px;}
.y199{bottom:562.575000px;}
.y133{bottom:567.975000px;}
.yc5{bottom:571.575000px;}
.y237{bottom:571.755000px;}
.yef{bottom:572.295000px;}
.y5d{bottom:572.475000px;}
.y8f{bottom:572.655000px;}
.y1bc{bottom:576.975000px;}
.y16c{bottom:577.515000px;}
.y198{bottom:580.395000px;}
.y16d{bottom:584.355000px;}
.y1e2{bottom:589.035000px;}
.yc4{bottom:589.395000px;}
.y236{bottom:589.575000px;}
.yee{bottom:590.115000px;}
.y5c{bottom:590.295000px;}
.y8e{bottom:590.475000px;}
.y1bb{bottom:594.975000px;}
.y131{bottom:595.515000px;}
.y255{bottom:595.695000px;}
.y197{bottom:598.215000px;}
.y20c{bottom:599.115000px;}
.y1a{bottom:604.515000px;}
.y16a{bottom:605.955000px;}
.y1e1{bottom:607.035000px;}
.yc3{bottom:607.215000px;}
.y235{bottom:607.395000px;}
.y5b{bottom:608.115000px;}
.y8d{bottom:608.295000px;}
.y16b{bottom:610.995000px;}
.y196{bottom:616.035000px;}
.y20b{bottom:617.115000px;}
.y1ba{bottom:621.795000px;}
.y169{bottom:624.495000px;}
.y1e0{bottom:624.855000px;}
.yc2{bottom:625.035000px;}
.y234{bottom:625.215000px;}
.yed{bottom:625.935000px;}
.y5a{bottom:626.115000px;}
.y126{bottom:627.555000px;}
.y124{bottom:630.795000px;}
.y195{bottom:634.035000px;}
.y20a{bottom:634.935000px;}
.y19{bottom:635.295000px;}
.y125{bottom:636.195000px;}
.y130{bottom:636.555000px;}
.y254{bottom:640.515000px;}
.y1df{bottom:642.675000px;}
.yc1{bottom:643.035000px;}
.yec{bottom:643.755000px;}
.y59{bottom:643.935000px;}
.y8c{bottom:644.115000px;}
.y1b9{bottom:649.695000px;}
.y123{bottom:649.875000px;}
.y168{bottom:651.315000px;}
.y194{bottom:651.855000px;}
.y209{bottom:652.755000px;}
.y12f{bottom:654.375000px;}
.y1de{bottom:660.495000px;}
.yc0{bottom:660.855000px;}
.y233{bottom:661.035000px;}
.yeb{bottom:661.575000px;}
.y8b{bottom:661.935000px;}
.y18{bottom:666.075000px;}
.y253{bottom:667.335000px;}
.y122{bottom:667.695000px;}
.y193{bottom:669.675000px;}
.y208{bottom:670.575000px;}
.y58{bottom:670.755000px;}
.y1b8{bottom:677.445000px;}
.y1dd{bottom:678.345000px;}
.y167{bottom:678.525000px;}
.ybf{bottom:678.705000px;}
.y232{bottom:678.885000px;}
.y8a{bottom:679.785000px;}
.y12e{bottom:681.225000px;}
.y121{bottom:685.905000px;}
.y192{bottom:687.525000px;}
.yea{bottom:688.425000px;}
.y57{bottom:688.605000px;}
.y120{bottom:692.745000px;}
.y252{bottom:693.825000px;}
.y166{bottom:696.345000px;}
.ybe{bottom:696.525000px;}
.y231{bottom:696.705000px;}
.y17{bottom:696.885000px;}
.y89{bottom:697.605000px;}
.y12d{bottom:699.225000px;}
.y1b7{bottom:705.165000px;}
.y191{bottom:705.345000px;}
.ye9{bottom:706.245000px;}
.y56{bottom:706.425000px;}
.y207{bottom:708.225000px;}
.y165{bottom:714.165000px;}
.ybd{bottom:714.345000px;}
.y230{bottom:714.525000px;}
.y88{bottom:715.425000px;}
.y12c{bottom:717.045000px;}
.y251{bottom:721.185000px;}
.y190{bottom:723.165000px;}
.y55{bottom:724.245000px;}
.ybc{bottom:732.165000px;}
.y22f{bottom:732.345000px;}
.y87{bottom:733.245000px;}
.y16{bottom:733.425000px;}
.y12b{bottom:734.865000px;}
.y1b6{bottom:740.985000px;}
.y18f{bottom:741.165000px;}
.ye8{bottom:742.065000px;}
.y54{bottom:742.245000px;}
.y250{bottom:746.385000px;}
.y164{bottom:749.985000px;}
.ybb{bottom:750.165000px;}
.y11f{bottom:751.065000px;}
.y86{bottom:751.245000px;}
.y12a{bottom:752.685000px;}
.y18e{bottom:758.985000px;}
.y53{bottom:760.065000px;}
.y24f{bottom:766.905000px;}
.y1b5{bottom:767.445000px;}
.yba{bottom:767.985000px;}
.y22e{bottom:768.165000px;}
.ye7{bottom:768.885000px;}
.y85{bottom:769.065000px;}
.y11e{bottom:770.325000px;}
.y129{bottom:770.865000px;}
.y163{bottom:776.805000px;}
.y52{bottom:777.885000px;}
.y22d{bottom:785.985000px;}
.ye6{bottom:786.705000px;}
.y84{bottom:786.885000px;}
.y15{bottom:787.065000px;}
.y1dc{bottom:788.325000px;}
.y11d{bottom:788.685000px;}
.y24e{bottom:793.725000px;}
.y162{bottom:794.625000px;}
.yb9{bottom:794.805000px;}
.y51{bottom:795.705000px;}
.y18d{bottom:803.625000px;}
.y22c{bottom:803.805000px;}
.ye5{bottom:804.525000px;}
.y83{bottom:804.705000px;}
.y128{bottom:806.685000px;}
.y11c{bottom:807.045000px;}
.y161{bottom:812.445000px;}
.yb8{bottom:812.625000px;}
.y50{bottom:813.525000px;}
.y14{bottom:814.785000px;}
.y1db{bottom:817.485000px;}
.y24d{bottom:820.545000px;}
.y18c{bottom:821.445000px;}
.y22b{bottom:821.625000px;}
.ye4{bottom:822.345000px;}
.y82{bottom:822.525000px;}
.y11b{bottom:824.865000px;}
.yb7{bottom:830.445000px;}
.y4f{bottom:831.345000px;}
.y1da{bottom:835.485000px;}
.y18b{bottom:839.445000px;}
.y81{bottom:840.345000px;}
.y11a{bottom:842.685000px;}
.y24c{bottom:847.545000px;}
.y160{bottom:848.265000px;}
.yb6{bottom:848.445000px;}
.y1b4{bottom:850.425000px;}
.y13{bottom:851.865000px;}
.y18a{bottom:857.265000px;}
.y22a{bottom:857.445000px;}
.ye3{bottom:858.165000px;}
.y4e{bottom:858.345000px;}
.y119{bottom:860.505000px;}
.y1d9{bottom:864.645000px;}
.y15f{bottom:866.085000px;}
.yb5{bottom:866.265000px;}
.y24b{bottom:874.365000px;}
.y12{bottom:874.725000px;}
.y189{bottom:875.085000px;}
.y229{bottom:875.265000px;}
.ye2{bottom:875.985000px;}
.y4d{bottom:876.165000px;}
.y1b3{bottom:878.145000px;}
.y118{bottom:878.325000px;}
.y1d8{bottom:882.465000px;}
.y15e{bottom:883.545000px;}
.y206{bottom:883.905000px;}
.yb4{bottom:884.085000px;}
.y11{bottom:892.005000px;}
.y188{bottom:892.905000px;}
.y228{bottom:893.085000px;}
.y4c{bottom:893.985000px;}
.y1b2{bottom:895.965000px;}
.y117{bottom:896.145000px;}
.y24a{bottom:901.185000px;}
.y205{bottom:901.725000px;}
.yb3{bottom:901.905000px;}
.ye1{bottom:902.805000px;}
.y1d7{bottom:909.285000px;}
.y10{bottom:909.465000px;}
.y15d{bottom:910.770000px;}
.y227{bottom:910.950000px;}
.y4b{bottom:911.850000px;}
.y1b1{bottom:913.830000px;}
.y116{bottom:914.190000px;}
.y204{bottom:919.590000px;}
.yb2{bottom:919.770000px;}
.ye0{bottom:920.670000px;}
.y1d6{bottom:927.330000px;}
.yf{bottom:927.870000px;}
.y249{bottom:928.050000px;}
.y187{bottom:928.230000px;}
.y15c{bottom:928.590000px;}
.y226{bottom:928.770000px;}
.y4a{bottom:929.670000px;}
.y1b0{bottom:931.290000px;}
.y115{bottom:932.010000px;}
.yb1{bottom:937.590000px;}
.ydf{bottom:938.670000px;}
.y1d5{bottom:945.150000px;}
.ye{bottom:945.510000px;}
.y15b{bottom:946.590000px;}
.y49{bottom:947.670000px;}
.y114{bottom:949.830000px;}
.y1af{bottom:951.630000px;}
.y248{bottom:954.870000px;}
.yb0{bottom:955.590000px;}
.yde{bottom:956.490000px;}
.y1d4{bottom:962.970000px;}
.y15a{bottom:964.410000px;}
.y225{bottom:964.590000px;}
.y48{bottom:965.490000px;}
.y113{bottom:967.650000px;}
.yaf{bottom:973.410000px;}
.ydd{bottom:974.310000px;}
.y1ae{bottom:977.370000px;}
.y1d3{bottom:980.790000px;}
.y247{bottom:981.870000px;}
.y159{bottom:982.230000px;}
.y224{bottom:982.410000px;}
.y47{bottom:983.310000px;}
.y112{bottom:985.470000px;}
.yd{bottom:985.650000px;}
.yae{bottom:991.230000px;}
.ydc{bottom:992.130000px;}
.yc{bottom:997.710000px;}
.y158{bottom:1000.050000px;}
.y223{bottom:1000.230000px;}
.y80{bottom:1001.130000px;}
.y111{bottom:1003.110000px;}
.y127{bottom:1003.470000px;}
.y1d2{bottom:1007.610000px;}
.y246{bottom:1008.690000px;}
.yad{bottom:1009.050000px;}
.yb{bottom:1009.770000px;}
.ydb{bottom:1009.950000px;}
.y46{bottom:1010.130000px;}
.y157{bottom:1017.870000px;}
.y222{bottom:1018.050000px;}
.y7f{bottom:1018.950000px;}
.y110{bottom:1021.290000px;}
.ya{bottom:1021.830000px;}
.yac{bottom:1026.870000px;}
.yda{bottom:1027.770000px;}
.y45{bottom:1027.950000px;}
.y1d1{bottom:1029.750000px;}
.y245{bottom:1035.510000px;}
.y156{bottom:1035.870000px;}
.y9{bottom:1036.410000px;}
.y7e{bottom:1036.770000px;}
.y10f{bottom:1043.250000px;}
.y186{bottom:1044.870000px;}
.y44{bottom:1045.770000px;}
.y203{bottom:1053.690000px;}
.yab{bottom:1053.870000px;}
.yd9{bottom:1054.770000px;}
.y7d{bottom:1056.750000px;}
.y8{bottom:1061.970000px;}
.y244{bottom:1062.330000px;}
.y155{bottom:1062.690000px;}
.y43{bottom:1063.770000px;}
.y1cd{bottom:1070.610000px;}
.y10e{bottom:1070.790000px;}
.y202{bottom:1071.510000px;}
.yaa{bottom:1071.690000px;}
.yd8{bottom:1072.590000px;}
.y154{bottom:1080.510000px;}
.y42{bottom:1081.590000px;}
.y7{bottom:1087.170000px;}
.y243{bottom:1089.150000px;}
.y201{bottom:1089.330000px;}
.y7c{bottom:1089.510000px;}
.yd7{bottom:1090.410000px;}
.y153{bottom:1098.330000px;}
.y10d{bottom:1098.510000px;}
.y41{bottom:1099.410000px;}
.y200{bottom:1107.150000px;}
.y7b{bottom:1107.330000px;}
.yd6{bottom:1108.230000px;}
.y221{bottom:1110.210000px;}
.y1ca{bottom:1111.650000px;}
.y242{bottom:1115.970000px;}
.y152{bottom:1116.150000px;}
.y6{bottom:1116.870000px;}
.y40{bottom:1117.230000px;}
.y1ff{bottom:1124.970000px;}
.y7a{bottom:1125.150000px;}
.yd5{bottom:1125.690000px;}
.y10c{bottom:1126.050000px;}
.y151{bottom:1133.970000px;}
.y3f{bottom:1135.050000px;}
.y79{bottom:1142.970000px;}
.yd4{bottom:1146.060000px;}
.y150{bottom:1152.000000px;}
.y3e{bottom:1153.080000px;}
.y10b{bottom:1153.620000px;}
.y78{bottom:1161.000000px;}
.y5{bottom:1165.860000px;}
.y1fe{bottom:1169.820000px;}
.y3d{bottom:1170.900000px;}
.y77{bottom:1178.820000px;}
.y10a{bottom:1181.340000px;}
.y1fd{bottom:1187.640000px;}
.y3c{bottom:1190.700000px;}
.y76{bottom:1196.640000px;}
.h2{height:20.155500px;}
.h31{height:24.825000px;}
.h35{height:24.840000px;}
.h19{height:26.805000px;}
.h1e{height:26.815500px;}
.h1c{height:26.820000px;}
.h25{height:26.841000px;}
.h1f{height:26.842500px;}
.h1b{height:26.856000px;}
.h1a{height:26.985000px;}
.h1d{height:26.995500px;}
.h2d{height:29.362500px;}
.h2e{height:30.600000px;}
.h23{height:33.792188px;}
.h17{height:39.049805px;}
.h2f{height:40.140000px;}
.h8{height:40.985156px;}
.h2a{height:45.312188px;}
.h34{height:45.396000px;}
.h26{height:46.933594px;}
.h32{height:47.344922px;}
.h33{height:48.616875px;}
.h22{height:49.813594px;}
.h37{height:52.971680px;}
.h16{height:52.998047px;}
.h27{height:53.232188px;}
.h10{height:54.421875px;}
.h12{height:55.291992px;}
.h2c{height:55.503491px;}
.h18{height:56.214844px;}
.h14{height:58.621992px;}
.h9{height:58.651172px;}
.ha{height:60.226875px;}
.h36{height:61.015500px;}
.h30{height:61.423863px;}
.he{height:65.010937px;}
.h28{height:65.472188px;}
.h3{height:65.884219px;}
.h24{height:65.958047px;}
.hd{height:66.757500px;}
.h20{height:69.072187px;}
.hc{height:72.326250px;}
.hf{height:72.562500px;}
.h29{height:77.173594px;}
.h11{height:78.367500px;}
.h21{height:80.358047px;}
.h2b{height:80.592188px;}
.h15{height:80.949375px;}
.hb{height:82.676953px;}
.h6{height:84.898125px;}
.h7{height:90.703125px;}
.h5{height:103.038750px;}
.h4{height:108.843750px;}
.h13{height:344.520000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w22{width:59.925000px;}
.w2b{width:60.465000px;}
.w21{width:73.425000px;}
.w2a{width:73.785000px;}
.w19{width:76.342500px;}
.w25{width:78.330000px;}
.w20{width:79.776000px;}
.w24{width:80.085000px;}
.w23{width:80.121000px;}
.w1f{width:80.280000px;}
.w3{width:80.310000px;}
.w29{width:80.316000px;}
.w2d{width:80.625000px;}
.w28{width:80.640000px;}
.w2c{width:80.661000px;}
.w15{width:85.485000px;}
.w1d{width:86.931000px;}
.w26{width:87.291000px;}
.w1e{width:87.516000px;}
.w27{width:87.876000px;}
.w17{width:95.025000px;}
.w16{width:95.061000px;}
.w18{width:95.070000px;}
.wc{width:129.816000px;}
.w8{width:143.301000px;}
.wb{width:146.016000px;}
.w7{width:150.150000px;}
.w6{width:151.950000px;}
.w5{width:157.165500px;}
.wd{width:162.375000px;}
.we{width:162.390000px;}
.w13{width:176.235000px;}
.w9{width:178.590000px;}
.wa{width:178.765500px;}
.w12{width:179.310000px;}
.wf{width:183.075000px;}
.w10{width:183.270000px;}
.w14{width:191.550000px;}
.w11{width:193.705500px;}
.w1b{width:214.770000px;}
.w1c{width:240.360000px;}
.w1a{width:256.170000px;}
.w2{width:722.115000px;}
.w4{width:813.600000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x57{left:5.205000px;}
.x54{left:6.465000px;}
.x4{left:8.640000px;}
.x45{left:9.720000px;}
.x14{left:10.800000px;}
.x3f{left:11.865000px;}
.x52{left:13.125000px;}
.x40{left:14.205000px;}
.x50{left:16.560000px;}
.x58{left:17.635500px;}
.x42{left:18.720000px;}
.x4d{left:19.980000px;}
.x41{left:22.125000px;}
.x43{left:23.925000px;}
.x44{left:26.265000px;}
.x5a{left:29.865000px;}
.x4a{left:32.400000px;}
.x3d{left:34.005000px;}
.x2b{left:35.640000px;}
.x59{left:36.705000px;}
.x47{left:38.191500px;}
.x13{left:40.140000px;}
.x3b{left:42.645000px;}
.x1b{left:43.905000px;}
.x1{left:45.364500px;}
.x1e{left:47.731500px;}
.x1f{left:49.860000px;}
.x15{left:50.940000px;}
.x6{left:54.000000px;}
.x28{left:55.444500px;}
.x20{left:57.060000px;}
.x2e{left:58.711500px;}
.x21{left:60.480000px;}
.x1d{left:62.100000px;}
.x18{left:65.011500px;}
.x4c{left:66.450000px;}
.x24{left:69.285000px;}
.x2f{left:70.785000px;}
.x23{left:73.665000px;}
.x22{left:76.351500px;}
.x30{left:79.005000px;}
.x12{left:81.000000px;}
.x33{left:84.060000px;}
.x25{left:86.940000px;}
.xc{left:90.576000px;}
.x27{left:101.556000px;}
.x3a{left:108.036000px;}
.x26{left:119.376000px;}
.x48{left:128.736000px;}
.xf{left:163.290000px;}
.x19{left:212.430000px;}
.x4e{left:216.390000px;}
.x29{left:234.930000px;}
.x10{left:242.490000px;}
.x37{left:244.290000px;}
.x9{left:269.715000px;}
.x2{left:271.330500px;}
.x34{left:278.535000px;}
.xa{left:290.955000px;}
.x35{left:302.115000px;}
.x4f{left:304.635000px;}
.xe{left:310.035000px;}
.x11{left:314.355000px;}
.x7{left:322.275000px;}
.x32{left:328.395000px;}
.x36{left:333.075000px;}
.x8{left:364.395000px;}
.xb{left:378.795000px;}
.xd{left:380.595000px;}
.x2a{left:381.675000px;}
.x49{left:385.635000px;}
.x5{left:446.505000px;}
.x51{left:466.320000px;}
.x38{left:472.080000px;}
.x16{left:473.505000px;}
.x17{left:500.505000px;}
.x2c{left:512.220000px;}
.x1a{left:516.000000px;}
.x46{left:527.505000px;}
.x53{left:540.480000px;}
.x3c{left:560.280000px;}
.x4b{left:601.320000px;}
.x39{left:649.050000px;}
.x31{left:656.610000px;}
.x1c{left:660.030000px;}
.x2d{left:675.330000px;}
.x55{left:682.350000px;}
.x3e{left:751.830000px;}
.x56{left:763.350000px;}
.x3{left:767.490000px;}
@media print{
.v1{vertical-align:-78.080000pt;}
.v3{vertical-align:-26.880000pt;}
.vf{vertical-align:-24.320000pt;}
.vd{vertical-align:-17.920000pt;}
.ve{vertical-align:-13.440000pt;}
.v4{vertical-align:-9.600000pt;}
.v6{vertical-align:-8.320000pt;}
.v9{vertical-align:-7.040000pt;}
.vc{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:2.560000pt;}
.v7{vertical-align:8.320000pt;}
.v5{vertical-align:9.600000pt;}
.vb{vertical-align:11.520000pt;}
.v10{vertical-align:17.280000pt;}
.v12{vertical-align:24.320000pt;}
.v2{vertical-align:26.880000pt;}
.v11{vertical-align:28.160000pt;}
.v8{vertical-align:31.360000pt;}
.ls22{letter-spacing:-1.216000pt;}
.ls8{letter-spacing:-0.896000pt;}
.ls39{letter-spacing:-0.736000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls21{letter-spacing:-0.208533pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls36{letter-spacing:-0.015360pt;}
.lsc{letter-spacing:-0.007680pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.015360pt;}
.ls10{letter-spacing:0.016000pt;}
.ls13{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls4{letter-spacing:0.136320pt;}
.ls2{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.227733pt;}
.ls26{letter-spacing:0.272000pt;}
.lsf{letter-spacing:0.288000pt;}
.ls14{letter-spacing:0.295467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2a{letter-spacing:0.560000pt;}
.ls37{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.688000pt;}
.ls1a{letter-spacing:0.704000pt;}
.lsb{letter-spacing:0.768000pt;}
.ls12{letter-spacing:0.880000pt;}
.ls2c{letter-spacing:1.109760pt;}
.ls20{letter-spacing:1.280000pt;}
.ls1c{letter-spacing:1.749760pt;}
.ls29{letter-spacing:2.032000pt;}
.ls1b{letter-spacing:2.389760pt;}
.ls28{letter-spacing:2.713600pt;}
.ls18{letter-spacing:2.991360pt;}
.ls25{letter-spacing:3.353600pt;}
.ls2d{letter-spacing:3.360000pt;}
.ls1f{letter-spacing:5.280000pt;}
.ls2f{letter-spacing:9.058560pt;}
.ls1e{letter-spacing:13.269760pt;}
.ls1d{letter-spacing:13.360000pt;}
.ls16{letter-spacing:13.552000pt;}
.ls24{letter-spacing:13.593600pt;}
.ls31{letter-spacing:14.549760pt;}
.ls2e{letter-spacing:14.704000pt;}
.ls15{letter-spacing:15.513600pt;}
.ls23{letter-spacing:16.153600pt;}
.ls27{letter-spacing:16.546560pt;}
.lse{letter-spacing:22.496000pt;}
.ls2b{letter-spacing:23.200000pt;}
.lsa{letter-spacing:24.944640pt;}
.ls32{letter-spacing:37.744000pt;}
.ls38{letter-spacing:46.816000pt;}
.ls35{letter-spacing:56.912640pt;}
.ls33{letter-spacing:58.768000pt;}
.ls34{letter-spacing:61.024000pt;}
.ls30{letter-spacing:66.448000pt;}
.ls17{letter-spacing:70.928000pt;}
.ws11{word-spacing:-69.120000pt;}
.ws14{word-spacing:-53.120000pt;}
.wsf{word-spacing:-48.096000pt;}
.ws13{word-spacing:-48.000000pt;}
.ws4{word-spacing:-18.720000pt;}
.ws6{word-spacing:-17.295360pt;}
.ws8{word-spacing:-17.280000pt;}
.ws9{word-spacing:-17.272320pt;}
.ws2{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.534613pt;}
.ws3{word-spacing:-13.280000pt;}
.ws12{word-spacing:-12.320000pt;}
.ws10{word-spacing:-12.288000pt;}
.wsc{word-spacing:-12.192000pt;}
.wsb{word-spacing:-12.016000pt;}
.ws0{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.808000pt;}
.ws16{word-spacing:-11.264000pt;}
.ws15{word-spacing:-10.720000pt;}
.ws5{word-spacing:-9.280000pt;}
.wse{word-spacing:-8.000000pt;}
.wsd{word-spacing:-6.784000pt;}
.ws7{word-spacing:0.000000pt;}
._26{margin-left:-19.789013pt;}
._22{margin-left:-10.389973pt;}
._20{margin-left:-7.717973pt;}
._21{margin-left:-6.677973pt;}
._1f{margin-left:-5.120000pt;}
._24{margin-left:-3.280000pt;}
._25{margin-left:-2.209920pt;}
._0{margin-left:-1.040000pt;}
._1{width:0.960000pt;}
._a{width:2.115840pt;}
._6{width:3.244160pt;}
._4{width:4.298880pt;}
._5{width:5.205760pt;}
._15{width:6.604160pt;}
._7{width:7.544960pt;}
._8{width:8.491520pt;}
._9{width:10.145920pt;}
._1e{width:11.088000pt;}
._11{width:13.360000pt;}
._10{width:14.544000pt;}
._16{width:15.504000pt;}
._f{width:16.752000pt;}
._c{width:18.240000pt;}
._b{width:19.296000pt;}
._e{width:20.256000pt;}
._d{width:21.200000pt;}
._17{width:22.176000pt;}
._18{width:23.424000pt;}
._19{width:24.432000pt;}
._1a{width:26.192000pt;}
._12{width:27.120000pt;}
._1c{width:28.176000pt;}
._1d{width:29.280000pt;}
._13{width:30.960000pt;}
._29{width:31.872000pt;}
._2d{width:32.954667pt;}
._14{width:33.936000pt;}
._37{width:40.464000pt;}
._1b{width:41.376000pt;}
._31{width:42.927147pt;}
._27{width:44.139520pt;}
._2a{width:50.976000pt;}
._38{width:54.432000pt;}
._39{width:55.632000pt;}
._33{width:69.936000pt;}
._32{width:70.896000pt;}
._36{width:79.088000pt;}
._30{width:81.052800pt;}
._34{width:95.760000pt;}
._2b{width:109.406720pt;}
._2c{width:110.630827pt;}
._2e{width:137.724800pt;}
._2f{width:138.624000pt;}
._23{width:145.640107pt;}
._35{width:163.392000pt;}
._28{width:200.299520pt;}
._2{width:1039.626667pt;}
._3{width:1479.573333pt;}
.fsc{font-size:26.880000pt;}
.fsb{font-size:32.000000pt;}
.fsa{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fsd{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs9{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs5{font-size:80.000000pt;}
.fs3{font-size:90.880000pt;}
.fs2{font-size:96.000000pt;}
.y3b{bottom:-8.800000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:4.160000pt;}
.y1cf{bottom:4.640000pt;}
.y2{bottom:6.720000pt;}
.y1f3{bottom:8.146667pt;}
.y1f2{bottom:8.306667pt;}
.y1f9{bottom:8.320000pt;}
.y1f7{bottom:8.480000pt;}
.yff{bottom:8.626667pt;}
.y132{bottom:8.640000pt;}
.y101{bottom:8.946667pt;}
.y105{bottom:8.960000pt;}
.y103{bottom:9.106667pt;}
.y108{bottom:9.120000pt;}
.y1c8{bottom:10.906667pt;}
.y1cb{bottom:12.000000pt;}
.y1c9{bottom:14.906667pt;}
.y1cc{bottom:16.320000pt;}
.y1ce{bottom:20.480000pt;}
.y1fc{bottom:22.400000pt;}
.y1d0{bottom:24.800000pt;}
.y1f6{bottom:26.586667pt;}
.y4{bottom:35.360000pt;}
.y1fb{bottom:40.480000pt;}
.y1{bottom:53.920000pt;}
.y38{bottom:60.000000pt;}
.y37{bottom:77.600000pt;}
.ya9{bottom:80.480000pt;}
.y147{bottom:81.760000pt;}
.y220{bottom:88.000000pt;}
.y109{bottom:93.760000pt;}
.y14f{bottom:94.720000pt;}
.y1fa{bottom:94.880000pt;}
.y2b{bottom:95.360000pt;}
.y75{bottom:96.000000pt;}
.ya8{bottom:96.320000pt;}
.y2c{bottom:100.640000pt;}
.y21f{bottom:103.840000pt;}
.y146{bottom:105.600000pt;}
.y1ad{bottom:108.000000pt;}
.y14e{bottom:110.720000pt;}
.y2a{bottom:112.000000pt;}
.ya7{bottom:112.160000pt;}
.y185{bottom:112.960000pt;}
.y3a{bottom:117.120000pt;}
.y107{bottom:118.240000pt;}
.y21e{bottom:119.680000pt;}
.y35{bottom:120.986667pt;}
.y145{bottom:121.440000pt;}
.y1ac{bottom:124.000000pt;}
.y14d{bottom:126.560000pt;}
.y74{bottom:127.840000pt;}
.ya6{bottom:128.000000pt;}
.y184{bottom:128.800000pt;}
.y21d{bottom:135.520000pt;}
.y29{bottom:136.800000pt;}
.y144{bottom:137.280000pt;}
.y34{bottom:138.586667pt;}
.y1ab{bottom:139.840000pt;}
.y106{bottom:142.880000pt;}
.y39{bottom:143.040000pt;}
.y73{bottom:143.680000pt;}
.ya5{bottom:144.000000pt;}
.y183{bottom:144.640000pt;}
.y1f8{bottom:149.120000pt;}
.y14c{bottom:150.400000pt;}
.y1aa{bottom:155.680000pt;}
.y21c{bottom:159.360000pt;}
.y72{bottom:159.520000pt;}
.ya4{bottom:159.840000pt;}
.y182{bottom:160.480000pt;}
.y143{bottom:161.120000pt;}
.y14b{bottom:166.240000pt;}
.y104{bottom:167.360000pt;}
.y1a9{bottom:171.520000pt;}
.y1f5{bottom:171.840000pt;}
.y71{bottom:175.360000pt;}
.ya3{bottom:175.680000pt;}
.y181{bottom:176.480000pt;}
.y142{bottom:177.120000pt;}
.y28{bottom:177.760000pt;}
.y32{bottom:181.786667pt;}
.y14a{bottom:185.800000pt;}
.y1a8{bottom:187.386667pt;}
.y21b{bottom:191.226667pt;}
.y70{bottom:191.386667pt;}
.ya2{bottom:191.546667pt;}
.y102{bottom:191.880000pt;}
.y141{bottom:192.986667pt;}
.y31{bottom:199.546667pt;}
.y180{bottom:200.346667pt;}
.y36{bottom:204.026667pt;}
.y25c{bottom:205.626667pt;}
.y21a{bottom:207.066667pt;}
.ya1{bottom:207.386667pt;}
.y140{bottom:208.826667pt;}
.y149{bottom:210.440000pt;}
.y1a7{bottom:211.386667pt;}
.y1f4{bottom:212.840000pt;}
.y6f{bottom:215.226667pt;}
.y100{bottom:216.520000pt;}
.y27{bottom:218.586667pt;}
.y17f{bottom:219.880000pt;}
.y219{bottom:222.906667pt;}
.ya0{bottom:223.386667pt;}
.y13f{bottom:224.666667pt;}
.y1a6{bottom:227.226667pt;}
.y6e{bottom:231.066667pt;}
.y148{bottom:234.920000pt;}
.y1f1{bottom:235.560000pt;}
.y218{bottom:238.746667pt;}
.y9f{bottom:239.226667pt;}
.y13e{bottom:240.506667pt;}
.yfe{bottom:241.000000pt;}
.y2f{bottom:242.746667pt;}
.y1a5{bottom:243.066667pt;}
.y17e{bottom:244.360000pt;}
.y25b{bottom:245.946667pt;}
.y6d{bottom:246.906667pt;}
.y217{bottom:254.586667pt;}
.y9e{bottom:255.066667pt;}
.y1a4{bottom:258.906667pt;}
.y2e{bottom:260.346667pt;}
.y26{bottom:260.666667pt;}
.y6c{bottom:262.746667pt;}
.y1f0{bottom:263.386667pt;}
.y13d{bottom:264.506667pt;}
.y33{bottom:264.826667pt;}
.y17d{bottom:269.000000pt;}
.yfd{bottom:270.586667pt;}
.y9d{bottom:270.906667pt;}
.y1c7{bottom:271.866667pt;}
.y6b{bottom:278.586667pt;}
.y1ef{bottom:279.226667pt;}
.y2d{bottom:279.386667pt;}
.y25{bottom:281.466667pt;}
.y1a3{bottom:282.746667pt;}
.y13c{bottom:284.040000pt;}
.yd3{bottom:285.786667pt;}
.yfc{bottom:286.426667pt;}
.y9c{bottom:286.746667pt;}
.y1c6{bottom:287.706667pt;}
.y25a{bottom:290.266667pt;}
.y216{bottom:294.426667pt;}
.y6a{bottom:294.586667pt;}
.y1ee{bottom:295.066667pt;}
.y24{bottom:297.306667pt;}
.y17c{bottom:298.426667pt;}
.yd2{bottom:301.786667pt;}
.yfb{bottom:302.266667pt;}
.y1a2{bottom:302.280000pt;}
.y9b{bottom:302.586667pt;}
.y1c5{bottom:303.546667pt;}
.y13b{bottom:308.520000pt;}
.y241{bottom:309.786667pt;}
.y215{bottom:310.266667pt;}
.y69{bottom:310.426667pt;}
.y23{bottom:313.306667pt;}
.y17b{bottom:314.266667pt;}
.yd1{bottom:317.626667pt;}
.yfa{bottom:318.106667pt;}
.y9a{bottom:318.586667pt;}
.y1ed{bottom:318.906667pt;}
.y1c4{bottom:319.546667pt;}
.y30{bottom:325.786667pt;}
.y214{bottom:326.106667pt;}
.y68{bottom:326.266667pt;}
.y1a1{bottom:326.920000pt;}
.y259{bottom:330.106667pt;}
.y22{bottom:330.746667pt;}
.y13a{bottom:333.000000pt;}
.yd0{bottom:333.466667pt;}
.y240{bottom:333.626667pt;}
.yf9{bottom:333.946667pt;}
.y99{bottom:334.426667pt;}
.y1ec{bottom:334.746667pt;}
.y17a{bottom:338.106667pt;}
.y213{bottom:341.946667pt;}
.y67{bottom:342.106667pt;}
.y1c3{bottom:343.386667pt;}
.ycf{bottom:349.306667pt;}
.y23f{bottom:349.466667pt;}
.yf8{bottom:349.946667pt;}
.y98{bottom:350.266667pt;}
.y1eb{bottom:350.746667pt;}
.y1a0{bottom:351.400000pt;}
.y21{bottom:351.866667pt;}
.y179{bottom:354.106667pt;}
.y139{bottom:357.640000pt;}
.y66{bottom:357.946667pt;}
.yce{bottom:365.146667pt;}
.y23e{bottom:365.306667pt;}
.yf7{bottom:365.786667pt;}
.y97{bottom:366.106667pt;}
.y1ea{bottom:366.586667pt;}
.y1c2{bottom:368.186667pt;}
.y178{bottom:369.946667pt;}
.y20{bottom:372.986667pt;}
.y212{bottom:373.786667pt;}
.y65{bottom:373.946667pt;}
.ycd{bottom:380.986667pt;}
.y23d{bottom:381.146667pt;}
.y96{bottom:381.946667pt;}
.y138{bottom:382.120000pt;}
.y1e9{bottom:382.426667pt;}
.y177{bottom:385.786667pt;}
.yf6{bottom:389.626667pt;}
.y64{bottom:389.786667pt;}
.y1c1{bottom:392.866667pt;}
.y1f{bottom:394.306667pt;}
.y19f{bottom:396.866667pt;}
.ycc{bottom:397.026667pt;}
.y95{bottom:397.986667pt;}
.y1e8{bottom:400.066667pt;}
.y176{bottom:401.666667pt;}
.yf5{bottom:405.506667pt;}
.y63{bottom:405.666667pt;}
.y137{bottom:406.626667pt;}
.y258{bottom:409.826667pt;}
.y19e{bottom:412.706667pt;}
.ycb{bottom:412.866667pt;}
.y23c{bottom:413.026667pt;}
.y211{bottom:413.506667pt;}
.y94{bottom:413.826667pt;}
.y1e{bottom:415.426667pt;}
.y1c0{bottom:417.666667pt;}
.yf4{bottom:421.346667pt;}
.y62{bottom:421.506667pt;}
.y172{bottom:422.946667pt;}
.y1e7{bottom:423.106667pt;}
.y174{bottom:426.146667pt;}
.y19d{bottom:428.546667pt;}
.yca{bottom:428.706667pt;}
.y23b{bottom:428.866667pt;}
.y171{bottom:429.026667pt;}
.y210{bottom:429.346667pt;}
.y93{bottom:429.666667pt;}
.y136{bottom:431.266667pt;}
.y175{bottom:433.506667pt;}
.y173{bottom:433.826667pt;}
.y1d{bottom:436.386667pt;}
.yf3{bottom:437.186667pt;}
.y19c{bottom:444.386667pt;}
.yc9{bottom:444.546667pt;}
.y23a{bottom:444.706667pt;}
.y20f{bottom:445.186667pt;}
.y61{bottom:445.346667pt;}
.y92{bottom:445.506667pt;}
.y257{bottom:449.666667pt;}
.y1e6{bottom:452.226667pt;}
.yf2{bottom:453.186667pt;}
.y135{bottom:455.746667pt;}
.y170{bottom:456.066667pt;}
.y1bf{bottom:457.026667pt;}
.y1c{bottom:459.746667pt;}
.yc8{bottom:460.386667pt;}
.y239{bottom:460.546667pt;}
.y60{bottom:461.186667pt;}
.y91{bottom:461.346667pt;}
.y1e5{bottom:468.066667pt;}
.y19b{bottom:468.386667pt;}
.yf1{bottom:469.026667pt;}
.y16f{bottom:471.906667pt;}
.yc7{bottom:476.386667pt;}
.y20e{bottom:477.026667pt;}
.y5f{bottom:477.186667pt;}
.y134{bottom:480.226667pt;}
.y1be{bottom:481.186667pt;}
.y1e4{bottom:483.906667pt;}
.y19a{bottom:484.226667pt;}
.yf0{bottom:484.866667pt;}
.y1b{bottom:487.106667pt;}
.y16e{bottom:488.386667pt;}
.y256{bottom:489.666667pt;}
.yc6{bottom:492.226667pt;}
.y238{bottom:492.386667pt;}
.y20d{bottom:492.866667pt;}
.y5e{bottom:493.026667pt;}
.y90{bottom:493.186667pt;}
.y1bd{bottom:497.026667pt;}
.y1e3{bottom:499.746667pt;}
.y199{bottom:500.066667pt;}
.y133{bottom:504.866667pt;}
.yc5{bottom:508.066667pt;}
.y237{bottom:508.226667pt;}
.yef{bottom:508.706667pt;}
.y5d{bottom:508.866667pt;}
.y8f{bottom:509.026667pt;}
.y1bc{bottom:512.866667pt;}
.y16c{bottom:513.346667pt;}
.y198{bottom:515.906667pt;}
.y16d{bottom:519.426667pt;}
.y1e2{bottom:523.586667pt;}
.yc4{bottom:523.906667pt;}
.y236{bottom:524.066667pt;}
.yee{bottom:524.546667pt;}
.y5c{bottom:524.706667pt;}
.y8e{bottom:524.866667pt;}
.y1bb{bottom:528.866667pt;}
.y131{bottom:529.346667pt;}
.y255{bottom:529.506667pt;}
.y197{bottom:531.746667pt;}
.y20c{bottom:532.546667pt;}
.y1a{bottom:537.346667pt;}
.y16a{bottom:538.626667pt;}
.y1e1{bottom:539.586667pt;}
.yc3{bottom:539.746667pt;}
.y235{bottom:539.906667pt;}
.y5b{bottom:540.546667pt;}
.y8d{bottom:540.706667pt;}
.y16b{bottom:543.106667pt;}
.y196{bottom:547.586667pt;}
.y20b{bottom:548.546667pt;}
.y1ba{bottom:552.706667pt;}
.y169{bottom:555.106667pt;}
.y1e0{bottom:555.426667pt;}
.yc2{bottom:555.586667pt;}
.y234{bottom:555.746667pt;}
.yed{bottom:556.386667pt;}
.y5a{bottom:556.546667pt;}
.y126{bottom:557.826667pt;}
.y124{bottom:560.706667pt;}
.y195{bottom:563.586667pt;}
.y20a{bottom:564.386667pt;}
.y19{bottom:564.706667pt;}
.y125{bottom:565.506667pt;}
.y130{bottom:565.826667pt;}
.y254{bottom:569.346667pt;}
.y1df{bottom:571.266667pt;}
.yc1{bottom:571.586667pt;}
.yec{bottom:572.226667pt;}
.y59{bottom:572.386667pt;}
.y8c{bottom:572.546667pt;}
.y1b9{bottom:577.506667pt;}
.y123{bottom:577.666667pt;}
.y168{bottom:578.946667pt;}
.y194{bottom:579.426667pt;}
.y209{bottom:580.226667pt;}
.y12f{bottom:581.666667pt;}
.y1de{bottom:587.106667pt;}
.yc0{bottom:587.426667pt;}
.y233{bottom:587.586667pt;}
.yeb{bottom:588.066667pt;}
.y8b{bottom:588.386667pt;}
.y18{bottom:592.066667pt;}
.y253{bottom:593.186667pt;}
.y122{bottom:593.506667pt;}
.y193{bottom:595.266667pt;}
.y208{bottom:596.066667pt;}
.y58{bottom:596.226667pt;}
.y1b8{bottom:602.173333pt;}
.y1dd{bottom:602.973333pt;}
.y167{bottom:603.133333pt;}
.ybf{bottom:603.293333pt;}
.y232{bottom:603.453333pt;}
.y8a{bottom:604.253333pt;}
.y12e{bottom:605.533333pt;}
.y121{bottom:609.693333pt;}
.y192{bottom:611.133333pt;}
.yea{bottom:611.933333pt;}
.y57{bottom:612.093333pt;}
.y120{bottom:615.773333pt;}
.y252{bottom:616.733333pt;}
.y166{bottom:618.973333pt;}
.ybe{bottom:619.133333pt;}
.y231{bottom:619.293333pt;}
.y17{bottom:619.453333pt;}
.y89{bottom:620.093333pt;}
.y12d{bottom:621.533333pt;}
.y1b7{bottom:626.813333pt;}
.y191{bottom:626.973333pt;}
.ye9{bottom:627.773333pt;}
.y56{bottom:627.933333pt;}
.y207{bottom:629.533333pt;}
.y165{bottom:634.813333pt;}
.ybd{bottom:634.973333pt;}
.y230{bottom:635.133333pt;}
.y88{bottom:635.933333pt;}
.y12c{bottom:637.373333pt;}
.y251{bottom:641.053333pt;}
.y190{bottom:642.813333pt;}
.y55{bottom:643.773333pt;}
.ybc{bottom:650.813333pt;}
.y22f{bottom:650.973333pt;}
.y87{bottom:651.773333pt;}
.y16{bottom:651.933333pt;}
.y12b{bottom:653.213333pt;}
.y1b6{bottom:658.653333pt;}
.y18f{bottom:658.813333pt;}
.ye8{bottom:659.613333pt;}
.y54{bottom:659.773333pt;}
.y250{bottom:663.453333pt;}
.y164{bottom:666.653333pt;}
.ybb{bottom:666.813333pt;}
.y11f{bottom:667.613333pt;}
.y86{bottom:667.773333pt;}
.y12a{bottom:669.053333pt;}
.y18e{bottom:674.653333pt;}
.y53{bottom:675.613333pt;}
.y24f{bottom:681.693333pt;}
.y1b5{bottom:682.173333pt;}
.yba{bottom:682.653333pt;}
.y22e{bottom:682.813333pt;}
.ye7{bottom:683.453333pt;}
.y85{bottom:683.613333pt;}
.y11e{bottom:684.733333pt;}
.y129{bottom:685.213333pt;}
.y163{bottom:690.493333pt;}
.y52{bottom:691.453333pt;}
.y22d{bottom:698.653333pt;}
.ye6{bottom:699.293333pt;}
.y84{bottom:699.453333pt;}
.y15{bottom:699.613333pt;}
.y1dc{bottom:700.733333pt;}
.y11d{bottom:701.053333pt;}
.y24e{bottom:705.533333pt;}
.y162{bottom:706.333333pt;}
.yb9{bottom:706.493333pt;}
.y51{bottom:707.293333pt;}
.y18d{bottom:714.333333pt;}
.y22c{bottom:714.493333pt;}
.ye5{bottom:715.133333pt;}
.y83{bottom:715.293333pt;}
.y128{bottom:717.053333pt;}
.y11c{bottom:717.373333pt;}
.y161{bottom:722.173333pt;}
.yb8{bottom:722.333333pt;}
.y50{bottom:723.133333pt;}
.y14{bottom:724.253333pt;}
.y1db{bottom:726.653333pt;}
.y24d{bottom:729.373333pt;}
.y18c{bottom:730.173333pt;}
.y22b{bottom:730.333333pt;}
.ye4{bottom:730.973333pt;}
.y82{bottom:731.133333pt;}
.y11b{bottom:733.213333pt;}
.yb7{bottom:738.173333pt;}
.y4f{bottom:738.973333pt;}
.y1da{bottom:742.653333pt;}
.y18b{bottom:746.173333pt;}
.y81{bottom:746.973333pt;}
.y11a{bottom:749.053333pt;}
.y24c{bottom:753.373333pt;}
.y160{bottom:754.013333pt;}
.yb6{bottom:754.173333pt;}
.y1b4{bottom:755.933333pt;}
.y13{bottom:757.213333pt;}
.y18a{bottom:762.013333pt;}
.y22a{bottom:762.173333pt;}
.ye3{bottom:762.813333pt;}
.y4e{bottom:762.973333pt;}
.y119{bottom:764.893333pt;}
.y1d9{bottom:768.573333pt;}
.y15f{bottom:769.853333pt;}
.yb5{bottom:770.013333pt;}
.y24b{bottom:777.213333pt;}
.y12{bottom:777.533333pt;}
.y189{bottom:777.853333pt;}
.y229{bottom:778.013333pt;}
.ye2{bottom:778.653333pt;}
.y4d{bottom:778.813333pt;}
.y1b3{bottom:780.573333pt;}
.y118{bottom:780.733333pt;}
.y1d8{bottom:784.413333pt;}
.y15e{bottom:785.373333pt;}
.y206{bottom:785.693333pt;}
.yb4{bottom:785.853333pt;}
.y11{bottom:792.893333pt;}
.y188{bottom:793.693333pt;}
.y228{bottom:793.853333pt;}
.y4c{bottom:794.653333pt;}
.y1b2{bottom:796.413333pt;}
.y117{bottom:796.573333pt;}
.y24a{bottom:801.053333pt;}
.y205{bottom:801.533333pt;}
.yb3{bottom:801.693333pt;}
.ye1{bottom:802.493333pt;}
.y1d7{bottom:808.253333pt;}
.y10{bottom:808.413333pt;}
.y15d{bottom:809.573333pt;}
.y227{bottom:809.733333pt;}
.y4b{bottom:810.533333pt;}
.y1b1{bottom:812.293333pt;}
.y116{bottom:812.613333pt;}
.y204{bottom:817.413333pt;}
.yb2{bottom:817.573333pt;}
.ye0{bottom:818.373333pt;}
.y1d6{bottom:824.293333pt;}
.yf{bottom:824.773333pt;}
.y249{bottom:824.933333pt;}
.y187{bottom:825.093333pt;}
.y15c{bottom:825.413333pt;}
.y226{bottom:825.573333pt;}
.y4a{bottom:826.373333pt;}
.y1b0{bottom:827.813333pt;}
.y115{bottom:828.453333pt;}
.yb1{bottom:833.413333pt;}
.ydf{bottom:834.373333pt;}
.y1d5{bottom:840.133333pt;}
.ye{bottom:840.453333pt;}
.y15b{bottom:841.413333pt;}
.y49{bottom:842.373333pt;}
.y114{bottom:844.293333pt;}
.y1af{bottom:845.893333pt;}
.y248{bottom:848.773333pt;}
.yb0{bottom:849.413333pt;}
.yde{bottom:850.213333pt;}
.y1d4{bottom:855.973333pt;}
.y15a{bottom:857.253333pt;}
.y225{bottom:857.413333pt;}
.y48{bottom:858.213333pt;}
.y113{bottom:860.133333pt;}
.yaf{bottom:865.253333pt;}
.ydd{bottom:866.053333pt;}
.y1ae{bottom:868.773333pt;}
.y1d3{bottom:871.813333pt;}
.y247{bottom:872.773333pt;}
.y159{bottom:873.093333pt;}
.y224{bottom:873.253333pt;}
.y47{bottom:874.053333pt;}
.y112{bottom:875.973333pt;}
.yd{bottom:876.133333pt;}
.yae{bottom:881.093333pt;}
.ydc{bottom:881.893333pt;}
.yc{bottom:886.853333pt;}
.y158{bottom:888.933333pt;}
.y223{bottom:889.093333pt;}
.y80{bottom:889.893333pt;}
.y111{bottom:891.653333pt;}
.y127{bottom:891.973333pt;}
.y1d2{bottom:895.653333pt;}
.y246{bottom:896.613333pt;}
.yad{bottom:896.933333pt;}
.yb{bottom:897.573333pt;}
.ydb{bottom:897.733333pt;}
.y46{bottom:897.893333pt;}
.y157{bottom:904.773333pt;}
.y222{bottom:904.933333pt;}
.y7f{bottom:905.733333pt;}
.y110{bottom:907.813333pt;}
.ya{bottom:908.293333pt;}
.yac{bottom:912.773333pt;}
.yda{bottom:913.573333pt;}
.y45{bottom:913.733333pt;}
.y1d1{bottom:915.333333pt;}
.y245{bottom:920.453333pt;}
.y156{bottom:920.773333pt;}
.y9{bottom:921.253333pt;}
.y7e{bottom:921.573333pt;}
.y10f{bottom:927.333333pt;}
.y186{bottom:928.773333pt;}
.y44{bottom:929.573333pt;}
.y203{bottom:936.613333pt;}
.yab{bottom:936.773333pt;}
.yd9{bottom:937.573333pt;}
.y7d{bottom:939.333333pt;}
.y8{bottom:943.973333pt;}
.y244{bottom:944.293333pt;}
.y155{bottom:944.613333pt;}
.y43{bottom:945.573333pt;}
.y1cd{bottom:951.653333pt;}
.y10e{bottom:951.813333pt;}
.y202{bottom:952.453333pt;}
.yaa{bottom:952.613333pt;}
.yd8{bottom:953.413333pt;}
.y154{bottom:960.453333pt;}
.y42{bottom:961.413333pt;}
.y7{bottom:966.373333pt;}
.y243{bottom:968.133333pt;}
.y201{bottom:968.293333pt;}
.y7c{bottom:968.453333pt;}
.yd7{bottom:969.253333pt;}
.y153{bottom:976.293333pt;}
.y10d{bottom:976.453333pt;}
.y41{bottom:977.253333pt;}
.y200{bottom:984.133333pt;}
.y7b{bottom:984.293333pt;}
.yd6{bottom:985.093333pt;}
.y221{bottom:986.853333pt;}
.y1ca{bottom:988.133333pt;}
.y242{bottom:991.973333pt;}
.y152{bottom:992.133333pt;}
.y6{bottom:992.773333pt;}
.y40{bottom:993.093333pt;}
.y1ff{bottom:999.973333pt;}
.y7a{bottom:1000.133333pt;}
.yd5{bottom:1000.613333pt;}
.y10c{bottom:1000.933333pt;}
.y151{bottom:1007.973333pt;}
.y3f{bottom:1008.933333pt;}
.y79{bottom:1015.973333pt;}
.yd4{bottom:1018.720000pt;}
.y150{bottom:1024.000000pt;}
.y3e{bottom:1024.960000pt;}
.y10b{bottom:1025.440000pt;}
.y78{bottom:1032.000000pt;}
.y5{bottom:1036.320000pt;}
.y1fe{bottom:1039.840000pt;}
.y3d{bottom:1040.800000pt;}
.y77{bottom:1047.840000pt;}
.y10a{bottom:1050.080000pt;}
.y1fd{bottom:1055.680000pt;}
.y3c{bottom:1058.400000pt;}
.y76{bottom:1063.680000pt;}
.h2{height:17.916000pt;}
.h31{height:22.066667pt;}
.h35{height:22.080000pt;}
.h19{height:23.826667pt;}
.h1e{height:23.836000pt;}
.h1c{height:23.840000pt;}
.h25{height:23.858667pt;}
.h1f{height:23.860000pt;}
.h1b{height:23.872000pt;}
.h1a{height:23.986667pt;}
.h1d{height:23.996000pt;}
.h2d{height:26.100000pt;}
.h2e{height:27.200000pt;}
.h23{height:30.037500pt;}
.h17{height:34.710938pt;}
.h2f{height:35.680000pt;}
.h8{height:36.431250pt;}
.h2a{height:40.277500pt;}
.h34{height:40.352000pt;}
.h26{height:41.718750pt;}
.h32{height:42.084375pt;}
.h33{height:43.215000pt;}
.h22{height:44.278750pt;}
.h37{height:47.085938pt;}
.h16{height:47.109375pt;}
.h27{height:47.317500pt;}
.h10{height:48.375000pt;}
.h12{height:49.148438pt;}
.h2c{height:49.336436pt;}
.h18{height:49.968750pt;}
.h14{height:52.108438pt;}
.h9{height:52.134375pt;}
.ha{height:53.535000pt;}
.h36{height:54.236000pt;}
.h30{height:54.598989pt;}
.he{height:57.787500pt;}
.h28{height:58.197500pt;}
.h3{height:58.563750pt;}
.h24{height:58.629375pt;}
.hd{height:59.340000pt;}
.h20{height:61.397500pt;}
.hc{height:64.290000pt;}
.hf{height:64.500000pt;}
.h29{height:68.598750pt;}
.h11{height:69.660000pt;}
.h21{height:71.429375pt;}
.h2b{height:71.637500pt;}
.h15{height:71.955000pt;}
.hb{height:73.490625pt;}
.h6{height:75.465000pt;}
.h7{height:80.625000pt;}
.h5{height:91.590000pt;}
.h4{height:96.750000pt;}
.h13{height:306.240000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w22{width:53.266667pt;}
.w2b{width:53.746667pt;}
.w21{width:65.266667pt;}
.w2a{width:65.586667pt;}
.w19{width:67.860000pt;}
.w25{width:69.626667pt;}
.w20{width:70.912000pt;}
.w24{width:71.186667pt;}
.w23{width:71.218667pt;}
.w1f{width:71.360000pt;}
.w3{width:71.386667pt;}
.w29{width:71.392000pt;}
.w2d{width:71.666667pt;}
.w28{width:71.680000pt;}
.w2c{width:71.698667pt;}
.w15{width:75.986667pt;}
.w1d{width:77.272000pt;}
.w26{width:77.592000pt;}
.w1e{width:77.792000pt;}
.w27{width:78.112000pt;}
.w17{width:84.466667pt;}
.w16{width:84.498667pt;}
.w18{width:84.506667pt;}
.wc{width:115.392000pt;}
.w8{width:127.378667pt;}
.wb{width:129.792000pt;}
.w7{width:133.466667pt;}
.w6{width:135.066667pt;}
.w5{width:139.702667pt;}
.wd{width:144.333333pt;}
.we{width:144.346667pt;}
.w13{width:156.653333pt;}
.w9{width:158.746667pt;}
.wa{width:158.902667pt;}
.w12{width:159.386667pt;}
.wf{width:162.733333pt;}
.w10{width:162.906667pt;}
.w14{width:170.266667pt;}
.w11{width:172.182667pt;}
.w1b{width:190.906667pt;}
.w1c{width:213.653333pt;}
.w1a{width:227.706667pt;}
.w2{width:641.880000pt;}
.w4{width:723.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x57{left:4.626667pt;}
.x54{left:5.746667pt;}
.x4{left:7.680000pt;}
.x45{left:8.640000pt;}
.x14{left:9.600000pt;}
.x3f{left:10.546667pt;}
.x52{left:11.666667pt;}
.x40{left:12.626667pt;}
.x50{left:14.720000pt;}
.x58{left:15.676000pt;}
.x42{left:16.640000pt;}
.x4d{left:17.760000pt;}
.x41{left:19.666667pt;}
.x43{left:21.266667pt;}
.x44{left:23.346667pt;}
.x5a{left:26.546667pt;}
.x4a{left:28.800000pt;}
.x3d{left:30.226667pt;}
.x2b{left:31.680000pt;}
.x59{left:32.626667pt;}
.x47{left:33.948000pt;}
.x13{left:35.680000pt;}
.x3b{left:37.906667pt;}
.x1b{left:39.026667pt;}
.x1{left:40.324000pt;}
.x1e{left:42.428000pt;}
.x1f{left:44.320000pt;}
.x15{left:45.280000pt;}
.x6{left:48.000000pt;}
.x28{left:49.284000pt;}
.x20{left:50.720000pt;}
.x2e{left:52.188000pt;}
.x21{left:53.760000pt;}
.x1d{left:55.200000pt;}
.x18{left:57.788000pt;}
.x4c{left:59.066667pt;}
.x24{left:61.586667pt;}
.x2f{left:62.920000pt;}
.x23{left:65.480000pt;}
.x22{left:67.868000pt;}
.x30{left:70.226667pt;}
.x12{left:72.000000pt;}
.x33{left:74.720000pt;}
.x25{left:77.280000pt;}
.xc{left:80.512000pt;}
.x27{left:90.272000pt;}
.x3a{left:96.032000pt;}
.x26{left:106.112000pt;}
.x48{left:114.432000pt;}
.xf{left:145.146667pt;}
.x19{left:188.826667pt;}
.x4e{left:192.346667pt;}
.x29{left:208.826667pt;}
.x10{left:215.546667pt;}
.x37{left:217.146667pt;}
.x9{left:239.746667pt;}
.x2{left:241.182667pt;}
.x34{left:247.586667pt;}
.xa{left:258.626667pt;}
.x35{left:268.546667pt;}
.x4f{left:270.786667pt;}
.xe{left:275.586667pt;}
.x11{left:279.426667pt;}
.x7{left:286.466667pt;}
.x32{left:291.906667pt;}
.x36{left:296.066667pt;}
.x8{left:323.906667pt;}
.xb{left:336.706667pt;}
.xd{left:338.306667pt;}
.x2a{left:339.266667pt;}
.x49{left:342.786667pt;}
.x5{left:396.893333pt;}
.x51{left:414.506667pt;}
.x38{left:419.626667pt;}
.x16{left:420.893333pt;}
.x17{left:444.893333pt;}
.x2c{left:455.306667pt;}
.x1a{left:458.666667pt;}
.x46{left:468.893333pt;}
.x53{left:480.426667pt;}
.x3c{left:498.026667pt;}
.x4b{left:534.506667pt;}
.x39{left:576.933333pt;}
.x31{left:583.653333pt;}
.x1c{left:586.693333pt;}
.x2d{left:600.293333pt;}
.x55{left:606.533333pt;}
.x3e{left:668.293333pt;}
.x56{left:678.533333pt;}
.x3{left:682.213333pt;}
}




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