
    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_cb831bfc45030f6d94299355.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_38919d14553635c375fd933d.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2006ba2e3105daf230a4c128.woff')format("woff");}.ff3{font-family:ff3;line-height:0.739746;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_8ed05f75d22e54fc48048a57.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_115b066a16f908d1395f8ca5.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2708fd9fd160649447b04223.woff')format("woff");}.ff6{font-family:ff6;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_67c29f39832adbe3a34a4010.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_54383ec68b3bc8b8155d7816.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f6277a71d201d0019bfc57a2.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_b1df2b632410c562ab33a98c.woff')format("woff");}.ffc{font-family:ffc;line-height:1.091309;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_17bbfb3f72a322b1797cf915.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_0f31720e86d7001c818442b7.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_9b03f4b4327374dcb79e06db.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_d3276f52b85f2f81953d6c47.woff')format("woff");}.ff10{font-family:ff10;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;}
.v1{vertical-align:23.760000px;}
.ls10{letter-spacing:-1.440000px;}
.lsd{letter-spacing:-0.810000px;}
.lsa{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.178800px;}
.lsf{letter-spacing:-0.053280px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.018000px;}
.ls16{letter-spacing:0.053280px;}
.ls11{letter-spacing:0.108000px;}
.ls14{letter-spacing:0.135600px;}
.ls2{letter-spacing:0.144720px;}
.ls8{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.181200px;}
.ls13{letter-spacing:0.259800px;}
.ls15{letter-spacing:0.259920px;}
.ls3{letter-spacing:0.270720px;}
.ls9{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.493920px;}
.ls5{letter-spacing:0.900000px;}
.ls12{letter-spacing:36.149760px;}
.ls1{letter-spacing:47.700000px;}
.ls0{letter-spacing:71.280000px;}
.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;}
.wsc{word-spacing:-16.560000px;}
.ws11{word-spacing:-15.300000px;}
.ws12{word-spacing:-15.199800px;}
.ws13{word-spacing:-14.993280px;}
.wsb{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.886720px;}
.ws14{word-spacing:-14.220000px;}
.wsa{word-spacing:-13.860000px;}
.ws5{word-spacing:-13.500000px;}
.wsf{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.241200px;}
.wse{word-spacing:-12.060000px;}
.ws2{word-spacing:-11.700000px;}
.ws3{word-spacing:-11.340000px;}
.ws7{word-spacing:-10.440000px;}
.ws8{word-spacing:-10.261200px;}
.ws6{word-spacing:-9.000000px;}
.ws1{word-spacing:-7.560000px;}
.ws9{word-spacing:0.000000px;}
.ws0{word-spacing:60.840000px;}
._5{margin-left:-59.580000px;}
._29{margin-left:-4.330800px;}
._14{margin-left:-3.167280px;}
._2{margin-left:-1.656000px;}
._0{width:1.044000px;}
._1{width:2.424480px;}
._9{width:3.525840px;}
._15{width:4.960080px;}
._11{width:6.334560px;}
._12{width:7.737600px;}
._d{width:9.621360px;}
._e{width:10.756800px;}
._13{width:11.966400px;}
._a{width:13.206960px;}
._1b{width:14.343840px;}
._1e{width:15.476160px;}
._c{width:16.525440px;}
._b{width:18.508320px;}
._f{width:19.780560px;}
._10{width:21.323520px;}
._18{width:22.382400px;}
._2d{width:23.485680px;}
._25{width:24.501600px;}
._1d{width:26.503200px;}
._1c{width:27.812160px;}
._23{width:29.342160px;}
._26{width:31.314240px;}
._21{width:32.552640px;}
._1a{width:33.661440px;}
._19{width:35.389920px;}
._8{width:37.262160px;}
._24{width:38.481840px;}
._2f{width:39.575520px;}
._31{width:40.577040px;}
._22{width:42.310080px;}
._2a{width:43.983360px;}
._16{width:45.267840px;}
._17{width:46.311840px;}
._2e{width:47.332080px;}
._32{width:49.600800px;}
._27{width:50.855760px;}
._28{width:52.624080px;}
._2c{width:54.501120px;}
._37{width:55.696320px;}
._30{width:56.951280px;}
._3b{width:58.656240px;}
._20{width:61.331520px;}
._36{width:64.442400px;}
._3{width:65.496000px;}
._33{width:66.512880px;}
._2b{width:70.981200px;}
._3d{width:73.684080px;}
._7{width:74.819520px;}
._38{width:87.070320px;}
._3c{width:89.580240px;}
._3a{width:99.380880px;}
._39{width:100.479600px;}
._34{width:115.038000px;}
._35{width:118.208880px;}
._4{width:199.620000px;}
._1f{width:282.270000px;}
._6{width:755.976000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:5.760000px;}
.fs11{font-size:6.000000px;}
.fsd{font-size:18.000000px;}
.fsc{font-size:23.760000px;}
.fs8{font-size:30.240000px;}
.fse{font-size:36.000000px;}
.fsb{font-size:37.946952px;}
.fs1{font-size:41.760000px;}
.fs7{font-size:45.360000px;}
.fs9{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs10{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsf{font-size:62.991941px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.y47{bottom:-247.710000px;}
.y46{bottom:-214.050000px;}
.y45{bottom:-180.390000px;}
.y7e{bottom:-156.450000px;}
.y44{bottom:-146.550000px;}
.y7d{bottom:-122.610000px;}
.y43{bottom:-112.860000px;}
.y7c{bottom:-88.905000px;}
.y42{bottom:-79.020000px;}
.y7b{bottom:-55.065000px;}
.y41{bottom:-45.360000px;}
.y4a{bottom:-27.180000px;}
.y7a{bottom:-21.405000px;}
.y80{bottom:-17.922750px;}
.y40{bottom:-11.520000px;}
.y0{bottom:0.000000px;}
.y23b{bottom:1.837500px;}
.y66{bottom:2.535000px;}
.y3{bottom:3.960000px;}
.y12d{bottom:4.665000px;}
.y134{bottom:4.680000px;}
.y12e{bottom:4.845000px;}
.y132{bottom:4.860000px;}
.y14f{bottom:4.875000px;}
.y130{bottom:5.025000px;}
.y49{bottom:5.040000px;}
.y6f{bottom:5.580000px;}
.y12b{bottom:6.480000px;}
.y3f{bottom:6.660000px;}
.y16e{bottom:8.820000px;}
.y15d{bottom:9.165000px;}
.y16c{bottom:9.180000px;}
.y152{bottom:11.145000px;}
.y169{bottom:11.700000px;}
.y79{bottom:12.255000px;}
.y6{bottom:12.600000px;}
.y15a{bottom:12.765000px;}
.y155{bottom:13.125000px;}
.y167{bottom:16.380000px;}
.y15e{bottom:17.085000px;}
.y6d{bottom:17.640000px;}
.y65{bottom:17.835000px;}
.y14b{bottom:18.555000px;}
.y14e{bottom:18.735000px;}
.y153{bottom:19.065000px;}
.y160{bottom:20.685000px;}
.y3e{bottom:20.700000px;}
.y158{bottom:20.865000px;}
.y7{bottom:21.960000px;}
.y4{bottom:23.220000px;}
.y5{bottom:24.660000px;}
.y15c{bottom:25.005000px;}
.y148{bottom:25.560000px;}
.y151{bottom:26.985000px;}
.y64{bottom:30.255000px;}
.y6c{bottom:31.320000px;}
.y149{bottom:32.580000px;}
.y14d{bottom:32.595000px;}
.y3d{bottom:34.740000px;}
.y157{bottom:36.705000px;}
.y78{bottom:43.215000px;}
.y6b{bottom:44.280000px;}
.y14c{bottom:46.440000px;}
.y82{bottom:46.980000px;}
.y3c{bottom:47.340000px;}
.y63{bottom:48.075000px;}
.y77{bottom:56.355000px;}
.y6a{bottom:57.240000px;}
.y2{bottom:57.420000px;}
.y7f{bottom:63.780000px;}
.y62{bottom:66.075000px;}
.y76{bottom:69.315000px;}
.y69{bottom:70.380000px;}
.y61{bottom:79.215000px;}
.y75{bottom:82.455000px;}
.y68{bottom:87.300000px;}
.y60{bottom:88.215000px;}
.y74{bottom:95.415000px;}
.y194{bottom:101.160000px;}
.yb4{bottom:103.680000px;}
.y216{bottom:104.940000px;}
.y101{bottom:105.660000px;}
.y5f{bottom:106.035000px;}
.y128{bottom:107.460000px;}
.y73{bottom:108.375000px;}
.y163{bottom:108.540000px;}
.y3a{bottom:112.320000px;}
.yd0{bottom:113.400000px;}
.y1e6{bottom:117.180000px;}
.y193{bottom:120.960000px;}
.y72{bottom:121.515000px;}
.yb3{bottom:123.480000px;}
.y5e{bottom:123.855000px;}
.y215{bottom:124.740000px;}
.y1b4{bottom:124.920000px;}
.y100{bottom:125.460000px;}
.ycf{bottom:126.360000px;}
.y127{bottom:127.260000px;}
.y39{bottom:132.300000px;}
.y71{bottom:133.755000px;}
.y1e5{bottom:136.980000px;}
.y192{bottom:140.760000px;}
.y162{bottom:141.480000px;}
.y5d{bottom:141.675000px;}
.yb2{bottom:143.280000px;}
.y214{bottom:144.540000px;}
.y1b3{bottom:144.720000px;}
.y23a{bottom:145.080000px;}
.yff{bottom:145.260000px;}
.yce{bottom:146.340000px;}
.y126{bottom:147.060000px;}
.y38{bottom:152.100000px;}
.y161{bottom:153.540000px;}
.y1e4{bottom:156.780000px;}
.y5c{bottom:159.495000px;}
.y191{bottom:160.560000px;}
.yb1{bottom:163.110000px;}
.y1b2{bottom:164.550000px;}
.yfe{bottom:165.090000px;}
.y15f{bottom:165.285000px;}
.y213{bottom:165.450000px;}
.ycd{bottom:166.170000px;}
.y125{bottom:167.070000px;}
.y37{bottom:171.930000px;}
.y1e3{bottom:176.610000px;}
.y5b{bottom:177.495000px;}
.y190{bottom:180.570000px;}
.yb0{bottom:183.090000px;}
.y1b1{bottom:184.530000px;}
.yfd{bottom:185.070000px;}
.y239{bottom:185.790000px;}
.ycc{bottom:185.970000px;}
.y124{bottom:187.770000px;}
.y212{bottom:189.210000px;}
.y36{bottom:191.730000px;}
.y5a{bottom:195.315000px;}
.y1e2{bottom:196.590000px;}
.y15b{bottom:197.865000px;}
.y18f{bottom:200.370000px;}
.yaf{bottom:202.890000px;}
.y1b0{bottom:204.330000px;}
.yfc{bottom:204.870000px;}
.ycb{bottom:205.770000px;}
.y35{bottom:211.530000px;}
.y59{bottom:213.135000px;}
.y1e1{bottom:216.390000px;}
.y18e{bottom:220.170000px;}
.yae{bottom:222.690000px;}
.y1af{bottom:224.130000px;}
.yca{bottom:225.570000px;}
.y123{bottom:228.630000px;}
.y211{bottom:230.070000px;}
.y58{bottom:230.985000px;}
.y34{bottom:231.510000px;}
.y1e0{bottom:236.190000px;}
.y159{bottom:238.905000px;}
.y18d{bottom:239.970000px;}
.yad{bottom:242.490000px;}
.y1ae{bottom:243.930000px;}
.y57{bottom:244.305000px;}
.yfb{bottom:245.190000px;}
.y238{bottom:245.370000px;}
.yc9{bottom:245.550000px;}
.y122{bottom:248.430000px;}
.y210{bottom:249.870000px;}
.y33{bottom:251.310000px;}
.y56{bottom:253.125000px;}
.y1df{bottom:255.990000px;}
.yfa{bottom:258.330000px;}
.y18c{bottom:259.770000px;}
.yac{bottom:262.290000px;}
.y1ad{bottom:263.730000px;}
.y237{bottom:265.170000px;}
.yc8{bottom:265.350000px;}
.y121{bottom:268.230000px;}
.y20f{bottom:269.670000px;}
.y55{bottom:270.945000px;}
.y32{bottom:271.110000px;}
.y156{bottom:271.305000px;}
.y1de{bottom:275.790000px;}
.yf9{bottom:278.310000px;}
.y18b{bottom:279.750000px;}
.yab{bottom:282.270000px;}
.y1ac{bottom:283.710000px;}
.yc7{bottom:285.150000px;}
.y236{bottom:285.870000px;}
.y120{bottom:288.210000px;}
.y54{bottom:288.945000px;}
.y20e{bottom:289.650000px;}
.y31{bottom:290.910000px;}
.y1dd{bottom:295.770000px;}
.yf8{bottom:298.110000px;}
.y18a{bottom:299.550000px;}
.yaa{bottom:302.070000px;}
.y1ab{bottom:303.510000px;}
.yc6{bottom:304.950000px;}
.y53{bottom:306.765000px;}
.y11f{bottom:308.010000px;}
.y20d{bottom:309.450000px;}
.y30{bottom:310.710000px;}
.y1dc{bottom:315.570000px;}
.yf7{bottom:317.910000px;}
.y189{bottom:319.350000px;}
.y154{bottom:319.725000px;}
.ya9{bottom:321.870000px;}
.y1aa{bottom:323.310000px;}
.y52{bottom:324.585000px;}
.yc5{bottom:324.750000px;}
.y235{bottom:326.910000px;}
.y11e{bottom:327.810000px;}
.y20c{bottom:329.250000px;}
.y2f{bottom:330.690000px;}
.y1db{bottom:335.370000px;}
.yf6{bottom:337.710000px;}
.y188{bottom:339.150000px;}
.ya8{bottom:341.670000px;}
.y51{bottom:342.405000px;}
.y1a9{bottom:343.110000px;}
.yc4{bottom:344.730000px;}
.y234{bottom:346.710000px;}
.y11d{bottom:347.610000px;}
.y20b{bottom:349.050000px;}
.y2e{bottom:350.490000px;}
.y150{bottom:352.845000px;}
.y1da{bottom:355.170000px;}
.y50{bottom:355.725000px;}
.yf5{bottom:357.510000px;}
.y187{bottom:358.950000px;}
.ya7{bottom:361.470000px;}
.y1a8{bottom:362.910000px;}
.yc3{bottom:364.530000px;}
.y4f{bottom:364.545000px;}
.y233{bottom:366.510000px;}
.y11c{bottom:367.410000px;}
.y20a{bottom:368.850000px;}
.y2d{bottom:371.190000px;}
.y1d9{bottom:374.970000px;}
.yf4{bottom:377.310000px;}
.y186{bottom:378.930000px;}
.ya6{bottom:381.450000px;}
.y4e{bottom:382.365000px;}
.y1a7{bottom:382.890000px;}
.yc2{bottom:384.330000px;}
.y232{bottom:387.210000px;}
.y11b{bottom:387.390000px;}
.y2c{bottom:388.470000px;}
.y209{bottom:388.830000px;}
.y1d8{bottom:394.995000px;}
.y2b{bottom:396.975000px;}
.yf3{bottom:397.335000px;}
.y185{bottom:398.775000px;}
.y14a{bottom:399.300000px;}
.y147{bottom:399.315000px;}
.y4d{bottom:400.365000px;}
.ya5{bottom:401.295000px;}
.y1a6{bottom:402.735000px;}
.y4b{bottom:403.080000px;}
.yc1{bottom:404.175000px;}
.y11a{bottom:407.235000px;}
.y208{bottom:408.675000px;}
.y1d7{bottom:414.795000px;}
.y2a{bottom:415.335000px;}
.yf2{bottom:417.135000px;}
.y4c{bottom:418.185000px;}
.y184{bottom:418.575000px;}
.ya4{bottom:421.095000px;}
.y1a5{bottom:422.535000px;}
.yc0{bottom:423.975000px;}
.y29{bottom:426.855000px;}
.y119{bottom:427.035000px;}
.y231{bottom:428.115000px;}
.y207{bottom:428.475000px;}
.y1d6{bottom:434.595000px;}
.yf1{bottom:436.935000px;}
.y183{bottom:438.375000px;}
.ya3{bottom:440.895000px;}
.y1a4{bottom:442.335000px;}
.ybf{bottom:443.955000px;}
.y118{bottom:446.835000px;}
.y230{bottom:448.095000px;}
.y206{bottom:449.175000px;}
.y28{bottom:450.615000px;}
.y1d5{bottom:454.395000px;}
.yf0{bottom:456.735000px;}
.y182{bottom:458.175000px;}
.ya2{bottom:460.695000px;}
.y146{bottom:462.135000px;}
.ybe{bottom:464.655000px;}
.y117{bottom:466.635000px;}
.y22f{bottom:467.895000px;}
.y1d4{bottom:474.195000px;}
.y27{bottom:474.375000px;}
.yef{bottom:476.535000px;}
.y181{bottom:478.155000px;}
.y145{bottom:480.315000px;}
.ya1{bottom:480.675000px;}
.y1a3{bottom:482.115000px;}
.y70{bottom:482.460000px;}
.ybd{bottom:484.275000px;}
.y116{bottom:486.615000px;}
.y22e{bottom:487.695000px;}
.y205{bottom:490.035000px;}
.y1d3{bottom:494.175000px;}
.y26{bottom:495.255000px;}
.yee{bottom:496.515000px;}
.ybc{bottom:497.415000px;}
.y180{bottom:497.955000px;}
.ya0{bottom:500.475000px;}
.y144{bottom:501.735000px;}
.y1a2{bottom:501.915000px;}
.y115{bottom:506.415000px;}
.y22d{bottom:507.495000px;}
.y204{bottom:510.015000px;}
.y1d2{bottom:513.975000px;}
.y25{bottom:515.055000px;}
.yed{bottom:516.315000px;}
.ybb{bottom:517.215000px;}
.y17f{bottom:517.755000px;}
.y9f{bottom:520.275000px;}
.y143{bottom:521.535000px;}
.y1a1{bottom:521.715000px;}
.y114{bottom:526.215000px;}
.y22c{bottom:527.295000px;}
.y24{bottom:528.915000px;}
.y203{bottom:529.815000px;}
.y1d1{bottom:533.775000px;}
.yec{bottom:536.115000px;}
.yba{bottom:537.015000px;}
.y23{bottom:537.555000px;}
.y9e{bottom:540.075000px;}
.y142{bottom:541.515000px;}
.y113{bottom:546.015000px;}
.y22b{bottom:547.275000px;}
.y202{bottom:549.615000px;}
.y1d0{bottom:553.575000px;}
.yeb{bottom:555.915000px;}
.yb9{bottom:556.995000px;}
.y17e{bottom:557.355000px;}
.y9d{bottom:559.875000px;}
.y22{bottom:560.775000px;}
.y141{bottom:561.315000px;}
.y112{bottom:565.815000px;}
.y22a{bottom:567.975000px;}
.y201{bottom:569.415000px;}
.y1cf{bottom:573.375000px;}
.yea{bottom:575.715000px;}
.yb8{bottom:576.795000px;}
.y17d{bottom:577.335000px;}
.y9c{bottom:579.855000px;}
.y140{bottom:581.115000px;}
.y1a0{bottom:581.295000px;}
.y21{bottom:584.175000px;}
.y111{bottom:585.795000px;}
.y200{bottom:589.215000px;}
.y1ce{bottom:593.355000px;}
.ye9{bottom:595.695000px;}
.yb7{bottom:596.595000px;}
.y17c{bottom:597.135000px;}
.y9b{bottom:599.655000px;}
.y19f{bottom:601.095000px;}
.y13f{bottom:603.435000px;}
.y110{bottom:605.595000px;}
.y20{bottom:607.395000px;}
.y229{bottom:608.835000px;}
.y1ff{bottom:609.195000px;}
.y1cd{bottom:613.155000px;}
.ye8{bottom:615.495000px;}
.y17b{bottom:616.935000px;}
.yb6{bottom:617.295000px;}
.y9a{bottom:619.455000px;}
.y19e{bottom:620.895000px;}
.y10f{bottom:625.425000px;}
.y13e{bottom:626.865000px;}
.y228{bottom:628.665000px;}
.y1fe{bottom:629.025000px;}
.y1cc{bottom:632.985000px;}
.ye7{bottom:635.325000px;}
.y67{bottom:636.765000px;}
.yb5{bottom:638.205000px;}
.y99{bottom:639.285000px;}
.y19d{bottom:640.725000px;}
.y13d{bottom:640.905000px;}
.y10e{bottom:645.225000px;}
.y227{bottom:648.465000px;}
.y1fd{bottom:648.825000px;}
.y13c{bottom:652.605000px;}
.y1cb{bottom:652.785000px;}
.ye6{bottom:655.125000px;}
.y17a{bottom:656.565000px;}
.y98{bottom:659.085000px;}
.y19c{bottom:660.525000px;}
.y1f{bottom:662.325000px;}
.y10d{bottom:665.025000px;}
.y226{bottom:668.445000px;}
.y1fc{bottom:668.625000px;}
.y13b{bottom:669.165000px;}
.y1ca{bottom:672.585000px;}
.ye5{bottom:674.925000px;}
.y179{bottom:676.545000px;}
.y1e{bottom:677.805000px;}
.y97{bottom:679.065000px;}
.y19b{bottom:680.505000px;}
.y10c{bottom:685.005000px;}
.y13a{bottom:685.905000px;}
.y1fb{bottom:688.425000px;}
.y225{bottom:689.145000px;}
.y1c9{bottom:692.565000px;}
.y1d{bottom:693.285000px;}
.ye4{bottom:694.905000px;}
.y178{bottom:696.345000px;}
.y96{bottom:698.865000px;}
.y19a{bottom:700.305000px;}
.y139{bottom:702.465000px;}
.y10b{bottom:704.805000px;}
.y1fa{bottom:708.405000px;}
.y1c{bottom:708.765000px;}
.y1c8{bottom:712.365000px;}
.ye3{bottom:714.705000px;}
.y177{bottom:716.145000px;}
.y95{bottom:718.665000px;}
.y138{bottom:719.025000px;}
.y199{bottom:720.105000px;}
.y1b{bottom:724.425000px;}
.y10a{bottom:724.605000px;}
.y1f9{bottom:728.205000px;}
.y224{bottom:730.005000px;}
.y1c7{bottom:732.165000px;}
.ye2{bottom:734.505000px;}
.y1a{bottom:735.405000px;}
.y137{bottom:735.765000px;}
.y176{bottom:735.945000px;}
.y94{bottom:738.465000px;}
.y198{bottom:739.905000px;}
.y3b{bottom:744.225000px;}
.y109{bottom:744.405000px;}
.y1f8{bottom:748.005000px;}
.y19{bottom:749.085000px;}
.y223{bottom:749.805000px;}
.y1c6{bottom:751.965000px;}
.y136{bottom:752.325000px;}
.ye1{bottom:754.305000px;}
.y175{bottom:755.745000px;}
.y93{bottom:758.265000px;}
.y197{bottom:759.705000px;}
.y18{bottom:762.045000px;}
.y108{bottom:764.205000px;}
.y1f7{bottom:767.805000px;}
.y135{bottom:768.885000px;}
.y222{bottom:769.605000px;}
.y1c5{bottom:771.765000px;}
.ye0{bottom:774.105000px;}
.y17{bottom:775.005000px;}
.y174{bottom:776.625000px;}
.y92{bottom:778.245000px;}
.y196{bottom:780.945000px;}
.y107{bottom:784.185000px;}
.y133{bottom:785.625000px;}
.y1f6{bottom:787.605000px;}
.y16{bottom:787.965000px;}
.y221{bottom:789.585000px;}
.y1c4{bottom:791.745000px;}
.ydf{bottom:794.085000px;}
.y91{bottom:798.045000px;}
.y173{bottom:800.385000px;}
.y15{bottom:801.645000px;}
.y131{bottom:802.185000px;}
.y195{bottom:803.445000px;}
.y106{bottom:803.985000px;}
.y1f5{bottom:807.585000px;}
.y220{bottom:809.385000px;}
.y1c3{bottom:811.545000px;}
.yde{bottom:813.885000px;}
.y14{bottom:814.605000px;}
.y90{bottom:817.845000px;}
.y12f{bottom:818.760000px;}
.y105{bottom:823.785000px;}
.y172{bottom:824.145000px;}
.y1f4{bottom:827.385000px;}
.y21f{bottom:829.185000px;}
.y1c2{bottom:831.345000px;}
.ydd{bottom:833.685000px;}
.y12c{bottom:835.500000px;}
.y8f{bottom:837.645000px;}
.y13{bottom:841.425000px;}
.y171{bottom:843.405000px;}
.y104{bottom:843.585000px;}
.y1f3{bottom:847.185000px;}
.y21e{bottom:848.985000px;}
.y1c1{bottom:851.145000px;}
.y12{bottom:852.585000px;}
.ydc{bottom:853.530000px;}
.y170{bottom:855.510000px;}
.y8e{bottom:857.490000px;}
.y103{bottom:864.330000px;}
.y1f2{bottom:867.030000px;}
.y16f{bottom:867.390000px;}
.y21d{bottom:868.830000px;}
.y1c0{bottom:870.990000px;}
.ydb{bottom:873.330000px;}
.y11{bottom:875.310000px;}
.y8d{bottom:877.470000px;}
.y12a{bottom:880.890000px;}
.y102{bottom:884.310000px;}
.y1f1{bottom:886.830000px;}
.y21c{bottom:888.810000px;}
.y1bf{bottom:890.970000px;}
.yda{bottom:893.310000px;}
.y16d{bottom:894.390000px;}
.y10{bottom:894.930000px;}
.y8c{bottom:897.270000px;}
.y129{bottom:898.710000px;}
.y1f0{bottom:906.810000px;}
.y21b{bottom:908.610000px;}
.y1be{bottom:910.770000px;}
.yd9{bottom:913.110000px;}
.yf{bottom:914.370000px;}
.y8b{bottom:917.070000px;}
.y16b{bottom:920.670000px;}
.y1ef{bottom:926.610000px;}
.y21a{bottom:928.410000px;}
.ye{bottom:929.310000px;}
.y1bd{bottom:930.570000px;}
.yd8{bottom:932.910000px;}
.y8a{bottom:936.870000px;}
.yd{bottom:940.650000px;}
.y1ee{bottom:946.410000px;}
.y16a{bottom:947.670000px;}
.y219{bottom:948.210000px;}
.y1bc{bottom:950.370000px;}
.yd7{bottom:952.710000px;}
.y89{bottom:956.670000px;}
.yc{bottom:958.290000px;}
.y1ed{bottom:966.210000px;}
.y218{bottom:968.010000px;}
.y1bb{bottom:970.170000px;}
.yd6{bottom:972.510000px;}
.y88{bottom:976.650000px;}
.yb{bottom:980.970000px;}
.y168{bottom:981.510000px;}
.y1ec{bottom:986.010000px;}
.y217{bottom:988.890000px;}
.y1ba{bottom:990.150000px;}
.yd5{bottom:992.490000px;}
.y87{bottom:996.450000px;}
.y1eb{bottom:1005.990000px;}
.ya{bottom:1008.690000px;}
.y1b9{bottom:1009.950000px;}
.yd4{bottom:1012.290000px;}
.y166{bottom:1015.170000px;}
.y86{bottom:1016.250000px;}
.y1ea{bottom:1025.790000px;}
.y1b8{bottom:1029.750000px;}
.yd3{bottom:1032.090000px;}
.y85{bottom:1036.050000px;}
.y9{bottom:1036.230000px;}
.y1e9{bottom:1045.590000px;}
.y1b7{bottom:1049.550000px;}
.yd2{bottom:1051.890000px;}
.y84{bottom:1055.850000px;}
.y165{bottom:1061.610000px;}
.y8{bottom:1063.230000px;}
.y1e8{bottom:1065.390000px;}
.y1b6{bottom:1069.350000px;}
.yd1{bottom:1072.590000px;}
.y83{bottom:1075.650000px;}
.y164{bottom:1077.090000px;}
.y1e7{bottom:1086.120000px;}
.y1b5{bottom:1089.180000px;}
.y6e{bottom:1096.200000px;}
.y1{bottom:1121.220000px;}
.y81{bottom:1123.200000px;}
.y48{bottom:1137.240000px;}
.h7{height:5.653125px;}
.h18{height:5.805000px;}
.h42{height:6.257812px;}
.h3{height:13.500000px;}
.h2f{height:15.825000px;}
.h31{height:15.840000px;}
.h30{height:16.005000px;}
.h32{height:16.020000px;}
.h1b{height:16.920000px;}
.h17{height:18.140625px;}
.h2e{height:19.425000px;}
.h23{height:22.140000px;}
.h16{height:23.319141px;}
.h40{height:25.545000px;}
.h3f{height:26.265000px;}
.h2b{height:29.664141px;}
.hc{height:29.678906px;}
.h10{height:30.963516px;}
.h2d{height:31.081955px;}
.h3d{height:31.485000px;}
.h3a{height:31.665000px;}
.h38{height:32.385000px;}
.h3e{height:32.925000px;}
.h5{height:34.200000px;}
.h21{height:36.281250px;}
.h14{height:39.503370px;}
.h3b{height:40.305000px;}
.h6{height:40.985156px;}
.h3c{height:41.025000px;}
.h22{height:42.086250px;}
.h28{height:43.737568px;}
.h37{height:44.301000px;}
.h12{height:44.518359px;}
.hb{height:45.116367px;}
.h1a{height:45.714375px;}
.h13{height:46.622932px;}
.hd{height:47.344922px;}
.h39{height:47.685000px;}
.h1c{height:48.616875px;}
.h2c{height:52.319180px;}
.h15{height:52.998047px;}
.h1d{height:54.421875px;}
.h11{height:55.291992px;}
.h1f{height:55.503491px;}
.h34{height:57.405000px;}
.h35{height:57.415500px;}
.h36{height:57.420000px;}
.h19{height:57.600000px;}
.h27{height:58.621992px;}
.h4{height:58.651172px;}
.h29{height:60.226875px;}
.ha{height:65.010937px;}
.h2{height:65.884219px;}
.he{height:67.824844px;}
.h2a{height:70.628906px;}
.h41{height:70.664062px;}
.hf{height:72.562500px;}
.h24{height:74.953125px;}
.h26{height:75.093750px;}
.h33{height:82.676953px;}
.h8{height:87.695156px;}
.h20{height:95.400000px;}
.h9{height:96.508125px;}
.h25{height:144.765000px;}
.h1e{height:430.425000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.wc{width:70.941000px;}
.w1c{width:80.985000px;}
.w17{width:80.991000px;}
.w10{width:80.995500px;}
.w11{width:81.000000px;}
.w3{width:82.071000px;}
.w1a{width:87.645000px;}
.w14{width:87.655500px;}
.w15{width:87.660000px;}
.w1b{width:87.861000px;}
.w16{width:87.862500px;}
.w12{width:87.876000px;}
.w13{width:87.885000px;}
.we{width:91.071000px;}
.w19{width:94.521000px;}
.wf{width:94.522500px;}
.w18{width:109.650000px;}
.wb{width:131.211000px;}
.wd{width:136.476000px;}
.w5{width:154.470000px;}
.w1d{width:168.321000px;}
.w1e{width:168.870000px;}
.w20{width:180.210000px;}
.wa{width:180.390000px;}
.w8{width:182.550000px;}
.w1f{width:203.235000px;}
.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;}
.x3c{left:4.252500px;}
.x2{left:8.091000px;}
.x37{left:9.180000px;}
.x12{left:10.791000px;}
.x2a{left:14.040000px;}
.x2e{left:15.285000px;}
.x31{left:17.655000px;}
.x34{left:19.440000px;}
.x18{left:21.255000px;}
.x27{left:23.565000px;}
.x23{left:26.490000px;}
.x28{left:27.525000px;}
.x25{left:29.370000px;}
.x21{left:35.490000px;}
.x2d{left:37.245000px;}
.x33{left:45.210000px;}
.x20{left:48.600000px;}
.x24{left:57.600000px;}
.x3a{left:59.940000px;}
.x1e{left:62.085000px;}
.x22{left:68.220000px;}
.x3{left:73.965000px;}
.x3b{left:77.205000px;}
.x15{left:80.505000px;}
.x13{left:81.765000px;}
.x11{left:93.105000px;}
.x17{left:94.905000px;}
.x35{left:97.416000px;}
.x1{left:108.036000px;}
.x7{left:115.596000px;}
.x1d{left:128.376000px;}
.xe{left:132.696000px;}
.x6{left:135.036000px;}
.xb{left:160.410000px;}
.x1a{left:164.190000px;}
.x9{left:178.050000px;}
.x4{left:190.125000px;}
.x26{left:199.125000px;}
.xc{left:208.110000px;}
.x1f{left:239.265000px;}
.x1b{left:249.195000px;}
.x1c{left:252.975000px;}
.x36{left:276.375000px;}
.x29{left:293.655000px;}
.x14{left:303.015000px;}
.x16{left:310.350000px;}
.x8{left:333.615000px;}
.x2b{left:374.655000px;}
.x5{left:443.625000px;}
.x38{left:445.260000px;}
.xd{left:446.505000px;}
.xa{left:459.105000px;}
.x2c{left:462.540000px;}
.xf{left:489.165000px;}
.x10{left:490.785000px;}
.x2f{left:550.200000px;}
.x19{left:620.253000px;}
.x30{left:638.070000px;}
.x39{left:648.510000px;}
.x32{left:719.070000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls10{letter-spacing:-1.280000pt;}
.lsd{letter-spacing:-0.720000pt;}
.lsa{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.158933pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.016000pt;}
.ls16{letter-spacing:0.047360pt;}
.ls11{letter-spacing:0.096000pt;}
.ls14{letter-spacing:0.120533pt;}
.ls2{letter-spacing:0.128640pt;}
.ls8{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.161067pt;}
.ls13{letter-spacing:0.230933pt;}
.ls15{letter-spacing:0.231040pt;}
.ls3{letter-spacing:0.240640pt;}
.ls9{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.439040pt;}
.ls5{letter-spacing:0.800000pt;}
.ls12{letter-spacing:32.133120pt;}
.ls1{letter-spacing:42.400000pt;}
.ls0{letter-spacing:63.360000pt;}
.wsd{word-spacing:-16.000000pt;}
.wsc{word-spacing:-14.720000pt;}
.ws11{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.510933pt;}
.ws13{word-spacing:-13.327360pt;}
.wsb{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.232640pt;}
.ws14{word-spacing:-12.640000pt;}
.wsa{word-spacing:-12.320000pt;}
.ws5{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.881067pt;}
.wse{word-spacing:-10.720000pt;}
.ws2{word-spacing:-10.400000pt;}
.ws3{word-spacing:-10.080000pt;}
.ws7{word-spacing:-9.280000pt;}
.ws8{word-spacing:-9.121067pt;}
.ws6{word-spacing:-8.000000pt;}
.ws1{word-spacing:-6.720000pt;}
.ws9{word-spacing:0.000000pt;}
.ws0{word-spacing:54.080000pt;}
._5{margin-left:-52.960000pt;}
._29{margin-left:-3.849600pt;}
._14{margin-left:-2.815360pt;}
._2{margin-left:-1.472000pt;}
._0{width:0.928000pt;}
._1{width:2.155093pt;}
._9{width:3.134080pt;}
._15{width:4.408960pt;}
._11{width:5.630720pt;}
._12{width:6.877867pt;}
._d{width:8.552320pt;}
._e{width:9.561600pt;}
._13{width:10.636800pt;}
._a{width:11.739520pt;}
._1b{width:12.750080pt;}
._1e{width:13.756587pt;}
._c{width:14.689280pt;}
._b{width:16.451840pt;}
._f{width:17.582720pt;}
._10{width:18.954240pt;}
._18{width:19.895467pt;}
._2d{width:20.876160pt;}
._25{width:21.779200pt;}
._1d{width:23.558400pt;}
._1c{width:24.721920pt;}
._23{width:26.081920pt;}
._26{width:27.834880pt;}
._21{width:28.935680pt;}
._1a{width:29.921280pt;}
._19{width:31.457707pt;}
._8{width:33.121920pt;}
._24{width:34.206080pt;}
._2f{width:35.178240pt;}
._31{width:36.068480pt;}
._22{width:37.608960pt;}
._2a{width:39.096320pt;}
._16{width:40.238080pt;}
._17{width:41.166080pt;}
._2e{width:42.072960pt;}
._32{width:44.089600pt;}
._27{width:45.205120pt;}
._28{width:46.776960pt;}
._2c{width:48.445440pt;}
._37{width:49.507840pt;}
._30{width:50.623360pt;}
._3b{width:52.138880pt;}
._20{width:54.516907pt;}
._36{width:57.282133pt;}
._3{width:58.218667pt;}
._33{width:59.122560pt;}
._2b{width:63.094400pt;}
._3d{width:65.496960pt;}
._7{width:66.506240pt;}
._38{width:77.395840pt;}
._3c{width:79.626880pt;}
._3a{width:88.338560pt;}
._39{width:89.315200pt;}
._34{width:102.256000pt;}
._35{width:105.074560pt;}
._4{width:177.440000pt;}
._1f{width:250.906667pt;}
._6{width:671.978667pt;}
.fs3{font-size:5.120000pt;}
.fs11{font-size:5.333333pt;}
.fsd{font-size:16.000000pt;}
.fsc{font-size:21.120000pt;}
.fs8{font-size:26.880000pt;}
.fse{font-size:32.000000pt;}
.fsb{font-size:33.730624pt;}
.fs1{font-size:37.120000pt;}
.fs7{font-size:40.320000pt;}
.fs9{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs10{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsf{font-size:55.992837pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.y47{bottom:-220.186667pt;}
.y46{bottom:-190.266667pt;}
.y45{bottom:-160.346667pt;}
.y7e{bottom:-139.066667pt;}
.y44{bottom:-130.266667pt;}
.y7d{bottom:-108.986667pt;}
.y43{bottom:-100.320000pt;}
.y7c{bottom:-79.026667pt;}
.y42{bottom:-70.240000pt;}
.y7b{bottom:-48.946667pt;}
.y41{bottom:-40.320000pt;}
.y4a{bottom:-24.160000pt;}
.y7a{bottom:-19.026667pt;}
.y80{bottom:-15.931333pt;}
.y40{bottom:-10.240000pt;}
.y0{bottom:0.000000pt;}
.y23b{bottom:1.633333pt;}
.y66{bottom:2.253333pt;}
.y3{bottom:3.520000pt;}
.y12d{bottom:4.146667pt;}
.y134{bottom:4.160000pt;}
.y12e{bottom:4.306667pt;}
.y132{bottom:4.320000pt;}
.y14f{bottom:4.333333pt;}
.y130{bottom:4.466667pt;}
.y49{bottom:4.480000pt;}
.y6f{bottom:4.960000pt;}
.y12b{bottom:5.760000pt;}
.y3f{bottom:5.920000pt;}
.y16e{bottom:7.840000pt;}
.y15d{bottom:8.146667pt;}
.y16c{bottom:8.160000pt;}
.y152{bottom:9.906667pt;}
.y169{bottom:10.400000pt;}
.y79{bottom:10.893333pt;}
.y6{bottom:11.200000pt;}
.y15a{bottom:11.346667pt;}
.y155{bottom:11.666667pt;}
.y167{bottom:14.560000pt;}
.y15e{bottom:15.186667pt;}
.y6d{bottom:15.680000pt;}
.y65{bottom:15.853333pt;}
.y14b{bottom:16.493333pt;}
.y14e{bottom:16.653333pt;}
.y153{bottom:16.946667pt;}
.y160{bottom:18.386667pt;}
.y3e{bottom:18.400000pt;}
.y158{bottom:18.546667pt;}
.y7{bottom:19.520000pt;}
.y4{bottom:20.640000pt;}
.y5{bottom:21.920000pt;}
.y15c{bottom:22.226667pt;}
.y148{bottom:22.720000pt;}
.y151{bottom:23.986667pt;}
.y64{bottom:26.893333pt;}
.y6c{bottom:27.840000pt;}
.y149{bottom:28.960000pt;}
.y14d{bottom:28.973333pt;}
.y3d{bottom:30.880000pt;}
.y157{bottom:32.626667pt;}
.y78{bottom:38.413333pt;}
.y6b{bottom:39.360000pt;}
.y14c{bottom:41.280000pt;}
.y82{bottom:41.760000pt;}
.y3c{bottom:42.080000pt;}
.y63{bottom:42.733333pt;}
.y77{bottom:50.093333pt;}
.y6a{bottom:50.880000pt;}
.y2{bottom:51.040000pt;}
.y7f{bottom:56.693333pt;}
.y62{bottom:58.733333pt;}
.y76{bottom:61.613333pt;}
.y69{bottom:62.560000pt;}
.y61{bottom:70.413333pt;}
.y75{bottom:73.293333pt;}
.y68{bottom:77.600000pt;}
.y60{bottom:78.413333pt;}
.y74{bottom:84.813333pt;}
.y194{bottom:89.920000pt;}
.yb4{bottom:92.160000pt;}
.y216{bottom:93.280000pt;}
.y101{bottom:93.920000pt;}
.y5f{bottom:94.253333pt;}
.y128{bottom:95.520000pt;}
.y73{bottom:96.333333pt;}
.y163{bottom:96.480000pt;}
.y3a{bottom:99.840000pt;}
.yd0{bottom:100.800000pt;}
.y1e6{bottom:104.160000pt;}
.y193{bottom:107.520000pt;}
.y72{bottom:108.013333pt;}
.yb3{bottom:109.760000pt;}
.y5e{bottom:110.093333pt;}
.y215{bottom:110.880000pt;}
.y1b4{bottom:111.040000pt;}
.y100{bottom:111.520000pt;}
.ycf{bottom:112.320000pt;}
.y127{bottom:113.120000pt;}
.y39{bottom:117.600000pt;}
.y71{bottom:118.893333pt;}
.y1e5{bottom:121.760000pt;}
.y192{bottom:125.120000pt;}
.y162{bottom:125.760000pt;}
.y5d{bottom:125.933333pt;}
.yb2{bottom:127.360000pt;}
.y214{bottom:128.480000pt;}
.y1b3{bottom:128.640000pt;}
.y23a{bottom:128.960000pt;}
.yff{bottom:129.120000pt;}
.yce{bottom:130.080000pt;}
.y126{bottom:130.720000pt;}
.y38{bottom:135.200000pt;}
.y161{bottom:136.480000pt;}
.y1e4{bottom:139.360000pt;}
.y5c{bottom:141.773333pt;}
.y191{bottom:142.720000pt;}
.yb1{bottom:144.986667pt;}
.y1b2{bottom:146.266667pt;}
.yfe{bottom:146.746667pt;}
.y15f{bottom:146.920000pt;}
.y213{bottom:147.066667pt;}
.ycd{bottom:147.706667pt;}
.y125{bottom:148.506667pt;}
.y37{bottom:152.826667pt;}
.y1e3{bottom:156.986667pt;}
.y5b{bottom:157.773333pt;}
.y190{bottom:160.506667pt;}
.yb0{bottom:162.746667pt;}
.y1b1{bottom:164.026667pt;}
.yfd{bottom:164.506667pt;}
.y239{bottom:165.146667pt;}
.ycc{bottom:165.306667pt;}
.y124{bottom:166.906667pt;}
.y212{bottom:168.186667pt;}
.y36{bottom:170.426667pt;}
.y5a{bottom:173.613333pt;}
.y1e2{bottom:174.746667pt;}
.y15b{bottom:175.880000pt;}
.y18f{bottom:178.106667pt;}
.yaf{bottom:180.346667pt;}
.y1b0{bottom:181.626667pt;}
.yfc{bottom:182.106667pt;}
.ycb{bottom:182.906667pt;}
.y35{bottom:188.026667pt;}
.y59{bottom:189.453333pt;}
.y1e1{bottom:192.346667pt;}
.y18e{bottom:195.706667pt;}
.yae{bottom:197.946667pt;}
.y1af{bottom:199.226667pt;}
.yca{bottom:200.506667pt;}
.y123{bottom:203.226667pt;}
.y211{bottom:204.506667pt;}
.y58{bottom:205.320000pt;}
.y34{bottom:205.786667pt;}
.y1e0{bottom:209.946667pt;}
.y159{bottom:212.360000pt;}
.y18d{bottom:213.306667pt;}
.yad{bottom:215.546667pt;}
.y1ae{bottom:216.826667pt;}
.y57{bottom:217.160000pt;}
.yfb{bottom:217.946667pt;}
.y238{bottom:218.106667pt;}
.yc9{bottom:218.266667pt;}
.y122{bottom:220.826667pt;}
.y210{bottom:222.106667pt;}
.y33{bottom:223.386667pt;}
.y56{bottom:225.000000pt;}
.y1df{bottom:227.546667pt;}
.yfa{bottom:229.626667pt;}
.y18c{bottom:230.906667pt;}
.yac{bottom:233.146667pt;}
.y1ad{bottom:234.426667pt;}
.y237{bottom:235.706667pt;}
.yc8{bottom:235.866667pt;}
.y121{bottom:238.426667pt;}
.y20f{bottom:239.706667pt;}
.y55{bottom:240.840000pt;}
.y32{bottom:240.986667pt;}
.y156{bottom:241.160000pt;}
.y1de{bottom:245.146667pt;}
.yf9{bottom:247.386667pt;}
.y18b{bottom:248.666667pt;}
.yab{bottom:250.906667pt;}
.y1ac{bottom:252.186667pt;}
.yc7{bottom:253.466667pt;}
.y236{bottom:254.106667pt;}
.y120{bottom:256.186667pt;}
.y54{bottom:256.840000pt;}
.y20e{bottom:257.466667pt;}
.y31{bottom:258.586667pt;}
.y1dd{bottom:262.906667pt;}
.yf8{bottom:264.986667pt;}
.y18a{bottom:266.266667pt;}
.yaa{bottom:268.506667pt;}
.y1ab{bottom:269.786667pt;}
.yc6{bottom:271.066667pt;}
.y53{bottom:272.680000pt;}
.y11f{bottom:273.786667pt;}
.y20d{bottom:275.066667pt;}
.y30{bottom:276.186667pt;}
.y1dc{bottom:280.506667pt;}
.yf7{bottom:282.586667pt;}
.y189{bottom:283.866667pt;}
.y154{bottom:284.200000pt;}
.ya9{bottom:286.106667pt;}
.y1aa{bottom:287.386667pt;}
.y52{bottom:288.520000pt;}
.yc5{bottom:288.666667pt;}
.y235{bottom:290.586667pt;}
.y11e{bottom:291.386667pt;}
.y20c{bottom:292.666667pt;}
.y2f{bottom:293.946667pt;}
.y1db{bottom:298.106667pt;}
.yf6{bottom:300.186667pt;}
.y188{bottom:301.466667pt;}
.ya8{bottom:303.706667pt;}
.y51{bottom:304.360000pt;}
.y1a9{bottom:304.986667pt;}
.yc4{bottom:306.426667pt;}
.y234{bottom:308.186667pt;}
.y11d{bottom:308.986667pt;}
.y20b{bottom:310.266667pt;}
.y2e{bottom:311.546667pt;}
.y150{bottom:313.640000pt;}
.y1da{bottom:315.706667pt;}
.y50{bottom:316.200000pt;}
.yf5{bottom:317.786667pt;}
.y187{bottom:319.066667pt;}
.ya7{bottom:321.306667pt;}
.y1a8{bottom:322.586667pt;}
.yc3{bottom:324.026667pt;}
.y4f{bottom:324.040000pt;}
.y233{bottom:325.786667pt;}
.y11c{bottom:326.586667pt;}
.y20a{bottom:327.866667pt;}
.y2d{bottom:329.946667pt;}
.y1d9{bottom:333.306667pt;}
.yf4{bottom:335.386667pt;}
.y186{bottom:336.826667pt;}
.ya6{bottom:339.066667pt;}
.y4e{bottom:339.880000pt;}
.y1a7{bottom:340.346667pt;}
.yc2{bottom:341.626667pt;}
.y232{bottom:344.186667pt;}
.y11b{bottom:344.346667pt;}
.y2c{bottom:345.306667pt;}
.y209{bottom:345.626667pt;}
.y1d8{bottom:351.106667pt;}
.y2b{bottom:352.866667pt;}
.yf3{bottom:353.186667pt;}
.y185{bottom:354.466667pt;}
.y14a{bottom:354.933333pt;}
.y147{bottom:354.946667pt;}
.y4d{bottom:355.880000pt;}
.ya5{bottom:356.706667pt;}
.y1a6{bottom:357.986667pt;}
.y4b{bottom:358.293333pt;}
.yc1{bottom:359.266667pt;}
.y11a{bottom:361.986667pt;}
.y208{bottom:363.266667pt;}
.y1d7{bottom:368.706667pt;}
.y2a{bottom:369.186667pt;}
.yf2{bottom:370.786667pt;}
.y4c{bottom:371.720000pt;}
.y184{bottom:372.066667pt;}
.ya4{bottom:374.306667pt;}
.y1a5{bottom:375.586667pt;}
.yc0{bottom:376.866667pt;}
.y29{bottom:379.426667pt;}
.y119{bottom:379.586667pt;}
.y231{bottom:380.546667pt;}
.y207{bottom:380.866667pt;}
.y1d6{bottom:386.306667pt;}
.yf1{bottom:388.386667pt;}
.y183{bottom:389.666667pt;}
.ya3{bottom:391.906667pt;}
.y1a4{bottom:393.186667pt;}
.ybf{bottom:394.626667pt;}
.y118{bottom:397.186667pt;}
.y230{bottom:398.306667pt;}
.y206{bottom:399.266667pt;}
.y28{bottom:400.546667pt;}
.y1d5{bottom:403.906667pt;}
.yf0{bottom:405.986667pt;}
.y182{bottom:407.266667pt;}
.ya2{bottom:409.506667pt;}
.y146{bottom:410.786667pt;}
.ybe{bottom:413.026667pt;}
.y117{bottom:414.786667pt;}
.y22f{bottom:415.906667pt;}
.y1d4{bottom:421.506667pt;}
.y27{bottom:421.666667pt;}
.yef{bottom:423.586667pt;}
.y181{bottom:425.026667pt;}
.y145{bottom:426.946667pt;}
.ya1{bottom:427.266667pt;}
.y1a3{bottom:428.546667pt;}
.y70{bottom:428.853333pt;}
.ybd{bottom:430.466667pt;}
.y116{bottom:432.546667pt;}
.y22e{bottom:433.506667pt;}
.y205{bottom:435.586667pt;}
.y1d3{bottom:439.266667pt;}
.y26{bottom:440.226667pt;}
.yee{bottom:441.346667pt;}
.ybc{bottom:442.146667pt;}
.y180{bottom:442.626667pt;}
.ya0{bottom:444.866667pt;}
.y144{bottom:445.986667pt;}
.y1a2{bottom:446.146667pt;}
.y115{bottom:450.146667pt;}
.y22d{bottom:451.106667pt;}
.y204{bottom:453.346667pt;}
.y1d2{bottom:456.866667pt;}
.y25{bottom:457.826667pt;}
.yed{bottom:458.946667pt;}
.ybb{bottom:459.746667pt;}
.y17f{bottom:460.226667pt;}
.y9f{bottom:462.466667pt;}
.y143{bottom:463.586667pt;}
.y1a1{bottom:463.746667pt;}
.y114{bottom:467.746667pt;}
.y22c{bottom:468.706667pt;}
.y24{bottom:470.146667pt;}
.y203{bottom:470.946667pt;}
.y1d1{bottom:474.466667pt;}
.yec{bottom:476.546667pt;}
.yba{bottom:477.346667pt;}
.y23{bottom:477.826667pt;}
.y9e{bottom:480.066667pt;}
.y142{bottom:481.346667pt;}
.y113{bottom:485.346667pt;}
.y22b{bottom:486.466667pt;}
.y202{bottom:488.546667pt;}
.y1d0{bottom:492.066667pt;}
.yeb{bottom:494.146667pt;}
.yb9{bottom:495.106667pt;}
.y17e{bottom:495.426667pt;}
.y9d{bottom:497.666667pt;}
.y22{bottom:498.466667pt;}
.y141{bottom:498.946667pt;}
.y112{bottom:502.946667pt;}
.y22a{bottom:504.866667pt;}
.y201{bottom:506.146667pt;}
.y1cf{bottom:509.666667pt;}
.yea{bottom:511.746667pt;}
.yb8{bottom:512.706667pt;}
.y17d{bottom:513.186667pt;}
.y9c{bottom:515.426667pt;}
.y140{bottom:516.546667pt;}
.y1a0{bottom:516.706667pt;}
.y21{bottom:519.266667pt;}
.y111{bottom:520.706667pt;}
.y200{bottom:523.746667pt;}
.y1ce{bottom:527.426667pt;}
.ye9{bottom:529.506667pt;}
.yb7{bottom:530.306667pt;}
.y17c{bottom:530.786667pt;}
.y9b{bottom:533.026667pt;}
.y19f{bottom:534.306667pt;}
.y13f{bottom:536.386667pt;}
.y110{bottom:538.306667pt;}
.y20{bottom:539.906667pt;}
.y229{bottom:541.186667pt;}
.y1ff{bottom:541.506667pt;}
.y1cd{bottom:545.026667pt;}
.ye8{bottom:547.106667pt;}
.y17b{bottom:548.386667pt;}
.yb6{bottom:548.706667pt;}
.y9a{bottom:550.626667pt;}
.y19e{bottom:551.906667pt;}
.y10f{bottom:555.933333pt;}
.y13e{bottom:557.213333pt;}
.y228{bottom:558.813333pt;}
.y1fe{bottom:559.133333pt;}
.y1cc{bottom:562.653333pt;}
.ye7{bottom:564.733333pt;}
.y67{bottom:566.013333pt;}
.yb5{bottom:567.293333pt;}
.y99{bottom:568.253333pt;}
.y19d{bottom:569.533333pt;}
.y13d{bottom:569.693333pt;}
.y10e{bottom:573.533333pt;}
.y227{bottom:576.413333pt;}
.y1fd{bottom:576.733333pt;}
.y13c{bottom:580.093333pt;}
.y1cb{bottom:580.253333pt;}
.ye6{bottom:582.333333pt;}
.y17a{bottom:583.613333pt;}
.y98{bottom:585.853333pt;}
.y19c{bottom:587.133333pt;}
.y1f{bottom:588.733333pt;}
.y10d{bottom:591.133333pt;}
.y226{bottom:594.173333pt;}
.y1fc{bottom:594.333333pt;}
.y13b{bottom:594.813333pt;}
.y1ca{bottom:597.853333pt;}
.ye5{bottom:599.933333pt;}
.y179{bottom:601.373333pt;}
.y1e{bottom:602.493333pt;}
.y97{bottom:603.613333pt;}
.y19b{bottom:604.893333pt;}
.y10c{bottom:608.893333pt;}
.y13a{bottom:609.693333pt;}
.y1fb{bottom:611.933333pt;}
.y225{bottom:612.573333pt;}
.y1c9{bottom:615.613333pt;}
.y1d{bottom:616.253333pt;}
.ye4{bottom:617.693333pt;}
.y178{bottom:618.973333pt;}
.y96{bottom:621.213333pt;}
.y19a{bottom:622.493333pt;}
.y139{bottom:624.413333pt;}
.y10b{bottom:626.493333pt;}
.y1fa{bottom:629.693333pt;}
.y1c{bottom:630.013333pt;}
.y1c8{bottom:633.213333pt;}
.ye3{bottom:635.293333pt;}
.y177{bottom:636.573333pt;}
.y95{bottom:638.813333pt;}
.y138{bottom:639.133333pt;}
.y199{bottom:640.093333pt;}
.y1b{bottom:643.933333pt;}
.y10a{bottom:644.093333pt;}
.y1f9{bottom:647.293333pt;}
.y224{bottom:648.893333pt;}
.y1c7{bottom:650.813333pt;}
.ye2{bottom:652.893333pt;}
.y1a{bottom:653.693333pt;}
.y137{bottom:654.013333pt;}
.y176{bottom:654.173333pt;}
.y94{bottom:656.413333pt;}
.y198{bottom:657.693333pt;}
.y3b{bottom:661.533333pt;}
.y109{bottom:661.693333pt;}
.y1f8{bottom:664.893333pt;}
.y19{bottom:665.853333pt;}
.y223{bottom:666.493333pt;}
.y1c6{bottom:668.413333pt;}
.y136{bottom:668.733333pt;}
.ye1{bottom:670.493333pt;}
.y175{bottom:671.773333pt;}
.y93{bottom:674.013333pt;}
.y197{bottom:675.293333pt;}
.y18{bottom:677.373333pt;}
.y108{bottom:679.293333pt;}
.y1f7{bottom:682.493333pt;}
.y135{bottom:683.453333pt;}
.y222{bottom:684.093333pt;}
.y1c5{bottom:686.013333pt;}
.ye0{bottom:688.093333pt;}
.y17{bottom:688.893333pt;}
.y174{bottom:690.333333pt;}
.y92{bottom:691.773333pt;}
.y196{bottom:694.173333pt;}
.y107{bottom:697.053333pt;}
.y133{bottom:698.333333pt;}
.y1f6{bottom:700.093333pt;}
.y16{bottom:700.413333pt;}
.y221{bottom:701.853333pt;}
.y1c4{bottom:703.773333pt;}
.ydf{bottom:705.853333pt;}
.y91{bottom:709.373333pt;}
.y173{bottom:711.453333pt;}
.y15{bottom:712.573333pt;}
.y131{bottom:713.053333pt;}
.y195{bottom:714.173333pt;}
.y106{bottom:714.653333pt;}
.y1f5{bottom:717.853333pt;}
.y220{bottom:719.453333pt;}
.y1c3{bottom:721.373333pt;}
.yde{bottom:723.453333pt;}
.y14{bottom:724.093333pt;}
.y90{bottom:726.973333pt;}
.y12f{bottom:727.786667pt;}
.y105{bottom:732.253333pt;}
.y172{bottom:732.573333pt;}
.y1f4{bottom:735.453333pt;}
.y21f{bottom:737.053333pt;}
.y1c2{bottom:738.973333pt;}
.ydd{bottom:741.053333pt;}
.y12c{bottom:742.666667pt;}
.y8f{bottom:744.573333pt;}
.y13{bottom:747.933333pt;}
.y171{bottom:749.693333pt;}
.y104{bottom:749.853333pt;}
.y1f3{bottom:753.053333pt;}
.y21e{bottom:754.653333pt;}
.y1c1{bottom:756.573333pt;}
.y12{bottom:757.853333pt;}
.ydc{bottom:758.693333pt;}
.y170{bottom:760.453333pt;}
.y8e{bottom:762.213333pt;}
.y103{bottom:768.293333pt;}
.y1f2{bottom:770.693333pt;}
.y16f{bottom:771.013333pt;}
.y21d{bottom:772.293333pt;}
.y1c0{bottom:774.213333pt;}
.ydb{bottom:776.293333pt;}
.y11{bottom:778.053333pt;}
.y8d{bottom:779.973333pt;}
.y12a{bottom:783.013333pt;}
.y102{bottom:786.053333pt;}
.y1f1{bottom:788.293333pt;}
.y21c{bottom:790.053333pt;}
.y1bf{bottom:791.973333pt;}
.yda{bottom:794.053333pt;}
.y16d{bottom:795.013333pt;}
.y10{bottom:795.493333pt;}
.y8c{bottom:797.573333pt;}
.y129{bottom:798.853333pt;}
.y1f0{bottom:806.053333pt;}
.y21b{bottom:807.653333pt;}
.y1be{bottom:809.573333pt;}
.yd9{bottom:811.653333pt;}
.yf{bottom:812.773333pt;}
.y8b{bottom:815.173333pt;}
.y16b{bottom:818.373333pt;}
.y1ef{bottom:823.653333pt;}
.y21a{bottom:825.253333pt;}
.ye{bottom:826.053333pt;}
.y1bd{bottom:827.173333pt;}
.yd8{bottom:829.253333pt;}
.y8a{bottom:832.773333pt;}
.yd{bottom:836.133333pt;}
.y1ee{bottom:841.253333pt;}
.y16a{bottom:842.373333pt;}
.y219{bottom:842.853333pt;}
.y1bc{bottom:844.773333pt;}
.yd7{bottom:846.853333pt;}
.y89{bottom:850.373333pt;}
.yc{bottom:851.813333pt;}
.y1ed{bottom:858.853333pt;}
.y218{bottom:860.453333pt;}
.y1bb{bottom:862.373333pt;}
.yd6{bottom:864.453333pt;}
.y88{bottom:868.133333pt;}
.yb{bottom:871.973333pt;}
.y168{bottom:872.453333pt;}
.y1ec{bottom:876.453333pt;}
.y217{bottom:879.013333pt;}
.y1ba{bottom:880.133333pt;}
.yd5{bottom:882.213333pt;}
.y87{bottom:885.733333pt;}
.y1eb{bottom:894.213333pt;}
.ya{bottom:896.613333pt;}
.y1b9{bottom:897.733333pt;}
.yd4{bottom:899.813333pt;}
.y166{bottom:902.373333pt;}
.y86{bottom:903.333333pt;}
.y1ea{bottom:911.813333pt;}
.y1b8{bottom:915.333333pt;}
.yd3{bottom:917.413333pt;}
.y85{bottom:920.933333pt;}
.y9{bottom:921.093333pt;}
.y1e9{bottom:929.413333pt;}
.y1b7{bottom:932.933333pt;}
.yd2{bottom:935.013333pt;}
.y84{bottom:938.533333pt;}
.y165{bottom:943.653333pt;}
.y8{bottom:945.093333pt;}
.y1e8{bottom:947.013333pt;}
.y1b6{bottom:950.533333pt;}
.yd1{bottom:953.413333pt;}
.y83{bottom:956.133333pt;}
.y164{bottom:957.413333pt;}
.y1e7{bottom:965.440000pt;}
.y1b5{bottom:968.160000pt;}
.y6e{bottom:974.400000pt;}
.y1{bottom:996.640000pt;}
.y81{bottom:998.400000pt;}
.y48{bottom:1010.880000pt;}
.h7{height:5.025000pt;}
.h18{height:5.160000pt;}
.h42{height:5.562500pt;}
.h3{height:12.000000pt;}
.h2f{height:14.066667pt;}
.h31{height:14.080000pt;}
.h30{height:14.226667pt;}
.h32{height:14.240000pt;}
.h1b{height:15.040000pt;}
.h17{height:16.125000pt;}
.h2e{height:17.266667pt;}
.h23{height:19.680000pt;}
.h16{height:20.728125pt;}
.h40{height:22.706667pt;}
.h3f{height:23.346667pt;}
.h2b{height:26.368125pt;}
.hc{height:26.381250pt;}
.h10{height:27.523125pt;}
.h2d{height:27.628404pt;}
.h3d{height:27.986667pt;}
.h3a{height:28.146667pt;}
.h38{height:28.786667pt;}
.h3e{height:29.266667pt;}
.h5{height:30.400000pt;}
.h21{height:32.250000pt;}
.h14{height:35.114107pt;}
.h3b{height:35.826667pt;}
.h6{height:36.431250pt;}
.h3c{height:36.466667pt;}
.h22{height:37.410000pt;}
.h28{height:38.877839pt;}
.h37{height:39.378667pt;}
.h12{height:39.571875pt;}
.hb{height:40.103437pt;}
.h1a{height:40.635000pt;}
.h13{height:41.442606pt;}
.hd{height:42.084375pt;}
.h39{height:42.386667pt;}
.h1c{height:43.215000pt;}
.h2c{height:46.505938pt;}
.h15{height:47.109375pt;}
.h1d{height:48.375000pt;}
.h11{height:49.148438pt;}
.h1f{height:49.336436pt;}
.h34{height:51.026667pt;}
.h35{height:51.036000pt;}
.h36{height:51.040000pt;}
.h19{height:51.200000pt;}
.h27{height:52.108438pt;}
.h4{height:52.134375pt;}
.h29{height:53.535000pt;}
.ha{height:57.787500pt;}
.h2{height:58.563750pt;}
.he{height:60.288750pt;}
.h2a{height:62.781250pt;}
.h41{height:62.812500pt;}
.hf{height:64.500000pt;}
.h24{height:66.625000pt;}
.h26{height:66.750000pt;}
.h33{height:73.490625pt;}
.h8{height:77.951250pt;}
.h20{height:84.800000pt;}
.h9{height:85.785000pt;}
.h25{height:128.680000pt;}
.h1e{height:382.600000pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.wc{width:63.058667pt;}
.w1c{width:71.986667pt;}
.w17{width:71.992000pt;}
.w10{width:71.996000pt;}
.w11{width:72.000000pt;}
.w3{width:72.952000pt;}
.w1a{width:77.906667pt;}
.w14{width:77.916000pt;}
.w15{width:77.920000pt;}
.w1b{width:78.098667pt;}
.w16{width:78.100000pt;}
.w12{width:78.112000pt;}
.w13{width:78.120000pt;}
.we{width:80.952000pt;}
.w19{width:84.018667pt;}
.wf{width:84.020000pt;}
.w18{width:97.466667pt;}
.wb{width:116.632000pt;}
.wd{width:121.312000pt;}
.w5{width:137.306667pt;}
.w1d{width:149.618667pt;}
.w1e{width:150.106667pt;}
.w20{width:160.186667pt;}
.wa{width:160.346667pt;}
.w8{width:162.266667pt;}
.w1f{width:180.653333pt;}
.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;}
.x3c{left:3.780000pt;}
.x2{left:7.192000pt;}
.x37{left:8.160000pt;}
.x12{left:9.592000pt;}
.x2a{left:12.480000pt;}
.x2e{left:13.586667pt;}
.x31{left:15.693333pt;}
.x34{left:17.280000pt;}
.x18{left:18.893333pt;}
.x27{left:20.946667pt;}
.x23{left:23.546667pt;}
.x28{left:24.466667pt;}
.x25{left:26.106667pt;}
.x21{left:31.546667pt;}
.x2d{left:33.106667pt;}
.x33{left:40.186667pt;}
.x20{left:43.200000pt;}
.x24{left:51.200000pt;}
.x3a{left:53.280000pt;}
.x1e{left:55.186667pt;}
.x22{left:60.640000pt;}
.x3{left:65.746667pt;}
.x3b{left:68.626667pt;}
.x15{left:71.560000pt;}
.x13{left:72.680000pt;}
.x11{left:82.760000pt;}
.x17{left:84.360000pt;}
.x35{left:86.592000pt;}
.x1{left:96.032000pt;}
.x7{left:102.752000pt;}
.x1d{left:114.112000pt;}
.xe{left:117.952000pt;}
.x6{left:120.032000pt;}
.xb{left:142.586667pt;}
.x1a{left:145.946667pt;}
.x9{left:158.266667pt;}
.x4{left:169.000000pt;}
.x26{left:177.000000pt;}
.xc{left:184.986667pt;}
.x1f{left:212.680000pt;}
.x1b{left:221.506667pt;}
.x1c{left:224.866667pt;}
.x36{left:245.666667pt;}
.x29{left:261.026667pt;}
.x14{left:269.346667pt;}
.x16{left:275.866667pt;}
.x8{left:296.546667pt;}
.x2b{left:333.026667pt;}
.x5{left:394.333333pt;}
.x38{left:395.786667pt;}
.xd{left:396.893333pt;}
.xa{left:408.093333pt;}
.x2c{left:411.146667pt;}
.xf{left:434.813333pt;}
.x10{left:436.253333pt;}
.x2f{left:489.066667pt;}
.x19{left:551.336000pt;}
.x30{left:567.173333pt;}
.x39{left:576.453333pt;}
.x32{left:639.173333pt;}
}




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