
    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_305f210c9b2351dd25e066ec.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_230cc25fc14bc4ed8618175f.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_0686bf3b64b73ef9197fbe5e.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_07d829fd75efbbeaec390c01.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8ddadce1638f69869c2d5aea.woff')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_cb831bfc45030f6d94299355.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_74b39a7ee01a83ea9e808cde.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_2708fd9fd160649447b04223.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b0b15e2014e9299aee880581.woff')format("woff");}.ff9{font-family:ff9;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: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_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_c9a8f31678d162bcba17c6cd.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:18.000000px;}
.v1{vertical-align:23.760000px;}
.lsb{letter-spacing:-1.440000px;}
.ls9{letter-spacing:-0.810000px;}
.ls11{letter-spacing:-0.567600px;}
.ls25{letter-spacing:-0.460200px;}
.ls6{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.223800px;}
.lsa{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.lse{letter-spacing:0.108000px;}
.ls12{letter-spacing:0.135600px;}
.ls1{letter-spacing:0.144720px;}
.ls15{letter-spacing:0.153600px;}
.ls5{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.181200px;}
.lsc{letter-spacing:0.259800px;}
.lsf{letter-spacing:0.259920px;}
.ls21{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.493920px;}
.ls14{letter-spacing:0.720000px;}
.ls13{letter-spacing:0.828000px;}
.lsd{letter-spacing:0.900000px;}
.ls29{letter-spacing:2.340000px;}
.ls20{letter-spacing:3.060000px;}
.ls23{letter-spacing:3.780000px;}
.ls17{letter-spacing:4.500000px;}
.ls1b{letter-spacing:5.220000px;}
.ls22{letter-spacing:6.660000px;}
.ls27{letter-spacing:7.380000px;}
.ls1e{letter-spacing:8.820000px;}
.ls1d{letter-spacing:10.980000px;}
.ls18{letter-spacing:11.700000px;}
.ls26{letter-spacing:14.580000px;}
.ls10{letter-spacing:16.740000px;}
.ls1c{letter-spacing:25.380000px;}
.ls16{letter-spacing:26.820000px;}
.ls1a{letter-spacing:27.540000px;}
.ls1f{letter-spacing:32.580000px;}
.ls28{letter-spacing:35.460000px;}
.ls19{letter-spacing:38.340000px;}
.ls24{letter-spacing:43.380000px;}
.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;}
}
.wsd{word-spacing:-18.000000px;}
.ws0{word-spacing:-16.560000px;}
.wsf{word-spacing:-15.768000px;}
.ws13{word-spacing:-15.300000px;}
.ws15{word-spacing:-15.238800px;}
.wsc{word-spacing:-15.199800px;}
.ws12{word-spacing:-15.093600px;}
.ws10{word-spacing:-14.940000px;}
.ws11{word-spacing:-14.580000px;}
.ws14{word-spacing:-14.479800px;}
.ws8{word-spacing:-13.500000px;}
.wse{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.241200px;}
.ws6{word-spacing:-12.060000px;}
.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;}
.ws9{word-spacing:-9.000000px;}
.ws1{word-spacing:-7.560000px;}
.wsb{word-spacing:0.000000px;}
._6{margin-left:-59.580000px;}
._17{margin-left:-3.687120px;}
._c{margin-left:-2.509920px;}
._2{margin-left:-1.139760px;}
._0{width:1.044000px;}
._1{width:2.424480px;}
._14{width:4.125360px;}
._b{width:5.920560px;}
._a{width:6.991920px;}
._e{width:8.127360px;}
._f{width:9.298080px;}
._10{width:10.721520px;}
._12{width:12.613680px;}
._11{width:13.924080px;}
._8{width:16.852320px;}
._13{width:18.286560px;}
._26{width:19.780560px;}
._1f{width:21.214800px;}
._2b{width:22.529520px;}
._2c{width:23.784480px;}
._19{width:25.277040px;}
._18{width:26.460000px;}
._1b{width:28.062720px;}
._1d{width:29.089440px;}
._1a{width:30.781440px;}
._15{width:32.210640px;}
._16{width:33.465600px;}
._21{width:35.201280px;}
._20{width:36.393840px;}
._23{width:37.469520px;}
._31{width:38.485440px;}
._27{width:40.098960px;}
._1e{width:41.592960px;}
._2a{width:43.565040px;}
._29{width:44.700480px;}
._d{width:45.895680px;}
._33{width:47.433600px;}
._2d{width:48.676320px;}
._25{width:49.839840px;}
._24{width:51.154560px;}
._2f{width:55.070640px;}
._35{width:56.979360px;}
._39{width:58.983120px;}
._28{width:60.297840px;}
._2e{width:61.672320px;}
._3e{width:64.155120px;}
._4{width:65.496000px;}
._3d{width:66.512880px;}
._32{width:70.337520px;}
._3{width:72.066960px;}
._9{width:73.624320px;}
._37{width:75.059760px;}
._22{width:82.827360px;}
._30{width:93.823200px;}
._38{width:95.401440px;}
._3c{width:133.145280px;}
._3b{width:135.595440px;}
._34{width:150.353280px;}
._5{width:199.620000px;}
._36{width:217.406880px;}
._3a{width:220.785120px;}
._1c{width:285.870000px;}
._7{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;}
.fsf{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;}
.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;}
.y46{bottom:-247.710000px;}
.y45{bottom:-213.870000px;}
.y44{bottom:-180.210000px;}
.y43{bottom:-146.550000px;}
.y7e{bottom:-143.310000px;}
.y42{bottom:-112.710000px;}
.y7d{bottom:-109.650000px;}
.y41{bottom:-79.020000px;}
.y7c{bottom:-75.945000px;}
.y40{bottom:-45.180000px;}
.y7b{bottom:-42.105000px;}
.y49{bottom:-27.180000px;}
.y80{bottom:-17.922750px;}
.y3f{bottom:-11.520000px;}
.y7a{bottom:-8.445000px;}
.y0{bottom:0.000000px;}
.y1fd{bottom:1.837500px;}
.y13f{bottom:2.880000px;}
.y2{bottom:3.960000px;}
.y105{bottom:4.665000px;}
.yfe{bottom:4.680000px;}
.y106{bottom:4.845000px;}
.yf7{bottom:4.860000px;}
.y152{bottom:4.875000px;}
.y14c{bottom:4.890000px;}
.y48{bottom:5.040000px;}
.y70{bottom:5.580000px;}
.y68{bottom:5.745000px;}
.yf5{bottom:6.480000px;}
.y3e{bottom:6.840000px;}
.y108{bottom:7.200000px;}
.y159{bottom:7.575000px;}
.y14a{bottom:7.785000px;}
.y115{bottom:7.920000px;}
.y100{bottom:8.100000px;}
.yf3{bottom:8.820000px;}
.y153{bottom:10.260000px;}
.y144{bottom:10.440000px;}
.yfa{bottom:10.620000px;}
.y5{bottom:12.600000px;}
.y13e{bottom:16.560000px;}
.y6e{bottom:18.000000px;}
.y14e{bottom:18.360000px;}
.y141{bottom:18.540000px;}
.y3d{bottom:20.700000px;}
.y67{bottom:21.225000px;}
.y155{bottom:21.240000px;}
.y146{bottom:21.450000px;}
.y6{bottom:21.960000px;}
.y3{bottom:23.220000px;}
.y4{bottom:24.660000px;}
.y79{bottom:25.395000px;}
.y6d{bottom:31.320000px;}
.y66{bottom:32.205000px;}
.y150{bottom:32.580000px;}
.y143{bottom:32.760000px;}
.y3c{bottom:34.740000px;}
.y157{bottom:35.460000px;}
.y148{bottom:35.490000px;}
.y6c{bottom:44.280000px;}
.y82{bottom:46.980000px;}
.y3b{bottom:47.520000px;}
.y65{bottom:50.205000px;}
.y78{bottom:56.355000px;}
.y1{bottom:57.420000px;}
.y7f{bottom:63.780000px;}
.y64{bottom:68.070000px;}
.y77{bottom:69.315000px;}
.y6b{bottom:70.380000px;}
.y76{bottom:82.455000px;}
.y63{bottom:85.890000px;}
.y6a{bottom:87.300000px;}
.y75{bottom:95.415000px;}
.y1a0{bottom:101.520000px;}
.y191{bottom:103.680000px;}
.y62{bottom:103.710000px;}
.y1c3{bottom:104.040000px;}
.yb3{bottom:106.560000px;}
.y12b{bottom:107.460000px;}
.y74{bottom:108.375000px;}
.y1f9{bottom:109.800000px;}
.y39{bottom:114.840000px;}
.yd6{bottom:115.560000px;}
.y16e{bottom:115.920000px;}
.y19f{bottom:121.320000px;}
.y73{bottom:121.515000px;}
.y61{bottom:121.530000px;}
.y190{bottom:123.480000px;}
.yb2{bottom:126.360000px;}
.yef{bottom:126.900000px;}
.y1f8{bottom:127.080000px;}
.y72{bottom:133.755000px;}
.y38{bottom:134.640000px;}
.y60{bottom:134.850000px;}
.yd5{bottom:135.360000px;}
.y16d{bottom:135.720000px;}
.y180{bottom:137.340000px;}
.y1c2{bottom:138.420000px;}
.y19e{bottom:141.120000px;}
.y18f{bottom:143.280000px;}
.y5f{bottom:143.670000px;}
.y1f7{bottom:144.360000px;}
.yb1{bottom:146.340000px;}
.yee{bottom:147.060000px;}
.y12a{bottom:147.600000px;}
.y37{bottom:154.620000px;}
.yd4{bottom:155.160000px;}
.y16c{bottom:155.520000px;}
.y1c1{bottom:155.700000px;}
.y17f{bottom:157.320000px;}
.y19d{bottom:161.100000px;}
.y1f6{bottom:161.640000px;}
.y5e{bottom:161.670000px;}
.y18e{bottom:163.110000px;}
.yb0{bottom:167.070000px;}
.y129{bottom:167.430000px;}
.y1c0{bottom:173.010000px;}
.y36{bottom:174.450000px;}
.yd3{bottom:174.990000px;}
.y16b{bottom:175.350000px;}
.y17e{bottom:177.150000px;}
.y1fc{bottom:178.590000px;}
.y1f5{bottom:178.950000px;}
.y5d{bottom:179.490000px;}
.y19c{bottom:180.930000px;}
.y18d{bottom:183.090000px;}
.yaf{bottom:186.690000px;}
.yed{bottom:186.870000px;}
.y128{bottom:187.230000px;}
.y1bf{bottom:190.290000px;}
.y35{bottom:194.250000px;}
.yd2{bottom:194.970000px;}
.y16a{bottom:195.150000px;}
.y1fb{bottom:195.690000px;}
.y1f4{bottom:196.050000px;}
.y17d{bottom:196.950000px;}
.y5c{bottom:197.310000px;}
.yae{bottom:199.830000px;}
.y19b{bottom:200.730000px;}
.y18c{bottom:202.890000px;}
.yec{bottom:206.670000px;}
.y127{bottom:207.030000px;}
.y1be{bottom:207.570000px;}
.y1fa{bottom:212.970000px;}
.y1f3{bottom:213.330000px;}
.y34{bottom:214.050000px;}
.yd1{bottom:214.770000px;}
.y5b{bottom:215.130000px;}
.y17c{bottom:216.750000px;}
.yad{bottom:219.630000px;}
.y19a{bottom:220.530000px;}
.y18b{bottom:222.690000px;}
.y1bd{bottom:224.850000px;}
.yeb{bottom:226.470000px;}
.y126{bottom:226.830000px;}
.y1f2{bottom:230.610000px;}
.y5a{bottom:232.950000px;}
.y33{bottom:233.850000px;}
.yd0{bottom:234.570000px;}
.y169{bottom:234.930000px;}
.y17b{bottom:236.550000px;}
.yac{bottom:239.610000px;}
.y199{bottom:240.330000px;}
.y18a{bottom:242.490000px;}
.yea{bottom:246.270000px;}
.y125{bottom:246.810000px;}
.y1f1{bottom:247.890000px;}
.y59{bottom:250.950000px;}
.y32{bottom:253.830000px;}
.ycf{bottom:254.370000px;}
.y168{bottom:254.730000px;}
.y17a{bottom:256.530000px;}
.yab{bottom:259.410000px;}
.y198{bottom:260.310000px;}
.y189{bottom:262.290000px;}
.y1f0{bottom:265.170000px;}
.ye9{bottom:266.250000px;}
.y124{bottom:266.610000px;}
.y58{bottom:268.770000px;}
.y31{bottom:273.630000px;}
.yce{bottom:274.170000px;}
.y167{bottom:274.530000px;}
.y179{bottom:276.330000px;}
.yaa{bottom:279.210000px;}
.y197{bottom:280.110000px;}
.y188{bottom:282.270000px;}
.y1ef{bottom:282.450000px;}
.y1bc{bottom:283.170000px;}
.ye8{bottom:286.050000px;}
.y123{bottom:286.410000px;}
.y57{bottom:286.620000px;}
.y30{bottom:293.430000px;}
.ycd{bottom:294.150000px;}
.y166{bottom:294.330000px;}
.y178{bottom:296.130000px;}
.ya9{bottom:299.010000px;}
.y1ee{bottom:299.550000px;}
.y196{bottom:299.910000px;}
.y187{bottom:302.070000px;}
.y1bb{bottom:302.970000px;}
.y56{bottom:304.440000px;}
.ye7{bottom:305.850000px;}
.y122{bottom:306.210000px;}
.ycc{bottom:313.950000px;}
.y2f{bottom:314.130000px;}
.y165{bottom:314.310000px;}
.y177{bottom:315.930000px;}
.y1ed{bottom:316.830000px;}
.y55{bottom:317.760000px;}
.ya8{bottom:318.810000px;}
.y195{bottom:319.710000px;}
.y186{bottom:321.870000px;}
.y1ba{bottom:322.770000px;}
.ye6{bottom:325.650000px;}
.y121{bottom:326.010000px;}
.y54{bottom:326.580000px;}
.y2e{bottom:331.410000px;}
.ycb{bottom:333.750000px;}
.y164{bottom:334.110000px;}
.y176{bottom:335.730000px;}
.y4a{bottom:338.265000px;}
.ya7{bottom:338.790000px;}
.y2d{bottom:339.330000px;}
.y194{bottom:339.510000px;}
.y185{bottom:341.670000px;}
.y1b9{bottom:342.570000px;}
.y53{bottom:344.400000px;}
.ye5{bottom:345.450000px;}
.y120{bottom:345.990000px;}
.y1ec{bottom:351.390000px;}
.yca{bottom:353.550000px;}
.y163{bottom:353.910000px;}
.y175{bottom:355.710000px;}
.y2c{bottom:357.150000px;}
.ya6{bottom:358.590000px;}
.y193{bottom:359.310000px;}
.y184{bottom:361.470000px;}
.y52{bottom:362.400000px;}
.y1b8{bottom:363.450000px;}
.y11f{bottom:365.790000px;}
.ye4{bottom:366.330000px;}
.y1eb{bottom:368.670000px;}
.y2b{bottom:369.750000px;}
.yc9{bottom:373.350000px;}
.y162{bottom:373.710000px;}
.y174{bottom:375.510000px;}
.ya5{bottom:379.290000px;}
.y192{bottom:380.190000px;}
.y51{bottom:380.220000px;}
.y183{bottom:381.450000px;}
.y11e{bottom:385.590000px;}
.y1ea{bottom:385.770000px;}
.yc8{bottom:393.375000px;}
.y2a{bottom:393.555000px;}
.y173{bottom:395.355000px;}
.y50{bottom:398.040000px;}
.ya4{bottom:400.215000px;}
.y182{bottom:401.295000px;}
.y1e9{bottom:403.095000px;}
.y1b7{bottom:404.355000px;}
.y11d{bottom:405.435000px;}
.ye3{bottom:407.235000px;}
.y4f{bottom:411.360000px;}
.yc7{bottom:413.175000px;}
.y161{bottom:413.535000px;}
.y172{bottom:415.155000px;}
.y29{bottom:417.315000px;}
.y4e{bottom:420.180000px;}
.y1e8{bottom:420.375000px;}
.y181{bottom:421.095000px;}
.y1b6{bottom:425.055000px;}
.y11c{bottom:425.235000px;}
.ye2{bottom:427.035000px;}
.yc6{bottom:432.975000px;}
.y160{bottom:433.335000px;}
.y171{bottom:434.955000px;}
.y1e7{bottom:437.655000px;}
.y4d{bottom:438.000000px;}
.ya3{bottom:440.895000px;}
.y28{bottom:441.075000px;}
.y11b{bottom:445.215000px;}
.ye1{bottom:446.835000px;}
.y15f{bottom:451.155000px;}
.yc5{bottom:452.775000px;}
.y170{bottom:454.935000px;}
.y4c{bottom:455.820000px;}
.ya2{bottom:460.695000px;}
.y11a{bottom:463.215000px;}
.y27{bottom:465.015000px;}
.y1b5{bottom:465.915000px;}
.ye0{bottom:466.635000px;}
.y15e{bottom:471.855000px;}
.y1e6{bottom:472.215000px;}
.yc4{bottom:472.575000px;}
.y71{bottom:473.100000px;}
.y4b{bottom:473.820000px;}
.y16f{bottom:474.735000px;}
.y119{bottom:474.915000px;}
.ya1{bottom:480.675000px;}
.y1b4{bottom:485.715000px;}
.y26{bottom:485.895000px;}
.ydf{bottom:486.615000px;}
.y1e5{bottom:489.315000px;}
.y15d{bottom:490.935000px;}
.y118{bottom:491.655000px;}
.yc3{bottom:492.555000px;}
.ya0{bottom:500.475000px;}
.y15c{bottom:502.995000px;}
.y25{bottom:505.695000px;}
.yde{bottom:506.415000px;}
.y1e4{bottom:506.595000px;}
.y117{bottom:508.215000px;}
.yc2{bottom:512.355000px;}
.y15b{bottom:515.055000px;}
.y24{bottom:519.375000px;}
.y9f{bottom:520.275000px;}
.y1e3{bottom:523.875000px;}
.y116{bottom:524.775000px;}
.y1b3{bottom:525.495000px;}
.ydd{bottom:526.215000px;}
.y158{bottom:526.920000px;}
.y154{bottom:526.935000px;}
.y23{bottom:528.015000px;}
.yc1{bottom:532.155000px;}
.y9e{bottom:540.075000px;}
.y1e2{bottom:541.155000px;}
.y114{bottom:542.955000px;}
.y15a{bottom:543.495000px;}
.y1b2{bottom:545.295000px;}
.ydc{bottom:546.015000px;}
.y22{bottom:551.415000px;}
.yc0{bottom:551.955000px;}
.y1e1{bottom:558.435000px;}
.y9d{bottom:559.875000px;}
.y156{bottom:560.055000px;}
.y1b1{bottom:565.095000px;}
.ydb{bottom:565.815000px;}
.ybf{bottom:571.755000px;}
.y113{bottom:573.015000px;}
.y21{bottom:574.635000px;}
.y1e0{bottom:575.715000px;}
.y151{bottom:576.780000px;}
.y14d{bottom:576.795000px;}
.y9c{bottom:579.855000px;}
.yda{bottom:585.795000px;}
.y1b0{bottom:585.975000px;}
.y112{bottom:590.835000px;}
.ybe{bottom:592.635000px;}
.y1df{bottom:592.815000px;}
.y20{bottom:598.035000px;}
.y9b{bottom:599.655000px;}
.y14f{bottom:604.335000px;}
.yd9{bottom:605.595000px;}
.y111{bottom:609.195000px;}
.y1de{bottom:610.095000px;}
.ybd{bottom:612.435000px;}
.y9a{bottom:619.455000px;}
.y149{bottom:620.880000px;}
.y145{bottom:620.895000px;}
.ybc{bottom:625.425000px;}
.y1af{bottom:626.865000px;}
.y69{bottom:627.225000px;}
.y1dd{bottom:627.405000px;}
.y110{bottom:637.485000px;}
.y14b{bottom:637.665000px;}
.y99{bottom:639.285000px;}
.y1dc{bottom:644.685000px;}
.ybb{bottom:645.225000px;}
.y1ae{bottom:646.665000px;}
.y10f{bottom:649.365000px;}
.y1f{bottom:652.785000px;}
.y147{bottom:654.225000px;}
.y98{bottom:659.085000px;}
.y1db{bottom:661.965000px;}
.yba{bottom:665.025000px;}
.yd8{bottom:665.925000px;}
.y1ad{bottom:667.365000px;}
.y1e{bottom:668.265000px;}
.y140{bottom:670.785000px;}
.y97{bottom:679.065000px;}
.y1da{bottom:679.245000px;}
.y10e{bottom:682.665000px;}
.y1d{bottom:683.925000px;}
.yb9{bottom:685.005000px;}
.yd7{bottom:685.905000px;}
.y1d9{bottom:696.345000px;}
.y142{bottom:698.505000px;}
.y96{bottom:698.865000px;}
.y10d{bottom:699.225000px;}
.y1c{bottom:699.405000px;}
.yb8{bottom:704.805000px;}
.y1ac{bottom:708.225000px;}
.y1d8{bottom:713.625000px;}
.y1b{bottom:714.885000px;}
.y10c{bottom:715.785000px;}
.y13d{bottom:716.505000px;}
.y95{bottom:718.665000px;}
.yb7{bottom:724.605000px;}
.y1a{bottom:726.045000px;}
.y1ab{bottom:728.205000px;}
.y1d7{bottom:730.905000px;}
.y10b{bottom:732.525000px;}
.y3a{bottom:734.685000px;}
.y94{bottom:738.465000px;}
.y19{bottom:739.725000px;}
.yb6{bottom:744.405000px;}
.y1d6{bottom:748.185000px;}
.y1aa{bottom:748.905000px;}
.y10a{bottom:749.085000px;}
.y13c{bottom:751.965000px;}
.y18{bottom:752.685000px;}
.y93{bottom:758.265000px;}
.yb5{bottom:765.105000px;}
.y17{bottom:765.465000px;}
.y109{bottom:765.660000px;}
.y13b{bottom:769.785000px;}
.y92{bottom:778.245000px;}
.y16{bottom:778.425000px;}
.y107{bottom:782.385000px;}
.y1d5{bottom:782.565000px;}
.yb4{bottom:785.085000px;}
.y13a{bottom:788.325000px;}
.y1a9{bottom:789.765000px;}
.y15{bottom:792.285000px;}
.y91{bottom:798.045000px;}
.y1d4{bottom:799.845000px;}
.y104{bottom:804.000000px;}
.y14{bottom:805.065000px;}
.y139{bottom:808.125000px;}
.y1a8{bottom:810.465000px;}
.y1d3{bottom:817.125000px;}
.y90{bottom:817.845000px;}
.y103{bottom:820.545000px;}
.y138{bottom:827.925000px;}
.y13{bottom:831.885000px;}
.y1a7{bottom:834.225000px;}
.y1d2{bottom:834.405000px;}
.y102{bottom:837.105000px;}
.y8f{bottom:837.645000px;}
.y12{bottom:843.045000px;}
.y137{bottom:847.725000px;}
.y1d1{bottom:851.685000px;}
.y101{bottom:853.890000px;}
.y8e{bottom:857.490000px;}
.y11{bottom:867.390000px;}
.y136{bottom:867.570000px;}
.y1d0{bottom:869.010000px;}
.yff{bottom:870.450000px;}
.y1a6{bottom:875.310000px;}
.y8d{bottom:877.470000px;}
.y1cf{bottom:886.110000px;}
.y135{bottom:887.550000px;}
.y10{bottom:891.510000px;}
.yfd{bottom:894.030000px;}
.y1a5{bottom:895.110000px;}
.y8c{bottom:897.270000px;}
.y1ce{bottom:903.390000px;}
.yf{bottom:906.270000px;}
.y134{bottom:907.350000px;}
.yfc{bottom:910.590000px;}
.y1a4{bottom:914.910000px;}
.y8b{bottom:917.070000px;}
.y1cd{bottom:920.670000px;}
.ye{bottom:921.210000px;}
.y133{bottom:925.350000px;}
.yfb{bottom:927.330000px;}
.y1a3{bottom:934.710000px;}
.yd{bottom:936.150000px;}
.y8a{bottom:936.870000px;}
.y1cc{bottom:937.950000px;}
.y132{bottom:939.210000px;}
.yf9{bottom:943.890000px;}
.yc{bottom:947.670000px;}
.y131{bottom:951.090000px;}
.y1a2{bottom:954.510000px;}
.y1cb{bottom:955.230000px;}
.y89{bottom:956.670000px;}
.yb{bottom:965.130000px;}
.y130{bottom:967.650000px;}
.yf8{bottom:972.330000px;}
.y1ca{bottom:972.510000px;}
.y1a1{bottom:975.390000px;}
.y88{bottom:976.650000px;}
.y12f{bottom:984.210000px;}
.ya{bottom:986.730000px;}
.yf6{bottom:988.890000px;}
.y1c9{bottom:989.610000px;}
.y87{bottom:996.450000px;}
.y12e{bottom:1000.770000px;}
.yf4{bottom:1005.450000px;}
.y1c8{bottom:1006.890000px;}
.y9{bottom:1008.690000px;}
.y86{bottom:1016.250000px;}
.y12d{bottom:1017.510000px;}
.y1c7{bottom:1024.170000px;}
.yf2{bottom:1027.230000px;}
.y12c{bottom:1035.510000px;}
.y85{bottom:1036.050000px;}
.y8{bottom:1036.230000px;}
.y1c6{bottom:1041.450000px;}
.y84{bottom:1055.850000px;}
.y1c5{bottom:1058.730000px;}
.yf1{bottom:1059.270000px;}
.y7{bottom:1063.230000px;}
.y83{bottom:1075.650000px;}
.y1c4{bottom:1075.830000px;}
.yf0{bottom:1077.090000px;}
.y6f{bottom:1096.200000px;}
.y81{bottom:1123.200000px;}
.y47{bottom:1137.240000px;}
.h6{height:5.653125px;}
.h19{height:5.805000px;}
.h4c{height:6.257812px;}
.h2{height:13.500000px;}
.h32{height:15.825000px;}
.h37{height:15.840000px;}
.h36{height:15.862500px;}
.h42{height:15.870000px;}
.h34{height:16.005000px;}
.h1d{height:16.920000px;}
.h31{height:19.605000px;}
.h38{height:20.700000px;}
.h39{height:22.125000px;}
.h25{height:22.140000px;}
.h35{height:22.845000px;}
.h17{height:23.319141px;}
.h30{height:24.285000px;}
.h46{height:26.805000px;}
.h3e{height:26.820000px;}
.h33{height:27.525000px;}
.h3b{height:27.535500px;}
.h3a{height:27.540000px;}
.h2d{height:29.664141px;}
.hd{height:29.678906px;}
.h10{height:30.963516px;}
.h2e{height:31.081955px;}
.he{height:31.583118px;}
.h4{height:34.200000px;}
.h23{height:36.281250px;}
.h15{height:39.503370px;}
.h5{height:40.985156px;}
.h24{height:42.086250px;}
.h43{height:43.365000px;}
.h44{height:43.375500px;}
.h45{height:43.380000px;}
.h3d{height:43.555500px;}
.h3c{height:43.560000px;}
.h2a{height:43.737568px;}
.h12{height:44.518359px;}
.hc{height:45.116367px;}
.h1b{height:45.714375px;}
.h13{height:46.622932px;}
.h14{height:47.344922px;}
.h1e{height:48.616875px;}
.h47{height:48.945000px;}
.h48{height:48.955500px;}
.h49{height:48.960000px;}
.h3f{height:49.170000px;}
.h40{height:49.176000px;}
.h41{height:49.185000px;}
.h16{height:52.998047px;}
.h4b{height:53.573906px;}
.h1f{height:54.421875px;}
.h11{height:55.291992px;}
.h21{height:55.503491px;}
.h1a{height:57.780000px;}
.h29{height:58.621992px;}
.h3{height:58.651172px;}
.h2f{height:60.226875px;}
.h2c{height:61.423863px;}
.h4a{height:62.211094px;}
.hb{height:65.010937px;}
.h1c{height:65.884219px;}
.h18{height:66.757500px;}
.hf{height:67.824844px;}
.h2b{height:70.628906px;}
.ha{height:72.562500px;}
.h26{height:74.953125px;}
.h28{height:75.093750px;}
.h7{height:87.695156px;}
.h22{height:95.400000px;}
.h8{height:96.508125px;}
.h9{height:99.687656px;}
.h27{height:144.720000px;}
.h20{height:486.075000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w14{width:67.521000px;}
.w16{width:80.985000px;}
.w19{width:80.995500px;}
.w1a{width:81.000000px;}
.w3{width:82.071000px;}
.w13{width:98.271000px;}
.w18{width:120.270000px;}
.w1c{width:120.276000px;}
.w1d{width:120.285000px;}
.w11{width:152.295000px;}
.w5{width:154.470000px;}
.wb{width:154.995000px;}
.wf{width:162.030000px;}
.w1b{width:171.375000px;}
.w17{width:171.390000px;}
.we{width:175.155000px;}
.w12{width:180.210000px;}
.wa{width:180.390000px;}
.wc{width:182.190000px;}
.w15{width:182.205000px;}
.w8{width:182.550000px;}
.w10{width:226.101000px;}
.wd{width:337.200000px;}
.w7{width:532.740000px;}
.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;}
.x3e{left:4.252500px;}
.x2{left:8.091000px;}
.x12{left:10.791000px;}
.x3b{left:14.385000px;}
.x2f{left:16.725000px;}
.x37{left:18.345000px;}
.x38{left:19.965000px;}
.x18{left:21.255000px;}
.x3c{left:22.845000px;}
.x29{left:26.460000px;}
.x2d{left:31.305000px;}
.x3a{left:37.125000px;}
.x20{left:38.880000px;}
.x3d{left:41.430000px;}
.x2c{left:44.640000px;}
.x36{left:50.430000px;}
.x26{left:52.380000px;}
.x27{left:53.640000px;}
.x34{left:57.090000px;}
.x39{left:58.350000px;}
.x22{left:61.020000px;}
.x31{left:62.460000px;}
.x21{left:64.080000px;}
.x23{left:66.780000px;}
.x24{left:70.020000px;}
.x3{left:73.965000px;}
.x15{left:80.505000px;}
.x13{left:81.765000px;}
.x11{left:93.105000px;}
.x17{left:94.905000px;}
.x1{left:108.045000px;}
.x6{left:112.356000px;}
.x1e{left:114.336000px;}
.x1d{left:128.376000px;}
.xe{left:132.696000px;}
.xd{left:138.456000px;}
.x9{left:176.070000px;}
.x4{left:190.125000px;}
.xc{left:198.030000px;}
.x2e{left:206.325000px;}
.x7{left:218.370000px;}
.xb{left:226.470000px;}
.x1a{left:239.610000px;}
.x30{left:273.855000px;}
.x14{left:303.555000px;}
.x16{left:310.350000px;}
.x28{left:334.155000px;}
.x1b{left:342.975000px;}
.x1c{left:346.755000px;}
.x8{left:443.085000px;}
.x5{left:446.505000px;}
.x32{left:456.060000px;}
.xa{left:459.105000px;}
.xf{left:489.165000px;}
.x10{left:490.785000px;}
.x2a{left:496.200000px;}
.x33{left:537.060000px;}
.x19{left:620.253000px;}
.x1f{left:645.810000px;}
.x2b{left:648.510000px;}
.x25{left:665.970000px;}
.x35{left:708.450000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsb{letter-spacing:-1.280000pt;}
.ls9{letter-spacing:-0.720000pt;}
.ls11{letter-spacing:-0.504533pt;}
.ls25{letter-spacing:-0.409067pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.198933pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.096000pt;}
.ls12{letter-spacing:0.120533pt;}
.ls1{letter-spacing:0.128640pt;}
.ls15{letter-spacing:0.136533pt;}
.ls5{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.161067pt;}
.lsc{letter-spacing:0.230933pt;}
.lsf{letter-spacing:0.231040pt;}
.ls21{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.439040pt;}
.ls14{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.736000pt;}
.lsd{letter-spacing:0.800000pt;}
.ls29{letter-spacing:2.080000pt;}
.ls20{letter-spacing:2.720000pt;}
.ls23{letter-spacing:3.360000pt;}
.ls17{letter-spacing:4.000000pt;}
.ls1b{letter-spacing:4.640000pt;}
.ls22{letter-spacing:5.920000pt;}
.ls27{letter-spacing:6.560000pt;}
.ls1e{letter-spacing:7.840000pt;}
.ls1d{letter-spacing:9.760000pt;}
.ls18{letter-spacing:10.400000pt;}
.ls26{letter-spacing:12.960000pt;}
.ls10{letter-spacing:14.880000pt;}
.ls1c{letter-spacing:22.560000pt;}
.ls16{letter-spacing:23.840000pt;}
.ls1a{letter-spacing:24.480000pt;}
.ls1f{letter-spacing:28.960000pt;}
.ls28{letter-spacing:31.520000pt;}
.ls19{letter-spacing:34.080000pt;}
.ls24{letter-spacing:38.560000pt;}
.ls0{letter-spacing:42.400000pt;}
.wsd{word-spacing:-16.000000pt;}
.ws0{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.016000pt;}
.ws13{word-spacing:-13.600000pt;}
.ws15{word-spacing:-13.545600pt;}
.wsc{word-spacing:-13.510933pt;}
.ws12{word-spacing:-13.416533pt;}
.ws10{word-spacing:-13.280000pt;}
.ws11{word-spacing:-12.960000pt;}
.ws14{word-spacing:-12.870933pt;}
.ws8{word-spacing:-12.000000pt;}
.wse{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.881067pt;}
.ws6{word-spacing:-10.720000pt;}
.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;}
.ws9{word-spacing:-8.000000pt;}
.ws1{word-spacing:-6.720000pt;}
.wsb{word-spacing:0.000000pt;}
._6{margin-left:-52.960000pt;}
._17{margin-left:-3.277440pt;}
._c{margin-left:-2.231040pt;}
._2{margin-left:-1.013120pt;}
._0{width:0.928000pt;}
._1{width:2.155093pt;}
._14{width:3.666987pt;}
._b{width:5.262720pt;}
._a{width:6.215040pt;}
._e{width:7.224320pt;}
._f{width:8.264960pt;}
._10{width:9.530240pt;}
._12{width:11.212160pt;}
._11{width:12.376960pt;}
._8{width:14.979840pt;}
._13{width:16.254720pt;}
._26{width:17.582720pt;}
._1f{width:18.857600pt;}
._2b{width:20.026240pt;}
._2c{width:21.141760pt;}
._19{width:22.468480pt;}
._18{width:23.520000pt;}
._1b{width:24.944640pt;}
._1d{width:25.857280pt;}
._1a{width:27.361280pt;}
._15{width:28.631680pt;}
._16{width:29.747200pt;}
._21{width:31.290027pt;}
._20{width:32.350080pt;}
._23{width:33.306240pt;}
._31{width:34.209280pt;}
._27{width:35.643520pt;}
._1e{width:36.971520pt;}
._2a{width:38.724480pt;}
._29{width:39.733760pt;}
._d{width:40.796160pt;}
._33{width:42.163200pt;}
._2d{width:43.267840pt;}
._25{width:44.302080pt;}
._24{width:45.470720pt;}
._2f{width:48.951680pt;}
._35{width:50.648320pt;}
._39{width:52.429440pt;}
._28{width:53.598080pt;}
._2e{width:54.819840pt;}
._3e{width:57.026773pt;}
._4{width:58.218667pt;}
._3d{width:59.122560pt;}
._32{width:62.522240pt;}
._3{width:64.059520pt;}
._9{width:65.443840pt;}
._37{width:66.719787pt;}
._22{width:73.624320pt;}
._30{width:83.398400pt;}
._38{width:84.801280pt;}
._3c{width:118.351360pt;}
._3b{width:120.529280pt;}
._34{width:133.647360pt;}
._5{width:177.440000pt;}
._36{width:193.250560pt;}
._3a{width:196.253440pt;}
._1c{width:254.106667pt;}
._7{width:671.978667pt;}
.fs2{font-size:5.120000pt;}
.fsf{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;}
.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;}
.y46{bottom:-220.186667pt;}
.y45{bottom:-190.106667pt;}
.y44{bottom:-160.186667pt;}
.y43{bottom:-130.266667pt;}
.y7e{bottom:-127.386667pt;}
.y42{bottom:-100.186667pt;}
.y7d{bottom:-97.466667pt;}
.y41{bottom:-70.240000pt;}
.y7c{bottom:-67.506667pt;}
.y40{bottom:-40.160000pt;}
.y7b{bottom:-37.426667pt;}
.y49{bottom:-24.160000pt;}
.y80{bottom:-15.931333pt;}
.y3f{bottom:-10.240000pt;}
.y7a{bottom:-7.506667pt;}
.y0{bottom:0.000000pt;}
.y1fd{bottom:1.633333pt;}
.y13f{bottom:2.560000pt;}
.y2{bottom:3.520000pt;}
.y105{bottom:4.146667pt;}
.yfe{bottom:4.160000pt;}
.y106{bottom:4.306667pt;}
.yf7{bottom:4.320000pt;}
.y152{bottom:4.333333pt;}
.y14c{bottom:4.346667pt;}
.y48{bottom:4.480000pt;}
.y70{bottom:4.960000pt;}
.y68{bottom:5.106667pt;}
.yf5{bottom:5.760000pt;}
.y3e{bottom:6.080000pt;}
.y108{bottom:6.400000pt;}
.y159{bottom:6.733333pt;}
.y14a{bottom:6.920000pt;}
.y115{bottom:7.040000pt;}
.y100{bottom:7.200000pt;}
.yf3{bottom:7.840000pt;}
.y153{bottom:9.120000pt;}
.y144{bottom:9.280000pt;}
.yfa{bottom:9.440000pt;}
.y5{bottom:11.200000pt;}
.y13e{bottom:14.720000pt;}
.y6e{bottom:16.000000pt;}
.y14e{bottom:16.320000pt;}
.y141{bottom:16.480000pt;}
.y3d{bottom:18.400000pt;}
.y67{bottom:18.866667pt;}
.y155{bottom:18.880000pt;}
.y146{bottom:19.066667pt;}
.y6{bottom:19.520000pt;}
.y3{bottom:20.640000pt;}
.y4{bottom:21.920000pt;}
.y79{bottom:22.573333pt;}
.y6d{bottom:27.840000pt;}
.y66{bottom:28.626667pt;}
.y150{bottom:28.960000pt;}
.y143{bottom:29.120000pt;}
.y3c{bottom:30.880000pt;}
.y157{bottom:31.520000pt;}
.y148{bottom:31.546667pt;}
.y6c{bottom:39.360000pt;}
.y82{bottom:41.760000pt;}
.y3b{bottom:42.240000pt;}
.y65{bottom:44.626667pt;}
.y78{bottom:50.093333pt;}
.y1{bottom:51.040000pt;}
.y7f{bottom:56.693333pt;}
.y64{bottom:60.506667pt;}
.y77{bottom:61.613333pt;}
.y6b{bottom:62.560000pt;}
.y76{bottom:73.293333pt;}
.y63{bottom:76.346667pt;}
.y6a{bottom:77.600000pt;}
.y75{bottom:84.813333pt;}
.y1a0{bottom:90.240000pt;}
.y191{bottom:92.160000pt;}
.y62{bottom:92.186667pt;}
.y1c3{bottom:92.480000pt;}
.yb3{bottom:94.720000pt;}
.y12b{bottom:95.520000pt;}
.y74{bottom:96.333333pt;}
.y1f9{bottom:97.600000pt;}
.y39{bottom:102.080000pt;}
.yd6{bottom:102.720000pt;}
.y16e{bottom:103.040000pt;}
.y19f{bottom:107.840000pt;}
.y73{bottom:108.013333pt;}
.y61{bottom:108.026667pt;}
.y190{bottom:109.760000pt;}
.yb2{bottom:112.320000pt;}
.yef{bottom:112.800000pt;}
.y1f8{bottom:112.960000pt;}
.y72{bottom:118.893333pt;}
.y38{bottom:119.680000pt;}
.y60{bottom:119.866667pt;}
.yd5{bottom:120.320000pt;}
.y16d{bottom:120.640000pt;}
.y180{bottom:122.080000pt;}
.y1c2{bottom:123.040000pt;}
.y19e{bottom:125.440000pt;}
.y18f{bottom:127.360000pt;}
.y5f{bottom:127.706667pt;}
.y1f7{bottom:128.320000pt;}
.yb1{bottom:130.080000pt;}
.yee{bottom:130.720000pt;}
.y12a{bottom:131.200000pt;}
.y37{bottom:137.440000pt;}
.yd4{bottom:137.920000pt;}
.y16c{bottom:138.240000pt;}
.y1c1{bottom:138.400000pt;}
.y17f{bottom:139.840000pt;}
.y19d{bottom:143.200000pt;}
.y1f6{bottom:143.680000pt;}
.y5e{bottom:143.706667pt;}
.y18e{bottom:144.986667pt;}
.yb0{bottom:148.506667pt;}
.y129{bottom:148.826667pt;}
.y1c0{bottom:153.786667pt;}
.y36{bottom:155.066667pt;}
.yd3{bottom:155.546667pt;}
.y16b{bottom:155.866667pt;}
.y17e{bottom:157.466667pt;}
.y1fc{bottom:158.746667pt;}
.y1f5{bottom:159.066667pt;}
.y5d{bottom:159.546667pt;}
.y19c{bottom:160.826667pt;}
.y18d{bottom:162.746667pt;}
.yaf{bottom:165.946667pt;}
.yed{bottom:166.106667pt;}
.y128{bottom:166.426667pt;}
.y1bf{bottom:169.146667pt;}
.y35{bottom:172.666667pt;}
.yd2{bottom:173.306667pt;}
.y16a{bottom:173.466667pt;}
.y1fb{bottom:173.946667pt;}
.y1f4{bottom:174.266667pt;}
.y17d{bottom:175.066667pt;}
.y5c{bottom:175.386667pt;}
.yae{bottom:177.626667pt;}
.y19b{bottom:178.426667pt;}
.y18c{bottom:180.346667pt;}
.yec{bottom:183.706667pt;}
.y127{bottom:184.026667pt;}
.y1be{bottom:184.506667pt;}
.y1fa{bottom:189.306667pt;}
.y1f3{bottom:189.626667pt;}
.y34{bottom:190.266667pt;}
.yd1{bottom:190.906667pt;}
.y5b{bottom:191.226667pt;}
.y17c{bottom:192.666667pt;}
.yad{bottom:195.226667pt;}
.y19a{bottom:196.026667pt;}
.y18b{bottom:197.946667pt;}
.y1bd{bottom:199.866667pt;}
.yeb{bottom:201.306667pt;}
.y126{bottom:201.626667pt;}
.y1f2{bottom:204.986667pt;}
.y5a{bottom:207.066667pt;}
.y33{bottom:207.866667pt;}
.yd0{bottom:208.506667pt;}
.y169{bottom:208.826667pt;}
.y17b{bottom:210.266667pt;}
.yac{bottom:212.986667pt;}
.y199{bottom:213.626667pt;}
.y18a{bottom:215.546667pt;}
.yea{bottom:218.906667pt;}
.y125{bottom:219.386667pt;}
.y1f1{bottom:220.346667pt;}
.y59{bottom:223.066667pt;}
.y32{bottom:225.626667pt;}
.ycf{bottom:226.106667pt;}
.y168{bottom:226.426667pt;}
.y17a{bottom:228.026667pt;}
.yab{bottom:230.586667pt;}
.y198{bottom:231.386667pt;}
.y189{bottom:233.146667pt;}
.y1f0{bottom:235.706667pt;}
.ye9{bottom:236.666667pt;}
.y124{bottom:236.986667pt;}
.y58{bottom:238.906667pt;}
.y31{bottom:243.226667pt;}
.yce{bottom:243.706667pt;}
.y167{bottom:244.026667pt;}
.y179{bottom:245.626667pt;}
.yaa{bottom:248.186667pt;}
.y197{bottom:248.986667pt;}
.y188{bottom:250.906667pt;}
.y1ef{bottom:251.066667pt;}
.y1bc{bottom:251.706667pt;}
.ye8{bottom:254.266667pt;}
.y123{bottom:254.586667pt;}
.y57{bottom:254.773333pt;}
.y30{bottom:260.826667pt;}
.ycd{bottom:261.466667pt;}
.y166{bottom:261.626667pt;}
.y178{bottom:263.226667pt;}
.ya9{bottom:265.786667pt;}
.y1ee{bottom:266.266667pt;}
.y196{bottom:266.586667pt;}
.y187{bottom:268.506667pt;}
.y1bb{bottom:269.306667pt;}
.y56{bottom:270.613333pt;}
.ye7{bottom:271.866667pt;}
.y122{bottom:272.186667pt;}
.ycc{bottom:279.066667pt;}
.y2f{bottom:279.226667pt;}
.y165{bottom:279.386667pt;}
.y177{bottom:280.826667pt;}
.y1ed{bottom:281.626667pt;}
.y55{bottom:282.453333pt;}
.ya8{bottom:283.386667pt;}
.y195{bottom:284.186667pt;}
.y186{bottom:286.106667pt;}
.y1ba{bottom:286.906667pt;}
.ye6{bottom:289.466667pt;}
.y121{bottom:289.786667pt;}
.y54{bottom:290.293333pt;}
.y2e{bottom:294.586667pt;}
.ycb{bottom:296.666667pt;}
.y164{bottom:296.986667pt;}
.y176{bottom:298.426667pt;}
.y4a{bottom:300.680000pt;}
.ya7{bottom:301.146667pt;}
.y2d{bottom:301.626667pt;}
.y194{bottom:301.786667pt;}
.y185{bottom:303.706667pt;}
.y1b9{bottom:304.506667pt;}
.y53{bottom:306.133333pt;}
.ye5{bottom:307.066667pt;}
.y120{bottom:307.546667pt;}
.y1ec{bottom:312.346667pt;}
.yca{bottom:314.266667pt;}
.y163{bottom:314.586667pt;}
.y175{bottom:316.186667pt;}
.y2c{bottom:317.466667pt;}
.ya6{bottom:318.746667pt;}
.y193{bottom:319.386667pt;}
.y184{bottom:321.306667pt;}
.y52{bottom:322.133333pt;}
.y1b8{bottom:323.066667pt;}
.y11f{bottom:325.146667pt;}
.ye4{bottom:325.626667pt;}
.y1eb{bottom:327.706667pt;}
.y2b{bottom:328.666667pt;}
.yc9{bottom:331.866667pt;}
.y162{bottom:332.186667pt;}
.y174{bottom:333.786667pt;}
.ya5{bottom:337.146667pt;}
.y192{bottom:337.946667pt;}
.y51{bottom:337.973333pt;}
.y183{bottom:339.066667pt;}
.y11e{bottom:342.746667pt;}
.y1ea{bottom:342.906667pt;}
.yc8{bottom:349.666667pt;}
.y2a{bottom:349.826667pt;}
.y173{bottom:351.426667pt;}
.y50{bottom:353.813333pt;}
.ya4{bottom:355.746667pt;}
.y182{bottom:356.706667pt;}
.y1e9{bottom:358.306667pt;}
.y1b7{bottom:359.426667pt;}
.y11d{bottom:360.386667pt;}
.ye3{bottom:361.986667pt;}
.y4f{bottom:365.653333pt;}
.yc7{bottom:367.266667pt;}
.y161{bottom:367.586667pt;}
.y172{bottom:369.026667pt;}
.y29{bottom:370.946667pt;}
.y4e{bottom:373.493333pt;}
.y1e8{bottom:373.666667pt;}
.y181{bottom:374.306667pt;}
.y1b6{bottom:377.826667pt;}
.y11c{bottom:377.986667pt;}
.ye2{bottom:379.586667pt;}
.yc6{bottom:384.866667pt;}
.y160{bottom:385.186667pt;}
.y171{bottom:386.626667pt;}
.y1e7{bottom:389.026667pt;}
.y4d{bottom:389.333333pt;}
.ya3{bottom:391.906667pt;}
.y28{bottom:392.066667pt;}
.y11b{bottom:395.746667pt;}
.ye1{bottom:397.186667pt;}
.y15f{bottom:401.026667pt;}
.yc5{bottom:402.466667pt;}
.y170{bottom:404.386667pt;}
.y4c{bottom:405.173333pt;}
.ya2{bottom:409.506667pt;}
.y11a{bottom:411.746667pt;}
.y27{bottom:413.346667pt;}
.y1b5{bottom:414.146667pt;}
.ye0{bottom:414.786667pt;}
.y15e{bottom:419.426667pt;}
.y1e6{bottom:419.746667pt;}
.yc4{bottom:420.066667pt;}
.y71{bottom:420.533333pt;}
.y4b{bottom:421.173333pt;}
.y16f{bottom:421.986667pt;}
.y119{bottom:422.146667pt;}
.ya1{bottom:427.266667pt;}
.y1b4{bottom:431.746667pt;}
.y26{bottom:431.906667pt;}
.ydf{bottom:432.546667pt;}
.y1e5{bottom:434.946667pt;}
.y15d{bottom:436.386667pt;}
.y118{bottom:437.026667pt;}
.yc3{bottom:437.826667pt;}
.ya0{bottom:444.866667pt;}
.y15c{bottom:447.106667pt;}
.y25{bottom:449.506667pt;}
.yde{bottom:450.146667pt;}
.y1e4{bottom:450.306667pt;}
.y117{bottom:451.746667pt;}
.yc2{bottom:455.426667pt;}
.y15b{bottom:457.826667pt;}
.y24{bottom:461.666667pt;}
.y9f{bottom:462.466667pt;}
.y1e3{bottom:465.666667pt;}
.y116{bottom:466.466667pt;}
.y1b3{bottom:467.106667pt;}
.ydd{bottom:467.746667pt;}
.y158{bottom:468.373333pt;}
.y154{bottom:468.386667pt;}
.y23{bottom:469.346667pt;}
.yc1{bottom:473.026667pt;}
.y9e{bottom:480.066667pt;}
.y1e2{bottom:481.026667pt;}
.y114{bottom:482.626667pt;}
.y15a{bottom:483.106667pt;}
.y1b2{bottom:484.706667pt;}
.ydc{bottom:485.346667pt;}
.y22{bottom:490.146667pt;}
.yc0{bottom:490.626667pt;}
.y1e1{bottom:496.386667pt;}
.y9d{bottom:497.666667pt;}
.y156{bottom:497.826667pt;}
.y1b1{bottom:502.306667pt;}
.ydb{bottom:502.946667pt;}
.ybf{bottom:508.226667pt;}
.y113{bottom:509.346667pt;}
.y21{bottom:510.786667pt;}
.y1e0{bottom:511.746667pt;}
.y151{bottom:512.693333pt;}
.y14d{bottom:512.706667pt;}
.y9c{bottom:515.426667pt;}
.yda{bottom:520.706667pt;}
.y1b0{bottom:520.866667pt;}
.y112{bottom:525.186667pt;}
.ybe{bottom:526.786667pt;}
.y1df{bottom:526.946667pt;}
.y20{bottom:531.586667pt;}
.y9b{bottom:533.026667pt;}
.y14f{bottom:537.186667pt;}
.yd9{bottom:538.306667pt;}
.y111{bottom:541.506667pt;}
.y1de{bottom:542.306667pt;}
.ybd{bottom:544.386667pt;}
.y9a{bottom:550.626667pt;}
.y149{bottom:551.893333pt;}
.y145{bottom:551.906667pt;}
.ybc{bottom:555.933333pt;}
.y1af{bottom:557.213333pt;}
.y69{bottom:557.533333pt;}
.y1dd{bottom:557.693333pt;}
.y110{bottom:566.653333pt;}
.y14b{bottom:566.813333pt;}
.y99{bottom:568.253333pt;}
.y1dc{bottom:573.053333pt;}
.ybb{bottom:573.533333pt;}
.y1ae{bottom:574.813333pt;}
.y10f{bottom:577.213333pt;}
.y1f{bottom:580.253333pt;}
.y147{bottom:581.533333pt;}
.y98{bottom:585.853333pt;}
.y1db{bottom:588.413333pt;}
.yba{bottom:591.133333pt;}
.yd8{bottom:591.933333pt;}
.y1ad{bottom:593.213333pt;}
.y1e{bottom:594.013333pt;}
.y140{bottom:596.253333pt;}
.y97{bottom:603.613333pt;}
.y1da{bottom:603.773333pt;}
.y10e{bottom:606.813333pt;}
.y1d{bottom:607.933333pt;}
.yb9{bottom:608.893333pt;}
.yd7{bottom:609.693333pt;}
.y1d9{bottom:618.973333pt;}
.y142{bottom:620.893333pt;}
.y96{bottom:621.213333pt;}
.y10d{bottom:621.533333pt;}
.y1c{bottom:621.693333pt;}
.yb8{bottom:626.493333pt;}
.y1ac{bottom:629.533333pt;}
.y1d8{bottom:634.333333pt;}
.y1b{bottom:635.453333pt;}
.y10c{bottom:636.253333pt;}
.y13d{bottom:636.893333pt;}
.y95{bottom:638.813333pt;}
.yb7{bottom:644.093333pt;}
.y1a{bottom:645.373333pt;}
.y1ab{bottom:647.293333pt;}
.y1d7{bottom:649.693333pt;}
.y10b{bottom:651.133333pt;}
.y3a{bottom:653.053333pt;}
.y94{bottom:656.413333pt;}
.y19{bottom:657.533333pt;}
.yb6{bottom:661.693333pt;}
.y1d6{bottom:665.053333pt;}
.y1aa{bottom:665.693333pt;}
.y10a{bottom:665.853333pt;}
.y13c{bottom:668.413333pt;}
.y18{bottom:669.053333pt;}
.y93{bottom:674.013333pt;}
.yb5{bottom:680.093333pt;}
.y17{bottom:680.413333pt;}
.y109{bottom:680.586667pt;}
.y13b{bottom:684.253333pt;}
.y92{bottom:691.773333pt;}
.y16{bottom:691.933333pt;}
.y107{bottom:695.453333pt;}
.y1d5{bottom:695.613333pt;}
.yb4{bottom:697.853333pt;}
.y13a{bottom:700.733333pt;}
.y1a9{bottom:702.013333pt;}
.y15{bottom:704.253333pt;}
.y91{bottom:709.373333pt;}
.y1d4{bottom:710.973333pt;}
.y104{bottom:714.666667pt;}
.y14{bottom:715.613333pt;}
.y139{bottom:718.333333pt;}
.y1a8{bottom:720.413333pt;}
.y1d3{bottom:726.333333pt;}
.y90{bottom:726.973333pt;}
.y103{bottom:729.373333pt;}
.y138{bottom:735.933333pt;}
.y13{bottom:739.453333pt;}
.y1a7{bottom:741.533333pt;}
.y1d2{bottom:741.693333pt;}
.y102{bottom:744.093333pt;}
.y8f{bottom:744.573333pt;}
.y12{bottom:749.373333pt;}
.y137{bottom:753.533333pt;}
.y1d1{bottom:757.053333pt;}
.y101{bottom:759.013333pt;}
.y8e{bottom:762.213333pt;}
.y11{bottom:771.013333pt;}
.y136{bottom:771.173333pt;}
.y1d0{bottom:772.453333pt;}
.yff{bottom:773.733333pt;}
.y1a6{bottom:778.053333pt;}
.y8d{bottom:779.973333pt;}
.y1cf{bottom:787.653333pt;}
.y135{bottom:788.933333pt;}
.y10{bottom:792.453333pt;}
.yfd{bottom:794.693333pt;}
.y1a5{bottom:795.653333pt;}
.y8c{bottom:797.573333pt;}
.y1ce{bottom:803.013333pt;}
.yf{bottom:805.573333pt;}
.y134{bottom:806.533333pt;}
.yfc{bottom:809.413333pt;}
.y1a4{bottom:813.253333pt;}
.y8b{bottom:815.173333pt;}
.y1cd{bottom:818.373333pt;}
.ye{bottom:818.853333pt;}
.y133{bottom:822.533333pt;}
.yfb{bottom:824.293333pt;}
.y1a3{bottom:830.853333pt;}
.yd{bottom:832.133333pt;}
.y8a{bottom:832.773333pt;}
.y1cc{bottom:833.733333pt;}
.y132{bottom:834.853333pt;}
.yf9{bottom:839.013333pt;}
.yc{bottom:842.373333pt;}
.y131{bottom:845.413333pt;}
.y1a2{bottom:848.453333pt;}
.y1cb{bottom:849.093333pt;}
.y89{bottom:850.373333pt;}
.yb{bottom:857.893333pt;}
.y130{bottom:860.133333pt;}
.yf8{bottom:864.293333pt;}
.y1ca{bottom:864.453333pt;}
.y1a1{bottom:867.013333pt;}
.y88{bottom:868.133333pt;}
.y12f{bottom:874.853333pt;}
.ya{bottom:877.093333pt;}
.yf6{bottom:879.013333pt;}
.y1c9{bottom:879.653333pt;}
.y87{bottom:885.733333pt;}
.y12e{bottom:889.573333pt;}
.yf4{bottom:893.733333pt;}
.y1c8{bottom:895.013333pt;}
.y9{bottom:896.613333pt;}
.y86{bottom:903.333333pt;}
.y12d{bottom:904.453333pt;}
.y1c7{bottom:910.373333pt;}
.yf2{bottom:913.093333pt;}
.y12c{bottom:920.453333pt;}
.y85{bottom:920.933333pt;}
.y8{bottom:921.093333pt;}
.y1c6{bottom:925.733333pt;}
.y84{bottom:938.533333pt;}
.y1c5{bottom:941.093333pt;}
.yf1{bottom:941.573333pt;}
.y7{bottom:945.093333pt;}
.y83{bottom:956.133333pt;}
.y1c4{bottom:956.293333pt;}
.yf0{bottom:957.413333pt;}
.y6f{bottom:974.400000pt;}
.y81{bottom:998.400000pt;}
.y47{bottom:1010.880000pt;}
.h6{height:5.025000pt;}
.h19{height:5.160000pt;}
.h4c{height:5.562500pt;}
.h2{height:12.000000pt;}
.h32{height:14.066667pt;}
.h37{height:14.080000pt;}
.h36{height:14.100000pt;}
.h42{height:14.106667pt;}
.h34{height:14.226667pt;}
.h1d{height:15.040000pt;}
.h31{height:17.426667pt;}
.h38{height:18.400000pt;}
.h39{height:19.666667pt;}
.h25{height:19.680000pt;}
.h35{height:20.306667pt;}
.h17{height:20.728125pt;}
.h30{height:21.586667pt;}
.h46{height:23.826667pt;}
.h3e{height:23.840000pt;}
.h33{height:24.466667pt;}
.h3b{height:24.476000pt;}
.h3a{height:24.480000pt;}
.h2d{height:26.368125pt;}
.hd{height:26.381250pt;}
.h10{height:27.523125pt;}
.h2e{height:27.628404pt;}
.he{height:28.073883pt;}
.h4{height:30.400000pt;}
.h23{height:32.250000pt;}
.h15{height:35.114107pt;}
.h5{height:36.431250pt;}
.h24{height:37.410000pt;}
.h43{height:38.546667pt;}
.h44{height:38.556000pt;}
.h45{height:38.560000pt;}
.h3d{height:38.716000pt;}
.h3c{height:38.720000pt;}
.h2a{height:38.877839pt;}
.h12{height:39.571875pt;}
.hc{height:40.103437pt;}
.h1b{height:40.635000pt;}
.h13{height:41.442606pt;}
.h14{height:42.084375pt;}
.h1e{height:43.215000pt;}
.h47{height:43.506667pt;}
.h48{height:43.516000pt;}
.h49{height:43.520000pt;}
.h3f{height:43.706667pt;}
.h40{height:43.712000pt;}
.h41{height:43.720000pt;}
.h16{height:47.109375pt;}
.h4b{height:47.621250pt;}
.h1f{height:48.375000pt;}
.h11{height:49.148438pt;}
.h21{height:49.336436pt;}
.h1a{height:51.360000pt;}
.h29{height:52.108438pt;}
.h3{height:52.134375pt;}
.h2f{height:53.535000pt;}
.h2c{height:54.598989pt;}
.h4a{height:55.298750pt;}
.hb{height:57.787500pt;}
.h1c{height:58.563750pt;}
.h18{height:59.340000pt;}
.hf{height:60.288750pt;}
.h2b{height:62.781250pt;}
.ha{height:64.500000pt;}
.h26{height:66.625000pt;}
.h28{height:66.750000pt;}
.h7{height:77.951250pt;}
.h22{height:84.800000pt;}
.h8{height:85.785000pt;}
.h9{height:88.611250pt;}
.h27{height:128.640000pt;}
.h20{height:432.066667pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w14{width:60.018667pt;}
.w16{width:71.986667pt;}
.w19{width:71.996000pt;}
.w1a{width:72.000000pt;}
.w3{width:72.952000pt;}
.w13{width:87.352000pt;}
.w18{width:106.906667pt;}
.w1c{width:106.912000pt;}
.w1d{width:106.920000pt;}
.w11{width:135.373333pt;}
.w5{width:137.306667pt;}
.wb{width:137.773333pt;}
.wf{width:144.026667pt;}
.w1b{width:152.333333pt;}
.w17{width:152.346667pt;}
.we{width:155.693333pt;}
.w12{width:160.186667pt;}
.wa{width:160.346667pt;}
.wc{width:161.946667pt;}
.w15{width:161.960000pt;}
.w8{width:162.266667pt;}
.w10{width:200.978667pt;}
.wd{width:299.733333pt;}
.w7{width:473.546667pt;}
.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;}
.x3e{left:3.780000pt;}
.x2{left:7.192000pt;}
.x12{left:9.592000pt;}
.x3b{left:12.786667pt;}
.x2f{left:14.866667pt;}
.x37{left:16.306667pt;}
.x38{left:17.746667pt;}
.x18{left:18.893333pt;}
.x3c{left:20.306667pt;}
.x29{left:23.520000pt;}
.x2d{left:27.826667pt;}
.x3a{left:33.000000pt;}
.x20{left:34.560000pt;}
.x3d{left:36.826667pt;}
.x2c{left:39.680000pt;}
.x36{left:44.826667pt;}
.x26{left:46.560000pt;}
.x27{left:47.680000pt;}
.x34{left:50.746667pt;}
.x39{left:51.866667pt;}
.x22{left:54.240000pt;}
.x31{left:55.520000pt;}
.x21{left:56.960000pt;}
.x23{left:59.360000pt;}
.x24{left:62.240000pt;}
.x3{left:65.746667pt;}
.x15{left:71.560000pt;}
.x13{left:72.680000pt;}
.x11{left:82.760000pt;}
.x17{left:84.360000pt;}
.x1{left:96.040000pt;}
.x6{left:99.872000pt;}
.x1e{left:101.632000pt;}
.x1d{left:114.112000pt;}
.xe{left:117.952000pt;}
.xd{left:123.072000pt;}
.x9{left:156.506667pt;}
.x4{left:169.000000pt;}
.xc{left:176.026667pt;}
.x2e{left:183.400000pt;}
.x7{left:194.106667pt;}
.xb{left:201.306667pt;}
.x1a{left:212.986667pt;}
.x30{left:243.426667pt;}
.x14{left:269.826667pt;}
.x16{left:275.866667pt;}
.x28{left:297.026667pt;}
.x1b{left:304.866667pt;}
.x1c{left:308.226667pt;}
.x8{left:393.853333pt;}
.x5{left:396.893333pt;}
.x32{left:405.386667pt;}
.xa{left:408.093333pt;}
.xf{left:434.813333pt;}
.x10{left:436.253333pt;}
.x2a{left:441.066667pt;}
.x33{left:477.386667pt;}
.x19{left:551.336000pt;}
.x1f{left:574.053333pt;}
.x2b{left:576.453333pt;}
.x25{left:591.973333pt;}
.x35{left:629.733333pt;}
}




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