
    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_2fde89479ddbab90002a9efb.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_4e8285967c7856896361d2bb.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_2f195ca032fb6c8244450e12.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_6a98b3ae2ec1a894b5235717.woff')format("woff");}.ff4{font-family:ff4;line-height:0.896973;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_d665dfff2ed2f2bf71e5b95f.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2708fd9fd160649447b04223.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b0b15e2014e9299aee880581.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8e61dd24329599a701284a67.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_b4603d5343e847babdc076c2.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_67c09a8144256fe45fa36267.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_9d9e0348a453205ed0cd98eb.woff')format("woff");}.fff{font-family:fff;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_3864158503c58735c4fe662d.woff')format("woff");}.ff10{font-family:ff10;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1{vertical-align:23.760000px;}
.lse{letter-spacing:-1.440000px;}
.lsc{letter-spacing:-0.810000px;}
.ls14{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.223800px;}
.ls11{letter-spacing:-0.181200px;}
.lsa{letter-spacing:-0.150600px;}
.lsd{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.005040px;}
.ls5{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.018000px;}
.ls15{letter-spacing:0.106800px;}
.ls3{letter-spacing:0.144720px;}
.ls4{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.181200px;}
.ls10{letter-spacing:0.259800px;}
.ls12{letter-spacing:0.259920px;}
.ls16{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.828000px;}
.ls13{letter-spacing:4.500000px;}
.ls2{letter-spacing:47.700000px;}
.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;}
}
.ws10{word-spacing:-18.000000px;}
.wsf{word-spacing:-16.560000px;}
.ws13{word-spacing:-15.300000px;}
.ws15{word-spacing:-15.238800px;}
.wse{word-spacing:-15.199800px;}
.wsc{word-spacing:-14.940000px;}
.ws14{word-spacing:-14.580000px;}
.ws9{word-spacing:-13.500000px;}
.ws7{word-spacing:-12.420000px;}
.ws6{word-spacing:-12.241200px;}
.ws11{word-spacing:-12.060000px;}
.ws12{word-spacing:-11.878800px;}
.ws4{word-spacing:-11.700000px;}
.ws5{word-spacing:-11.340000px;}
.ws3{word-spacing:-11.334960px;}
.ws2{word-spacing:-10.980000px;}
.ws8{word-spacing:-10.950480px;}
.ws0{word-spacing:-10.440000px;}
.wsa{word-spacing:-9.000000px;}
.ws1{word-spacing:-7.560000px;}
.wsb{word-spacing:0.000000px;}
.wsd{word-spacing:34.999920px;}
._2d{margin-left:-756.720000px;}
._6{margin-left:-59.580000px;}
._23{margin-left:-50.140080px;}
._19{margin-left:-3.673440px;}
._8{margin-left:-2.514240px;}
._2{margin-left:-1.457280px;}
._0{width:1.044000px;}
._1{width:2.424480px;}
._1e{width:3.672000px;}
._d{width:5.116080px;}
._c{width:6.155280px;}
._1a{width:7.441920px;}
._1d{width:8.784720px;}
._17{width:10.637280px;}
._10{width:12.250800px;}
._25{width:13.744800px;}
._13{width:15.955920px;}
._1c{width:17.479440px;}
._15{width:18.525600px;}
._16{width:19.601280px;}
._1f{width:20.682000px;}
._27{width:21.931920px;}
._14{width:23.127120px;}
._31{width:24.143040px;}
._29{width:25.218720px;}
._28{width:26.533440px;}
._24{width:27.609120px;}
._26{width:29.461680px;}
._20{width:31.403520px;}
._b{width:32.987520px;}
._a{width:34.122960px;}
._2b{width:35.138160px;}
._2a{width:36.334080px;}
._2c{width:37.589040px;}
._f{width:39.592800px;}
._30{width:40.882320px;}
._32{width:42.222960px;}
._12{width:43.233840px;}
._11{width:44.971920px;}
._e{width:46.345680px;}
._37{width:47.389680px;}
._18{width:48.644640px;}
._22{width:51.194640px;}
._3f{width:52.452960px;}
._35{width:53.575920px;}
._36{width:54.768960px;}
._3d{width:55.815840px;}
._34{width:56.891520px;}
._38{width:57.907440px;}
._44{width:61.612560px;}
._3e{width:62.927280px;}
._9{width:64.361520px;}
._4{width:65.496000px;}
._40{width:66.632400px;}
._2f{width:67.887360px;}
._33{width:69.734880px;}
._1b{width:70.875360px;}
._3{width:72.085440px;}
._43{width:75.118320px;}
._3a{width:76.194000px;}
._3b{width:77.286720px;}
._41{width:79.182000px;}
._45{width:86.943600px;}
._46{width:88.037280px;}
._42{width:95.974560px;}
._39{width:105.567840px;}
._3c{width:137.328480px;}
._5{width:199.620000px;}
._21{width:282.270000px;}
._2e{width:499.596000px;}
._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;}
.y45{bottom:-247.710000px;}
.y44{bottom:-214.050000px;}
.y43{bottom:-180.210000px;}
.y42{bottom:-146.550000px;}
.y7a{bottom:-143.310000px;}
.y41{bottom:-112.860000px;}
.y79{bottom:-109.470000px;}
.y40{bottom:-79.020000px;}
.y78{bottom:-75.765000px;}
.y3f{bottom:-45.360000px;}
.y77{bottom:-41.925000px;}
.y48{bottom:-27.180000px;}
.y7c{bottom:-17.922750px;}
.y63{bottom:-12.240000px;}
.y3e{bottom:-11.520000px;}
.y76{bottom:-8.265000px;}
.y0{bottom:0.000000px;}
.y21d{bottom:1.837500px;}
.y62{bottom:3.240000px;}
.y2{bottom:3.960000px;}
.y139{bottom:4.665000px;}
.y124{bottom:4.680000px;}
.y13b{bottom:4.845000px;}
.y127{bottom:4.860000px;}
.y160{bottom:4.890000px;}
.y47{bottom:5.040000px;}
.y6c{bottom:5.580000px;}
.y3d{bottom:6.840000px;}
.y165{bottom:7.005000px;}
.y5{bottom:12.600000px;}
.y141{bottom:12.810000px;}
.y125{bottom:12.960000px;}
.y136{bottom:13.845000px;}
.y16a{bottom:15.105000px;}
.y166{bottom:15.285000px;}
.y6a{bottom:17.640000px;}
.y61{bottom:18.720000px;}
.y138{bottom:20.505000px;}
.y13e{bottom:20.550000px;}
.y3c{bottom:20.700000px;}
.y13f{bottom:20.730000px;}
.y6{bottom:21.960000px;}
.y15e{bottom:22.125000px;}
.y169{bottom:22.845000px;}
.y164{bottom:23.025000px;}
.y3{bottom:23.220000px;}
.y13a{bottom:24.285000px;}
.y4{bottom:24.660000px;}
.y75{bottom:25.395000px;}
.y167{bottom:25.725000px;}
.y140{bottom:28.650000px;}
.y135{bottom:29.685000px;}
.y161{bottom:30.045000px;}
.y60{bottom:31.140000px;}
.y69{bottom:31.320000px;}
.y3b{bottom:34.740000px;}
.y13d{bottom:36.390000px;}
.y15d{bottom:37.965000px;}
.y68{bottom:44.280000px;}
.y7f{bottom:46.980000px;}
.y3a{bottom:47.520000px;}
.y5f{bottom:48.960000px;}
.y74{bottom:56.355000px;}
.y67{bottom:57.240000px;}
.y1{bottom:57.420000px;}
.y7b{bottom:63.780000px;}
.y5e{bottom:66.780000px;}
.y73{bottom:69.495000px;}
.y66{bottom:70.380000px;}
.y72{bottom:82.455000px;}
.y5d{bottom:84.600000px;}
.y65{bottom:87.300000px;}
.y71{bottom:95.595000px;}
.y145{bottom:98.640000px;}
.y171{bottom:98.820000px;}
.y1b5{bottom:99.540000px;}
.y5c{bottom:99.900000px;}
.yb0{bottom:100.620000px;}
.y188{bottom:103.680000px;}
.y183{bottom:108.180000px;}
.y70{bottom:108.555000px;}
.y5b{bottom:112.500000px;}
.y38{bottom:114.120000px;}
.ye2{bottom:115.380000px;}
.yde{bottom:115.560000px;}
.y144{bottom:116.640000px;}
.y1b4{bottom:116.820000px;}
.y170{bottom:118.620000px;}
.y113{bottom:119.520000px;}
.yaf{bottom:120.420000px;}
.y196{bottom:121.320000px;}
.y6f{bottom:121.515000px;}
.y187{bottom:123.480000px;}
.y1eb{bottom:123.660000px;}
.y21c{bottom:127.080000px;}
.y182{bottom:127.980000px;}
.y5a{bottom:130.320000px;}
.y143{bottom:130.500000px;}
.y37{bottom:133.920000px;}
.y6e{bottom:133.935000px;}
.y1b3{bottom:134.100000px;}
.ye1{bottom:135.180000px;}
.ydd{bottom:135.360000px;}
.y16f{bottom:138.600000px;}
.y112{bottom:139.320000px;}
.y1ea{bottom:140.940000px;}
.y195{bottom:141.120000px;}
.yae{bottom:141.300000px;}
.y186{bottom:143.280000px;}
.y142{bottom:144.360000px;}
.y181{bottom:147.960000px;}
.y59{bottom:148.140000px;}
.y1b2{bottom:151.380000px;}
.y36{bottom:153.720000px;}
.ydc{bottom:155.160000px;}
.y13c{bottom:156.240000px;}
.y16e{bottom:156.420000px;}
.y1e9{bottom:158.220000px;}
.y111{bottom:159.120000px;}
.y194{bottom:161.100000px;}
.y21b{bottom:161.640000px;}
.yad{bottom:162.210000px;}
.y185{bottom:163.110000px;}
.ye0{bottom:165.090000px;}
.y58{bottom:165.960000px;}
.y180{bottom:167.790000px;}
.y1b1{bottom:168.690000px;}
.y35{bottom:173.550000px;}
.ydb{bottom:174.990000px;}
.y1e8{bottom:175.350000px;}
.ydf{bottom:178.770000px;}
.y21a{bottom:178.950000px;}
.y110{bottom:179.130000px;}
.y193{bottom:180.930000px;}
.y184{bottom:183.090000px;}
.y57{bottom:183.780000px;}
.y1b0{bottom:185.790000px;}
.y17f{bottom:187.590000px;}
.y1e7{bottom:192.630000px;}
.y34{bottom:193.530000px;}
.yda{bottom:194.970000px;}
.y219{bottom:196.050000px;}
.y10f{bottom:198.930000px;}
.y56{bottom:199.080000px;}
.y192{bottom:200.730000px;}
.yac{bottom:202.890000px;}
.y1af{bottom:203.070000px;}
.y134{bottom:204.525000px;}
.y16d{bottom:205.590000px;}
.y17e{bottom:207.390000px;}
.y1e6{bottom:209.910000px;}
.y55{bottom:211.710000px;}
.y33{bottom:213.330000px;}
.yd9{bottom:214.770000px;}
.y16c{bottom:217.650000px;}
.y10e{bottom:218.730000px;}
.y191{bottom:220.530000px;}
.y1ae{bottom:220.710000px;}
.yab{bottom:222.690000px;}
.y137{bottom:222.705000px;}
.y17d{bottom:227.190000px;}
.y16b{bottom:229.365000px;}
.y54{bottom:229.530000px;}
.y218{bottom:230.610000px;}
.y32{bottom:233.130000px;}
.yd8{bottom:234.570000px;}
.y10d{bottom:238.530000px;}
.y190{bottom:240.330000px;}
.yaa{bottom:242.490000px;}
.y1e5{bottom:244.470000px;}
.y17c{bottom:247.170000px;}
.y53{bottom:247.350000px;}
.y217{bottom:247.890000px;}
.y31{bottom:252.930000px;}
.yd7{bottom:254.370000px;}
.y10c{bottom:258.330000px;}
.y18f{bottom:260.310000px;}
.y133{bottom:260.490000px;}
.y1ad{bottom:261.390000px;}
.y1e4{bottom:261.750000px;}
.ya9{bottom:262.290000px;}
.y52{bottom:265.170000px;}
.y168{bottom:266.805000px;}
.y17b{bottom:266.970000px;}
.y30{bottom:272.730000px;}
.yd6{bottom:274.170000px;}
.y132{bottom:277.590000px;}
.y10b{bottom:278.310000px;}
.y1e3{bottom:278.850000px;}
.y18e{bottom:280.110000px;}
.y1ac{bottom:281.370000px;}
.ya8{bottom:282.270000px;}
.y216{bottom:282.450000px;}
.y51{bottom:282.990000px;}
.y17a{bottom:286.770000px;}
.y2f{bottom:292.710000px;}
.yd5{bottom:294.150000px;}
.y1e2{bottom:296.130000px;}
.y131{bottom:297.390000px;}
.y10a{bottom:298.110000px;}
.y215{bottom:299.550000px;}
.y18d{bottom:299.910000px;}
.y50{bottom:300.810000px;}
.ya7{bottom:302.070000px;}
.y163{bottom:304.065000px;}
.y179{bottom:306.570000px;}
.y2e{bottom:312.510000px;}
.y1e1{bottom:313.410000px;}
.yd4{bottom:313.950000px;}
.y214{bottom:316.830000px;}
.y130{bottom:317.190000px;}
.y109{bottom:317.910000px;}
.y4f{bottom:318.810000px;}
.y18c{bottom:319.710000px;}
.ya6{bottom:321.870000px;}
.y178{bottom:326.370000px;}
.y1e0{bottom:330.690000px;}
.y4e{bottom:332.130000px;}
.y2d{bottom:332.310000px;}
.yd3{bottom:333.750000px;}
.y213{bottom:334.110000px;}
.y12f{bottom:336.990000px;}
.y108{bottom:337.710000px;}
.y18b{bottom:339.510000px;}
.y4d{bottom:340.950000px;}
.y15c{bottom:341.325000px;}
.ya5{bottom:341.670000px;}
.y1ab{bottom:342.930000px;}
.y177{bottom:346.350000px;}
.y1df{bottom:347.970000px;}
.y212{bottom:351.390000px;}
.y2c{bottom:352.110000px;}
.yd2{bottom:353.550000px;}
.y12e{bottom:356.790000px;}
.y107{bottom:357.510000px;}
.y162{bottom:358.065000px;}
.y4c{bottom:358.770000px;}
.y18a{bottom:359.310000px;}
.ya4{bottom:361.470000px;}
.y1aa{bottom:362.730000px;}
.y1de{bottom:365.250000px;}
.y176{bottom:366.150000px;}
.y211{bottom:368.670000px;}
.y2b{bottom:371.910000px;}
.yd1{bottom:373.350000px;}
.y4b{bottom:376.590000px;}
.y106{bottom:377.310000px;}
.y189{bottom:380.190000px;}
.ya3{bottom:381.450000px;}
.y1dd{bottom:382.350000px;}
.y1a9{bottom:382.530000px;}
.y210{bottom:385.770000px;}
.y175{bottom:385.950000px;}
.y15f{bottom:391.905000px;}
.y2a{bottom:392.835000px;}
.yd0{bottom:393.375000px;}
.y4a{bottom:394.410000px;}
.y12d{bottom:394.815000px;}
.y105{bottom:397.335000px;}
.y1dc{bottom:399.675000px;}
.ya2{bottom:401.295000px;}
.y20f{bottom:403.095000px;}
.y1a8{bottom:403.455000px;}
.y174{bottom:405.795000px;}
.y12c{bottom:408.675000px;}
.y29{bottom:410.115000px;}
.ycf{bottom:413.175000px;}
.y15b{bottom:413.355000px;}
.y1db{bottom:416.955000px;}
.y104{bottom:417.135000px;}
.y28{bottom:418.575000px;}
.y49{bottom:419.115000px;}
.y12b{bottom:420.375000px;}
.ya1{bottom:421.095000px;}
.y173{bottom:425.595000px;}
.y15a{bottom:429.015000px;}
.yce{bottom:432.975000px;}
.y1da{bottom:434.235000px;}
.y103{bottom:436.935000px;}
.y12a{bottom:437.115000px;}
.y20e{bottom:437.655000px;}
.ya0{bottom:440.895000px;}
.y27{bottom:442.335000px;}
.y1a7{bottom:444.315000px;}
.y172{bottom:445.575000px;}
.y1d9{bottom:451.515000px;}
.ycd{bottom:452.775000px;}
.y128{bottom:453.675000px;}
.y20d{bottom:454.935000px;}
.y102{bottom:456.735000px;}
.y9f{bottom:460.695000px;}
.y1a6{bottom:464.115000px;}
.y159{bottom:465.375000px;}
.y26{bottom:466.095000px;}
.y1d8{bottom:468.615000px;}
.y129{bottom:470.235000px;}
.y20c{bottom:472.215000px;}
.ycc{bottom:472.575000px;}
.y6d{bottom:474.180000px;}
.y101{bottom:476.535000px;}
.y9e{bottom:480.675000px;}
.y1a5{bottom:483.915000px;}
.y158{bottom:485.175000px;}
.y1d7{bottom:485.895000px;}
.y25{bottom:486.975000px;}
.y20b{bottom:489.315000px;}
.ycb{bottom:492.555000px;}
.y100{bottom:496.515000px;}
.y9d{bottom:500.475000px;}
.y1d6{bottom:503.175000px;}
.y126{bottom:503.535000px;}
.y1a4{bottom:503.715000px;}
.y157{bottom:504.975000px;}
.y20a{bottom:506.595000px;}
.y24{bottom:506.955000px;}
.yca{bottom:512.355000px;}
.yff{bottom:516.315000px;}
.y9c{bottom:520.275000px;}
.y1d5{bottom:520.455000px;}
.y23{bottom:520.635000px;}
.y123{bottom:521.715000px;}
.y1a3{bottom:523.695000px;}
.y209{bottom:523.875000px;}
.y156{bottom:524.775000px;}
.y22{bottom:529.275000px;}
.yc9{bottom:532.155000px;}
.yfe{bottom:536.115000px;}
.y1d4{bottom:537.735000px;}
.y9b{bottom:540.075000px;}
.y208{bottom:541.155000px;}
.y1a2{bottom:544.395000px;}
.y155{bottom:544.755000px;}
.y122{bottom:545.295000px;}
.yc8{bottom:551.955000px;}
.y21{bottom:552.675000px;}
.y1d3{bottom:555.015000px;}
.yfd{bottom:555.915000px;}
.y207{bottom:558.435000px;}
.y9a{bottom:559.875000px;}
.y121{bottom:563.475000px;}
.y154{bottom:564.555000px;}
.yc7{bottom:571.755000px;}
.y1d2{bottom:572.115000px;}
.yfc{bottom:575.715000px;}
.y20{bottom:575.895000px;}
.y99{bottom:579.855000px;}
.y120{bottom:583.635000px;}
.y153{bottom:584.355000px;}
.y1a1{bottom:585.255000px;}
.y1d1{bottom:589.395000px;}
.yc6{bottom:591.735000px;}
.y206{bottom:592.815000px;}
.yfb{bottom:595.695000px;}
.y1f{bottom:599.115000px;}
.y98{bottom:599.655000px;}
.y11f{bottom:603.435000px;}
.y152{bottom:604.155000px;}
.y1a0{bottom:605.955000px;}
.y1d0{bottom:606.675000px;}
.y205{bottom:610.095000px;}
.yc5{bottom:611.535000px;}
.yfa{bottom:615.495000px;}
.y97{bottom:619.455000px;}
.y11e{bottom:623.265000px;}
.y151{bottom:623.985000px;}
.y204{bottom:627.405000px;}
.y64{bottom:628.485000px;}
.yc4{bottom:631.365000px;}
.yf9{bottom:635.325000px;}
.y96{bottom:639.285000px;}
.y1cf{bottom:641.265000px;}
.y11d{bottom:643.065000px;}
.y150{bottom:643.965000px;}
.y203{bottom:644.685000px;}
.y19f{bottom:647.025000px;}
.yc3{bottom:651.165000px;}
.y1e{bottom:654.045000px;}
.yf8{bottom:655.125000px;}
.y1ce{bottom:658.545000px;}
.y95{bottom:659.085000px;}
.y202{bottom:661.965000px;}
.y11c{bottom:663.045000px;}
.y14f{bottom:663.765000px;}
.y19e{bottom:666.825000px;}
.y1d{bottom:669.525000px;}
.yc2{bottom:670.965000px;}
.yf7{bottom:674.925000px;}
.y1cd{bottom:675.645000px;}
.y94{bottom:679.065000px;}
.y201{bottom:679.245000px;}
.y11b{bottom:682.845000px;}
.y14e{bottom:683.565000px;}
.y1c{bottom:685.005000px;}
.y19d{bottom:686.625000px;}
.yc1{bottom:690.945000px;}
.y1cc{bottom:692.925000px;}
.yf6{bottom:694.905000px;}
.y200{bottom:696.345000px;}
.y93{bottom:698.865000px;}
.y1b{bottom:700.665000px;}
.y11a{bottom:702.645000px;}
.y14d{bottom:703.365000px;}
.y19c{bottom:707.325000px;}
.y1cb{bottom:710.205000px;}
.yc0{bottom:710.745000px;}
.y1ff{bottom:713.625000px;}
.yf5{bottom:714.705000px;}
.y1a{bottom:716.145000px;}
.y92{bottom:718.665000px;}
.y14c{bottom:723.165000px;}
.y119{bottom:723.345000px;}
.y19{bottom:727.305000px;}
.y1ca{bottom:727.485000px;}
.ybf{bottom:730.545000px;}
.y1fe{bottom:730.905000px;}
.yf4{bottom:734.505000px;}
.y39{bottom:735.945000px;}
.y91{bottom:738.465000px;}
.y18{bottom:740.805000px;}
.y14b{bottom:743.145000px;}
.y1c9{bottom:744.765000px;}
.y19b{bottom:748.185000px;}
.ybe{bottom:750.345000px;}
.y17{bottom:753.765000px;}
.yf3{bottom:754.305000px;}
.y90{bottom:758.265000px;}
.y1c8{bottom:761.865000px;}
.y14a{bottom:762.945000px;}
.y118{bottom:764.205000px;}
.y1fd{bottom:765.465000px;}
.y16{bottom:766.725000px;}
.y19a{bottom:768.165000px;}
.ybd{bottom:770.145000px;}
.yf2{bottom:774.105000px;}
.y8f{bottom:778.245000px;}
.y1c7{bottom:779.145000px;}
.y15{bottom:779.685000px;}
.y1fc{bottom:782.565000px;}
.y149{bottom:782.745000px;}
.y117{bottom:784.185000px;}
.y199{bottom:787.965000px;}
.ybc{bottom:791.025000px;}
.y14{bottom:793.545000px;}
.yf1{bottom:794.085000px;}
.y1c6{bottom:796.425000px;}
.y8e{bottom:798.045000px;}
.y1fb{bottom:799.845000px;}
.y148{bottom:802.545000px;}
.y116{bottom:803.985000px;}
.y13{bottom:806.325000px;}
.y198{bottom:808.665000px;}
.ybb{bottom:810.645000px;}
.y1c5{bottom:813.705000px;}
.yf0{bottom:813.885000px;}
.y1fa{bottom:817.125000px;}
.y8d{bottom:817.845000px;}
.yba{bottom:823.785000px;}
.y1c4{bottom:830.985000px;}
.y197{bottom:832.425000px;}
.y12{bottom:833.145000px;}
.yef{bottom:833.685000px;}
.y1f9{bottom:834.405000px;}
.y8c{bottom:837.645000px;}
.y147{bottom:839.265000px;}
.yb9{bottom:843.585000px;}
.y11{bottom:844.305000px;}
.y1c3{bottom:848.265000px;}
.y1f8{bottom:851.685000px;}
.yee{bottom:853.530000px;}
.y146{bottom:854.610000px;}
.y8b{bottom:857.490000px;}
.yb8{bottom:863.430000px;}
.y1c2{bottom:865.410000px;}
.y10{bottom:868.650000px;}
.y1f7{bottom:869.010000px;}
.yed{bottom:873.330000px;}
.y8a{bottom:877.470000px;}
.y1c1{bottom:882.690000px;}
.yb7{bottom:883.410000px;}
.y1f6{bottom:886.110000px;}
.yec{bottom:893.310000px;}
.yf{bottom:893.490000px;}
.y89{bottom:897.270000px;}
.y1c0{bottom:899.970000px;}
.yb6{bottom:903.210000px;}
.y1f5{bottom:903.390000px;}
.ye{bottom:908.610000px;}
.yeb{bottom:913.110000px;}
.y88{bottom:917.070000px;}
.y1bf{bottom:917.250000px;}
.yd{bottom:919.950000px;}
.y1f4{bottom:920.670000px;}
.yb5{bottom:923.010000px;}
.y115{bottom:923.910000px;}
.yea{bottom:932.910000px;}
.y1be{bottom:934.530000px;}
.y87{bottom:936.870000px;}
.yc{bottom:937.590000px;}
.y1f3{bottom:937.950000px;}
.yb4{bottom:942.810000px;}
.y114{bottom:943.710000px;}
.y1bd{bottom:951.810000px;}
.ye9{bottom:952.710000px;}
.y1f2{bottom:955.230000px;}
.y86{bottom:956.670000px;}
.yb{bottom:959.190000px;}
.yb3{bottom:962.610000px;}
.y1bc{bottom:968.910000px;}
.ye8{bottom:972.510000px;}
.y85{bottom:976.650000px;}
.ya{bottom:980.970000px;}
.yb2{bottom:983.490000px;}
.y1bb{bottom:986.190000px;}
.y1f1{bottom:989.610000px;}
.ye7{bottom:992.490000px;}
.y84{bottom:996.450000px;}
.yb1{bottom:1003.110000px;}
.y1ba{bottom:1003.470000px;}
.y1f0{bottom:1006.890000px;}
.y9{bottom:1008.690000px;}
.ye6{bottom:1012.290000px;}
.y83{bottom:1016.250000px;}
.y1b9{bottom:1020.750000px;}
.y1ef{bottom:1024.170000px;}
.ye5{bottom:1032.090000px;}
.y82{bottom:1036.050000px;}
.y8{bottom:1036.230000px;}
.y1b8{bottom:1038.030000px;}
.y1ee{bottom:1041.450000px;}
.ye4{bottom:1051.890000px;}
.y1b7{bottom:1055.310000px;}
.y81{bottom:1055.850000px;}
.y1ed{bottom:1058.730000px;}
.y7{bottom:1063.230000px;}
.ye3{bottom:1072.590000px;}
.y1b6{bottom:1073.130000px;}
.y80{bottom:1075.650000px;}
.y1ec{bottom:1075.830000px;}
.y6b{bottom:1096.200000px;}
.y7e{bottom:1105.920000px;}
.y7d{bottom:1123.200000px;}
.y46{bottom:1137.240000px;}
.h6{height:5.653125px;}
.h16{height:5.805000px;}
.h40{height:6.257812px;}
.h2{height:13.500000px;}
.h32{height:15.825000px;}
.h34{height:15.840000px;}
.h3b{height:16.041000px;}
.h1a{height:16.920000px;}
.h23{height:22.140000px;}
.h15{height:23.319141px;}
.h2c{height:29.664141px;}
.h1f{height:29.678906px;}
.he{height:30.963516px;}
.h31{height:31.081955px;}
.hc{height:31.583118px;}
.h36{height:31.665000px;}
.h33{height:32.385000px;}
.h3a{height:34.036523px;}
.h4{height:34.200000px;}
.h21{height:36.281250px;}
.h3c{height:36.525000px;}
.h3d{height:36.531000px;}
.h3e{height:36.540000px;}
.h13{height:39.503370px;}
.h5{height:40.985156px;}
.h22{height:42.086250px;}
.h26{height:42.759141px;}
.h2e{height:43.215117px;}
.h29{height:43.983631px;}
.h10{height:44.518359px;}
.hb{height:45.116367px;}
.h18{height:45.714375px;}
.h11{height:46.622932px;}
.h12{height:47.344922px;}
.h37{height:47.556000px;}
.h38{height:47.565000px;}
.h1b{height:48.616875px;}
.h35{height:49.845000px;}
.h14{height:52.998047px;}
.h1c{height:54.421875px;}
.hf{height:55.291992px;}
.h1e{height:55.503491px;}
.h17{height:57.780000px;}
.h28{height:58.621992px;}
.h3{height:58.651172px;}
.h2d{height:60.226875px;}
.h30{height:61.423863px;}
.h2f{height:64.978594px;}
.h2a{height:65.010937px;}
.ha{height:65.846250px;}
.h19{height:65.884219px;}
.h39{height:66.621000px;}
.hd{height:67.824844px;}
.h2b{height:70.628906px;}
.h3f{height:70.664062px;}
.h9{height:72.562500px;}
.h24{height:74.953125px;}
.h27{height:75.093750px;}
.h7{height:87.695156px;}
.h20{height:95.400000px;}
.h8{height:96.508125px;}
.h25{height:144.900000px;}
.h1d{height:406.665000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.we{width:60.645000px;}
.w18{width:74.361000px;}
.wf{width:80.625000px;}
.w11{width:80.985000px;}
.w19{width:81.000000px;}
.w10{width:81.021000px;}
.w3{width:82.071000px;}
.w17{width:87.696000px;}
.w1a{width:87.705000px;}
.w15{width:91.071000px;}
.w12{width:94.530000px;}
.w13{width:94.536000px;}
.w14{width:94.545000px;}
.wc{width:111.090000px;}
.w5{width:154.470000px;}
.w16{width:155.355000px;}
.wd{width:158.775000px;}
.wa{width:180.390000px;}
.w8{width:182.550000px;}
.wb{width:219.435000px;}
.w7{width:532.920000px;}
.w4{width:639.855000px;}
.w2{width:721.935000px;}
.w9{width:743.175000px;}
.w6{width:747.135000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x37{left:4.252500px;}
.x2{left:8.091000px;}
.x29{left:9.210000px;}
.x12{left:10.791000px;}
.x2e{left:12.810000px;}
.x28{left:13.890000px;}
.x33{left:15.645000px;}
.x2b{left:17.280000px;}
.x35{left:19.800000px;}
.x18{left:21.255000px;}
.x2f{left:22.905000px;}
.x36{left:26.280000px;}
.x26{left:28.260000px;}
.x25{left:33.510000px;}
.x2d{left:37.650000px;}
.x23{left:40.710000px;}
.x3{left:73.965000px;}
.x15{left:80.505000px;}
.x13{left:81.765000px;}
.x11{left:93.105000px;}
.x17{left:94.905000px;}
.x1{left:108.045000px;}
.x1f{left:119.196000px;}
.x1a{left:126.036000px;}
.x1e{left:128.376000px;}
.xe{left:132.696000px;}
.xc{left:142.416000px;}
.x6{left:146.016000px;}
.x7{left:160.770000px;}
.x30{left:170.850000px;}
.xd{left:185.430000px;}
.x4{left:190.125000px;}
.x31{left:199.125000px;}
.x1b{left:229.350000px;}
.x1c{left:233.130000px;}
.x34{left:273.495000px;}
.xa{left:293.295000px;}
.x14{left:303.195000px;}
.x16{left:310.350000px;}
.x8{left:344.595000px;}
.x32{left:354.495000px;}
.x21{left:378.795000px;}
.x9{left:443.085000px;}
.x1d{left:444.165000px;}
.x5{left:446.505000px;}
.xb{left:459.105000px;}
.xf{left:489.165000px;}
.x10{left:490.785000px;}
.x27{left:571.440000px;}
.x19{left:620.253000px;}
.x24{left:649.590000px;}
.x2a{left:652.470000px;}
.x22{left:710.250000px;}
.x2c{left:733.470000px;}
.x20{left:848.340000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lse{letter-spacing:-1.280000pt;}
.lsc{letter-spacing:-0.720000pt;}
.ls14{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.198933pt;}
.ls11{letter-spacing:-0.161067pt;}
.lsa{letter-spacing:-0.133867pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.004480pt;}
.ls5{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.016000pt;}
.ls15{letter-spacing:0.094933pt;}
.ls3{letter-spacing:0.128640pt;}
.ls4{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.161067pt;}
.ls10{letter-spacing:0.230933pt;}
.ls12{letter-spacing:0.231040pt;}
.ls16{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.736000pt;}
.ls13{letter-spacing:4.000000pt;}
.ls2{letter-spacing:42.400000pt;}
.ls1{letter-spacing:64.000000pt;}
.ws10{word-spacing:-16.000000pt;}
.wsf{word-spacing:-14.720000pt;}
.ws13{word-spacing:-13.600000pt;}
.ws15{word-spacing:-13.545600pt;}
.wse{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.280000pt;}
.ws14{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.040000pt;}
.ws6{word-spacing:-10.881067pt;}
.ws11{word-spacing:-10.720000pt;}
.ws12{word-spacing:-10.558933pt;}
.ws4{word-spacing:-10.400000pt;}
.ws5{word-spacing:-10.080000pt;}
.ws3{word-spacing:-10.075520pt;}
.ws2{word-spacing:-9.760000pt;}
.ws8{word-spacing:-9.733760pt;}
.ws0{word-spacing:-9.280000pt;}
.wsa{word-spacing:-8.000000pt;}
.ws1{word-spacing:-6.720000pt;}
.wsb{word-spacing:0.000000pt;}
.wsd{word-spacing:31.111040pt;}
._2d{margin-left:-672.640000pt;}
._6{margin-left:-52.960000pt;}
._23{margin-left:-44.568960pt;}
._19{margin-left:-3.265280pt;}
._8{margin-left:-2.234880pt;}
._2{margin-left:-1.295360pt;}
._0{width:0.928000pt;}
._1{width:2.155093pt;}
._1e{width:3.264000pt;}
._d{width:4.547627pt;}
._c{width:5.471360pt;}
._1a{width:6.615040pt;}
._1d{width:7.808640pt;}
._17{width:9.455360pt;}
._10{width:10.889600pt;}
._25{width:12.217600pt;}
._13{width:14.183040pt;}
._1c{width:15.537280pt;}
._15{width:16.467200pt;}
._16{width:17.423360pt;}
._1f{width:18.384000pt;}
._27{width:19.495040pt;}
._14{width:20.557440pt;}
._31{width:21.460480pt;}
._29{width:22.416640pt;}
._28{width:23.585280pt;}
._24{width:24.541440pt;}
._26{width:26.188160pt;}
._20{width:27.914240pt;}
._b{width:29.322240pt;}
._a{width:30.331520pt;}
._2b{width:31.233920pt;}
._2a{width:32.296960pt;}
._2c{width:33.412480pt;}
._f{width:35.193600pt;}
._30{width:36.339840pt;}
._32{width:37.531520pt;}
._12{width:38.430080pt;}
._11{width:39.975040pt;}
._e{width:41.196160pt;}
._37{width:42.124160pt;}
._18{width:43.239680pt;}
._22{width:45.506347pt;}
._3f{width:46.624853pt;}
._35{width:47.623040pt;}
._36{width:48.683520pt;}
._3d{width:49.614080pt;}
._34{width:50.570240pt;}
._38{width:51.473280pt;}
._44{width:54.766720pt;}
._3e{width:55.935360pt;}
._9{width:57.210240pt;}
._4{width:58.218667pt;}
._40{width:59.228800pt;}
._2f{width:60.344320pt;}
._33{width:61.986560pt;}
._1b{width:63.000320pt;}
._3{width:64.075947pt;}
._43{width:66.771840pt;}
._3a{width:67.728000pt;}
._3b{width:68.699307pt;}
._41{width:70.384000pt;}
._45{width:77.283200pt;}
._46{width:78.255360pt;}
._42{width:85.310720pt;}
._39{width:93.838080pt;}
._3c{width:122.069760pt;}
._5{width:177.440000pt;}
._21{width:250.906667pt;}
._2e{width:444.085333pt;}
._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;}
.y45{bottom:-220.186667pt;}
.y44{bottom:-190.266667pt;}
.y43{bottom:-160.186667pt;}
.y42{bottom:-130.266667pt;}
.y7a{bottom:-127.386667pt;}
.y41{bottom:-100.320000pt;}
.y79{bottom:-97.306667pt;}
.y40{bottom:-70.240000pt;}
.y78{bottom:-67.346667pt;}
.y3f{bottom:-40.320000pt;}
.y77{bottom:-37.266667pt;}
.y48{bottom:-24.160000pt;}
.y7c{bottom:-15.931333pt;}
.y63{bottom:-10.880000pt;}
.y3e{bottom:-10.240000pt;}
.y76{bottom:-7.346667pt;}
.y0{bottom:0.000000pt;}
.y21d{bottom:1.633333pt;}
.y62{bottom:2.880000pt;}
.y2{bottom:3.520000pt;}
.y139{bottom:4.146667pt;}
.y124{bottom:4.160000pt;}
.y13b{bottom:4.306667pt;}
.y127{bottom:4.320000pt;}
.y160{bottom:4.346667pt;}
.y47{bottom:4.480000pt;}
.y6c{bottom:4.960000pt;}
.y3d{bottom:6.080000pt;}
.y165{bottom:6.226667pt;}
.y5{bottom:11.200000pt;}
.y141{bottom:11.386667pt;}
.y125{bottom:11.520000pt;}
.y136{bottom:12.306667pt;}
.y16a{bottom:13.426667pt;}
.y166{bottom:13.586667pt;}
.y6a{bottom:15.680000pt;}
.y61{bottom:16.640000pt;}
.y138{bottom:18.226667pt;}
.y13e{bottom:18.266667pt;}
.y3c{bottom:18.400000pt;}
.y13f{bottom:18.426667pt;}
.y6{bottom:19.520000pt;}
.y15e{bottom:19.666667pt;}
.y169{bottom:20.306667pt;}
.y164{bottom:20.466667pt;}
.y3{bottom:20.640000pt;}
.y13a{bottom:21.586667pt;}
.y4{bottom:21.920000pt;}
.y75{bottom:22.573333pt;}
.y167{bottom:22.866667pt;}
.y140{bottom:25.466667pt;}
.y135{bottom:26.386667pt;}
.y161{bottom:26.706667pt;}
.y60{bottom:27.680000pt;}
.y69{bottom:27.840000pt;}
.y3b{bottom:30.880000pt;}
.y13d{bottom:32.346667pt;}
.y15d{bottom:33.746667pt;}
.y68{bottom:39.360000pt;}
.y7f{bottom:41.760000pt;}
.y3a{bottom:42.240000pt;}
.y5f{bottom:43.520000pt;}
.y74{bottom:50.093333pt;}
.y67{bottom:50.880000pt;}
.y1{bottom:51.040000pt;}
.y7b{bottom:56.693333pt;}
.y5e{bottom:59.360000pt;}
.y73{bottom:61.773333pt;}
.y66{bottom:62.560000pt;}
.y72{bottom:73.293333pt;}
.y5d{bottom:75.200000pt;}
.y65{bottom:77.600000pt;}
.y71{bottom:84.973333pt;}
.y145{bottom:87.680000pt;}
.y171{bottom:87.840000pt;}
.y1b5{bottom:88.480000pt;}
.y5c{bottom:88.800000pt;}
.yb0{bottom:89.440000pt;}
.y188{bottom:92.160000pt;}
.y183{bottom:96.160000pt;}
.y70{bottom:96.493333pt;}
.y5b{bottom:100.000000pt;}
.y38{bottom:101.440000pt;}
.ye2{bottom:102.560000pt;}
.yde{bottom:102.720000pt;}
.y144{bottom:103.680000pt;}
.y1b4{bottom:103.840000pt;}
.y170{bottom:105.440000pt;}
.y113{bottom:106.240000pt;}
.yaf{bottom:107.040000pt;}
.y196{bottom:107.840000pt;}
.y6f{bottom:108.013333pt;}
.y187{bottom:109.760000pt;}
.y1eb{bottom:109.920000pt;}
.y21c{bottom:112.960000pt;}
.y182{bottom:113.760000pt;}
.y5a{bottom:115.840000pt;}
.y143{bottom:116.000000pt;}
.y37{bottom:119.040000pt;}
.y6e{bottom:119.053333pt;}
.y1b3{bottom:119.200000pt;}
.ye1{bottom:120.160000pt;}
.ydd{bottom:120.320000pt;}
.y16f{bottom:123.200000pt;}
.y112{bottom:123.840000pt;}
.y1ea{bottom:125.280000pt;}
.y195{bottom:125.440000pt;}
.yae{bottom:125.600000pt;}
.y186{bottom:127.360000pt;}
.y142{bottom:128.320000pt;}
.y181{bottom:131.520000pt;}
.y59{bottom:131.680000pt;}
.y1b2{bottom:134.560000pt;}
.y36{bottom:136.640000pt;}
.ydc{bottom:137.920000pt;}
.y13c{bottom:138.880000pt;}
.y16e{bottom:139.040000pt;}
.y1e9{bottom:140.640000pt;}
.y111{bottom:141.440000pt;}
.y194{bottom:143.200000pt;}
.y21b{bottom:143.680000pt;}
.yad{bottom:144.186667pt;}
.y185{bottom:144.986667pt;}
.ye0{bottom:146.746667pt;}
.y58{bottom:147.520000pt;}
.y180{bottom:149.146667pt;}
.y1b1{bottom:149.946667pt;}
.y35{bottom:154.266667pt;}
.ydb{bottom:155.546667pt;}
.y1e8{bottom:155.866667pt;}
.ydf{bottom:158.906667pt;}
.y21a{bottom:159.066667pt;}
.y110{bottom:159.226667pt;}
.y193{bottom:160.826667pt;}
.y184{bottom:162.746667pt;}
.y57{bottom:163.360000pt;}
.y1b0{bottom:165.146667pt;}
.y17f{bottom:166.746667pt;}
.y1e7{bottom:171.226667pt;}
.y34{bottom:172.026667pt;}
.yda{bottom:173.306667pt;}
.y219{bottom:174.266667pt;}
.y10f{bottom:176.826667pt;}
.y56{bottom:176.960000pt;}
.y192{bottom:178.426667pt;}
.yac{bottom:180.346667pt;}
.y1af{bottom:180.506667pt;}
.y134{bottom:181.800000pt;}
.y16d{bottom:182.746667pt;}
.y17e{bottom:184.346667pt;}
.y1e6{bottom:186.586667pt;}
.y55{bottom:188.186667pt;}
.y33{bottom:189.626667pt;}
.yd9{bottom:190.906667pt;}
.y16c{bottom:193.466667pt;}
.y10e{bottom:194.426667pt;}
.y191{bottom:196.026667pt;}
.y1ae{bottom:196.186667pt;}
.yab{bottom:197.946667pt;}
.y137{bottom:197.960000pt;}
.y17d{bottom:201.946667pt;}
.y16b{bottom:203.880000pt;}
.y54{bottom:204.026667pt;}
.y218{bottom:204.986667pt;}
.y32{bottom:207.226667pt;}
.yd8{bottom:208.506667pt;}
.y10d{bottom:212.026667pt;}
.y190{bottom:213.626667pt;}
.yaa{bottom:215.546667pt;}
.y1e5{bottom:217.306667pt;}
.y17c{bottom:219.706667pt;}
.y53{bottom:219.866667pt;}
.y217{bottom:220.346667pt;}
.y31{bottom:224.826667pt;}
.yd7{bottom:226.106667pt;}
.y10c{bottom:229.626667pt;}
.y18f{bottom:231.386667pt;}
.y133{bottom:231.546667pt;}
.y1ad{bottom:232.346667pt;}
.y1e4{bottom:232.666667pt;}
.ya9{bottom:233.146667pt;}
.y52{bottom:235.706667pt;}
.y168{bottom:237.160000pt;}
.y17b{bottom:237.306667pt;}
.y30{bottom:242.426667pt;}
.yd6{bottom:243.706667pt;}
.y132{bottom:246.746667pt;}
.y10b{bottom:247.386667pt;}
.y1e3{bottom:247.866667pt;}
.y18e{bottom:248.986667pt;}
.y1ac{bottom:250.106667pt;}
.ya8{bottom:250.906667pt;}
.y216{bottom:251.066667pt;}
.y51{bottom:251.546667pt;}
.y17a{bottom:254.906667pt;}
.y2f{bottom:260.186667pt;}
.yd5{bottom:261.466667pt;}
.y1e2{bottom:263.226667pt;}
.y131{bottom:264.346667pt;}
.y10a{bottom:264.986667pt;}
.y215{bottom:266.266667pt;}
.y18d{bottom:266.586667pt;}
.y50{bottom:267.386667pt;}
.ya7{bottom:268.506667pt;}
.y163{bottom:270.280000pt;}
.y179{bottom:272.506667pt;}
.y2e{bottom:277.786667pt;}
.y1e1{bottom:278.586667pt;}
.yd4{bottom:279.066667pt;}
.y214{bottom:281.626667pt;}
.y130{bottom:281.946667pt;}
.y109{bottom:282.586667pt;}
.y4f{bottom:283.386667pt;}
.y18c{bottom:284.186667pt;}
.ya6{bottom:286.106667pt;}
.y178{bottom:290.106667pt;}
.y1e0{bottom:293.946667pt;}
.y4e{bottom:295.226667pt;}
.y2d{bottom:295.386667pt;}
.yd3{bottom:296.666667pt;}
.y213{bottom:296.986667pt;}
.y12f{bottom:299.546667pt;}
.y108{bottom:300.186667pt;}
.y18b{bottom:301.786667pt;}
.y4d{bottom:303.066667pt;}
.y15c{bottom:303.400000pt;}
.ya5{bottom:303.706667pt;}
.y1ab{bottom:304.826667pt;}
.y177{bottom:307.866667pt;}
.y1df{bottom:309.306667pt;}
.y212{bottom:312.346667pt;}
.y2c{bottom:312.986667pt;}
.yd2{bottom:314.266667pt;}
.y12e{bottom:317.146667pt;}
.y107{bottom:317.786667pt;}
.y162{bottom:318.280000pt;}
.y4c{bottom:318.906667pt;}
.y18a{bottom:319.386667pt;}
.ya4{bottom:321.306667pt;}
.y1aa{bottom:322.426667pt;}
.y1de{bottom:324.666667pt;}
.y176{bottom:325.466667pt;}
.y211{bottom:327.706667pt;}
.y2b{bottom:330.586667pt;}
.yd1{bottom:331.866667pt;}
.y4b{bottom:334.746667pt;}
.y106{bottom:335.386667pt;}
.y189{bottom:337.946667pt;}
.ya3{bottom:339.066667pt;}
.y1dd{bottom:339.866667pt;}
.y1a9{bottom:340.026667pt;}
.y210{bottom:342.906667pt;}
.y175{bottom:343.066667pt;}
.y15f{bottom:348.360000pt;}
.y2a{bottom:349.186667pt;}
.yd0{bottom:349.666667pt;}
.y4a{bottom:350.586667pt;}
.y12d{bottom:350.946667pt;}
.y105{bottom:353.186667pt;}
.y1dc{bottom:355.266667pt;}
.ya2{bottom:356.706667pt;}
.y20f{bottom:358.306667pt;}
.y1a8{bottom:358.626667pt;}
.y174{bottom:360.706667pt;}
.y12c{bottom:363.266667pt;}
.y29{bottom:364.546667pt;}
.ycf{bottom:367.266667pt;}
.y15b{bottom:367.426667pt;}
.y1db{bottom:370.626667pt;}
.y104{bottom:370.786667pt;}
.y28{bottom:372.066667pt;}
.y49{bottom:372.546667pt;}
.y12b{bottom:373.666667pt;}
.ya1{bottom:374.306667pt;}
.y173{bottom:378.306667pt;}
.y15a{bottom:381.346667pt;}
.yce{bottom:384.866667pt;}
.y1da{bottom:385.986667pt;}
.y103{bottom:388.386667pt;}
.y12a{bottom:388.546667pt;}
.y20e{bottom:389.026667pt;}
.ya0{bottom:391.906667pt;}
.y27{bottom:393.186667pt;}
.y1a7{bottom:394.946667pt;}
.y172{bottom:396.066667pt;}
.y1d9{bottom:401.346667pt;}
.ycd{bottom:402.466667pt;}
.y128{bottom:403.266667pt;}
.y20d{bottom:404.386667pt;}
.y102{bottom:405.986667pt;}
.y9f{bottom:409.506667pt;}
.y1a6{bottom:412.546667pt;}
.y159{bottom:413.666667pt;}
.y26{bottom:414.306667pt;}
.y1d8{bottom:416.546667pt;}
.y129{bottom:417.986667pt;}
.y20c{bottom:419.746667pt;}
.ycc{bottom:420.066667pt;}
.y6d{bottom:421.493333pt;}
.y101{bottom:423.586667pt;}
.y9e{bottom:427.266667pt;}
.y1a5{bottom:430.146667pt;}
.y158{bottom:431.266667pt;}
.y1d7{bottom:431.906667pt;}
.y25{bottom:432.866667pt;}
.y20b{bottom:434.946667pt;}
.ycb{bottom:437.826667pt;}
.y100{bottom:441.346667pt;}
.y9d{bottom:444.866667pt;}
.y1d6{bottom:447.266667pt;}
.y126{bottom:447.586667pt;}
.y1a4{bottom:447.746667pt;}
.y157{bottom:448.866667pt;}
.y20a{bottom:450.306667pt;}
.y24{bottom:450.626667pt;}
.yca{bottom:455.426667pt;}
.yff{bottom:458.946667pt;}
.y9c{bottom:462.466667pt;}
.y1d5{bottom:462.626667pt;}
.y23{bottom:462.786667pt;}
.y123{bottom:463.746667pt;}
.y1a3{bottom:465.506667pt;}
.y209{bottom:465.666667pt;}
.y156{bottom:466.466667pt;}
.y22{bottom:470.466667pt;}
.yc9{bottom:473.026667pt;}
.yfe{bottom:476.546667pt;}
.y1d4{bottom:477.986667pt;}
.y9b{bottom:480.066667pt;}
.y208{bottom:481.026667pt;}
.y1a2{bottom:483.906667pt;}
.y155{bottom:484.226667pt;}
.y122{bottom:484.706667pt;}
.yc8{bottom:490.626667pt;}
.y21{bottom:491.266667pt;}
.y1d3{bottom:493.346667pt;}
.yfd{bottom:494.146667pt;}
.y207{bottom:496.386667pt;}
.y9a{bottom:497.666667pt;}
.y121{bottom:500.866667pt;}
.y154{bottom:501.826667pt;}
.yc7{bottom:508.226667pt;}
.y1d2{bottom:508.546667pt;}
.yfc{bottom:511.746667pt;}
.y20{bottom:511.906667pt;}
.y99{bottom:515.426667pt;}
.y120{bottom:518.786667pt;}
.y153{bottom:519.426667pt;}
.y1a1{bottom:520.226667pt;}
.y1d1{bottom:523.906667pt;}
.yc6{bottom:525.986667pt;}
.y206{bottom:526.946667pt;}
.yfb{bottom:529.506667pt;}
.y1f{bottom:532.546667pt;}
.y98{bottom:533.026667pt;}
.y11f{bottom:536.386667pt;}
.y152{bottom:537.026667pt;}
.y1a0{bottom:538.626667pt;}
.y1d0{bottom:539.266667pt;}
.y205{bottom:542.306667pt;}
.yc5{bottom:543.586667pt;}
.yfa{bottom:547.106667pt;}
.y97{bottom:550.626667pt;}
.y11e{bottom:554.013333pt;}
.y151{bottom:554.653333pt;}
.y204{bottom:557.693333pt;}
.y64{bottom:558.653333pt;}
.yc4{bottom:561.213333pt;}
.yf9{bottom:564.733333pt;}
.y96{bottom:568.253333pt;}
.y1cf{bottom:570.013333pt;}
.y11d{bottom:571.613333pt;}
.y150{bottom:572.413333pt;}
.y203{bottom:573.053333pt;}
.y19f{bottom:575.133333pt;}
.yc3{bottom:578.813333pt;}
.y1e{bottom:581.373333pt;}
.yf8{bottom:582.333333pt;}
.y1ce{bottom:585.373333pt;}
.y95{bottom:585.853333pt;}
.y202{bottom:588.413333pt;}
.y11c{bottom:589.373333pt;}
.y14f{bottom:590.013333pt;}
.y19e{bottom:592.733333pt;}
.y1d{bottom:595.133333pt;}
.yc2{bottom:596.413333pt;}
.yf7{bottom:599.933333pt;}
.y1cd{bottom:600.573333pt;}
.y94{bottom:603.613333pt;}
.y201{bottom:603.773333pt;}
.y11b{bottom:606.973333pt;}
.y14e{bottom:607.613333pt;}
.y1c{bottom:608.893333pt;}
.y19d{bottom:610.333333pt;}
.yc1{bottom:614.173333pt;}
.y1cc{bottom:615.933333pt;}
.yf6{bottom:617.693333pt;}
.y200{bottom:618.973333pt;}
.y93{bottom:621.213333pt;}
.y1b{bottom:622.813333pt;}
.y11a{bottom:624.573333pt;}
.y14d{bottom:625.213333pt;}
.y19c{bottom:628.733333pt;}
.y1cb{bottom:631.293333pt;}
.yc0{bottom:631.773333pt;}
.y1ff{bottom:634.333333pt;}
.yf5{bottom:635.293333pt;}
.y1a{bottom:636.573333pt;}
.y92{bottom:638.813333pt;}
.y14c{bottom:642.813333pt;}
.y119{bottom:642.973333pt;}
.y19{bottom:646.493333pt;}
.y1ca{bottom:646.653333pt;}
.ybf{bottom:649.373333pt;}
.y1fe{bottom:649.693333pt;}
.yf4{bottom:652.893333pt;}
.y39{bottom:654.173333pt;}
.y91{bottom:656.413333pt;}
.y18{bottom:658.493333pt;}
.y14b{bottom:660.573333pt;}
.y1c9{bottom:662.013333pt;}
.y19b{bottom:665.053333pt;}
.ybe{bottom:666.973333pt;}
.y17{bottom:670.013333pt;}
.yf3{bottom:670.493333pt;}
.y90{bottom:674.013333pt;}
.y1c8{bottom:677.213333pt;}
.y14a{bottom:678.173333pt;}
.y118{bottom:679.293333pt;}
.y1fd{bottom:680.413333pt;}
.y16{bottom:681.533333pt;}
.y19a{bottom:682.813333pt;}
.ybd{bottom:684.573333pt;}
.yf2{bottom:688.093333pt;}
.y8f{bottom:691.773333pt;}
.y1c7{bottom:692.573333pt;}
.y15{bottom:693.053333pt;}
.y1fc{bottom:695.613333pt;}
.y149{bottom:695.773333pt;}
.y117{bottom:697.053333pt;}
.y199{bottom:700.413333pt;}
.ybc{bottom:703.133333pt;}
.y14{bottom:705.373333pt;}
.yf1{bottom:705.853333pt;}
.y1c6{bottom:707.933333pt;}
.y8e{bottom:709.373333pt;}
.y1fb{bottom:710.973333pt;}
.y148{bottom:713.373333pt;}
.y116{bottom:714.653333pt;}
.y13{bottom:716.733333pt;}
.y198{bottom:718.813333pt;}
.ybb{bottom:720.573333pt;}
.y1c5{bottom:723.293333pt;}
.yf0{bottom:723.453333pt;}
.y1fa{bottom:726.333333pt;}
.y8d{bottom:726.973333pt;}
.yba{bottom:732.253333pt;}
.y1c4{bottom:738.653333pt;}
.y197{bottom:739.933333pt;}
.y12{bottom:740.573333pt;}
.yef{bottom:741.053333pt;}
.y1f9{bottom:741.693333pt;}
.y8c{bottom:744.573333pt;}
.y147{bottom:746.013333pt;}
.yb9{bottom:749.853333pt;}
.y11{bottom:750.493333pt;}
.y1c3{bottom:754.013333pt;}
.y1f8{bottom:757.053333pt;}
.yee{bottom:758.693333pt;}
.y146{bottom:759.653333pt;}
.y8b{bottom:762.213333pt;}
.yb8{bottom:767.493333pt;}
.y1c2{bottom:769.253333pt;}
.y10{bottom:772.133333pt;}
.y1f7{bottom:772.453333pt;}
.yed{bottom:776.293333pt;}
.y8a{bottom:779.973333pt;}
.y1c1{bottom:784.613333pt;}
.yb7{bottom:785.253333pt;}
.y1f6{bottom:787.653333pt;}
.yec{bottom:794.053333pt;}
.yf{bottom:794.213333pt;}
.y89{bottom:797.573333pt;}
.y1c0{bottom:799.973333pt;}
.yb6{bottom:802.853333pt;}
.y1f5{bottom:803.013333pt;}
.ye{bottom:807.653333pt;}
.yeb{bottom:811.653333pt;}
.y88{bottom:815.173333pt;}
.y1bf{bottom:815.333333pt;}
.yd{bottom:817.733333pt;}
.y1f4{bottom:818.373333pt;}
.yb5{bottom:820.453333pt;}
.y115{bottom:821.253333pt;}
.yea{bottom:829.253333pt;}
.y1be{bottom:830.693333pt;}
.y87{bottom:832.773333pt;}
.yc{bottom:833.413333pt;}
.y1f3{bottom:833.733333pt;}
.yb4{bottom:838.053333pt;}
.y114{bottom:838.853333pt;}
.y1bd{bottom:846.053333pt;}
.ye9{bottom:846.853333pt;}
.y1f2{bottom:849.093333pt;}
.y86{bottom:850.373333pt;}
.yb{bottom:852.613333pt;}
.yb3{bottom:855.653333pt;}
.y1bc{bottom:861.253333pt;}
.ye8{bottom:864.453333pt;}
.y85{bottom:868.133333pt;}
.ya{bottom:871.973333pt;}
.yb2{bottom:874.213333pt;}
.y1bb{bottom:876.613333pt;}
.y1f1{bottom:879.653333pt;}
.ye7{bottom:882.213333pt;}
.y84{bottom:885.733333pt;}
.yb1{bottom:891.653333pt;}
.y1ba{bottom:891.973333pt;}
.y1f0{bottom:895.013333pt;}
.y9{bottom:896.613333pt;}
.ye6{bottom:899.813333pt;}
.y83{bottom:903.333333pt;}
.y1b9{bottom:907.333333pt;}
.y1ef{bottom:910.373333pt;}
.ye5{bottom:917.413333pt;}
.y82{bottom:920.933333pt;}
.y8{bottom:921.093333pt;}
.y1b8{bottom:922.693333pt;}
.y1ee{bottom:925.733333pt;}
.ye4{bottom:935.013333pt;}
.y1b7{bottom:938.053333pt;}
.y81{bottom:938.533333pt;}
.y1ed{bottom:941.093333pt;}
.y7{bottom:945.093333pt;}
.ye3{bottom:953.413333pt;}
.y1b6{bottom:953.893333pt;}
.y80{bottom:956.133333pt;}
.y1ec{bottom:956.293333pt;}
.y6b{bottom:974.400000pt;}
.y7e{bottom:983.040000pt;}
.y7d{bottom:998.400000pt;}
.y46{bottom:1010.880000pt;}
.h6{height:5.025000pt;}
.h16{height:5.160000pt;}
.h40{height:5.562500pt;}
.h2{height:12.000000pt;}
.h32{height:14.066667pt;}
.h34{height:14.080000pt;}
.h3b{height:14.258667pt;}
.h1a{height:15.040000pt;}
.h23{height:19.680000pt;}
.h15{height:20.728125pt;}
.h2c{height:26.368125pt;}
.h1f{height:26.381250pt;}
.he{height:27.523125pt;}
.h31{height:27.628404pt;}
.hc{height:28.073883pt;}
.h36{height:28.146667pt;}
.h33{height:28.786667pt;}
.h3a{height:30.254687pt;}
.h4{height:30.400000pt;}
.h21{height:32.250000pt;}
.h3c{height:32.466667pt;}
.h3d{height:32.472000pt;}
.h3e{height:32.480000pt;}
.h13{height:35.114107pt;}
.h5{height:36.431250pt;}
.h22{height:37.410000pt;}
.h26{height:38.008125pt;}
.h2e{height:38.413438pt;}
.h29{height:39.096561pt;}
.h10{height:39.571875pt;}
.hb{height:40.103437pt;}
.h18{height:40.635000pt;}
.h11{height:41.442606pt;}
.h12{height:42.084375pt;}
.h37{height:42.272000pt;}
.h38{height:42.280000pt;}
.h1b{height:43.215000pt;}
.h35{height:44.306667pt;}
.h14{height:47.109375pt;}
.h1c{height:48.375000pt;}
.hf{height:49.148438pt;}
.h1e{height:49.336436pt;}
.h17{height:51.360000pt;}
.h28{height:52.108438pt;}
.h3{height:52.134375pt;}
.h2d{height:53.535000pt;}
.h30{height:54.598989pt;}
.h2f{height:57.758750pt;}
.h2a{height:57.787500pt;}
.ha{height:58.530000pt;}
.h19{height:58.563750pt;}
.h39{height:59.218667pt;}
.hd{height:60.288750pt;}
.h2b{height:62.781250pt;}
.h3f{height:62.812500pt;}
.h9{height:64.500000pt;}
.h24{height:66.625000pt;}
.h27{height:66.750000pt;}
.h7{height:77.951250pt;}
.h20{height:84.800000pt;}
.h8{height:85.785000pt;}
.h25{height:128.800000pt;}
.h1d{height:361.480000pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.we{width:53.906667pt;}
.w18{width:66.098667pt;}
.wf{width:71.666667pt;}
.w11{width:71.986667pt;}
.w19{width:72.000000pt;}
.w10{width:72.018667pt;}
.w3{width:72.952000pt;}
.w17{width:77.952000pt;}
.w1a{width:77.960000pt;}
.w15{width:80.952000pt;}
.w12{width:84.026667pt;}
.w13{width:84.032000pt;}
.w14{width:84.040000pt;}
.wc{width:98.746667pt;}
.w5{width:137.306667pt;}
.w16{width:138.093333pt;}
.wd{width:141.133333pt;}
.wa{width:160.346667pt;}
.w8{width:162.266667pt;}
.wb{width:195.053333pt;}
.w7{width:473.706667pt;}
.w4{width:568.760000pt;}
.w2{width:641.720000pt;}
.w9{width:660.600000pt;}
.w6{width:664.120000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x37{left:3.780000pt;}
.x2{left:7.192000pt;}
.x29{left:8.186667pt;}
.x12{left:9.592000pt;}
.x2e{left:11.386667pt;}
.x28{left:12.346667pt;}
.x33{left:13.906667pt;}
.x2b{left:15.360000pt;}
.x35{left:17.600000pt;}
.x18{left:18.893333pt;}
.x2f{left:20.360000pt;}
.x36{left:23.360000pt;}
.x26{left:25.120000pt;}
.x25{left:29.786667pt;}
.x2d{left:33.466667pt;}
.x23{left:36.186667pt;}
.x3{left:65.746667pt;}
.x15{left:71.560000pt;}
.x13{left:72.680000pt;}
.x11{left:82.760000pt;}
.x17{left:84.360000pt;}
.x1{left:96.040000pt;}
.x1f{left:105.952000pt;}
.x1a{left:112.032000pt;}
.x1e{left:114.112000pt;}
.xe{left:117.952000pt;}
.xc{left:126.592000pt;}
.x6{left:129.792000pt;}
.x7{left:142.906667pt;}
.x30{left:151.866667pt;}
.xd{left:164.826667pt;}
.x4{left:169.000000pt;}
.x31{left:177.000000pt;}
.x1b{left:203.866667pt;}
.x1c{left:207.226667pt;}
.x34{left:243.106667pt;}
.xa{left:260.706667pt;}
.x14{left:269.506667pt;}
.x16{left:275.866667pt;}
.x8{left:306.306667pt;}
.x32{left:315.106667pt;}
.x21{left:336.706667pt;}
.x9{left:393.853333pt;}
.x1d{left:394.813333pt;}
.x5{left:396.893333pt;}
.xb{left:408.093333pt;}
.xf{left:434.813333pt;}
.x10{left:436.253333pt;}
.x27{left:507.946667pt;}
.x19{left:551.336000pt;}
.x24{left:577.413333pt;}
.x2a{left:579.973333pt;}
.x22{left:631.333333pt;}
.x2c{left:651.973333pt;}
.x20{left:754.080000pt;}
}




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