
    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_a9b7b160f9fce49aea0967f8.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8001851b8ceb89bef54875e4.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e83d50656416da60577a72fd.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_cb831bfc45030f6d94299355.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2708fd9fd160649447b04223.woff')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_1155f12929f8b5a5d697f43c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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_1c6d0ad911e9d3a746575a42.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_26dcb187c5c9063d0d335fbf.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b010e47a581509ad388b8702.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a07afe1b1823860ac453566f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.737793;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_ce35246825bd5170c6ef51ad.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_17bbfb3f72a322b1797cf915.woff')format("woff");}.ffc{font-family:ffc;line-height:0.708008;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_863fa374908edd152982e486.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_554f0d7cbb2042e59e6ff353.woff')format("woff");}.ffe{font-family:ffe;line-height:1.432129;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_c123e17438c5a05fa3e29159.woff')format("woff");}.fff{font-family:fff;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m3{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);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.lsd{letter-spacing:-1.440000px;}
.lsa{letter-spacing:-0.810000px;}
.lsb{letter-spacing:-0.630000px;}
.ls6{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.269400px;}
.ls9{letter-spacing:-0.223800px;}
.lsc{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.lse{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.144720px;}
.ls5{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.181200px;}
.lsf{letter-spacing:0.259800px;}
.ls11{letter-spacing:0.259920px;}
.ls3{letter-spacing:0.315600px;}
.ls2{letter-spacing:0.360000px;}
.ls0{letter-spacing:47.700000px;}
.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:-41.760000px;}
.ws11{word-spacing:-18.000000px;}
.ws10{word-spacing:-16.560000px;}
.ws16{word-spacing:-15.300000px;}
.ws12{word-spacing:-15.199800px;}
.ws15{word-spacing:-14.940000px;}
.wse{word-spacing:-13.860000px;}
.ws8{word-spacing:-13.500000px;}
.ws13{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.241200px;}
.ws6{word-spacing:-12.060000px;}
.ws14{word-spacing:-11.790600px;}
.ws2{word-spacing:-11.700000px;}
.ws4{word-spacing:-11.340000px;}
.ws3{word-spacing:-10.980000px;}
.ws7{word-spacing:-10.950480px;}
.wsa{word-spacing:-10.440000px;}
.wsb{word-spacing:-9.810000px;}
.wsf{word-spacing:-9.720000px;}
.ws9{word-spacing:-9.000000px;}
.ws1{word-spacing:-7.560000px;}
.wsd{word-spacing:0.000000px;}
.ws0{word-spacing:60.960000px;}
._7{margin-left:-59.580000px;}
._17{margin-left:-4.271040px;}
._1b{margin-left:-3.246240px;}
._4{margin-left:-2.211600px;}
._2{margin-left:-1.126080px;}
._0{width:1.044000px;}
._1{width:2.424480px;}
._b{width:4.031520px;}
._11{width:5.079600px;}
._12{width:6.553200px;}
._18{width:7.848960px;}
._13{width:9.561600px;}
._14{width:11.266560px;}
._19{width:12.370320px;}
._23{width:13.565520px;}
._2e{width:14.616720px;}
._1a{width:15.930000px;}
._1c{width:17.145600px;}
._9{width:18.167040px;}
._a{width:19.306080px;}
._1f{width:20.318400px;}
._10{width:21.366000px;}
._20{width:23.217600px;}
._d{width:24.351840px;}
._c{width:25.564320px;}
._1e{width:27.370080px;}
._f{width:29.103120px;}
._e{width:30.298320px;}
._35{width:31.531680px;}
._30{width:32.569200px;}
._31{width:34.122960px;}
._27{width:36.035280px;}
._28{width:37.051200px;}
._2f{width:38.604960px;}
._21{width:40.098960px;}
._22{width:41.168880px;}
._2c{width:42.668640px;}
._34{width:43.716240px;}
._32{width:45.596880px;}
._24{width:47.509200px;}
._25{width:48.644640px;}
._2a{width:50.975280px;}
._2b{width:52.799760px;}
._33{width:55.935360px;}
._26{width:57.190320px;}
._29{width:64.002960px;}
._5{width:65.496000px;}
._38{width:66.572640px;}
._37{width:70.787520px;}
._3{width:71.920800px;}
._15{width:82.767600px;}
._36{width:102.189600px;}
._16{width:109.084320px;}
._6{width:199.620000px;}
._1d{width:285.870000px;}
._8{width:755.976000px;}
._2d{width:1182.696000px;}
.fc5{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(1,2,5);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fs10{font-size:6.000000px;}
.fsc{font-size:23.760000px;}
.fs8{font-size:30.240000px;}
.fsd{font-size:36.000000px;}
.fsb{font-size:37.946952px;}
.fsf{font-size:38.880000px;}
.fs0{font-size:41.760000px;}
.fs7{font-size:45.360000px;}
.fs9{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fse{font-size:62.991941px;}
.fs6{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y45{bottom:-247.710000px;}
.y44{bottom:-213.870000px;}
.y43{bottom:-180.210000px;}
.y42{bottom:-146.550000px;}
.y7f{bottom:-143.310000px;}
.y41{bottom:-112.680000px;}
.y7e{bottom:-109.650000px;}
.y40{bottom:-79.020000px;}
.y7d{bottom:-75.945000px;}
.y3f{bottom:-45.180000px;}
.y49{bottom:-42.120000px;}
.y7c{bottom:-42.105000px;}
.y81{bottom:-17.922750px;}
.y48{bottom:-13.860000px;}
.y3e{bottom:-11.520000px;}
.y7b{bottom:-8.445000px;}
.y0{bottom:0.000000px;}
.y6f{bottom:1.800000px;}
.y236{bottom:1.837500px;}
.y67{bottom:3.765000px;}
.y2{bottom:3.960000px;}
.y10b{bottom:4.680000px;}
.y123{bottom:4.845000px;}
.y47{bottom:4.860000px;}
.y148{bottom:4.905000px;}
.y14a{bottom:5.025000px;}
.y135{bottom:5.040000px;}
.y71{bottom:5.580000px;}
.y18a{bottom:5.760000px;}
.y3d{bottom:6.840000px;}
.y5{bottom:12.600000px;}
.y150{bottom:12.780000px;}
.y141{bottom:12.960000px;}
.y6e{bottom:14.940000px;}
.y66{bottom:19.065000px;}
.y14f{bottom:20.700000px;}
.y3c{bottom:20.880000px;}
.y183{bottom:21.405000px;}
.y17b{bottom:21.420000px;}
.y17e{bottom:21.600000px;}
.y139{bottom:21.780000px;}
.y6{bottom:21.960000px;}
.y3{bottom:23.220000px;}
.y115{bottom:24.315000px;}
.y4{bottom:24.660000px;}
.y7a{bottom:25.395000px;}
.y6d{bottom:27.900000px;}
.y137{bottom:29.700000px;}
.y13f{bottom:29.880000px;}
.y65{bottom:31.710000px;}
.y3b{bottom:34.740000px;}
.y175{bottom:36.540000px;}
.y177{bottom:36.720000px;}
.y154{bottom:37.620000px;}
.y138{bottom:37.800000px;}
.y10f{bottom:38.160000px;}
.y113{bottom:38.340000px;}
.y6c{bottom:41.040000px;}
.y13e{bottom:45.720000px;}
.y145{bottom:46.440000px;}
.y83{bottom:46.980000px;}
.y3a{bottom:47.520000px;}
.y64{bottom:49.530000px;}
.y6b{bottom:54.000000px;}
.y79{bottom:56.355000px;}
.y1{bottom:57.420000px;}
.y80{bottom:63.780000px;}
.y6a{bottom:66.960000px;}
.y63{bottom:67.350000px;}
.y78{bottom:69.315000px;}
.y11c{bottom:79.950000px;}
.y62{bottom:80.670000px;}
.y77{bottom:82.455000px;}
.y69{bottom:84.060000px;}
.y61{bottom:89.490000px;}
.y11b{bottom:93.810000px;}
.y76{bottom:95.415000px;}
.yb4{bottom:100.620000px;}
.y1ca{bottom:101.520000px;}
.y1c6{bottom:103.680000px;}
.y213{bottom:104.760000px;}
.y60{bottom:107.310000px;}
.y11a{bottom:107.670000px;}
.y131{bottom:108.360000px;}
.y75{bottom:108.375000px;}
.y1e7{bottom:108.900000px;}
.y1ab{bottom:109.800000px;}
.y1b9{bottom:110.700000px;}
.y172{bottom:110.880000px;}
.ye5{bottom:111.600000px;}
.yb3{bottom:120.420000px;}
.y1c9{bottom:121.320000px;}
.y74{bottom:121.515000px;}
.y119{bottom:121.530000px;}
.y212{bottom:122.040000px;}
.y38{bottom:122.760000px;}
.y1c5{bottom:123.480000px;}
.y5f{bottom:125.130000px;}
.y130{bottom:128.160000px;}
.y1e6{bottom:128.700000px;}
.y1aa{bottom:129.780000px;}
.y1b8{bottom:130.500000px;}
.y171{bottom:130.680000px;}
.ye4{bottom:131.400000px;}
.y73{bottom:133.755000px;}
.y211{bottom:139.320000px;}
.yb2{bottom:140.400000px;}
.y1c8{bottom:141.120000px;}
.y37{bottom:142.740000px;}
.y5e{bottom:143.130000px;}
.y1c4{bottom:143.280000px;}
.y12f{bottom:148.140000px;}
.y1e5{bottom:149.400000px;}
.y1a9{bottom:149.580000px;}
.y170{bottom:150.480000px;}
.ye3{bottom:151.200000px;}
.y210{bottom:156.600000px;}
.yb1{bottom:160.200000px;}
.y5d{bottom:160.950000px;}
.y1c7{bottom:162.000000px;}
.y36{bottom:162.570000px;}
.y1c3{bottom:163.110000px;}
.y12e{bottom:167.970000px;}
.y1a8{bottom:169.410000px;}
.y1b7{bottom:170.310000px;}
.y16f{bottom:170.490000px;}
.ye2{bottom:172.290000px;}
.y20f{bottom:173.910000px;}
.y5c{bottom:178.770000px;}
.yb0{bottom:180.030000px;}
.y35{bottom:182.370000px;}
.y1c2{bottom:183.090000px;}
.y12d{bottom:187.770000px;}
.y1a7{bottom:189.210000px;}
.y1b6{bottom:190.110000px;}
.y16e{bottom:190.290000px;}
.y20e{bottom:191.190000px;}
.ye1{bottom:191.730000px;}
.y5b{bottom:196.590000px;}
.yaf{bottom:199.830000px;}
.y34{bottom:202.170000px;}
.y1c1{bottom:202.890000px;}
.ye0{bottom:204.870000px;}
.y12c{bottom:207.570000px;}
.y20d{bottom:208.290000px;}
.y1a6{bottom:209.010000px;}
.y1b5{bottom:209.910000px;}
.y16d{bottom:210.090000px;}
.y1e4{bottom:210.270000px;}
.y5a{bottom:214.410000px;}
.yae{bottom:219.630000px;}
.y33{bottom:221.970000px;}
.y1c0{bottom:222.690000px;}
.ydf{bottom:224.670000px;}
.y20c{bottom:225.570000px;}
.y12b{bottom:227.370000px;}
.y59{bottom:227.730000px;}
.y1a5{bottom:228.990000px;}
.y1b4{bottom:229.710000px;}
.y16c{bottom:229.890000px;}
.y1e3{bottom:230.970000px;}
.y58{bottom:236.550000px;}
.yad{bottom:239.610000px;}
.y32{bottom:241.950000px;}
.y1bf{bottom:242.490000px;}
.y20b{bottom:242.850000px;}
.yde{bottom:244.470000px;}
.y12a{bottom:247.350000px;}
.y1a4{bottom:248.790000px;}
.y16b{bottom:249.690000px;}
.y57{bottom:254.580000px;}
.yac{bottom:259.410000px;}
.y20a{bottom:260.130000px;}
.y31{bottom:261.750000px;}
.y1be{bottom:262.290000px;}
.ydd{bottom:264.270000px;}
.y129{bottom:267.150000px;}
.y1a3{bottom:268.590000px;}
.y1b3{bottom:269.490000px;}
.y16a{bottom:269.670000px;}
.y1e2{bottom:271.830000px;}
.y56{bottom:272.400000px;}
.y209{bottom:277.410000px;}
.yab{bottom:279.210000px;}
.y30{bottom:281.550000px;}
.y1bd{bottom:282.270000px;}
.ydc{bottom:284.250000px;}
.y128{bottom:286.950000px;}
.y1a2{bottom:288.390000px;}
.y1b2{bottom:289.290000px;}
.y169{bottom:289.470000px;}
.y55{bottom:290.220000px;}
.y1e1{bottom:291.630000px;}
.y208{bottom:294.690000px;}
.yaa{bottom:299.910000px;}
.y2f{bottom:301.350000px;}
.y1bc{bottom:302.070000px;}
.ydb{bottom:304.050000px;}
.y127{bottom:306.750000px;}
.y54{bottom:308.040000px;}
.y1a1{bottom:308.190000px;}
.y1b1{bottom:309.090000px;}
.y168{bottom:309.270000px;}
.y207{bottom:311.790000px;}
.y1e0{bottom:312.330000px;}
.ya9{bottom:320.790000px;}
.y2e{bottom:321.150000px;}
.y1bb{bottom:321.870000px;}
.yda{bottom:323.850000px;}
.y53{bottom:325.860000px;}
.y126{bottom:326.550000px;}
.y1a0{bottom:328.170000px;}
.y1b0{bottom:328.890000px;}
.y167{bottom:329.070000px;}
.y1ba{bottom:341.670000px;}
.y2d{bottom:342.030000px;}
.yd9{bottom:343.650000px;}
.y52{bottom:343.860000px;}
.y206{bottom:346.350000px;}
.y125{bottom:346.530000px;}
.y19f{bottom:347.970000px;}
.y166{bottom:348.870000px;}
.y1df{bottom:353.370000px;}
.y2c{bottom:359.310000px;}
.ya8{bottom:361.470000px;}
.y51{bottom:361.680000px;}
.yd8{bottom:363.450000px;}
.y205{bottom:363.630000px;}
.y124{bottom:364.530000px;}
.y2b{bottom:365.430000px;}
.y19e{bottom:367.770000px;}
.y1af{bottom:368.670000px;}
.y165{bottom:368.850000px;}
.y4a{bottom:371.205000px;}
.y1de{bottom:373.170000px;}
.y50{bottom:375.000000px;}
.y118{bottom:376.245000px;}
.y204{bottom:380.910000px;}
.ya7{bottom:381.450000px;}
.yd7{bottom:383.430000px;}
.y2a{bottom:383.610000px;}
.y4f{bottom:383.820000px;}
.y19d{bottom:387.570000px;}
.y1ae{bottom:388.470000px;}
.y164{bottom:388.650000px;}
.y122{bottom:393.015000px;}
.y203{bottom:398.055000px;}
.ya6{bottom:401.295000px;}
.y4e{bottom:401.640000px;}
.yd6{bottom:403.275000px;}
.y29{bottom:407.415000px;}
.y1ad{bottom:408.315000px;}
.y163{bottom:408.495000px;}
.y121{bottom:409.575000px;}
.y1dd{bottom:413.715000px;}
.y202{bottom:415.335000px;}
.y4d{bottom:419.460000px;}
.ya5{bottom:421.095000px;}
.yd5{bottom:423.075000px;}
.y120{bottom:426.135000px;}
.y19c{bottom:427.395000px;}
.y1ac{bottom:428.115000px;}
.y162{bottom:428.295000px;}
.y28{bottom:431.355000px;}
.y201{bottom:432.615000px;}
.y4c{bottom:437.280000px;}
.y1dc{bottom:437.475000px;}
.ya4{bottom:440.895000px;}
.yd4{bottom:442.875000px;}
.y19b{bottom:445.215000px;}
.y161{bottom:448.095000px;}
.y200{bottom:449.895000px;}
.y235{bottom:454.935000px;}
.y27{bottom:455.115000px;}
.y4b{bottom:455.280000px;}
.y11f{bottom:459.435000px;}
.ya3{bottom:460.695000px;}
.yd3{bottom:462.675000px;}
.y1ff{bottom:467.175000px;}
.y160{bottom:468.075000px;}
.y234{bottom:472.215000px;}
.y11e{bottom:475.995000px;}
.y19a{bottom:478.155000px;}
.y1db{bottom:478.515000px;}
.y26{bottom:478.875000px;}
.ya2{bottom:480.675000px;}
.yd2{bottom:482.655000px;}
.y1fe{bottom:484.455000px;}
.y72{bottom:486.960000px;}
.y15f{bottom:487.875000px;}
.y233{bottom:489.315000px;}
.y198{bottom:489.855000px;}
.y11d{bottom:492.735000px;}
.y1da{bottom:498.315000px;}
.y25{bottom:499.755000px;}
.ya1{bottom:500.475000px;}
.y1fd{bottom:501.555000px;}
.yd1{bottom:502.455000px;}
.y199{bottom:506.415000px;}
.y232{bottom:506.595000px;}
.y15e{bottom:507.675000px;}
.y114{bottom:509.280000px;}
.y112{bottom:509.295000px;}
.y1d9{bottom:518.115000px;}
.y1fc{bottom:518.835000px;}
.y24{bottom:519.555000px;}
.ya0{bottom:520.275000px;}
.yd0{bottom:522.255000px;}
.y196{bottom:523.155000px;}
.y231{bottom:523.875000px;}
.y117{bottom:525.855000px;}
.y15d{bottom:527.475000px;}
.y23{bottom:533.415000px;}
.y1fb{bottom:536.115000px;}
.y1d8{bottom:537.915000px;}
.y197{bottom:539.715000px;}
.y9f{bottom:540.075000px;}
.y230{bottom:541.155000px;}
.y22{bottom:542.055000px;}
.y116{bottom:542.595000px;}
.y15c{bottom:547.275000px;}
.y1fa{bottom:553.395000px;}
.y194{bottom:556.275000px;}
.y1d7{bottom:557.715000px;}
.y22f{bottom:558.435000px;}
.y10e{bottom:559.155000px;}
.y9e{bottom:559.875000px;}
.ycf{bottom:561.855000px;}
.y21{bottom:565.275000px;}
.y15b{bottom:567.255000px;}
.y1f9{bottom:570.675000px;}
.y195{bottom:573.015000px;}
.y111{bottom:575.715000px;}
.y1d6{bottom:577.695000px;}
.y9d{bottom:579.855000px;}
.yce{bottom:581.835000px;}
.y15a{bottom:587.055000px;}
.y1f8{bottom:587.955000px;}
.y20{bottom:588.675000px;}
.y192{bottom:589.575000px;}
.y110{bottom:592.455000px;}
.y22e{bottom:592.815000px;}
.y1d5{bottom:597.495000px;}
.y9c{bottom:599.655000px;}
.ycd{bottom:601.635000px;}
.y1f7{bottom:605.055000px;}
.y193{bottom:606.135000px;}
.y159{bottom:606.855000px;}
.y10d{bottom:609.015000px;}
.y22d{bottom:610.095000px;}
.y1f{bottom:611.895000px;}
.y1d4{bottom:617.295000px;}
.y9b{bottom:619.455000px;}
.ycc{bottom:621.435000px;}
.y1f6{bottom:622.335000px;}
.y190{bottom:622.905000px;}
.y158{bottom:624.885000px;}
.y10c{bottom:625.605000px;}
.y22c{bottom:627.405000px;}
.y153{bottom:636.765000px;}
.y1d3{bottom:637.125000px;}
.y9a{bottom:639.285000px;}
.y191{bottom:639.465000px;}
.y1f5{bottom:639.645000px;}
.ycb{bottom:641.265000px;}
.y10a{bottom:643.785000px;}
.y22b{bottom:644.685000px;}
.y68{bottom:645.225000px;}
.y157{bottom:653.325000px;}
.y18e{bottom:656.025000px;}
.y1d2{bottom:656.925000px;}
.y99{bottom:659.085000px;}
.yca{bottom:661.065000px;}
.y22a{bottom:661.965000px;}
.y109{bottom:666.465000px;}
.y1e{bottom:666.825000px;}
.y156{bottom:669.885000px;}
.y18f{bottom:672.585000px;}
.y1f4{bottom:674.205000px;}
.y1d1{bottom:676.905000px;}
.y98{bottom:679.065000px;}
.y229{bottom:679.245000px;}
.yc9{bottom:681.045000px;}
.y1d{bottom:682.305000px;}
.y108{bottom:684.825000px;}
.y155{bottom:686.625000px;}
.y18c{bottom:689.325000px;}
.y1f3{bottom:691.305000px;}
.y228{bottom:696.345000px;}
.y1d0{bottom:696.705000px;}
.y1c{bottom:697.785000px;}
.y97{bottom:698.865000px;}
.yc8{bottom:700.845000px;}
.y14d{bottom:703.185000px;}
.y107{bottom:704.625000px;}
.y18d{bottom:705.885000px;}
.y1f2{bottom:708.585000px;}
.y1b{bottom:713.265000px;}
.y227{bottom:713.625000px;}
.y1cf{bottom:716.505000px;}
.y96{bottom:718.665000px;}
.y152{bottom:719.745000px;}
.yc7{bottom:721.545000px;}
.y189{bottom:722.445000px;}
.y106{bottom:724.425000px;}
.y1f1{bottom:725.865000px;}
.yf6{bottom:726.585000px;}
.y1a{bottom:728.745000px;}
.y226{bottom:730.905000px;}
.y1ce{bottom:736.305000px;}
.y151{bottom:736.485000px;}
.y95{bottom:738.465000px;}
.y18b{bottom:739.185000px;}
.y19{bottom:739.905000px;}
.yc6{bottom:741.345000px;}
.y1f0{bottom:743.145000px;}
.y105{bottom:744.225000px;}
.yf5{bottom:746.385000px;}
.y225{bottom:748.185000px;}
.y39{bottom:748.545000px;}
.y14e{bottom:753.045000px;}
.y18{bottom:753.585000px;}
.yc5{bottom:754.305000px;}
.y186{bottom:755.745000px;}
.y188{bottom:755.760000px;}
.y1cd{bottom:756.105000px;}
.y94{bottom:758.265000px;}
.y1ef{bottom:760.425000px;}
.y104{bottom:764.205000px;}
.y224{bottom:765.465000px;}
.yf4{bottom:766.185000px;}
.y17{bottom:766.545000px;}
.y187{bottom:772.305000px;}
.yc4{bottom:774.105000px;}
.y1cc{bottom:776.085000px;}
.y1ee{bottom:777.705000px;}
.y93{bottom:778.245000px;}
.y16{bottom:779.505000px;}
.y223{bottom:782.565000px;}
.y103{bottom:784.005000px;}
.y144{bottom:785.445000px;}
.yf3{bottom:786.165000px;}
.y185{bottom:789.045000px;}
.y182{bottom:789.060000px;}
.y15{bottom:792.465000px;}
.yc3{bottom:794.085000px;}
.y1ed{bottom:795.345000px;}
.y1cb{bottom:796.785000px;}
.y92{bottom:798.045000px;}
.y222{bottom:799.845000px;}
.y14c{bottom:802.185000px;}
.y102{bottom:803.805000px;}
.y184{bottom:805.620000px;}
.y14{bottom:806.145000px;}
.yf2{bottom:806.865000px;}
.yc2{bottom:813.885000px;}
.y221{bottom:817.125000px;}
.y91{bottom:817.845000px;}
.y14b{bottom:818.745000px;}
.y13{bottom:819.105000px;}
.y180{bottom:822.165000px;}
.y101{bottom:823.605000px;}
.yf1{bottom:826.665000px;}
.y1ec{bottom:833.505000px;}
.yc1{bottom:833.685000px;}
.y220{bottom:834.405000px;}
.y149{bottom:835.320000px;}
.y90{bottom:837.645000px;}
.y181{bottom:838.905000px;}
.yf0{bottom:839.625000px;}
.y100{bottom:844.305000px;}
.y12{bottom:845.925000px;}
.y21f{bottom:851.685000px;}
.y147{bottom:852.045000px;}
.yc0{bottom:853.530000px;}
.y1eb{bottom:854.250000px;}
.y17d{bottom:855.510000px;}
.y11{bottom:857.130000px;}
.y8f{bottom:857.490000px;}
.yef{bottom:859.470000px;}
.y146{bottom:868.650000px;}
.y21e{bottom:869.010000px;}
.y17f{bottom:872.070000px;}
.ybf{bottom:873.330000px;}
.y8e{bottom:877.470000px;}
.yee{bottom:879.450000px;}
.y10{bottom:881.250000px;}
.y13d{bottom:885.210000px;}
.yff{bottom:885.390000px;}
.y21d{bottom:886.110000px;}
.y17a{bottom:888.810000px;}
.ybe{bottom:893.310000px;}
.y1ea{bottom:895.110000px;}
.y8d{bottom:897.270000px;}
.yed{bottom:899.250000px;}
.y143{bottom:901.950000px;}
.y21c{bottom:903.390000px;}
.yfe{bottom:905.190000px;}
.y17c{bottom:905.370000px;}
.yf{bottom:906.090000px;}
.ybd{bottom:913.110000px;}
.y1e9{bottom:914.910000px;}
.y8c{bottom:917.070000px;}
.y142{bottom:918.510000px;}
.yec{bottom:919.050000px;}
.y21b{bottom:920.670000px;}
.ye{bottom:921.210000px;}
.y179{bottom:921.930000px;}
.yfd{bottom:924.990000px;}
.ybc{bottom:932.910000px;}
.y140{bottom:935.070000px;}
.y1e8{bottom:935.610000px;}
.yd{bottom:936.150000px;}
.y8b{bottom:936.870000px;}
.y21a{bottom:937.950000px;}
.y178{bottom:938.670000px;}
.yeb{bottom:938.850000px;}
.yfc{bottom:944.790000px;}
.yc{bottom:947.670000px;}
.ybb{bottom:952.710000px;}
.y176{bottom:955.230000px;}
.y8a{bottom:956.670000px;}
.yea{bottom:958.650000px;}
.yfb{bottom:964.590000px;}
.yb{bottom:965.130000px;}
.y136{bottom:967.650000px;}
.yba{bottom:972.510000px;}
.y89{bottom:976.650000px;}
.ye9{bottom:979.890000px;}
.y13c{bottom:984.210000px;}
.yfa{bottom:984.570000px;}
.ya{bottom:986.730000px;}
.y219{bottom:989.610000px;}
.yb9{bottom:992.490000px;}
.y88{bottom:996.450000px;}
.ye8{bottom:999.330000px;}
.y13b{bottom:1000.770000px;}
.y174{bottom:1003.650000px;}
.yf9{bottom:1004.370000px;}
.y218{bottom:1006.890000px;}
.y9{bottom:1008.690000px;}
.yb8{bottom:1012.290000px;}
.y87{bottom:1016.250000px;}
.y13a{bottom:1017.510000px;}
.y217{bottom:1024.170000px;}
.yf8{bottom:1025.070000px;}
.yb7{bottom:1032.090000px;}
.y134{bottom:1035.510000px;}
.y86{bottom:1036.050000px;}
.y8{bottom:1036.230000px;}
.y216{bottom:1041.450000px;}
.yf7{bottom:1044.330000px;}
.yb6{bottom:1051.890000px;}
.y173{bottom:1053.510000px;}
.y85{bottom:1055.850000px;}
.y215{bottom:1058.730000px;}
.y133{bottom:1059.270000px;}
.y7{bottom:1063.230000px;}
.yb5{bottom:1072.590000px;}
.ye7{bottom:1072.950000px;}
.y84{bottom:1075.650000px;}
.y214{bottom:1075.830000px;}
.y132{bottom:1077.090000px;}
.y70{bottom:1096.200000px;}
.ye6{bottom:1103.940000px;}
.y82{bottom:1123.200000px;}
.y46{bottom:1137.240000px;}
.h6{height:5.653125px;}
.h17{height:5.805000px;}
.h49{height:6.257812px;}
.h2{height:13.500000px;}
.h32{height:15.825000px;}
.h2f{height:15.840000px;}
.h3b{height:15.862500px;}
.h30{height:15.870000px;}
.h36{height:16.005000px;}
.h3c{height:16.020000px;}
.h1b{height:16.920000px;}
.h22{height:22.140000px;}
.h15{height:23.319141px;}
.h2c{height:24.421536px;}
.h2b{height:29.664141px;}
.hc{height:29.678906px;}
.h2a{height:30.476250px;}
.he{height:30.963516px;}
.h3e{height:31.680000px;}
.h39{height:31.845000px;}
.h42{height:32.385000px;}
.h46{height:32.400000px;}
.h43{height:32.565000px;}
.h45{height:32.580000px;}
.h44{height:32.602500px;}
.h4{height:34.200000px;}
.h20{height:36.281250px;}
.h13{height:39.503370px;}
.h5{height:40.985156px;}
.h21{height:42.086250px;}
.h47{height:43.215117px;}
.h27{height:43.737568px;}
.h10{height:44.518359px;}
.hb{height:45.116367px;}
.h19{height:45.714375px;}
.h11{height:46.622932px;}
.h12{height:47.344922px;}
.h40{height:47.505000px;}
.h41{height:47.685000px;}
.h16{height:48.616875px;}
.h31{height:49.125000px;}
.h33{height:49.135500px;}
.h34{height:49.140000px;}
.h14{height:52.998047px;}
.h1c{height:54.421875px;}
.hf{height:55.291992px;}
.h1e{height:55.503491px;}
.h18{height:57.780000px;}
.h26{height:58.621992px;}
.h3{height:58.651172px;}
.h29{height:59.038594px;}
.h2e{height:60.226875px;}
.h2d{height:61.423863px;}
.h48{height:62.211094px;}
.ha{height:65.010937px;}
.h37{height:65.685000px;}
.h3f{height:65.700000px;}
.h1a{height:65.884219px;}
.hd{height:67.824844px;}
.h28{height:70.628906px;}
.h9{height:72.562500px;}
.h23{height:74.953125px;}
.h25{height:75.093750px;}
.h3d{height:81.540000px;}
.h38{height:81.705000px;}
.h7{height:87.695156px;}
.h1f{height:92.160000px;}
.h8{height:96.508125px;}
.h3a{height:99.022500px;}
.h35{height:132.322500px;}
.h24{height:144.765000px;}
.h1d{height:467.535000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w10{width:30.411000px;}
.w15{width:32.751000px;}
.w3{width:82.071000px;}
.w18{width:89.625000px;}
.w17{width:92.541000px;}
.w19{width:106.590000px;}
.w13{width:107.985000px;}
.w14{width:109.650000px;}
.w5{width:154.470000px;}
.w12{width:162.015000px;}
.we{width:180.015000px;}
.wb{width:180.021000px;}
.wf{width:180.030000px;}
.wd{width:180.195000px;}
.wc{width:180.210000px;}
.wa{width:180.390000px;}
.w8{width:182.550000px;}
.w11{width:310.566000px;}
.w16{width:399.126000px;}
.w7{width:532.920000px;}
.w4{width:639.855000px;}
.w2{width:721.935000px;}
.w9{width:743.175000px;}
.w6{width:747.135000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4a{left:4.252500px;}
.x2{left:8.091000px;}
.x31{left:9.525000px;}
.x12{left:10.791000px;}
.x38{left:14.565000px;}
.x41{left:18.000000px;}
.x39{left:19.065000px;}
.x18{left:21.255000px;}
.x3b{left:23.205000px;}
.x33{left:25.185000px;}
.x3d{left:27.165000px;}
.x44{left:28.260000px;}
.x37{left:32.205000px;}
.x3c{left:34.185000px;}
.x43{left:35.625000px;}
.x49{left:36.930000px;}
.x47{left:38.700000px;}
.x35{left:43.380000px;}
.x45{left:44.640000px;}
.x32{left:46.440000px;}
.x2e{left:47.880000px;}
.x48{left:49.890000px;}
.x30{left:51.510000px;}
.x46{left:53.310000px;}
.x29{left:58.140000px;}
.x24{left:59.745000px;}
.x21{left:61.365000px;}
.x1f{left:62.640000px;}
.x36{left:63.705000px;}
.x3a{left:66.225000px;}
.x2a{left:67.320000px;}
.x34{left:69.285000px;}
.x28{left:72.360000px;}
.x3{left:73.965000px;}
.x27{left:77.760000px;}
.x15{left:80.505000px;}
.x13{left:81.765000px;}
.x25{left:84.045000px;}
.x26{left:86.760000px;}
.x23{left:90.000000px;}
.x11{left:93.105000px;}
.x17{left:94.905000px;}
.x1{left:108.045000px;}
.x1d{left:117.756000px;}
.x1c{left:128.376000px;}
.xe{left:132.696000px;}
.x2b{left:138.465000px;}
.x3e{left:140.805000px;}
.xd{left:143.856000px;}
.x9{left:150.150000px;}
.x6{left:164.010000px;}
.xb{left:182.190000px;}
.x4{left:190.125000px;}
.xc{left:191.730000px;}
.x7{left:201.630000px;}
.x1a{left:217.110000px;}
.x1e{left:288.075000px;}
.x14{left:302.835000px;}
.x1b{left:307.155000px;}
.x16{left:310.350000px;}
.x8{left:443.085000px;}
.x5{left:446.505000px;}
.x2c{left:449.040000px;}
.xa{left:459.105000px;}
.x20{left:468.300000px;}
.xf{left:489.165000px;}
.x10{left:490.785000px;}
.x3f{left:539.940000px;}
.x2d{left:611.070000px;}
.x19{left:620.253000px;}
.x40{left:632.490000px;}
.x22{left:648.510000px;}
.x2f{left:719.070000px;}
.x42{left:722.130000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.lsd{letter-spacing:-1.280000pt;}
.lsa{letter-spacing:-0.720000pt;}
.lsb{letter-spacing:-0.560000pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.239467pt;}
.ls9{letter-spacing:-0.198933pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.128640pt;}
.ls5{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.161067pt;}
.lsf{letter-spacing:0.230933pt;}
.ls11{letter-spacing:0.231040pt;}
.ls3{letter-spacing:0.280533pt;}
.ls2{letter-spacing:0.320000pt;}
.ls0{letter-spacing:42.400000pt;}
.wsc{word-spacing:-37.120000pt;}
.ws11{word-spacing:-16.000000pt;}
.ws10{word-spacing:-14.720000pt;}
.ws16{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.510933pt;}
.ws15{word-spacing:-13.280000pt;}
.wse{word-spacing:-12.320000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws13{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.881067pt;}
.ws6{word-spacing:-10.720000pt;}
.ws14{word-spacing:-10.480533pt;}
.ws2{word-spacing:-10.400000pt;}
.ws4{word-spacing:-10.080000pt;}
.ws3{word-spacing:-9.760000pt;}
.ws7{word-spacing:-9.733760pt;}
.wsa{word-spacing:-9.280000pt;}
.wsb{word-spacing:-8.720000pt;}
.wsf{word-spacing:-8.640000pt;}
.ws9{word-spacing:-8.000000pt;}
.ws1{word-spacing:-6.720000pt;}
.wsd{word-spacing:0.000000pt;}
.ws0{word-spacing:54.186667pt;}
._7{margin-left:-52.960000pt;}
._17{margin-left:-3.796480pt;}
._1b{margin-left:-2.885547pt;}
._4{margin-left:-1.965867pt;}
._2{margin-left:-1.000960pt;}
._0{width:0.928000pt;}
._1{width:2.155093pt;}
._b{width:3.583573pt;}
._11{width:4.515200pt;}
._12{width:5.825067pt;}
._18{width:6.976853pt;}
._13{width:8.499200pt;}
._14{width:10.014720pt;}
._19{width:10.995840pt;}
._23{width:12.058240pt;}
._2e{width:12.992640pt;}
._1a{width:14.160000pt;}
._1c{width:15.240533pt;}
._9{width:16.148480pt;}
._a{width:17.160960pt;}
._1f{width:18.060800pt;}
._10{width:18.992000pt;}
._20{width:20.637867pt;}
._d{width:21.646080pt;}
._c{width:22.723840pt;}
._1e{width:24.328960pt;}
._f{width:25.869440pt;}
._e{width:26.931840pt;}
._35{width:28.028160pt;}
._30{width:28.950400pt;}
._31{width:30.331520pt;}
._27{width:32.031360pt;}
._28{width:32.934400pt;}
._2f{width:34.315520pt;}
._21{width:35.643520pt;}
._22{width:36.594560pt;}
._2c{width:37.927680pt;}
._34{width:38.858880pt;}
._32{width:40.530560pt;}
._24{width:42.230400pt;}
._25{width:43.239680pt;}
._2a{width:45.311360pt;}
._2b{width:46.933120pt;}
._33{width:49.720320pt;}
._26{width:50.835840pt;}
._29{width:56.891520pt;}
._5{width:58.218667pt;}
._38{width:59.175680pt;}
._37{width:62.922240pt;}
._3{width:63.929600pt;}
._15{width:73.571200pt;}
._36{width:90.835200pt;}
._16{width:96.963840pt;}
._6{width:177.440000pt;}
._1d{width:254.106667pt;}
._8{width:671.978667pt;}
._2d{width:1051.285333pt;}
.fs2{font-size:5.120000pt;}
.fs10{font-size:5.333333pt;}
.fsc{font-size:21.120000pt;}
.fs8{font-size:26.880000pt;}
.fsd{font-size:32.000000pt;}
.fsb{font-size:33.730624pt;}
.fsf{font-size:34.560000pt;}
.fs0{font-size:37.120000pt;}
.fs7{font-size:40.320000pt;}
.fs9{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fse{font-size:55.992837pt;}
.fs6{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y45{bottom:-220.186667pt;}
.y44{bottom:-190.106667pt;}
.y43{bottom:-160.186667pt;}
.y42{bottom:-130.266667pt;}
.y7f{bottom:-127.386667pt;}
.y41{bottom:-100.160000pt;}
.y7e{bottom:-97.466667pt;}
.y40{bottom:-70.240000pt;}
.y7d{bottom:-67.506667pt;}
.y3f{bottom:-40.160000pt;}
.y49{bottom:-37.440000pt;}
.y7c{bottom:-37.426667pt;}
.y81{bottom:-15.931333pt;}
.y48{bottom:-12.320000pt;}
.y3e{bottom:-10.240000pt;}
.y7b{bottom:-7.506667pt;}
.y0{bottom:0.000000pt;}
.y6f{bottom:1.600000pt;}
.y236{bottom:1.633333pt;}
.y67{bottom:3.346667pt;}
.y2{bottom:3.520000pt;}
.y10b{bottom:4.160000pt;}
.y123{bottom:4.306667pt;}
.y47{bottom:4.320000pt;}
.y148{bottom:4.360000pt;}
.y14a{bottom:4.466667pt;}
.y135{bottom:4.480000pt;}
.y71{bottom:4.960000pt;}
.y18a{bottom:5.120000pt;}
.y3d{bottom:6.080000pt;}
.y5{bottom:11.200000pt;}
.y150{bottom:11.360000pt;}
.y141{bottom:11.520000pt;}
.y6e{bottom:13.280000pt;}
.y66{bottom:16.946667pt;}
.y14f{bottom:18.400000pt;}
.y3c{bottom:18.560000pt;}
.y183{bottom:19.026667pt;}
.y17b{bottom:19.040000pt;}
.y17e{bottom:19.200000pt;}
.y139{bottom:19.360000pt;}
.y6{bottom:19.520000pt;}
.y3{bottom:20.640000pt;}
.y115{bottom:21.613333pt;}
.y4{bottom:21.920000pt;}
.y7a{bottom:22.573333pt;}
.y6d{bottom:24.800000pt;}
.y137{bottom:26.400000pt;}
.y13f{bottom:26.560000pt;}
.y65{bottom:28.186667pt;}
.y3b{bottom:30.880000pt;}
.y175{bottom:32.480000pt;}
.y177{bottom:32.640000pt;}
.y154{bottom:33.440000pt;}
.y138{bottom:33.600000pt;}
.y10f{bottom:33.920000pt;}
.y113{bottom:34.080000pt;}
.y6c{bottom:36.480000pt;}
.y13e{bottom:40.640000pt;}
.y145{bottom:41.280000pt;}
.y83{bottom:41.760000pt;}
.y3a{bottom:42.240000pt;}
.y64{bottom:44.026667pt;}
.y6b{bottom:48.000000pt;}
.y79{bottom:50.093333pt;}
.y1{bottom:51.040000pt;}
.y80{bottom:56.693333pt;}
.y6a{bottom:59.520000pt;}
.y63{bottom:59.866667pt;}
.y78{bottom:61.613333pt;}
.y11c{bottom:71.066667pt;}
.y62{bottom:71.706667pt;}
.y77{bottom:73.293333pt;}
.y69{bottom:74.720000pt;}
.y61{bottom:79.546667pt;}
.y11b{bottom:83.386667pt;}
.y76{bottom:84.813333pt;}
.yb4{bottom:89.440000pt;}
.y1ca{bottom:90.240000pt;}
.y1c6{bottom:92.160000pt;}
.y213{bottom:93.120000pt;}
.y60{bottom:95.386667pt;}
.y11a{bottom:95.706667pt;}
.y131{bottom:96.320000pt;}
.y75{bottom:96.333333pt;}
.y1e7{bottom:96.800000pt;}
.y1ab{bottom:97.600000pt;}
.y1b9{bottom:98.400000pt;}
.y172{bottom:98.560000pt;}
.ye5{bottom:99.200000pt;}
.yb3{bottom:107.040000pt;}
.y1c9{bottom:107.840000pt;}
.y74{bottom:108.013333pt;}
.y119{bottom:108.026667pt;}
.y212{bottom:108.480000pt;}
.y38{bottom:109.120000pt;}
.y1c5{bottom:109.760000pt;}
.y5f{bottom:111.226667pt;}
.y130{bottom:113.920000pt;}
.y1e6{bottom:114.400000pt;}
.y1aa{bottom:115.360000pt;}
.y1b8{bottom:116.000000pt;}
.y171{bottom:116.160000pt;}
.ye4{bottom:116.800000pt;}
.y73{bottom:118.893333pt;}
.y211{bottom:123.840000pt;}
.yb2{bottom:124.800000pt;}
.y1c8{bottom:125.440000pt;}
.y37{bottom:126.880000pt;}
.y5e{bottom:127.226667pt;}
.y1c4{bottom:127.360000pt;}
.y12f{bottom:131.680000pt;}
.y1e5{bottom:132.800000pt;}
.y1a9{bottom:132.960000pt;}
.y170{bottom:133.760000pt;}
.ye3{bottom:134.400000pt;}
.y210{bottom:139.200000pt;}
.yb1{bottom:142.400000pt;}
.y5d{bottom:143.066667pt;}
.y1c7{bottom:144.000000pt;}
.y36{bottom:144.506667pt;}
.y1c3{bottom:144.986667pt;}
.y12e{bottom:149.306667pt;}
.y1a8{bottom:150.586667pt;}
.y1b7{bottom:151.386667pt;}
.y16f{bottom:151.546667pt;}
.ye2{bottom:153.146667pt;}
.y20f{bottom:154.586667pt;}
.y5c{bottom:158.906667pt;}
.yb0{bottom:160.026667pt;}
.y35{bottom:162.106667pt;}
.y1c2{bottom:162.746667pt;}
.y12d{bottom:166.906667pt;}
.y1a7{bottom:168.186667pt;}
.y1b6{bottom:168.986667pt;}
.y16e{bottom:169.146667pt;}
.y20e{bottom:169.946667pt;}
.ye1{bottom:170.426667pt;}
.y5b{bottom:174.746667pt;}
.yaf{bottom:177.626667pt;}
.y34{bottom:179.706667pt;}
.y1c1{bottom:180.346667pt;}
.ye0{bottom:182.106667pt;}
.y12c{bottom:184.506667pt;}
.y20d{bottom:185.146667pt;}
.y1a6{bottom:185.786667pt;}
.y1b5{bottom:186.586667pt;}
.y16d{bottom:186.746667pt;}
.y1e4{bottom:186.906667pt;}
.y5a{bottom:190.586667pt;}
.yae{bottom:195.226667pt;}
.y33{bottom:197.306667pt;}
.y1c0{bottom:197.946667pt;}
.ydf{bottom:199.706667pt;}
.y20c{bottom:200.506667pt;}
.y12b{bottom:202.106667pt;}
.y59{bottom:202.426667pt;}
.y1a5{bottom:203.546667pt;}
.y1b4{bottom:204.186667pt;}
.y16c{bottom:204.346667pt;}
.y1e3{bottom:205.306667pt;}
.y58{bottom:210.266667pt;}
.yad{bottom:212.986667pt;}
.y32{bottom:215.066667pt;}
.y1bf{bottom:215.546667pt;}
.y20b{bottom:215.866667pt;}
.yde{bottom:217.306667pt;}
.y12a{bottom:219.866667pt;}
.y1a4{bottom:221.146667pt;}
.y16b{bottom:221.946667pt;}
.y57{bottom:226.293333pt;}
.yac{bottom:230.586667pt;}
.y20a{bottom:231.226667pt;}
.y31{bottom:232.666667pt;}
.y1be{bottom:233.146667pt;}
.ydd{bottom:234.906667pt;}
.y129{bottom:237.466667pt;}
.y1a3{bottom:238.746667pt;}
.y1b3{bottom:239.546667pt;}
.y16a{bottom:239.706667pt;}
.y1e2{bottom:241.626667pt;}
.y56{bottom:242.133333pt;}
.y209{bottom:246.586667pt;}
.yab{bottom:248.186667pt;}
.y30{bottom:250.266667pt;}
.y1bd{bottom:250.906667pt;}
.ydc{bottom:252.666667pt;}
.y128{bottom:255.066667pt;}
.y1a2{bottom:256.346667pt;}
.y1b2{bottom:257.146667pt;}
.y169{bottom:257.306667pt;}
.y55{bottom:257.973333pt;}
.y1e1{bottom:259.226667pt;}
.y208{bottom:261.946667pt;}
.yaa{bottom:266.586667pt;}
.y2f{bottom:267.866667pt;}
.y1bc{bottom:268.506667pt;}
.ydb{bottom:270.266667pt;}
.y127{bottom:272.666667pt;}
.y54{bottom:273.813333pt;}
.y1a1{bottom:273.946667pt;}
.y1b1{bottom:274.746667pt;}
.y168{bottom:274.906667pt;}
.y207{bottom:277.146667pt;}
.y1e0{bottom:277.626667pt;}
.ya9{bottom:285.146667pt;}
.y2e{bottom:285.466667pt;}
.y1bb{bottom:286.106667pt;}
.yda{bottom:287.866667pt;}
.y53{bottom:289.653333pt;}
.y126{bottom:290.266667pt;}
.y1a0{bottom:291.706667pt;}
.y1b0{bottom:292.346667pt;}
.y167{bottom:292.506667pt;}
.y1ba{bottom:303.706667pt;}
.y2d{bottom:304.026667pt;}
.yd9{bottom:305.466667pt;}
.y52{bottom:305.653333pt;}
.y206{bottom:307.866667pt;}
.y125{bottom:308.026667pt;}
.y19f{bottom:309.306667pt;}
.y166{bottom:310.106667pt;}
.y1df{bottom:314.106667pt;}
.y2c{bottom:319.386667pt;}
.ya8{bottom:321.306667pt;}
.y51{bottom:321.493333pt;}
.yd8{bottom:323.066667pt;}
.y205{bottom:323.226667pt;}
.y124{bottom:324.026667pt;}
.y2b{bottom:324.826667pt;}
.y19e{bottom:326.906667pt;}
.y1af{bottom:327.706667pt;}
.y165{bottom:327.866667pt;}
.y4a{bottom:329.960000pt;}
.y1de{bottom:331.706667pt;}
.y50{bottom:333.333333pt;}
.y118{bottom:334.440000pt;}
.y204{bottom:338.586667pt;}
.ya7{bottom:339.066667pt;}
.yd7{bottom:340.826667pt;}
.y2a{bottom:340.986667pt;}
.y4f{bottom:341.173333pt;}
.y19d{bottom:344.506667pt;}
.y1ae{bottom:345.306667pt;}
.y164{bottom:345.466667pt;}
.y122{bottom:349.346667pt;}
.y203{bottom:353.826667pt;}
.ya6{bottom:356.706667pt;}
.y4e{bottom:357.013333pt;}
.yd6{bottom:358.466667pt;}
.y29{bottom:362.146667pt;}
.y1ad{bottom:362.946667pt;}
.y163{bottom:363.106667pt;}
.y121{bottom:364.066667pt;}
.y1dd{bottom:367.746667pt;}
.y202{bottom:369.186667pt;}
.y4d{bottom:372.853333pt;}
.ya5{bottom:374.306667pt;}
.yd5{bottom:376.066667pt;}
.y120{bottom:378.786667pt;}
.y19c{bottom:379.906667pt;}
.y1ac{bottom:380.546667pt;}
.y162{bottom:380.706667pt;}
.y28{bottom:383.426667pt;}
.y201{bottom:384.546667pt;}
.y4c{bottom:388.693333pt;}
.y1dc{bottom:388.866667pt;}
.ya4{bottom:391.906667pt;}
.yd4{bottom:393.666667pt;}
.y19b{bottom:395.746667pt;}
.y161{bottom:398.306667pt;}
.y200{bottom:399.906667pt;}
.y235{bottom:404.386667pt;}
.y27{bottom:404.546667pt;}
.y4b{bottom:404.693333pt;}
.y11f{bottom:408.386667pt;}
.ya3{bottom:409.506667pt;}
.yd3{bottom:411.266667pt;}
.y1ff{bottom:415.266667pt;}
.y160{bottom:416.066667pt;}
.y234{bottom:419.746667pt;}
.y11e{bottom:423.106667pt;}
.y19a{bottom:425.026667pt;}
.y1db{bottom:425.346667pt;}
.y26{bottom:425.666667pt;}
.ya2{bottom:427.266667pt;}
.yd2{bottom:429.026667pt;}
.y1fe{bottom:430.626667pt;}
.y72{bottom:432.853333pt;}
.y15f{bottom:433.666667pt;}
.y233{bottom:434.946667pt;}
.y198{bottom:435.426667pt;}
.y11d{bottom:437.986667pt;}
.y1da{bottom:442.946667pt;}
.y25{bottom:444.226667pt;}
.ya1{bottom:444.866667pt;}
.y1fd{bottom:445.826667pt;}
.yd1{bottom:446.626667pt;}
.y199{bottom:450.146667pt;}
.y232{bottom:450.306667pt;}
.y15e{bottom:451.266667pt;}
.y114{bottom:452.693333pt;}
.y112{bottom:452.706667pt;}
.y1d9{bottom:460.546667pt;}
.y1fc{bottom:461.186667pt;}
.y24{bottom:461.826667pt;}
.ya0{bottom:462.466667pt;}
.yd0{bottom:464.226667pt;}
.y196{bottom:465.026667pt;}
.y231{bottom:465.666667pt;}
.y117{bottom:467.426667pt;}
.y15d{bottom:468.866667pt;}
.y23{bottom:474.146667pt;}
.y1fb{bottom:476.546667pt;}
.y1d8{bottom:478.146667pt;}
.y197{bottom:479.746667pt;}
.y9f{bottom:480.066667pt;}
.y230{bottom:481.026667pt;}
.y22{bottom:481.826667pt;}
.y116{bottom:482.306667pt;}
.y15c{bottom:486.466667pt;}
.y1fa{bottom:491.906667pt;}
.y194{bottom:494.466667pt;}
.y1d7{bottom:495.746667pt;}
.y22f{bottom:496.386667pt;}
.y10e{bottom:497.026667pt;}
.y9e{bottom:497.666667pt;}
.ycf{bottom:499.426667pt;}
.y21{bottom:502.466667pt;}
.y15b{bottom:504.226667pt;}
.y1f9{bottom:507.266667pt;}
.y195{bottom:509.346667pt;}
.y111{bottom:511.746667pt;}
.y1d6{bottom:513.506667pt;}
.y9d{bottom:515.426667pt;}
.yce{bottom:517.186667pt;}
.y15a{bottom:521.826667pt;}
.y1f8{bottom:522.626667pt;}
.y20{bottom:523.266667pt;}
.y192{bottom:524.066667pt;}
.y110{bottom:526.626667pt;}
.y22e{bottom:526.946667pt;}
.y1d5{bottom:531.106667pt;}
.y9c{bottom:533.026667pt;}
.ycd{bottom:534.786667pt;}
.y1f7{bottom:537.826667pt;}
.y193{bottom:538.786667pt;}
.y159{bottom:539.426667pt;}
.y10d{bottom:541.346667pt;}
.y22d{bottom:542.306667pt;}
.y1f{bottom:543.906667pt;}
.y1d4{bottom:548.706667pt;}
.y9b{bottom:550.626667pt;}
.ycc{bottom:552.386667pt;}
.y1f6{bottom:553.186667pt;}
.y190{bottom:553.693333pt;}
.y158{bottom:555.453333pt;}
.y10c{bottom:556.093333pt;}
.y22c{bottom:557.693333pt;}
.y153{bottom:566.013333pt;}
.y1d3{bottom:566.333333pt;}
.y9a{bottom:568.253333pt;}
.y191{bottom:568.413333pt;}
.y1f5{bottom:568.573333pt;}
.ycb{bottom:570.013333pt;}
.y10a{bottom:572.253333pt;}
.y22b{bottom:573.053333pt;}
.y68{bottom:573.533333pt;}
.y157{bottom:580.733333pt;}
.y18e{bottom:583.133333pt;}
.y1d2{bottom:583.933333pt;}
.y99{bottom:585.853333pt;}
.yca{bottom:587.613333pt;}
.y22a{bottom:588.413333pt;}
.y109{bottom:592.413333pt;}
.y1e{bottom:592.733333pt;}
.y156{bottom:595.453333pt;}
.y18f{bottom:597.853333pt;}
.y1f4{bottom:599.293333pt;}
.y1d1{bottom:601.693333pt;}
.y98{bottom:603.613333pt;}
.y229{bottom:603.773333pt;}
.yc9{bottom:605.373333pt;}
.y1d{bottom:606.493333pt;}
.y108{bottom:608.733333pt;}
.y155{bottom:610.333333pt;}
.y18c{bottom:612.733333pt;}
.y1f3{bottom:614.493333pt;}
.y228{bottom:618.973333pt;}
.y1d0{bottom:619.293333pt;}
.y1c{bottom:620.253333pt;}
.y97{bottom:621.213333pt;}
.yc8{bottom:622.973333pt;}
.y14d{bottom:625.053333pt;}
.y107{bottom:626.333333pt;}
.y18d{bottom:627.453333pt;}
.y1f2{bottom:629.853333pt;}
.y1b{bottom:634.013333pt;}
.y227{bottom:634.333333pt;}
.y1cf{bottom:636.893333pt;}
.y96{bottom:638.813333pt;}
.y152{bottom:639.773333pt;}
.yc7{bottom:641.373333pt;}
.y189{bottom:642.173333pt;}
.y106{bottom:643.933333pt;}
.y1f1{bottom:645.213333pt;}
.yf6{bottom:645.853333pt;}
.y1a{bottom:647.773333pt;}
.y226{bottom:649.693333pt;}
.y1ce{bottom:654.493333pt;}
.y151{bottom:654.653333pt;}
.y95{bottom:656.413333pt;}
.y18b{bottom:657.053333pt;}
.y19{bottom:657.693333pt;}
.yc6{bottom:658.973333pt;}
.y1f0{bottom:660.573333pt;}
.y105{bottom:661.533333pt;}
.yf5{bottom:663.453333pt;}
.y225{bottom:665.053333pt;}
.y39{bottom:665.373333pt;}
.y14e{bottom:669.373333pt;}
.y18{bottom:669.853333pt;}
.yc5{bottom:670.493333pt;}
.y186{bottom:671.773333pt;}
.y188{bottom:671.786667pt;}
.y1cd{bottom:672.093333pt;}
.y94{bottom:674.013333pt;}
.y1ef{bottom:675.933333pt;}
.y104{bottom:679.293333pt;}
.y224{bottom:680.413333pt;}
.yf4{bottom:681.053333pt;}
.y17{bottom:681.373333pt;}
.y187{bottom:686.493333pt;}
.yc4{bottom:688.093333pt;}
.y1cc{bottom:689.853333pt;}
.y1ee{bottom:691.293333pt;}
.y93{bottom:691.773333pt;}
.y16{bottom:692.893333pt;}
.y223{bottom:695.613333pt;}
.y103{bottom:696.893333pt;}
.y144{bottom:698.173333pt;}
.yf3{bottom:698.813333pt;}
.y185{bottom:701.373333pt;}
.y182{bottom:701.386667pt;}
.y15{bottom:704.413333pt;}
.yc3{bottom:705.853333pt;}
.y1ed{bottom:706.973333pt;}
.y1cb{bottom:708.253333pt;}
.y92{bottom:709.373333pt;}
.y222{bottom:710.973333pt;}
.y14c{bottom:713.053333pt;}
.y102{bottom:714.493333pt;}
.y184{bottom:716.106667pt;}
.y14{bottom:716.573333pt;}
.yf2{bottom:717.213333pt;}
.yc2{bottom:723.453333pt;}
.y221{bottom:726.333333pt;}
.y91{bottom:726.973333pt;}
.y14b{bottom:727.773333pt;}
.y13{bottom:728.093333pt;}
.y180{bottom:730.813333pt;}
.y101{bottom:732.093333pt;}
.yf1{bottom:734.813333pt;}
.y1ec{bottom:740.893333pt;}
.yc1{bottom:741.053333pt;}
.y220{bottom:741.693333pt;}
.y149{bottom:742.506667pt;}
.y90{bottom:744.573333pt;}
.y181{bottom:745.693333pt;}
.yf0{bottom:746.333333pt;}
.y100{bottom:750.493333pt;}
.y12{bottom:751.933333pt;}
.y21f{bottom:757.053333pt;}
.y147{bottom:757.373333pt;}
.yc0{bottom:758.693333pt;}
.y1eb{bottom:759.333333pt;}
.y17d{bottom:760.453333pt;}
.y11{bottom:761.893333pt;}
.y8f{bottom:762.213333pt;}
.yef{bottom:763.973333pt;}
.y146{bottom:772.133333pt;}
.y21e{bottom:772.453333pt;}
.y17f{bottom:775.173333pt;}
.ybf{bottom:776.293333pt;}
.y8e{bottom:779.973333pt;}
.yee{bottom:781.733333pt;}
.y10{bottom:783.333333pt;}
.y13d{bottom:786.853333pt;}
.yff{bottom:787.013333pt;}
.y21d{bottom:787.653333pt;}
.y17a{bottom:790.053333pt;}
.ybe{bottom:794.053333pt;}
.y1ea{bottom:795.653333pt;}
.y8d{bottom:797.573333pt;}
.yed{bottom:799.333333pt;}
.y143{bottom:801.733333pt;}
.y21c{bottom:803.013333pt;}
.yfe{bottom:804.613333pt;}
.y17c{bottom:804.773333pt;}
.yf{bottom:805.413333pt;}
.ybd{bottom:811.653333pt;}
.y1e9{bottom:813.253333pt;}
.y8c{bottom:815.173333pt;}
.y142{bottom:816.453333pt;}
.yec{bottom:816.933333pt;}
.y21b{bottom:818.373333pt;}
.ye{bottom:818.853333pt;}
.y179{bottom:819.493333pt;}
.yfd{bottom:822.213333pt;}
.ybc{bottom:829.253333pt;}
.y140{bottom:831.173333pt;}
.y1e8{bottom:831.653333pt;}
.yd{bottom:832.133333pt;}
.y8b{bottom:832.773333pt;}
.y21a{bottom:833.733333pt;}
.y178{bottom:834.373333pt;}
.yeb{bottom:834.533333pt;}
.yfc{bottom:839.813333pt;}
.yc{bottom:842.373333pt;}
.ybb{bottom:846.853333pt;}
.y176{bottom:849.093333pt;}
.y8a{bottom:850.373333pt;}
.yea{bottom:852.133333pt;}
.yfb{bottom:857.413333pt;}
.yb{bottom:857.893333pt;}
.y136{bottom:860.133333pt;}
.yba{bottom:864.453333pt;}
.y89{bottom:868.133333pt;}
.ye9{bottom:871.013333pt;}
.y13c{bottom:874.853333pt;}
.yfa{bottom:875.173333pt;}
.ya{bottom:877.093333pt;}
.y219{bottom:879.653333pt;}
.yb9{bottom:882.213333pt;}
.y88{bottom:885.733333pt;}
.ye8{bottom:888.293333pt;}
.y13b{bottom:889.573333pt;}
.y174{bottom:892.133333pt;}
.yf9{bottom:892.773333pt;}
.y218{bottom:895.013333pt;}
.y9{bottom:896.613333pt;}
.yb8{bottom:899.813333pt;}
.y87{bottom:903.333333pt;}
.y13a{bottom:904.453333pt;}
.y217{bottom:910.373333pt;}
.yf8{bottom:911.173333pt;}
.yb7{bottom:917.413333pt;}
.y134{bottom:920.453333pt;}
.y86{bottom:920.933333pt;}
.y8{bottom:921.093333pt;}
.y216{bottom:925.733333pt;}
.yf7{bottom:928.293333pt;}
.yb6{bottom:935.013333pt;}
.y173{bottom:936.453333pt;}
.y85{bottom:938.533333pt;}
.y215{bottom:941.093333pt;}
.y133{bottom:941.573333pt;}
.y7{bottom:945.093333pt;}
.yb5{bottom:953.413333pt;}
.ye7{bottom:953.733333pt;}
.y84{bottom:956.133333pt;}
.y214{bottom:956.293333pt;}
.y132{bottom:957.413333pt;}
.y70{bottom:974.400000pt;}
.ye6{bottom:981.280000pt;}
.y82{bottom:998.400000pt;}
.y46{bottom:1010.880000pt;}
.h6{height:5.025000pt;}
.h17{height:5.160000pt;}
.h49{height:5.562500pt;}
.h2{height:12.000000pt;}
.h32{height:14.066667pt;}
.h2f{height:14.080000pt;}
.h3b{height:14.100000pt;}
.h30{height:14.106667pt;}
.h36{height:14.226667pt;}
.h3c{height:14.240000pt;}
.h1b{height:15.040000pt;}
.h22{height:19.680000pt;}
.h15{height:20.728125pt;}
.h2c{height:21.708032pt;}
.h2b{height:26.368125pt;}
.hc{height:26.381250pt;}
.h2a{height:27.090000pt;}
.he{height:27.523125pt;}
.h3e{height:28.160000pt;}
.h39{height:28.306667pt;}
.h42{height:28.786667pt;}
.h46{height:28.800000pt;}
.h43{height:28.946667pt;}
.h45{height:28.960000pt;}
.h44{height:28.980000pt;}
.h4{height:30.400000pt;}
.h20{height:32.250000pt;}
.h13{height:35.114107pt;}
.h5{height:36.431250pt;}
.h21{height:37.410000pt;}
.h47{height:38.413438pt;}
.h27{height:38.877839pt;}
.h10{height:39.571875pt;}
.hb{height:40.103437pt;}
.h19{height:40.635000pt;}
.h11{height:41.442606pt;}
.h12{height:42.084375pt;}
.h40{height:42.226667pt;}
.h41{height:42.386667pt;}
.h16{height:43.215000pt;}
.h31{height:43.666667pt;}
.h33{height:43.676000pt;}
.h34{height:43.680000pt;}
.h14{height:47.109375pt;}
.h1c{height:48.375000pt;}
.hf{height:49.148438pt;}
.h1e{height:49.336436pt;}
.h18{height:51.360000pt;}
.h26{height:52.108438pt;}
.h3{height:52.134375pt;}
.h29{height:52.478750pt;}
.h2e{height:53.535000pt;}
.h2d{height:54.598989pt;}
.h48{height:55.298750pt;}
.ha{height:57.787500pt;}
.h37{height:58.386667pt;}
.h3f{height:58.400000pt;}
.h1a{height:58.563750pt;}
.hd{height:60.288750pt;}
.h28{height:62.781250pt;}
.h9{height:64.500000pt;}
.h23{height:66.625000pt;}
.h25{height:66.750000pt;}
.h3d{height:72.480000pt;}
.h38{height:72.626667pt;}
.h7{height:77.951250pt;}
.h1f{height:81.920000pt;}
.h8{height:85.785000pt;}
.h3a{height:88.020000pt;}
.h35{height:117.620000pt;}
.h24{height:128.680000pt;}
.h1d{height:415.586667pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w10{width:27.032000pt;}
.w15{width:29.112000pt;}
.w3{width:72.952000pt;}
.w18{width:79.666667pt;}
.w17{width:82.258667pt;}
.w19{width:94.746667pt;}
.w13{width:95.986667pt;}
.w14{width:97.466667pt;}
.w5{width:137.306667pt;}
.w12{width:144.013333pt;}
.we{width:160.013333pt;}
.wb{width:160.018667pt;}
.wf{width:160.026667pt;}
.wd{width:160.173333pt;}
.wc{width:160.186667pt;}
.wa{width:160.346667pt;}
.w8{width:162.266667pt;}
.w11{width:276.058667pt;}
.w16{width:354.778667pt;}
.w7{width:473.706667pt;}
.w4{width:568.760000pt;}
.w2{width:641.720000pt;}
.w9{width:660.600000pt;}
.w6{width:664.120000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4a{left:3.780000pt;}
.x2{left:7.192000pt;}
.x31{left:8.466667pt;}
.x12{left:9.592000pt;}
.x38{left:12.946667pt;}
.x41{left:16.000000pt;}
.x39{left:16.946667pt;}
.x18{left:18.893333pt;}
.x3b{left:20.626667pt;}
.x33{left:22.386667pt;}
.x3d{left:24.146667pt;}
.x44{left:25.120000pt;}
.x37{left:28.626667pt;}
.x3c{left:30.386667pt;}
.x43{left:31.666667pt;}
.x49{left:32.826667pt;}
.x47{left:34.400000pt;}
.x35{left:38.560000pt;}
.x45{left:39.680000pt;}
.x32{left:41.280000pt;}
.x2e{left:42.560000pt;}
.x48{left:44.346667pt;}
.x30{left:45.786667pt;}
.x46{left:47.386667pt;}
.x29{left:51.680000pt;}
.x24{left:53.106667pt;}
.x21{left:54.546667pt;}
.x1f{left:55.680000pt;}
.x36{left:56.626667pt;}
.x3a{left:58.866667pt;}
.x2a{left:59.840000pt;}
.x34{left:61.586667pt;}
.x28{left:64.320000pt;}
.x3{left:65.746667pt;}
.x27{left:69.120000pt;}
.x15{left:71.560000pt;}
.x13{left:72.680000pt;}
.x25{left:74.706667pt;}
.x26{left:77.120000pt;}
.x23{left:80.000000pt;}
.x11{left:82.760000pt;}
.x17{left:84.360000pt;}
.x1{left:96.040000pt;}
.x1d{left:104.672000pt;}
.x1c{left:114.112000pt;}
.xe{left:117.952000pt;}
.x2b{left:123.080000pt;}
.x3e{left:125.160000pt;}
.xd{left:127.872000pt;}
.x9{left:133.466667pt;}
.x6{left:145.786667pt;}
.xb{left:161.946667pt;}
.x4{left:169.000000pt;}
.xc{left:170.426667pt;}
.x7{left:179.226667pt;}
.x1a{left:192.986667pt;}
.x1e{left:256.066667pt;}
.x14{left:269.186667pt;}
.x1b{left:273.026667pt;}
.x16{left:275.866667pt;}
.x8{left:393.853333pt;}
.x5{left:396.893333pt;}
.x2c{left:399.146667pt;}
.xa{left:408.093333pt;}
.x20{left:416.266667pt;}
.xf{left:434.813333pt;}
.x10{left:436.253333pt;}
.x3f{left:479.946667pt;}
.x2d{left:543.173333pt;}
.x19{left:551.336000pt;}
.x40{left:562.213333pt;}
.x22{left:576.453333pt;}
.x2f{left:639.173333pt;}
.x42{left:641.893333pt;}
}




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