
    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_54ced02690bddd5a2a1e725d.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_52eb6438f4447da1b75f51f6.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_0a986079219401a7bc4f2916.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_5cb9151c038904dfd8de5390.woff')format("woff");}.ff4{font-family:ff4;line-height:0.879395;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_cb831bfc45030f6d94299355.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2708fd9fd160649447b04223.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a8945bc001e792e6c50ec7c7.woff')format("woff");}.ff7{font-family:ff7;line-height:0.892578;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_b70482db1c0f76ccd6afedb2.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d217bbcbe8d8f3e3b7421418.woff')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_b010e47a581509ad388b8702.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a07afe1b1823860ac453566f.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_863fa374908edd152982e486.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_9b03f4b4327374dcb79e06db.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_46b6c8f3ac73e2086dad992f.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_c5c42328558c89ac45ccf240.woff')format("woff");}.fff{font-family:fff;line-height:1.112305;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:-23.760000px;}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls1f{letter-spacing:-1.800000px;}
.ls12{letter-spacing:-1.440000px;}
.ls20{letter-spacing:-1.260000px;}
.lsd{letter-spacing:-0.810000px;}
.ls1b{letter-spacing:-0.666000px;}
.ls9{letter-spacing:-0.540000px;}
.ls1d{letter-spacing:-0.450600px;}
.ls17{letter-spacing:-0.413400px;}
.lsa{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.223800px;}
.ls1c{letter-spacing:-0.181200px;}
.ls19{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.106800px;}
.ls4{letter-spacing:0.144720px;}
.ls2{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.181200px;}
.ls15{letter-spacing:0.259800px;}
.ls10{letter-spacing:0.259920px;}
.ls1e{letter-spacing:0.269400px;}
.ls5{letter-spacing:0.270720px;}
.ls18{letter-spacing:0.298800px;}
.lse{letter-spacing:0.315600px;}
.ls6{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.513600px;}
.lsf{letter-spacing:0.720000px;}
.ls13{letter-spacing:0.900000px;}
.ls14{letter-spacing:0.978000px;}
.ls7{letter-spacing:1.080000px;}
.ls3{letter-spacing:47.700000px;}
.ls0{letter-spacing:71.280000px;}
.ls1{letter-spacing:72.000000px;}
.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;}
}
.wsf{word-spacing:-18.000000px;}
.ws12{word-spacing:-17.856000px;}
.wsd{word-spacing:-16.560000px;}
.wsa{word-spacing:-15.300000px;}
.ws14{word-spacing:-15.238800px;}
.wse{word-spacing:-15.199800px;}
.wsb{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.ws11{word-spacing:-14.526600px;}
.ws16{word-spacing:-14.274000px;}
.ws13{word-spacing:-14.220000px;}
.ws7{word-spacing:-13.500000px;}
.ws6{word-spacing:-12.420000px;}
.ws19{word-spacing:-12.329400px;}
.ws5{word-spacing:-12.241200px;}
.ws10{word-spacing:-12.060000px;}
.ws17{word-spacing:-11.878800px;}
.ws2{word-spacing:-11.700000px;}
.ws18{word-spacing:-11.609400px;}
.ws4{word-spacing:-11.340000px;}
.ws3{word-spacing:-10.980000px;}
.ws1b{word-spacing:-10.800000px;}
.ws0{word-spacing:-10.440000px;}
.ws1a{word-spacing:-10.260000px;}
.ws8{word-spacing:-9.000000px;}
.ws1{word-spacing:-7.560000px;}
.ws9{word-spacing:0.000000px;}
.ws15{word-spacing:63.900000px;}
._2c{margin-left:-1219.176000px;}
._2d{margin-left:-229.770000px;}
._45{margin-left:-109.900080px;}
._44{margin-left:-79.920000px;}
._5{margin-left:-59.580000px;}
._49{margin-left:-5.832000px;}
._48{margin-left:-4.302240px;}
._17{margin-left:-3.294000px;}
._18{margin-left:-2.268000px;}
._2{margin-left:-1.258560px;}
._0{width:1.044000px;}
._1{width:2.424480px;}
._f{width:3.611280px;}
._19{width:4.650720px;}
._10{width:6.573600px;}
._11{width:7.589520px;}
._1a{width:8.958720px;}
._7{width:10.441200px;}
._9{width:11.593440px;}
._a{width:12.788640px;}
._b{width:13.914480px;}
._16{width:15.460080px;}
._15{width:16.557120px;}
._1c{width:17.893440px;}
._1b{width:19.150560px;}
._14{width:20.497680px;}
._12{width:22.350240px;}
._13{width:23.789520px;}
._26{width:25.457760px;}
._27{width:26.502480px;}
._1f{width:27.967680px;}
._20{width:29.581200px;}
._22{width:31.015440px;}
._25{width:32.063040px;}
._1e{width:33.883920px;}
._2a{width:34.959600px;}
._8{width:36.145920px;}
._21{width:37.469520px;}
._24{width:38.489040px;}
._28{width:40.039200px;}
._2f{width:41.353920px;}
._33{width:42.907680px;}
._32{width:44.282160px;}
._29{width:45.776160px;}
._38{width:46.792080px;}
._23{width:48.644640px;}
._30{width:49.839840px;}
._2b{width:51.333840px;}
._3e{width:54.381600px;}
._31{width:56.568000px;}
._d{width:58.188720px;}
._c{width:59.222160px;}
._34{width:60.297840px;}
._2e{width:64.302720px;}
._3{width:65.496000px;}
._e{width:67.289760px;}
._39{width:68.365440px;}
._47{width:70.158240px;}
._40{width:72.042480px;}
._41{width:73.656000px;}
._3a{width:75.476880px;}
._37{width:77.840400px;}
._3b{width:81.333360px;}
._35{width:91.074240px;}
._36{width:92.536560px;}
._3f{width:93.914640px;}
._43{width:109.671840px;}
._3d{width:112.767120px;}
._3c{width:114.320880px;}
._42{width:121.467600px;}
._46{width:137.448000px;}
._4{width:199.620000px;}
._1d{width:282.270000px;}
._4a{width:285.366480px;}
._6{width:755.976000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(255,0,0);}
.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;}
.fs0{font-size:41.760000px;}
.fs7{font-size:45.360000px;}
.fs9{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fsf{font-size:56.880000px;}
.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;}
.y44{bottom:-247.530000px;}
.y43{bottom:-213.870000px;}
.y42{bottom:-180.210000px;}
.y41{bottom:-146.370000px;}
.y80{bottom:-143.310000px;}
.y40{bottom:-112.680000px;}
.y7f{bottom:-109.605000px;}
.y3f{bottom:-78.840000px;}
.y7e{bottom:-75.765000px;}
.y3e{bottom:-45.180000px;}
.y7d{bottom:-42.105000px;}
.y47{bottom:-27.180000px;}
.y82{bottom:-17.922750px;}
.y3d{bottom:-11.520000px;}
.y7c{bottom:-8.265000px;}
.y0{bottom:0.000000px;}
.y261{bottom:1.837500px;}
.y209{bottom:2.685000px;}
.y1d3{bottom:2.700000px;}
.y23b{bottom:2.730000px;}
.y229{bottom:2.745000px;}
.y1e8{bottom:2.865000px;}
.y1d1{bottom:2.880000px;}
.y23c{bottom:2.910000px;}
.y207{bottom:3.045000px;}
.y1d6{bottom:3.060000px;}
.y2{bottom:3.960000px;}
.y123{bottom:4.860000px;}
.y46{bottom:5.040000px;}
.y72{bottom:5.580000px;}
.y11e{bottom:6.465000px;}
.y3c{bottom:6.840000px;}
.y11f{bottom:8.445000px;}
.y1e6{bottom:9.705000px;}
.y1e0{bottom:9.720000px;}
.y1f6{bottom:9.750000px;}
.y1e9{bottom:9.885000px;}
.y1e2{bottom:9.900000px;}
.y1f8{bottom:9.930000px;}
.y119{bottom:10.065000px;}
.y11a{bottom:10.245000px;}
.y69{bottom:12.405000px;}
.y5{bottom:12.600000px;}
.y124{bottom:12.960000px;}
.y1e7{bottom:16.725000px;}
.y1e1{bottom:16.740000px;}
.y235{bottom:16.920000px;}
.y1f7{bottom:16.950000px;}
.y70{bottom:17.640000px;}
.y11c{bottom:17.985000px;}
.y3b{bottom:20.880000px;}
.y121{bottom:21.060000px;}
.y6{bottom:21.960000px;}
.y3{bottom:23.220000px;}
.y4{bottom:24.660000px;}
.y7b{bottom:25.395000px;}
.y68{bottom:30.405000px;}
.y6f{bottom:31.140000px;}
.y3a{bottom:34.740000px;}
.y6e{bottom:44.280000px;}
.y67{bottom:45.705000px;}
.y84{bottom:46.980000px;}
.y39{bottom:47.520000px;}
.y7a{bottom:56.355000px;}
.y6d{bottom:57.240000px;}
.y1{bottom:57.420000px;}
.y66{bottom:58.125000px;}
.y81{bottom:63.780000px;}
.y255{bottom:68.610000px;}
.y79{bottom:69.495000px;}
.y6c{bottom:70.380000px;}
.y65{bottom:76.125000px;}
.y78{bottom:82.455000px;}
.y254{bottom:82.470000px;}
.y6b{bottom:87.300000px;}
.y64{bottom:93.945000px;}
.y77{bottom:95.415000px;}
.y1ce{bottom:100.080000px;}
.y1b4{bottom:100.980000px;}
.y114{bottom:104.940000px;}
.y21a{bottom:106.380000px;}
.y125{bottom:106.920000px;}
.yc0{bottom:108.000000px;}
.y76{bottom:108.555000px;}
.yee{bottom:109.080000px;}
.yb6{bottom:111.060000px;}
.y260{bottom:111.240000px;}
.y22c{bottom:111.630000px;}
.y63{bottom:111.765000px;}
.y137{bottom:111.960000px;}
.y37{bottom:114.840000px;}
.y10a{bottom:117.000000px;}
.y1cd{bottom:117.360000px;}
.y1b3{bottom:118.080000px;}
.y120{bottom:118.620000px;}
.y219{bottom:120.780000px;}
.y75{bottom:121.545000px;}
.y113{bottom:124.740000px;}
.y22b{bottom:125.310000px;}
.y253{bottom:127.080000px;}
.ybf{bottom:127.980000px;}
.yed{bottom:128.880000px;}
.y62{bottom:129.630000px;}
.yb5{bottom:130.860000px;}
.y136{bottom:131.940000px;}
.y74{bottom:133.965000px;}
.y1cc{bottom:134.460000px;}
.y36{bottom:134.820000px;}
.y1b2{bottom:135.360000px;}
.y109{bottom:136.800000px;}
.y14e{bottom:138.240000px;}
.y25f{bottom:141.660000px;}
.y112{bottom:144.540000px;}
.y17a{bottom:144.900000px;}
.y61{bottom:147.450000px;}
.ybe{bottom:147.780000px;}
.y23f{bottom:148.350000px;}
.yec{bottom:148.680000px;}
.y218{bottom:149.940000px;}
.yb4{bottom:150.660000px;}
.y122{bottom:151.200000px;}
.y135{bottom:151.740000px;}
.y1b1{bottom:152.640000px;}
.y35{bottom:154.620000px;}
.y25e{bottom:156.060000px;}
.y108{bottom:157.500000px;}
.y14d{bottom:158.040000px;}
.y23e{bottom:162.030000px;}
.y179{bottom:162.210000px;}
.y60{bottom:162.750000px;}
.y111{bottom:164.370000px;}
.y217{bottom:164.565000px;}
.ybd{bottom:167.610000px;}
.y11b{bottom:167.805000px;}
.yeb{bottom:168.690000px;}
.y1cb{bottom:169.050000px;}
.y1b0{bottom:169.950000px;}
.yb3{bottom:170.670000px;}
.y25d{bottom:170.685000px;}
.y134{bottom:171.570000px;}
.y34{bottom:174.450000px;}
.y5f{bottom:175.350000px;}
.y107{bottom:177.510000px;}
.y14c{bottom:177.870000px;}
.y216{bottom:179.145000px;}
.y178{bottom:179.490000px;}
.y110{bottom:184.170000px;}
.y25c{bottom:185.265000px;}
.y1ca{bottom:186.330000px;}
.y1af{bottom:187.230000px;}
.ybc{bottom:187.410000px;}
.yea{bottom:189.390000px;}
.yb2{bottom:190.470000px;}
.y133{bottom:191.370000px;}
.y11d{bottom:191.385000px;}
.y5e{bottom:193.170000px;}
.y215{bottom:193.725000px;}
.y33{bottom:194.250000px;}
.y177{bottom:196.770000px;}
.y14b{bottom:198.750000px;}
.y25b{bottom:199.845000px;}
.y1c9{bottom:203.610000px;}
.y10f{bottom:204.150000px;}
.y1ae{bottom:204.330000px;}
.ybb{bottom:207.210000px;}
.y214{bottom:208.125000px;}
.ye9{bottom:209.010000px;}
.yb1{bottom:210.270000px;}
.y5d{bottom:210.990000px;}
.y132{bottom:211.170000px;}
.y118{bottom:212.625000px;}
.y32{bottom:214.050000px;}
.y25a{bottom:214.425000px;}
.y1c8{bottom:220.710000px;}
.y1ad{bottom:221.610000px;}
.ye8{bottom:222.150000px;}
.y213{bottom:222.705000px;}
.y10e{bottom:223.950000px;}
.yba{bottom:227.190000px;}
.y5c{bottom:228.810000px;}
.y259{bottom:228.825000px;}
.yb0{bottom:230.070000px;}
.y131{bottom:231.150000px;}
.y176{bottom:231.330000px;}
.y31{bottom:234.030000px;}
.y212{bottom:237.285000px;}
.y1c7{bottom:237.990000px;}
.y1ac{bottom:238.890000px;}
.y14a{bottom:239.610000px;}
.ye7{bottom:241.950000px;}
.y258{bottom:243.405000px;}
.y10d{bottom:243.750000px;}
.y5b{bottom:246.630000px;}
.yb9{bottom:246.990000px;}
.y117{bottom:247.350000px;}
.y175{bottom:248.430000px;}
.yaf{bottom:249.870000px;}
.y130{bottom:250.950000px;}
.y211{bottom:251.865000px;}
.y30{bottom:254.730000px;}
.y1c6{bottom:255.270000px;}
.y1ab{bottom:256.170000px;}
.y257{bottom:257.985000px;}
.y149{bottom:259.410000px;}
.ye6{bottom:261.930000px;}
.y5a{bottom:264.450000px;}
.y116{bottom:265.710000px;}
.y210{bottom:266.445000px;}
.yb8{bottom:267.690000px;}
.yae{bottom:269.850000px;}
.y12f{bottom:270.750000px;}
.y2f{bottom:272.010000px;}
.y48{bottom:272.205000px;}
.y1c5{bottom:272.550000px;}
.y256{bottom:272.565000px;}
.y1aa{bottom:273.450000px;}
.y148{bottom:279.210000px;}
.y2e{bottom:280.470000px;}
.y20f{bottom:281.025000px;}
.ye5{bottom:281.730000px;}
.y59{bottom:282.450000px;}
.y174{bottom:282.990000px;}
.y115{bottom:285.510000px;}
.y23d{bottom:287.145000px;}
.yb7{bottom:288.570000px;}
.yad{bottom:289.650000px;}
.y1c4{bottom:289.830000px;}
.y12e{bottom:290.550000px;}
.y1a9{bottom:290.730000px;}
.y20e{bottom:295.425000px;}
.y147{bottom:299.910000px;}
.y58{bottom:300.270000px;}
.ye4{bottom:301.530000px;}
.y252{bottom:301.725000px;}
.y2d{bottom:304.230000px;}
.y10c{bottom:304.770000px;}
.y106{bottom:306.390000px;}
.y1c3{bottom:307.110000px;}
.y1a8{bottom:307.830000px;}
.yac{bottom:309.450000px;}
.y20d{bottom:310.005000px;}
.y12d{bottom:310.350000px;}
.y57{bottom:315.570000px;}
.y251{bottom:316.125000px;}
.y173{bottom:317.550000px;}
.y105{bottom:319.350000px;}
.ye3{bottom:321.330000px;}
.y146{bottom:323.850000px;}
.y1c2{bottom:324.210000px;}
.y20c{bottom:324.585000px;}
.y1a7{bottom:325.110000px;}
.y2c{bottom:327.990000px;}
.yab{bottom:329.250000px;}
.y12c{bottom:330.330000px;}
.y250{bottom:330.705000px;}
.y172{bottom:334.650000px;}
.y10b{bottom:338.250000px;}
.y104{bottom:339.150000px;}
.y20b{bottom:339.165000px;}
.ye2{bottom:341.130000px;}
.y1c1{bottom:341.490000px;}
.y1a6{bottom:342.390000px;}
.y24f{bottom:345.285000px;}
.y56{bottom:345.810000px;}
.yaa{bottom:349.050000px;}
.y12b{bottom:350.130000px;}
.y2b{bottom:351.930000px;}
.y20a{bottom:353.745000px;}
.y1c0{bottom:358.770000px;}
.y103{bottom:358.950000px;}
.y1a5{bottom:359.670000px;}
.y24e{bottom:359.865000px;}
.ye1{bottom:361.110000px;}
.y55{bottom:363.660000px;}
.y145{bottom:364.710000px;}
.y208{bottom:368.325000px;}
.ya9{bottom:369.030000px;}
.y171{bottom:369.210000px;}
.y12a{bottom:369.930000px;}
.y24d{bottom:374.445000px;}
.y2a{bottom:375.690000px;}
.y1bf{bottom:376.050000px;}
.y1a4{bottom:376.950000px;}
.y102{bottom:378.930000px;}
.ye0{bottom:380.910000px;}
.y54{bottom:381.660000px;}
.y206{bottom:382.725000px;}
.y144{bottom:384.510000px;}
.y170{bottom:386.490000px;}
.ya8{bottom:388.830000px;}
.y24c{bottom:389.025000px;}
.y129{bottom:389.730000px;}
.y1be{bottom:393.375000px;}
.y1a3{bottom:394.275000px;}
.y205{bottom:397.335000px;}
.y101{bottom:398.775000px;}
.y53{bottom:399.480000px;}
.y29{bottom:399.495000px;}
.ydf{bottom:400.755000px;}
.y24b{bottom:403.455000px;}
.y16f{bottom:403.815000px;}
.y143{bottom:404.355000px;}
.ya7{bottom:408.675000px;}
.y128{bottom:409.575000px;}
.y1bd{bottom:410.655000px;}
.y1a2{bottom:411.375000px;}
.y204{bottom:411.915000px;}
.y52{bottom:417.300000px;}
.y24a{bottom:418.035000px;}
.y100{bottom:418.575000px;}
.yde{bottom:420.555000px;}
.y16e{bottom:421.095000px;}
.y28{bottom:423.255000px;}
.y142{bottom:424.335000px;}
.y203{bottom:426.495000px;}
.y1bc{bottom:427.755000px;}
.ya6{bottom:428.475000px;}
.y1a1{bottom:428.655000px;}
.y127{bottom:429.555000px;}
.y249{bottom:432.615000px;}
.y51{bottom:435.120000px;}
.y16d{bottom:438.195000px;}
.yff{bottom:438.375000px;}
.ydd{bottom:440.355000px;}
.y202{bottom:441.075000px;}
.y141{bottom:444.135000px;}
.y1bb{bottom:445.035000px;}
.y1a0{bottom:445.935000px;}
.y27{bottom:447.195000px;}
.y126{bottom:447.375000px;}
.ya5{bottom:448.275000px;}
.y50{bottom:452.940000px;}
.y16c{bottom:455.475000px;}
.y201{bottom:455.655000px;}
.yfe{bottom:458.175000px;}
.ydc{bottom:460.155000px;}
.y248{bottom:461.775000px;}
.y1ba{bottom:462.315000px;}
.y19f{bottom:463.215000px;}
.y140{bottom:464.835000px;}
.ya4{bottom:468.255000px;}
.y200{bottom:470.055000px;}
.y4f{bottom:470.760000px;}
.y26{bottom:470.955000px;}
.y16b{bottom:472.755000px;}
.y247{bottom:476.355000px;}
.yfd{bottom:478.155000px;}
.y1b9{bottom:479.595000px;}
.ydb{bottom:480.135000px;}
.y19e{bottom:480.495000px;}
.y1ff{bottom:484.635000px;}
.y4e{bottom:486.240000px;}
.ya3{bottom:488.055000px;}
.y16a{bottom:490.035000px;}
.y246{bottom:490.755000px;}
.y25{bottom:494.715000px;}
.y1b8{bottom:496.875000px;}
.y19d{bottom:497.595000px;}
.yfc{bottom:497.955000px;}
.y4d{bottom:498.660000px;}
.y1fe{bottom:499.215000px;}
.yda{bottom:500.835000px;}
.y73{bottom:502.800000px;}
.y13f{bottom:505.695000px;}
.y169{bottom:507.315000px;}
.ya2{bottom:507.855000px;}
.y1fd{bottom:513.795000px;}
.y1b7{bottom:514.155000px;}
.y19c{bottom:514.875000px;}
.y24{bottom:515.595000px;}
.y4c{bottom:516.480000px;}
.yfb{bottom:517.755000px;}
.y245{bottom:519.195000px;}
.yd9{bottom:520.635000px;}
.y168{bottom:524.595000px;}
.y13e{bottom:525.495000px;}
.ya1{bottom:527.655000px;}
.y1b6{bottom:531.255000px;}
.y19b{bottom:532.155000px;}
.yd8{bottom:533.595000px;}
.y244{bottom:533.775000px;}
.y4b{bottom:534.300000px;}
.y23{bottom:535.395000px;}
.yfa{bottom:537.555000px;}
.y167{bottom:541.695000px;}
.y1fc{bottom:542.055000px;}
.y13d{bottom:545.475000px;}
.ya0{bottom:547.455000px;}
.y243{bottom:548.175000px;}
.y1b5{bottom:548.535000px;}
.y19a{bottom:549.075000px;}
.y22{bottom:549.255000px;}
.y4a{bottom:552.120000px;}
.yd7{bottom:553.395000px;}
.yf9{bottom:554.295000px;}
.y1fb{bottom:556.635000px;}
.y21{bottom:557.895000px;}
.y166{bottom:558.975000px;}
.y242{bottom:562.755000px;}
.y13c{bottom:565.275000px;}
.y199{bottom:565.815000px;}
.y9f{bottom:567.435000px;}
.y49{bottom:569.940000px;}
.y1fa{bottom:571.215000px;}
.yd6{bottom:573.375000px;}
.y165{bottom:576.255000px;}
.y241{bottom:577.335000px;}
.y20{bottom:581.115000px;}
.y198{bottom:583.095000px;}
.y13b{bottom:585.075000px;}
.y1f9{bottom:585.795000px;}
.y9e{bottom:587.235000px;}
.y240{bottom:591.915000px;}
.yd5{bottom:593.175000px;}
.y164{bottom:593.535000px;}
.y197{bottom:600.375000px;}
.y1f{bottom:604.515000px;}
.y13a{bottom:604.875000px;}
.y22a{bottom:606.495000px;}
.y9d{bottom:607.035000px;}
.y163{bottom:610.815000px;}
.yd4{bottom:612.975000px;}
.y1f5{bottom:614.055000px;}
.y196{bottom:617.475000px;}
.y23a{bottom:621.075000px;}
.y139{bottom:624.705000px;}
.y9c{bottom:626.865000px;}
.y1e{bottom:627.765000px;}
.y162{bottom:628.125000px;}
.yd3{bottom:632.805000px;}
.y195{bottom:634.785000px;}
.y239{bottom:635.505000px;}
.y1f4{bottom:642.525000px;}
.y161{bottom:645.225000px;}
.y138{bottom:645.585000px;}
.y9b{bottom:646.665000px;}
.y194{bottom:652.065000px;}
.yd2{bottom:652.605000px;}
.y6a{bottom:657.105000px;}
.y160{bottom:662.865000px;}
.y238{bottom:663.945000px;}
.y9a{bottom:666.645000px;}
.y193{bottom:669.345000px;}
.y1f3{bottom:671.505000px;}
.yd1{bottom:672.585000px;}
.y237{bottom:678.525000px;}
.y1d{bottom:682.665000px;}
.yf8{bottom:683.385000px;}
.y1f2{bottom:686.085000px;}
.y99{bottom:686.445000px;}
.y192{bottom:686.625000px;}
.yd0{bottom:692.385000px;}
.y236{bottom:693.105000px;}
.yf7{bottom:696.345000px;}
.y1c{bottom:698.145000px;}
.y1f1{bottom:700.665000px;}
.y15f{bottom:701.205000px;}
.y191{bottom:703.905000px;}
.y98{bottom:706.245000px;}
.y234{bottom:707.505000px;}
.ycf{bottom:712.185000px;}
.y1b{bottom:713.625000px;}
.y1f0{bottom:715.245000px;}
.yf6{bottom:716.145000px;}
.y15e{bottom:718.485000px;}
.y190{bottom:721.005000px;}
.y97{bottom:726.045000px;}
.y1a{bottom:729.105000px;}
.y1ef{bottom:729.825000px;}
.yce{bottom:731.985000px;}
.y15d{bottom:735.765000px;}
.yf5{bottom:735.945000px;}
.y18f{bottom:738.285000px;}
.y1ee{bottom:744.405000px;}
.y19{bottom:744.765000px;}
.y96{bottom:745.845000px;}
.y233{bottom:750.525000px;}
.ycd{bottom:751.785000px;}
.y18e{bottom:755.565000px;}
.y18{bottom:755.745000px;}
.y15c{bottom:756.285000px;}
.y1ed{bottom:758.805000px;}
.y38{bottom:764.385000px;}
.y232{bottom:765.105000px;}
.y95{bottom:765.825000px;}
.y17{bottom:769.425000px;}
.ycc{bottom:771.765000px;}
.y18d{bottom:772.845000px;}
.y1ec{bottom:773.385000px;}
.yf4{bottom:775.725000px;}
.y231{bottom:779.505000px;}
.y16{bottom:782.385000px;}
.y94{bottom:785.625000px;}
.y1eb{bottom:787.965000px;}
.y18c{bottom:790.125000px;}
.ycb{bottom:791.565000px;}
.y230{bottom:794.100000px;}
.y15{bottom:795.345000px;}
.yf3{bottom:795.525000px;}
.y15b{bottom:797.145000px;}
.y1ea{bottom:802.545000px;}
.y93{bottom:805.425000px;}
.y18b{bottom:807.405000px;}
.y14{bottom:808.305000px;}
.y22f{bottom:808.665000px;}
.yca{bottom:811.365000px;}
.yf2{bottom:815.325000px;}
.y1e5{bottom:817.140000px;}
.y15a{bottom:817.845000px;}
.y13{bottom:821.985000px;}
.y22e{bottom:823.245000px;}
.y18a{bottom:824.505000px;}
.y92{bottom:825.225000px;}
.yc9{bottom:831.165000px;}
.y12{bottom:834.945000px;}
.yf1{bottom:835.125000px;}
.y22d{bottom:837.825000px;}
.y189{bottom:841.785000px;}
.y91{bottom:845.025000px;}
.y1e4{bottom:845.385000px;}
.yc8{bottom:850.965000px;}
.y228{bottom:852.405000px;}
.yf0{bottom:854.970000px;}
.y159{bottom:858.930000px;}
.y188{bottom:859.110000px;}
.y1e3{bottom:860.010000px;}
.y11{bottom:861.810000px;}
.y90{bottom:865.050000px;}
.yc7{bottom:870.990000px;}
.y227{bottom:871.710000px;}
.yef{bottom:871.890000px;}
.y10{bottom:872.970000px;}
.y1df{bottom:874.590000px;}
.y187{bottom:876.390000px;}
.y158{bottom:878.730000px;}
.y8f{bottom:884.850000px;}
.y226{bottom:887.370000px;}
.yc6{bottom:890.790000px;}
.y186{bottom:893.670000px;}
.yf{bottom:897.090000px;}
.y157{bottom:898.530000px;}
.y1de{bottom:902.850000px;}
.y225{bottom:903.750000px;}
.y8e{bottom:904.650000px;}
.yc5{bottom:910.590000px;}
.y185{bottom:910.770000px;}
.y224{bottom:915.810000px;}
.y1dd{bottom:917.430000px;}
.y156{bottom:918.330000px;}
.ye{bottom:921.210000px;}
.y8d{bottom:924.450000px;}
.y223{bottom:927.870000px;}
.y184{bottom:928.050000px;}
.yc4{bottom:930.390000px;}
.y1dc{bottom:932.010000px;}
.yd{bottom:936.150000px;}
.y155{bottom:938.130000px;}
.y222{bottom:939.930000px;}
.y8c{bottom:944.250000px;}
.y183{bottom:945.330000px;}
.y1db{bottom:946.590000px;}
.yc{bottom:947.670000px;}
.yc3{bottom:950.190000px;}
.y221{bottom:951.810000px;}
.y154{bottom:958.110000px;}
.y1da{bottom:961.170000px;}
.y182{bottom:962.610000px;}
.y8b{bottom:964.230000px;}
.yb{bottom:965.130000px;}
.yc2{bottom:971.070000px;}
.y1d9{bottom:975.570000px;}
.y153{bottom:978.810000px;}
.y181{bottom:979.890000px;}
.y220{bottom:980.070000px;}
.y8a{bottom:984.030000px;}
.ya{bottom:986.730000px;}
.y1d8{bottom:990.150000px;}
.yc1{bottom:990.690000px;}
.y180{bottom:997.170000px;}
.y89{bottom:1003.830000px;}
.y1d7{bottom:1004.730000px;}
.y21f{bottom:1008.510000px;}
.y9{bottom:1008.690000px;}
.y17f{bottom:1014.270000px;}
.y1d5{bottom:1019.310000px;}
.y152{bottom:1019.670000px;}
.y21e{bottom:1022.910000px;}
.y88{bottom:1023.630000px;}
.y17e{bottom:1031.550000px;}
.y1d4{bottom:1033.890000px;}
.y8{bottom:1036.230000px;}
.y21d{bottom:1037.490000px;}
.y151{bottom:1039.470000px;}
.y87{bottom:1043.430000px;}
.y1d2{bottom:1048.470000px;}
.y17d{bottom:1048.830000px;}
.y21c{bottom:1052.070000px;}
.y150{bottom:1059.450000px;}
.y1d0{bottom:1062.870000px;}
.y7{bottom:1063.230000px;}
.y86{bottom:1063.410000px;}
.y17c{bottom:1066.110000px;}
.y21b{bottom:1066.650000px;}
.y14f{bottom:1080.150000px;}
.y85{bottom:1083.240000px;}
.y17b{bottom:1083.420000px;}
.y1cf{bottom:1084.680000px;}
.y71{bottom:1096.200000px;}
.y83{bottom:1123.200000px;}
.y45{bottom:1137.240000px;}
.h6{height:5.653125px;}
.h17{height:5.805000px;}
.h4c{height:6.257812px;}
.h2{height:13.500000px;}
.h39{height:13.665000px;}
.h3d{height:13.680000px;}
.h4a{height:13.701000px;}
.h43{height:13.702500px;}
.h46{height:13.710000px;}
.h38{height:13.845000px;}
.h40{height:13.845150px;}
.h3c{height:13.860000px;}
.h3f{height:13.881000px;}
.h3b{height:13.882500px;}
.h41{height:13.896000px;}
.h33{height:15.876000px;}
.h1b{height:16.920000px;}
.h30{height:18.885000px;}
.h24{height:22.140000px;}
.h31{height:22.845000px;}
.h16{height:23.319141px;}
.h2e{height:26.805000px;}
.h3a{height:27.525000px;}
.h48{height:27.705000px;}
.h45{height:27.720000px;}
.h3e{height:27.750000px;}
.hd{height:29.344922px;}
.h2b{height:29.664141px;}
.hc{height:29.678906px;}
.hf{height:30.963516px;}
.h2c{height:31.081955px;}
.h34{height:31.860000px;}
.h4{height:34.200000px;}
.h21{height:36.281250px;}
.h14{height:39.503370px;}
.h5{height:40.985156px;}
.h23{height:42.086250px;}
.h2f{height:42.465000px;}
.h49{height:43.246406px;}
.h22{height:43.472812px;}
.h29{height:43.983631px;}
.h11{height:44.518359px;}
.hb{height:45.116367px;}
.h19{height:45.714375px;}
.h12{height:46.622932px;}
.h13{height:47.344922px;}
.h32{height:48.456000px;}
.h1c{height:48.616875px;}
.h15{height:52.998047px;}
.h35{height:53.573906px;}
.h1d{height:54.421875px;}
.h10{height:55.291992px;}
.h1f{height:55.503491px;}
.h36{height:55.824609px;}
.h42{height:56.214844px;}
.h18{height:57.780000px;}
.h28{height:58.621992px;}
.h3{height:58.651172px;}
.h2d{height:60.226875px;}
.h37{height:62.211094px;}
.ha{height:65.010937px;}
.h1a{height:65.884219px;}
.he{height:67.824844px;}
.h2a{height:70.628906px;}
.h9{height:72.562500px;}
.h25{height:74.953125px;}
.h27{height:75.093750px;}
.h7{height:87.695156px;}
.h20{height:95.400000px;}
.h8{height:96.508125px;}
.h26{height:144.945000px;}
.h4b{height:159.330000px;}
.h44{height:245.010000px;}
.h47{height:318.615000px;}
.h1e{height:582.210000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w18{width:29.145000px;}
.w12{width:38.370000px;}
.w14{width:40.536000px;}
.w11{width:46.605000px;}
.we{width:74.325000px;}
.w3{width:82.071000px;}
.w13{width:87.660000px;}
.w16{width:88.551000px;}
.wc{width:108.030000px;}
.wd{width:121.161000px;}
.w5{width:154.470000px;}
.wa{width:180.390000px;}
.w8{width:182.550000px;}
.wb{width:195.495000px;}
.w7{width:532.920000px;}
.w15{width:583.470000px;}
.w10{width:624.015000px;}
.w4{width:639.855000px;}
.w19{width:651.915000px;}
.w17{width:681.075000px;}
.w2{width:721.935000px;}
.w9{width:743.175000px;}
.w6{width:747.135000px;}
.wf{width:796.680000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3d{left:4.252500px;}
.x2{left:8.091000px;}
.x10{left:10.791000px;}
.x34{left:12.240000px;}
.x35{left:13.716000px;}
.x32{left:16.776000px;}
.x25{left:19.620000px;}
.x16{left:21.255000px;}
.x27{left:22.500000px;}
.x31{left:23.580000px;}
.x37{left:25.380000px;}
.x29{left:28.800000px;}
.x38{left:35.136000px;}
.x26{left:36.360000px;}
.x23{left:40.500000px;}
.x28{left:41.580000px;}
.x21{left:58.665000px;}
.x2a{left:70.380000px;}
.x3{left:73.965000px;}
.x13{left:80.505000px;}
.x11{left:81.765000px;}
.x39{left:84.465000px;}
.xf{left:93.105000px;}
.x15{left:94.905000px;}
.x1{left:108.045000px;}
.x33{left:110.925000px;}
.x1c{left:119.196000px;}
.x1b{left:128.376000px;}
.xc{left:132.696000px;}
.x3a{left:173.025000px;}
.x6{left:176.970000px;}
.x18{left:186.690000px;}
.x4{left:190.125000px;}
.x2b{left:193.935000px;}
.x3c{left:202.185000px;}
.xb{left:238.530000px;}
.xa{left:240.150000px;}
.x8{left:243.210000px;}
.x36{left:253.155000px;}
.x19{left:275.835000px;}
.x1a{left:279.615000px;}
.x2d{left:297.075000px;}
.x12{left:303.195000px;}
.x3b{left:308.040000px;}
.x14{left:310.350000px;}
.x2c{left:369.105000px;}
.x1e{left:378.435000px;}
.x7{left:443.085000px;}
.x5{left:446.505000px;}
.x9{left:459.105000px;}
.x1f{left:484.125000px;}
.xd{left:489.165000px;}
.xe{left:490.785000px;}
.x20{left:540.825000px;}
.x24{left:611.970000px;}
.x17{left:620.253000px;}
.x22{left:686.310000px;}
.x2e{left:694.410000px;}
.x2f{left:741.030000px;}
.x30{left:779.400000px;}
.x1d{left:803.160000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls1f{letter-spacing:-1.600000pt;}
.ls12{letter-spacing:-1.280000pt;}
.ls20{letter-spacing:-1.120000pt;}
.lsd{letter-spacing:-0.720000pt;}
.ls1b{letter-spacing:-0.592000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls1d{letter-spacing:-0.400533pt;}
.ls17{letter-spacing:-0.367467pt;}
.lsa{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.198933pt;}
.ls1c{letter-spacing:-0.161067pt;}
.ls19{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.094933pt;}
.ls4{letter-spacing:0.128640pt;}
.ls2{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.161067pt;}
.ls15{letter-spacing:0.230933pt;}
.ls10{letter-spacing:0.231040pt;}
.ls1e{letter-spacing:0.239467pt;}
.ls5{letter-spacing:0.240640pt;}
.ls18{letter-spacing:0.265600pt;}
.lse{letter-spacing:0.280533pt;}
.ls6{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.456533pt;}
.lsf{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.800000pt;}
.ls14{letter-spacing:0.869333pt;}
.ls7{letter-spacing:0.960000pt;}
.ls3{letter-spacing:42.400000pt;}
.ls0{letter-spacing:63.360000pt;}
.ls1{letter-spacing:64.000000pt;}
.wsf{word-spacing:-16.000000pt;}
.ws12{word-spacing:-15.872000pt;}
.wsd{word-spacing:-14.720000pt;}
.wsa{word-spacing:-13.600000pt;}
.ws14{word-spacing:-13.545600pt;}
.wse{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.ws11{word-spacing:-12.912533pt;}
.ws16{word-spacing:-12.688000pt;}
.ws13{word-spacing:-12.640000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.040000pt;}
.ws19{word-spacing:-10.959467pt;}
.ws5{word-spacing:-10.881067pt;}
.ws10{word-spacing:-10.720000pt;}
.ws17{word-spacing:-10.558933pt;}
.ws2{word-spacing:-10.400000pt;}
.ws18{word-spacing:-10.319467pt;}
.ws4{word-spacing:-10.080000pt;}
.ws3{word-spacing:-9.760000pt;}
.ws1b{word-spacing:-9.600000pt;}
.ws0{word-spacing:-9.280000pt;}
.ws1a{word-spacing:-9.120000pt;}
.ws8{word-spacing:-8.000000pt;}
.ws1{word-spacing:-6.720000pt;}
.ws9{word-spacing:0.000000pt;}
.ws15{word-spacing:56.800000pt;}
._2c{margin-left:-1083.712000pt;}
._2d{margin-left:-204.240000pt;}
._45{margin-left:-97.688960pt;}
._44{margin-left:-71.040000pt;}
._5{margin-left:-52.960000pt;}
._49{margin-left:-5.184000pt;}
._48{margin-left:-3.824213pt;}
._17{margin-left:-2.928000pt;}
._18{margin-left:-2.016000pt;}
._2{margin-left:-1.118720pt;}
._0{width:0.928000pt;}
._1{width:2.155093pt;}
._f{width:3.210027pt;}
._19{width:4.133973pt;}
._10{width:5.843200pt;}
._11{width:6.746240pt;}
._1a{width:7.963307pt;}
._7{width:9.281067pt;}
._9{width:10.305280pt;}
._a{width:11.367680pt;}
._b{width:12.368427pt;}
._16{width:13.742293pt;}
._15{width:14.717440pt;}
._1c{width:15.905280pt;}
._1b{width:17.022720pt;}
._14{width:18.220160pt;}
._12{width:19.866880pt;}
._13{width:21.146240pt;}
._26{width:22.629120pt;}
._27{width:23.557760pt;}
._1f{width:24.860160pt;}
._20{width:26.294400pt;}
._22{width:27.569280pt;}
._25{width:28.500480pt;}
._1e{width:30.119040pt;}
._2a{width:31.075200pt;}
._8{width:32.129707pt;}
._21{width:33.306240pt;}
._24{width:34.212480pt;}
._28{width:35.590400pt;}
._2f{width:36.759040pt;}
._33{width:38.140160pt;}
._32{width:39.361920pt;}
._29{width:40.689920pt;}
._38{width:41.592960pt;}
._23{width:43.239680pt;}
._30{width:44.302080pt;}
._2b{width:45.630080pt;}
._3e{width:48.339200pt;}
._31{width:50.282667pt;}
._d{width:51.723307pt;}
._c{width:52.641920pt;}
._34{width:53.598080pt;}
._2e{width:57.157973pt;}
._3{width:58.218667pt;}
._e{width:59.813120pt;}
._39{width:60.769280pt;}
._47{width:62.362880pt;}
._40{width:64.037760pt;}
._41{width:65.472000pt;}
._3a{width:67.090560pt;}
._37{width:69.191467pt;}
._3b{width:72.296320pt;}
._35{width:80.954880pt;}
._36{width:82.254720pt;}
._3f{width:83.479680pt;}
._43{width:97.486080pt;}
._3d{width:100.237440pt;}
._3c{width:101.618560pt;}
._42{width:107.971200pt;}
._46{width:122.176000pt;}
._4{width:177.440000pt;}
._1d{width:250.906667pt;}
._4a{width:253.659093pt;}
._6{width:671.978667pt;}
.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;}
.fs0{font-size:37.120000pt;}
.fs7{font-size:40.320000pt;}
.fs9{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fsf{font-size:50.560000pt;}
.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;}
.y44{bottom:-220.026667pt;}
.y43{bottom:-190.106667pt;}
.y42{bottom:-160.186667pt;}
.y41{bottom:-130.106667pt;}
.y80{bottom:-127.386667pt;}
.y40{bottom:-100.160000pt;}
.y7f{bottom:-97.426667pt;}
.y3f{bottom:-70.080000pt;}
.y7e{bottom:-67.346667pt;}
.y3e{bottom:-40.160000pt;}
.y7d{bottom:-37.426667pt;}
.y47{bottom:-24.160000pt;}
.y82{bottom:-15.931333pt;}
.y3d{bottom:-10.240000pt;}
.y7c{bottom:-7.346667pt;}
.y0{bottom:0.000000pt;}
.y261{bottom:1.633333pt;}
.y209{bottom:2.386667pt;}
.y1d3{bottom:2.400000pt;}
.y23b{bottom:2.426667pt;}
.y229{bottom:2.440000pt;}
.y1e8{bottom:2.546667pt;}
.y1d1{bottom:2.560000pt;}
.y23c{bottom:2.586667pt;}
.y207{bottom:2.706667pt;}
.y1d6{bottom:2.720000pt;}
.y2{bottom:3.520000pt;}
.y123{bottom:4.320000pt;}
.y46{bottom:4.480000pt;}
.y72{bottom:4.960000pt;}
.y11e{bottom:5.746667pt;}
.y3c{bottom:6.080000pt;}
.y11f{bottom:7.506667pt;}
.y1e6{bottom:8.626667pt;}
.y1e0{bottom:8.640000pt;}
.y1f6{bottom:8.666667pt;}
.y1e9{bottom:8.786667pt;}
.y1e2{bottom:8.800000pt;}
.y1f8{bottom:8.826667pt;}
.y119{bottom:8.946667pt;}
.y11a{bottom:9.106667pt;}
.y69{bottom:11.026667pt;}
.y5{bottom:11.200000pt;}
.y124{bottom:11.520000pt;}
.y1e7{bottom:14.866667pt;}
.y1e1{bottom:14.880000pt;}
.y235{bottom:15.040000pt;}
.y1f7{bottom:15.066667pt;}
.y70{bottom:15.680000pt;}
.y11c{bottom:15.986667pt;}
.y3b{bottom:18.560000pt;}
.y121{bottom:18.720000pt;}
.y6{bottom:19.520000pt;}
.y3{bottom:20.640000pt;}
.y4{bottom:21.920000pt;}
.y7b{bottom:22.573333pt;}
.y68{bottom:27.026667pt;}
.y6f{bottom:27.680000pt;}
.y3a{bottom:30.880000pt;}
.y6e{bottom:39.360000pt;}
.y67{bottom:40.626667pt;}
.y84{bottom:41.760000pt;}
.y39{bottom:42.240000pt;}
.y7a{bottom:50.093333pt;}
.y6d{bottom:50.880000pt;}
.y1{bottom:51.040000pt;}
.y66{bottom:51.666667pt;}
.y81{bottom:56.693333pt;}
.y255{bottom:60.986667pt;}
.y79{bottom:61.773333pt;}
.y6c{bottom:62.560000pt;}
.y65{bottom:67.666667pt;}
.y78{bottom:73.293333pt;}
.y254{bottom:73.306667pt;}
.y6b{bottom:77.600000pt;}
.y64{bottom:83.506667pt;}
.y77{bottom:84.813333pt;}
.y1ce{bottom:88.960000pt;}
.y1b4{bottom:89.760000pt;}
.y114{bottom:93.280000pt;}
.y21a{bottom:94.560000pt;}
.y125{bottom:95.040000pt;}
.yc0{bottom:96.000000pt;}
.y76{bottom:96.493333pt;}
.yee{bottom:96.960000pt;}
.yb6{bottom:98.720000pt;}
.y260{bottom:98.880000pt;}
.y22c{bottom:99.226667pt;}
.y63{bottom:99.346667pt;}
.y137{bottom:99.520000pt;}
.y37{bottom:102.080000pt;}
.y10a{bottom:104.000000pt;}
.y1cd{bottom:104.320000pt;}
.y1b3{bottom:104.960000pt;}
.y120{bottom:105.440000pt;}
.y219{bottom:107.360000pt;}
.y75{bottom:108.040000pt;}
.y113{bottom:110.880000pt;}
.y22b{bottom:111.386667pt;}
.y253{bottom:112.960000pt;}
.ybf{bottom:113.760000pt;}
.yed{bottom:114.560000pt;}
.y62{bottom:115.226667pt;}
.yb5{bottom:116.320000pt;}
.y136{bottom:117.280000pt;}
.y74{bottom:119.080000pt;}
.y1cc{bottom:119.520000pt;}
.y36{bottom:119.840000pt;}
.y1b2{bottom:120.320000pt;}
.y109{bottom:121.600000pt;}
.y14e{bottom:122.880000pt;}
.y25f{bottom:125.920000pt;}
.y112{bottom:128.480000pt;}
.y17a{bottom:128.800000pt;}
.y61{bottom:131.066667pt;}
.ybe{bottom:131.360000pt;}
.y23f{bottom:131.866667pt;}
.yec{bottom:132.160000pt;}
.y218{bottom:133.280000pt;}
.yb4{bottom:133.920000pt;}
.y122{bottom:134.400000pt;}
.y135{bottom:134.880000pt;}
.y1b1{bottom:135.680000pt;}
.y35{bottom:137.440000pt;}
.y25e{bottom:138.720000pt;}
.y108{bottom:140.000000pt;}
.y14d{bottom:140.480000pt;}
.y23e{bottom:144.026667pt;}
.y179{bottom:144.186667pt;}
.y60{bottom:144.666667pt;}
.y111{bottom:146.106667pt;}
.y217{bottom:146.280000pt;}
.ybd{bottom:148.986667pt;}
.y11b{bottom:149.160000pt;}
.yeb{bottom:149.946667pt;}
.y1cb{bottom:150.266667pt;}
.y1b0{bottom:151.066667pt;}
.yb3{bottom:151.706667pt;}
.y25d{bottom:151.720000pt;}
.y134{bottom:152.506667pt;}
.y34{bottom:155.066667pt;}
.y5f{bottom:155.866667pt;}
.y107{bottom:157.786667pt;}
.y14c{bottom:158.106667pt;}
.y216{bottom:159.240000pt;}
.y178{bottom:159.546667pt;}
.y110{bottom:163.706667pt;}
.y25c{bottom:164.680000pt;}
.y1ca{bottom:165.626667pt;}
.y1af{bottom:166.426667pt;}
.ybc{bottom:166.586667pt;}
.yea{bottom:168.346667pt;}
.yb2{bottom:169.306667pt;}
.y133{bottom:170.106667pt;}
.y11d{bottom:170.120000pt;}
.y5e{bottom:171.706667pt;}
.y215{bottom:172.200000pt;}
.y33{bottom:172.666667pt;}
.y177{bottom:174.906667pt;}
.y14b{bottom:176.666667pt;}
.y25b{bottom:177.640000pt;}
.y1c9{bottom:180.986667pt;}
.y10f{bottom:181.466667pt;}
.y1ae{bottom:181.626667pt;}
.ybb{bottom:184.186667pt;}
.y214{bottom:185.000000pt;}
.ye9{bottom:185.786667pt;}
.yb1{bottom:186.906667pt;}
.y5d{bottom:187.546667pt;}
.y132{bottom:187.706667pt;}
.y118{bottom:189.000000pt;}
.y32{bottom:190.266667pt;}
.y25a{bottom:190.600000pt;}
.y1c8{bottom:196.186667pt;}
.y1ad{bottom:196.986667pt;}
.ye8{bottom:197.466667pt;}
.y213{bottom:197.960000pt;}
.y10e{bottom:199.066667pt;}
.yba{bottom:201.946667pt;}
.y5c{bottom:203.386667pt;}
.y259{bottom:203.400000pt;}
.yb0{bottom:204.506667pt;}
.y131{bottom:205.466667pt;}
.y176{bottom:205.626667pt;}
.y31{bottom:208.026667pt;}
.y212{bottom:210.920000pt;}
.y1c7{bottom:211.546667pt;}
.y1ac{bottom:212.346667pt;}
.y14a{bottom:212.986667pt;}
.ye7{bottom:215.066667pt;}
.y258{bottom:216.360000pt;}
.y10d{bottom:216.666667pt;}
.y5b{bottom:219.226667pt;}
.yb9{bottom:219.546667pt;}
.y117{bottom:219.866667pt;}
.y175{bottom:220.826667pt;}
.yaf{bottom:222.106667pt;}
.y130{bottom:223.066667pt;}
.y211{bottom:223.880000pt;}
.y30{bottom:226.426667pt;}
.y1c6{bottom:226.906667pt;}
.y1ab{bottom:227.706667pt;}
.y257{bottom:229.320000pt;}
.y149{bottom:230.586667pt;}
.ye6{bottom:232.826667pt;}
.y5a{bottom:235.066667pt;}
.y116{bottom:236.186667pt;}
.y210{bottom:236.840000pt;}
.yb8{bottom:237.946667pt;}
.yae{bottom:239.866667pt;}
.y12f{bottom:240.666667pt;}
.y2f{bottom:241.786667pt;}
.y48{bottom:241.960000pt;}
.y1c5{bottom:242.266667pt;}
.y256{bottom:242.280000pt;}
.y1aa{bottom:243.066667pt;}
.y148{bottom:248.186667pt;}
.y2e{bottom:249.306667pt;}
.y20f{bottom:249.800000pt;}
.ye5{bottom:250.426667pt;}
.y59{bottom:251.066667pt;}
.y174{bottom:251.546667pt;}
.y115{bottom:253.786667pt;}
.y23d{bottom:255.240000pt;}
.yb7{bottom:256.506667pt;}
.yad{bottom:257.466667pt;}
.y1c4{bottom:257.626667pt;}
.y12e{bottom:258.266667pt;}
.y1a9{bottom:258.426667pt;}
.y20e{bottom:262.600000pt;}
.y147{bottom:266.586667pt;}
.y58{bottom:266.906667pt;}
.ye4{bottom:268.026667pt;}
.y252{bottom:268.200000pt;}
.y2d{bottom:270.426667pt;}
.y10c{bottom:270.906667pt;}
.y106{bottom:272.346667pt;}
.y1c3{bottom:272.986667pt;}
.y1a8{bottom:273.626667pt;}
.yac{bottom:275.066667pt;}
.y20d{bottom:275.560000pt;}
.y12d{bottom:275.866667pt;}
.y57{bottom:280.506667pt;}
.y251{bottom:281.000000pt;}
.y173{bottom:282.266667pt;}
.y105{bottom:283.866667pt;}
.ye3{bottom:285.626667pt;}
.y146{bottom:287.866667pt;}
.y1c2{bottom:288.186667pt;}
.y20c{bottom:288.520000pt;}
.y1a7{bottom:288.986667pt;}
.y2c{bottom:291.546667pt;}
.yab{bottom:292.666667pt;}
.y12c{bottom:293.626667pt;}
.y250{bottom:293.960000pt;}
.y172{bottom:297.466667pt;}
.y10b{bottom:300.666667pt;}
.y104{bottom:301.466667pt;}
.y20b{bottom:301.480000pt;}
.ye2{bottom:303.226667pt;}
.y1c1{bottom:303.546667pt;}
.y1a6{bottom:304.346667pt;}
.y24f{bottom:306.920000pt;}
.y56{bottom:307.386667pt;}
.yaa{bottom:310.266667pt;}
.y12b{bottom:311.226667pt;}
.y2b{bottom:312.826667pt;}
.y20a{bottom:314.440000pt;}
.y1c0{bottom:318.906667pt;}
.y103{bottom:319.066667pt;}
.y1a5{bottom:319.706667pt;}
.y24e{bottom:319.880000pt;}
.ye1{bottom:320.986667pt;}
.y55{bottom:323.253333pt;}
.y145{bottom:324.186667pt;}
.y208{bottom:327.400000pt;}
.ya9{bottom:328.026667pt;}
.y171{bottom:328.186667pt;}
.y12a{bottom:328.826667pt;}
.y24d{bottom:332.840000pt;}
.y2a{bottom:333.946667pt;}
.y1bf{bottom:334.266667pt;}
.y1a4{bottom:335.066667pt;}
.y102{bottom:336.826667pt;}
.ye0{bottom:338.586667pt;}
.y54{bottom:339.253333pt;}
.y206{bottom:340.200000pt;}
.y144{bottom:341.786667pt;}
.y170{bottom:343.546667pt;}
.ya8{bottom:345.626667pt;}
.y24c{bottom:345.800000pt;}
.y129{bottom:346.426667pt;}
.y1be{bottom:349.666667pt;}
.y1a3{bottom:350.466667pt;}
.y205{bottom:353.186667pt;}
.y101{bottom:354.466667pt;}
.y53{bottom:355.093333pt;}
.y29{bottom:355.106667pt;}
.ydf{bottom:356.226667pt;}
.y24b{bottom:358.626667pt;}
.y16f{bottom:358.946667pt;}
.y143{bottom:359.426667pt;}
.ya7{bottom:363.266667pt;}
.y128{bottom:364.066667pt;}
.y1bd{bottom:365.026667pt;}
.y1a2{bottom:365.666667pt;}
.y204{bottom:366.146667pt;}
.y52{bottom:370.933333pt;}
.y24a{bottom:371.586667pt;}
.y100{bottom:372.066667pt;}
.yde{bottom:373.826667pt;}
.y16e{bottom:374.306667pt;}
.y28{bottom:376.226667pt;}
.y142{bottom:377.186667pt;}
.y203{bottom:379.106667pt;}
.y1bc{bottom:380.226667pt;}
.ya6{bottom:380.866667pt;}
.y1a1{bottom:381.026667pt;}
.y127{bottom:381.826667pt;}
.y249{bottom:384.546667pt;}
.y51{bottom:386.773333pt;}
.y16d{bottom:389.506667pt;}
.yff{bottom:389.666667pt;}
.ydd{bottom:391.426667pt;}
.y202{bottom:392.066667pt;}
.y141{bottom:394.786667pt;}
.y1bb{bottom:395.586667pt;}
.y1a0{bottom:396.386667pt;}
.y27{bottom:397.506667pt;}
.y126{bottom:397.666667pt;}
.ya5{bottom:398.466667pt;}
.y50{bottom:402.613333pt;}
.y16c{bottom:404.866667pt;}
.y201{bottom:405.026667pt;}
.yfe{bottom:407.266667pt;}
.ydc{bottom:409.026667pt;}
.y248{bottom:410.466667pt;}
.y1ba{bottom:410.946667pt;}
.y19f{bottom:411.746667pt;}
.y140{bottom:413.186667pt;}
.ya4{bottom:416.226667pt;}
.y200{bottom:417.826667pt;}
.y4f{bottom:418.453333pt;}
.y26{bottom:418.626667pt;}
.y16b{bottom:420.226667pt;}
.y247{bottom:423.426667pt;}
.yfd{bottom:425.026667pt;}
.y1b9{bottom:426.306667pt;}
.ydb{bottom:426.786667pt;}
.y19e{bottom:427.106667pt;}
.y1ff{bottom:430.786667pt;}
.y4e{bottom:432.213333pt;}
.ya3{bottom:433.826667pt;}
.y16a{bottom:435.586667pt;}
.y246{bottom:436.226667pt;}
.y25{bottom:439.746667pt;}
.y1b8{bottom:441.666667pt;}
.y19d{bottom:442.306667pt;}
.yfc{bottom:442.626667pt;}
.y4d{bottom:443.253333pt;}
.y1fe{bottom:443.746667pt;}
.yda{bottom:445.186667pt;}
.y73{bottom:446.933333pt;}
.y13f{bottom:449.506667pt;}
.y169{bottom:450.946667pt;}
.ya2{bottom:451.426667pt;}
.y1fd{bottom:456.706667pt;}
.y1b7{bottom:457.026667pt;}
.y19c{bottom:457.666667pt;}
.y24{bottom:458.306667pt;}
.y4c{bottom:459.093333pt;}
.yfb{bottom:460.226667pt;}
.y245{bottom:461.506667pt;}
.yd9{bottom:462.786667pt;}
.y168{bottom:466.306667pt;}
.y13e{bottom:467.106667pt;}
.ya1{bottom:469.026667pt;}
.y1b6{bottom:472.226667pt;}
.y19b{bottom:473.026667pt;}
.yd8{bottom:474.306667pt;}
.y244{bottom:474.466667pt;}
.y4b{bottom:474.933333pt;}
.y23{bottom:475.906667pt;}
.yfa{bottom:477.826667pt;}
.y167{bottom:481.506667pt;}
.y1fc{bottom:481.826667pt;}
.y13d{bottom:484.866667pt;}
.ya0{bottom:486.626667pt;}
.y243{bottom:487.266667pt;}
.y1b5{bottom:487.586667pt;}
.y19a{bottom:488.066667pt;}
.y22{bottom:488.226667pt;}
.y4a{bottom:490.773333pt;}
.yd7{bottom:491.906667pt;}
.yf9{bottom:492.706667pt;}
.y1fb{bottom:494.786667pt;}
.y21{bottom:495.906667pt;}
.y166{bottom:496.866667pt;}
.y242{bottom:500.226667pt;}
.y13c{bottom:502.466667pt;}
.y199{bottom:502.946667pt;}
.y9f{bottom:504.386667pt;}
.y49{bottom:506.613333pt;}
.y1fa{bottom:507.746667pt;}
.yd6{bottom:509.666667pt;}
.y165{bottom:512.226667pt;}
.y241{bottom:513.186667pt;}
.y20{bottom:516.546667pt;}
.y198{bottom:518.306667pt;}
.y13b{bottom:520.066667pt;}
.y1f9{bottom:520.706667pt;}
.y9e{bottom:521.986667pt;}
.y240{bottom:526.146667pt;}
.yd5{bottom:527.266667pt;}
.y164{bottom:527.586667pt;}
.y197{bottom:533.666667pt;}
.y1f{bottom:537.346667pt;}
.y13a{bottom:537.666667pt;}
.y22a{bottom:539.106667pt;}
.y9d{bottom:539.586667pt;}
.y163{bottom:542.946667pt;}
.yd4{bottom:544.866667pt;}
.y1f5{bottom:545.826667pt;}
.y196{bottom:548.866667pt;}
.y23a{bottom:552.066667pt;}
.y139{bottom:555.293333pt;}
.y9c{bottom:557.213333pt;}
.y1e{bottom:558.013333pt;}
.y162{bottom:558.333333pt;}
.yd3{bottom:562.493333pt;}
.y195{bottom:564.253333pt;}
.y239{bottom:564.893333pt;}
.y1f4{bottom:571.133333pt;}
.y161{bottom:573.533333pt;}
.y138{bottom:573.853333pt;}
.y9b{bottom:574.813333pt;}
.y194{bottom:579.613333pt;}
.yd2{bottom:580.093333pt;}
.y6a{bottom:584.093333pt;}
.y160{bottom:589.213333pt;}
.y238{bottom:590.173333pt;}
.y9a{bottom:592.573333pt;}
.y193{bottom:594.973333pt;}
.y1f3{bottom:596.893333pt;}
.yd1{bottom:597.853333pt;}
.y237{bottom:603.133333pt;}
.y1d{bottom:606.813333pt;}
.yf8{bottom:607.453333pt;}
.y1f2{bottom:609.853333pt;}
.y99{bottom:610.173333pt;}
.y192{bottom:610.333333pt;}
.yd0{bottom:615.453333pt;}
.y236{bottom:616.093333pt;}
.yf7{bottom:618.973333pt;}
.y1c{bottom:620.573333pt;}
.y1f1{bottom:622.813333pt;}
.y15f{bottom:623.293333pt;}
.y191{bottom:625.693333pt;}
.y98{bottom:627.773333pt;}
.y234{bottom:628.893333pt;}
.ycf{bottom:633.053333pt;}
.y1b{bottom:634.333333pt;}
.y1f0{bottom:635.773333pt;}
.yf6{bottom:636.573333pt;}
.y15e{bottom:638.653333pt;}
.y190{bottom:640.893333pt;}
.y97{bottom:645.373333pt;}
.y1a{bottom:648.093333pt;}
.y1ef{bottom:648.733333pt;}
.yce{bottom:650.653333pt;}
.y15d{bottom:654.013333pt;}
.yf5{bottom:654.173333pt;}
.y18f{bottom:656.253333pt;}
.y1ee{bottom:661.693333pt;}
.y19{bottom:662.013333pt;}
.y96{bottom:662.973333pt;}
.y233{bottom:667.133333pt;}
.ycd{bottom:668.253333pt;}
.y18e{bottom:671.613333pt;}
.y18{bottom:671.773333pt;}
.y15c{bottom:672.253333pt;}
.y1ed{bottom:674.493333pt;}
.y38{bottom:679.453333pt;}
.y232{bottom:680.093333pt;}
.y95{bottom:680.733333pt;}
.y17{bottom:683.933333pt;}
.ycc{bottom:686.013333pt;}
.y18d{bottom:686.973333pt;}
.y1ec{bottom:687.453333pt;}
.yf4{bottom:689.533333pt;}
.y231{bottom:692.893333pt;}
.y16{bottom:695.453333pt;}
.y94{bottom:698.333333pt;}
.y1eb{bottom:700.413333pt;}
.y18c{bottom:702.333333pt;}
.ycb{bottom:703.613333pt;}
.y230{bottom:705.866667pt;}
.y15{bottom:706.973333pt;}
.yf3{bottom:707.133333pt;}
.y15b{bottom:708.573333pt;}
.y1ea{bottom:713.373333pt;}
.y93{bottom:715.933333pt;}
.y18b{bottom:717.693333pt;}
.y14{bottom:718.493333pt;}
.y22f{bottom:718.813333pt;}
.yca{bottom:721.213333pt;}
.yf2{bottom:724.733333pt;}
.y1e5{bottom:726.346667pt;}
.y15a{bottom:726.973333pt;}
.y13{bottom:730.653333pt;}
.y22e{bottom:731.773333pt;}
.y18a{bottom:732.893333pt;}
.y92{bottom:733.533333pt;}
.yc9{bottom:738.813333pt;}
.y12{bottom:742.173333pt;}
.yf1{bottom:742.333333pt;}
.y22d{bottom:744.733333pt;}
.y189{bottom:748.253333pt;}
.y91{bottom:751.133333pt;}
.y1e4{bottom:751.453333pt;}
.yc8{bottom:756.413333pt;}
.y228{bottom:757.693333pt;}
.yf0{bottom:759.973333pt;}
.y159{bottom:763.493333pt;}
.y188{bottom:763.653333pt;}
.y1e3{bottom:764.453333pt;}
.y11{bottom:766.053333pt;}
.y90{bottom:768.933333pt;}
.yc7{bottom:774.213333pt;}
.y227{bottom:774.853333pt;}
.yef{bottom:775.013333pt;}
.y10{bottom:775.973333pt;}
.y1df{bottom:777.413333pt;}
.y187{bottom:779.013333pt;}
.y158{bottom:781.093333pt;}
.y8f{bottom:786.533333pt;}
.y226{bottom:788.773333pt;}
.yc6{bottom:791.813333pt;}
.y186{bottom:794.373333pt;}
.yf{bottom:797.413333pt;}
.y157{bottom:798.693333pt;}
.y1de{bottom:802.533333pt;}
.y225{bottom:803.333333pt;}
.y8e{bottom:804.133333pt;}
.yc5{bottom:809.413333pt;}
.y185{bottom:809.573333pt;}
.y224{bottom:814.053333pt;}
.y1dd{bottom:815.493333pt;}
.y156{bottom:816.293333pt;}
.ye{bottom:818.853333pt;}
.y8d{bottom:821.733333pt;}
.y223{bottom:824.773333pt;}
.y184{bottom:824.933333pt;}
.yc4{bottom:827.013333pt;}
.y1dc{bottom:828.453333pt;}
.yd{bottom:832.133333pt;}
.y155{bottom:833.893333pt;}
.y222{bottom:835.493333pt;}
.y8c{bottom:839.333333pt;}
.y183{bottom:840.293333pt;}
.y1db{bottom:841.413333pt;}
.yc{bottom:842.373333pt;}
.yc3{bottom:844.613333pt;}
.y221{bottom:846.053333pt;}
.y154{bottom:851.653333pt;}
.y1da{bottom:854.373333pt;}
.y182{bottom:855.653333pt;}
.y8b{bottom:857.093333pt;}
.yb{bottom:857.893333pt;}
.yc2{bottom:863.173333pt;}
.y1d9{bottom:867.173333pt;}
.y153{bottom:870.053333pt;}
.y181{bottom:871.013333pt;}
.y220{bottom:871.173333pt;}
.y8a{bottom:874.693333pt;}
.ya{bottom:877.093333pt;}
.y1d8{bottom:880.133333pt;}
.yc1{bottom:880.613333pt;}
.y180{bottom:886.373333pt;}
.y89{bottom:892.293333pt;}
.y1d7{bottom:893.093333pt;}
.y21f{bottom:896.453333pt;}
.y9{bottom:896.613333pt;}
.y17f{bottom:901.573333pt;}
.y1d5{bottom:906.053333pt;}
.y152{bottom:906.373333pt;}
.y21e{bottom:909.253333pt;}
.y88{bottom:909.893333pt;}
.y17e{bottom:916.933333pt;}
.y1d4{bottom:919.013333pt;}
.y8{bottom:921.093333pt;}
.y21d{bottom:922.213333pt;}
.y151{bottom:923.973333pt;}
.y87{bottom:927.493333pt;}
.y1d2{bottom:931.973333pt;}
.y17d{bottom:932.293333pt;}
.y21c{bottom:935.173333pt;}
.y150{bottom:941.733333pt;}
.y1d0{bottom:944.773333pt;}
.y7{bottom:945.093333pt;}
.y86{bottom:945.253333pt;}
.y17c{bottom:947.653333pt;}
.y21b{bottom:948.133333pt;}
.y14f{bottom:960.133333pt;}
.y85{bottom:962.880000pt;}
.y17b{bottom:963.040000pt;}
.y1cf{bottom:964.160000pt;}
.y71{bottom:974.400000pt;}
.y83{bottom:998.400000pt;}
.y45{bottom:1010.880000pt;}
.h6{height:5.025000pt;}
.h17{height:5.160000pt;}
.h4c{height:5.562500pt;}
.h2{height:12.000000pt;}
.h39{height:12.146667pt;}
.h3d{height:12.160000pt;}
.h4a{height:12.178667pt;}
.h43{height:12.180000pt;}
.h46{height:12.186667pt;}
.h38{height:12.306667pt;}
.h40{height:12.306800pt;}
.h3c{height:12.320000pt;}
.h3f{height:12.338667pt;}
.h3b{height:12.340000pt;}
.h41{height:12.352000pt;}
.h33{height:14.112000pt;}
.h1b{height:15.040000pt;}
.h30{height:16.786667pt;}
.h24{height:19.680000pt;}
.h31{height:20.306667pt;}
.h16{height:20.728125pt;}
.h2e{height:23.826667pt;}
.h3a{height:24.466667pt;}
.h48{height:24.626667pt;}
.h45{height:24.640000pt;}
.h3e{height:24.666667pt;}
.hd{height:26.084375pt;}
.h2b{height:26.368125pt;}
.hc{height:26.381250pt;}
.hf{height:27.523125pt;}
.h2c{height:27.628404pt;}
.h34{height:28.320000pt;}
.h4{height:30.400000pt;}
.h21{height:32.250000pt;}
.h14{height:35.114107pt;}
.h5{height:36.431250pt;}
.h23{height:37.410000pt;}
.h2f{height:37.746667pt;}
.h49{height:38.441250pt;}
.h22{height:38.642500pt;}
.h29{height:39.096561pt;}
.h11{height:39.571875pt;}
.hb{height:40.103437pt;}
.h19{height:40.635000pt;}
.h12{height:41.442606pt;}
.h13{height:42.084375pt;}
.h32{height:43.072000pt;}
.h1c{height:43.215000pt;}
.h15{height:47.109375pt;}
.h35{height:47.621250pt;}
.h1d{height:48.375000pt;}
.h10{height:49.148438pt;}
.h1f{height:49.336436pt;}
.h36{height:49.621875pt;}
.h42{height:49.968750pt;}
.h18{height:51.360000pt;}
.h28{height:52.108438pt;}
.h3{height:52.134375pt;}
.h2d{height:53.535000pt;}
.h37{height:55.298750pt;}
.ha{height:57.787500pt;}
.h1a{height:58.563750pt;}
.he{height:60.288750pt;}
.h2a{height:62.781250pt;}
.h9{height:64.500000pt;}
.h25{height:66.625000pt;}
.h27{height:66.750000pt;}
.h7{height:77.951250pt;}
.h20{height:84.800000pt;}
.h8{height:85.785000pt;}
.h26{height:128.840000pt;}
.h4b{height:141.626667pt;}
.h44{height:217.786667pt;}
.h47{height:283.213333pt;}
.h1e{height:517.520000pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w18{width:25.906667pt;}
.w12{width:34.106667pt;}
.w14{width:36.032000pt;}
.w11{width:41.426667pt;}
.we{width:66.066667pt;}
.w3{width:72.952000pt;}
.w13{width:77.920000pt;}
.w16{width:78.712000pt;}
.wc{width:96.026667pt;}
.wd{width:107.698667pt;}
.w5{width:137.306667pt;}
.wa{width:160.346667pt;}
.w8{width:162.266667pt;}
.wb{width:173.773333pt;}
.w7{width:473.706667pt;}
.w15{width:518.640000pt;}
.w10{width:554.680000pt;}
.w4{width:568.760000pt;}
.w19{width:579.480000pt;}
.w17{width:605.400000pt;}
.w2{width:641.720000pt;}
.w9{width:660.600000pt;}
.w6{width:664.120000pt;}
.wf{width:708.160000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3d{left:3.780000pt;}
.x2{left:7.192000pt;}
.x10{left:9.592000pt;}
.x34{left:10.880000pt;}
.x35{left:12.192000pt;}
.x32{left:14.912000pt;}
.x25{left:17.440000pt;}
.x16{left:18.893333pt;}
.x27{left:20.000000pt;}
.x31{left:20.960000pt;}
.x37{left:22.560000pt;}
.x29{left:25.600000pt;}
.x38{left:31.232000pt;}
.x26{left:32.320000pt;}
.x23{left:36.000000pt;}
.x28{left:36.960000pt;}
.x21{left:52.146667pt;}
.x2a{left:62.560000pt;}
.x3{left:65.746667pt;}
.x13{left:71.560000pt;}
.x11{left:72.680000pt;}
.x39{left:75.080000pt;}
.xf{left:82.760000pt;}
.x15{left:84.360000pt;}
.x1{left:96.040000pt;}
.x33{left:98.600000pt;}
.x1c{left:105.952000pt;}
.x1b{left:114.112000pt;}
.xc{left:117.952000pt;}
.x3a{left:153.800000pt;}
.x6{left:157.306667pt;}
.x18{left:165.946667pt;}
.x4{left:169.000000pt;}
.x2b{left:172.386667pt;}
.x3c{left:179.720000pt;}
.xb{left:212.026667pt;}
.xa{left:213.466667pt;}
.x8{left:216.186667pt;}
.x36{left:225.026667pt;}
.x19{left:245.186667pt;}
.x1a{left:248.546667pt;}
.x2d{left:264.066667pt;}
.x12{left:269.506667pt;}
.x3b{left:273.813333pt;}
.x14{left:275.866667pt;}
.x2c{left:328.093333pt;}
.x1e{left:336.386667pt;}
.x7{left:393.853333pt;}
.x5{left:396.893333pt;}
.x9{left:408.093333pt;}
.x1f{left:430.333333pt;}
.xd{left:434.813333pt;}
.xe{left:436.253333pt;}
.x20{left:480.733333pt;}
.x24{left:543.973333pt;}
.x17{left:551.336000pt;}
.x22{left:610.053333pt;}
.x2e{left:617.253333pt;}
.x2f{left:658.693333pt;}
.x30{left:692.800000pt;}
.x1d{left:713.920000pt;}
}




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