
    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_fa2e18f0d91e3c91f935bdb8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.972656;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_70a0b9dd93196fcad777e23b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.972656;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_df1cf94257b8693584430d26.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.936035;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_22d9f0b9bb831ce3bcdbaa32.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.972656;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_ae6e6560943dea496d832c0a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_71e4d37c17e46d782f2d2f9d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.072266;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_441b8029f85166e3aab1f58f.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_041ed161f9e093c72e12e75f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_125fa8180660ee68f510b9db.woff2')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_92ad196cd61baa8ceca9fd5c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.916992;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_f9141fe234145eadab59cb95.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.936035;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_cbc912f2c86c7de72ee9cda7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.972656;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_6a61808df4d722d21900e408.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;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_bc26957b3267fd11b4cedaf7.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_ffa6509eeebc879be2da2b9d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.955078;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:ff11;src:url('chunks/assets/font_1b67769bb44ebfcc747eddd8.woff2')format("woff");}.ff11{font-family:ff11;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls33{letter-spacing:-0.738000px;}
.ls34{letter-spacing:-0.702000px;}
.ls24{letter-spacing:-0.666000px;}
.ls31{letter-spacing:-0.540000px;}
.ls26{letter-spacing:-0.360000px;}
.ls20{letter-spacing:-0.324000px;}
.ls1a{letter-spacing:-0.291600px;}
.ls14{letter-spacing:-0.108000px;}
.ls8{letter-spacing:-0.053280px;}
.ls9{letter-spacing:-0.045360px;}
.ls32{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.015120px;}
.ls12{letter-spacing:0.018000px;}
.ls2c{letter-spacing:0.036000px;}
.ls2{letter-spacing:0.053280px;}
.ls13{letter-spacing:0.106800px;}
.ls27{letter-spacing:0.108000px;}
.ls2e{letter-spacing:0.126000px;}
.ls0{letter-spacing:0.131040px;}
.ls1c{letter-spacing:0.156000px;}
.ls4{letter-spacing:0.180000px;}
.ls2a{letter-spacing:0.198000px;}
.ls1{letter-spacing:0.210240px;}
.ls18{letter-spacing:0.257040px;}
.lsf{letter-spacing:0.259920px;}
.ls35{letter-spacing:0.269400px;}
.ls2f{letter-spacing:0.270000px;}
.ls6{letter-spacing:0.288000px;}
.ls22{letter-spacing:0.298800px;}
.ls1f{letter-spacing:0.316800px;}
.ls3{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.377040px;}
.ls30{letter-spacing:0.468000px;}
.ls2b{letter-spacing:0.540000px;}
.ls11{letter-spacing:0.738000px;}
.lsb{letter-spacing:1.080000px;}
.ls23{letter-spacing:1.620000px;}
.ls5{letter-spacing:3.780000px;}
.ls1e{letter-spacing:5.220000px;}
.ls15{letter-spacing:5.940000px;}
.lsc{letter-spacing:8.100000px;}
.ls10{letter-spacing:8.586720px;}
.ls29{letter-spacing:8.820000px;}
.ls28{letter-spacing:9.540000px;}
.lsa{letter-spacing:10.980000px;}
.ls1b{letter-spacing:12.420000px;}
.ls25{letter-spacing:15.066720px;}
.ls2d{letter-spacing:23.940000px;}
.lsd{letter-spacing:28.260000px;}
.lse{letter-spacing:28.980000px;}
.ls1d{letter-spacing:40.428000px;}
.ls17{letter-spacing:42.668640px;}
.ls21{letter-spacing:44.562720px;}
.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;}
}
.ws9{word-spacing:-59.760000px;}
.ws15{word-spacing:-54.468000px;}
.ws14{word-spacing:-54.270000px;}
.wse{word-spacing:-54.000000px;}
.ws2{word-spacing:-18.000000px;}
.wsf{word-spacing:-16.280640px;}
.ws3{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.046800px;}
.ws1{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.648400px;}
.ws13{word-spacing:-14.580000px;}
.ws12{word-spacing:-14.274000px;}
.ws11{word-spacing:-13.860000px;}
.ws1a{word-spacing:-13.680000px;}
.ws19{word-spacing:-13.626000px;}
.wsa{word-spacing:-13.500000px;}
.ws16{word-spacing:-13.482000px;}
.wsb{word-spacing:-13.392000px;}
.ws10{word-spacing:-13.176000px;}
.ws17{word-spacing:-13.140000px;}
.wsd{word-spacing:-12.780000px;}
.ws18{word-spacing:-12.762000px;}
.ws1c{word-spacing:-12.420000px;}
.ws1b{word-spacing:-12.329400px;}
.ws4{word-spacing:-12.060000px;}
.ws0{word-spacing:-10.064160px;}
.ws7{word-spacing:-7.981920px;}
.ws6{word-spacing:0.000000px;}
._16{margin-left:-3.387840px;}
._13{margin-left:-2.123760px;}
._1{margin-left:-1.043520px;}
._0{width:1.778880px;}
._7{width:3.059520px;}
._9{width:4.190160px;}
._3{width:5.547600px;}
._4{width:6.616560px;}
._8{width:8.183040px;}
._d{width:9.357840px;}
._2{width:11.011440px;}
._12{width:12.728880px;}
._11{width:13.751040px;}
._6{width:15.612000px;}
._5{width:16.818000px;}
._e{width:18.131520px;}
._b{width:19.278240px;}
._c{width:20.387760px;}
._15{width:21.388800px;}
._17{width:23.007600px;}
._1a{width:24.030000px;}
._f{width:27.411600px;}
._10{width:28.864080px;}
._a{width:35.504640px;}
._14{width:37.170720px;}
._19{width:40.756320px;}
._18{width:42.310080px;}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(79,98,40);}
.fsd{font-size:5.760000px;}
.fs5{font-size:18.000000px;}
.fsb{font-size:30.240000px;}
.fsa{font-size:33.120000px;}
.fs3{font-size:36.000000px;}
.fs0{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fsc{font-size:51.120000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.fs9{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y20a{bottom:2.520000px;}
.yea{bottom:2.700000px;}
.y4c{bottom:2.880000px;}
.y159{bottom:2.910000px;}
.y80{bottom:3.060000px;}
.y8e{bottom:3.240000px;}
.y140{bottom:3.420000px;}
.y75{bottom:3.600000px;}
.y77{bottom:3.780000px;}
.y3{bottom:4.320000px;}
.y136{bottom:4.500000px;}
.y8{bottom:6.300000px;}
.y2{bottom:6.480000px;}
.y4{bottom:7.020000px;}
.y4e{bottom:7.200000px;}
.y11f{bottom:10.260000px;}
.y9c{bottom:10.440000px;}
.y100{bottom:10.620000px;}
.y7d{bottom:10.800000px;}
.y88{bottom:10.830000px;}
.y4d{bottom:12.060000px;}
.y20b{bottom:16.380000px;}
.y95{bottom:18.000000px;}
.ye9{bottom:18.180000px;}
.yf0{bottom:18.360000px;}
.yfa{bottom:18.390000px;}
.y7f{bottom:18.540000px;}
.y8a{bottom:18.570000px;}
.y143{bottom:19.260000px;}
.y112{bottom:19.440000px;}
.y135{bottom:19.980000px;}
.y13f{bottom:20.010000px;}
.y142{bottom:20.340000px;}
.y163{bottom:22.350000px;}
.y9b{bottom:25.380000px;}
.y92{bottom:25.560000px;}
.y7c{bottom:26.280000px;}
.y87{bottom:26.310000px;}
.yec{bottom:26.460000px;}
.ye6{bottom:26.640000px;}
.yf9{bottom:26.670000px;}
.y113{bottom:27.720000px;}
.y10e{bottom:28.080000px;}
.y9{bottom:32.940000px;}
.y94{bottom:33.120000px;}
.yee{bottom:33.840000px;}
.ye8{bottom:33.870000px;}
.y173{bottom:33.885000px;}
.y7e{bottom:34.020000px;}
.y89{bottom:34.050000px;}
.yf6{bottom:34.380000px;}
.y10b{bottom:34.920000px;}
.y13b{bottom:34.950000px;}
.y134{bottom:35.460000px;}
.y13e{bottom:35.490000px;}
.y111{bottom:35.820000px;}
.y131{bottom:36.000000px;}
.y138{bottom:36.030000px;}
.y12f{bottom:36.540000px;}
.y162{bottom:37.830000px;}
.y9e{bottom:40.500000px;}
.y91{bottom:40.680000px;}
.y8b{bottom:41.760000px;}
.y7a{bottom:42.120000px;}
.y105{bottom:43.200000px;}
.y115{bottom:43.560000px;}
.y10d{bottom:43.740000px;}
.y93{bottom:48.060000px;}
.y7{bottom:48.600000px;}
.yed{bottom:49.320000px;}
.yf3{bottom:49.365000px;}
.y81{bottom:49.500000px;}
.ye7{bottom:49.530000px;}
.y172{bottom:49.545000px;}
.y128{bottom:49.860000px;}
.y121{bottom:50.400000px;}
.y158{bottom:50.430000px;}
.y11b{bottom:51.300000px;}
.y118{bottom:51.480000px;}
.y13a{bottom:51.510000px;}
.y10a{bottom:51.525000px;}
.y133{bottom:52.020000px;}
.y13d{bottom:52.050000px;}
.y110{bottom:52.380000px;}
.y161{bottom:53.310000px;}
.ya0{bottom:55.620000px;}
.y79{bottom:57.600000px;}
.y11e{bottom:58.680000px;}
.y102{bottom:59.625000px;}
.y96{bottom:63.180000px;}
.yf7{bottom:64.980000px;}
.y171{bottom:65.025000px;}
.y84{bottom:65.880000px;}
.y157{bottom:65.910000px;}
.y127{bottom:66.420000px;}
.y117{bottom:66.960000px;}
.y109{bottom:67.005000px;}
.y132{bottom:67.500000px;}
.y13c{bottom:67.530000px;}
.y10f{bottom:67.860000px;}
.y11a{bottom:67.890000px;}
.y139{bottom:68.070000px;}
.y130{bottom:68.940000px;}
.y160{bottom:68.970000px;}
.y6{bottom:72.900000px;}
.y123{bottom:75.060000px;}
.y11d{bottom:75.240000px;}
.y104{bottom:76.185000px;}
.ya1{bottom:78.300000px;}
.y170{bottom:80.505000px;}
.y83{bottom:81.390000px;}
.y120{bottom:82.440000px;}
.y156{bottom:82.470000px;}
.y12d{bottom:82.485000px;}
.y126{bottom:82.845000px;}
.y116{bottom:83.340000px;}
.y108{bottom:83.385000px;}
.y15f{bottom:84.450000px;}
.yc9{bottom:88.560000px;}
.y20c{bottom:90.720000px;}
.y103{bottom:91.665000px;}
.y209{bottom:91.980000px;}
.y16f{bottom:95.985000px;}
.y144{bottom:96.300000px;}
.y155{bottom:97.950000px;}
.y12c{bottom:98.865000px;}
.y125{bottom:99.405000px;}
.y8c{bottom:99.900000px;}
.y15e{bottom:99.930000px;}
.y107{bottom:99.945000px;}
.yfc{bottom:102.240000px;}
.y1b5{bottom:105.840000px;}
.yc8{bottom:106.920000px;}
.y99{bottom:109.485000px;}
.y141{bottom:111.060000px;}
.y16e{bottom:111.645000px;}
.y1de{bottom:113.760000px;}
.y12b{bottom:114.345000px;}
.y154{bottom:114.510000px;}
.y124{bottom:114.885000px;}
.y15d{bottom:115.410000px;}
.y106{bottom:115.425000px;}
.y82{bottom:116.280000px;}
.yfb{bottom:117.000000px;}
.y17f{bottom:117.180000px;}
.y4a{bottom:119.340000px;}
.y1b4{bottom:122.940000px;}
.yc7{bottom:124.200000px;}
.y98{bottom:124.605000px;}
.y165{bottom:127.125000px;}
.y153{bottom:129.990000px;}
.y208{bottom:130.500000px;}
.y12a{bottom:130.905000px;}
.y1dd{bottom:131.040000px;}
.y15c{bottom:131.070000px;}
.y17e{bottom:134.460000px;}
.y49{bottom:136.620000px;}
.y1b3{bottom:140.220000px;}
.yc6{bottom:142.560000px;}
.y16d{bottom:142.605000px;}
.y152{bottom:145.470000px;}
.y129{bottom:146.385000px;}
.y15b{bottom:146.550000px;}
.y207{bottom:147.780000px;}
.y1dc{bottom:148.140000px;}
.y17d{bottom:151.740000px;}
.y48{bottom:153.900000px;}
.y1b2{bottom:157.500000px;}
.y16c{bottom:158.085000px;}
.yc5{bottom:160.740000px;}
.y151{bottom:160.950000px;}
.y15a{bottom:162.030000px;}
.y206{bottom:164.880000px;}
.y1db{bottom:165.420000px;}
.y17c{bottom:169.020000px;}
.y47{bottom:171.180000px;}
.y16b{bottom:173.565000px;}
.y1b1{bottom:174.780000px;}
.y150{bottom:177.510000px;}
.y137{bottom:177.660000px;}
.y86{bottom:179.100000px;}
.yf8{bottom:180.000000px;}
.y205{bottom:182.160000px;}
.y1da{bottom:182.700000px;}
.y17b{bottom:186.150000px;}
.y46{bottom:188.490000px;}
.y16a{bottom:189.225000px;}
.y1b0{bottom:192.090000px;}
.y14f{bottom:193.170000px;}
.yc4{bottom:197.490000px;}
.y204{bottom:199.470000px;}
.y1d9{bottom:200.010000px;}
.y17a{bottom:203.430000px;}
.y169{bottom:204.705000px;}
.y45{bottom:205.770000px;}
.y14e{bottom:208.650000px;}
.y1af{bottom:209.370000px;}
.yc3{bottom:215.850000px;}
.y203{bottom:216.750000px;}
.y1d8{bottom:217.290000px;}
.y168{bottom:220.185000px;}
.y179{bottom:220.710000px;}
.y44{bottom:222.870000px;}
.y85{bottom:226.470000px;}
.yc2{bottom:233.130000px;}
.y202{bottom:234.030000px;}
.y1d7{bottom:234.570000px;}
.y167{bottom:235.665000px;}
.y178{bottom:237.990000px;}
.y43{bottom:240.150000px;}
.yf5{bottom:243.210000px;}
.y1ae{bottom:243.750000px;}
.yc1{bottom:251.310000px;}
.y166{bottom:251.325000px;}
.y1d6{bottom:251.670000px;}
.y177{bottom:255.270000px;}
.y42{bottom:257.430000px;}
.y12e{bottom:259.950000px;}
.y1ad{bottom:261.030000px;}
.y201{bottom:268.410000px;}
.y1d5{bottom:268.950000px;}
.yc0{bottom:269.670000px;}
.y176{bottom:272.550000px;}
.y78{bottom:273.810000px;}
.y41{bottom:274.710000px;}
.y1ac{bottom:278.310000px;}
.y200{bottom:285.690000px;}
.y1d4{bottom:286.230000px;}
.ybf{bottom:288.030000px;}
.y175{bottom:289.650000px;}
.y40{bottom:291.990000px;}
.y1ab{bottom:295.590000px;}
.y1ff{bottom:302.970000px;}
.y1d3{bottom:303.510000px;}
.ybe{bottom:306.390000px;}
.y174{bottom:306.930000px;}
.y3f{bottom:309.270000px;}
.y1aa{bottom:312.870000px;}
.y1fe{bottom:320.250000px;}
.y1d2{bottom:320.790000px;}
.yf4{bottom:321.690000px;}
.ybd{bottom:323.670000px;}
.y1a9{bottom:329.970000px;}
.y3e{bottom:330.870000px;}
.y7b{bottom:336.630000px;}
.y1fd{bottom:337.530000px;}
.y1d1{bottom:338.070000px;}
.ybc{bottom:340.950000px;}
.y122{bottom:343.290000px;}
.y1a8{bottom:347.250000px;}
.y3d{bottom:352.650000px;}
.y1fc{bottom:354.630000px;}
.y1d0{bottom:355.170000px;}
.ybb{bottom:359.130000px;}
.y1a7{bottom:364.530000px;}
.y3c{bottom:369.930000px;}
.y1fb{bottom:371.910000px;}
.y1cf{bottom:372.450000px;}
.yba{bottom:376.410000px;}
.y76{bottom:383.970000px;}
.yf2{bottom:384.870000px;}
.y3b{bottom:387.210000px;}
.y1fa{bottom:389.190000px;}
.y1ce{bottom:389.730000px;}
.yb9{bottom:394.770000px;}
.y164{bottom:400.170000px;}
.y74{bottom:401.790000px;}
.y3a{bottom:404.490000px;}
.y1f9{bottom:406.470000px;}
.y1cd{bottom:407.010000px;}
.y4b{bottom:412.770000px;}
.yb8{bottom:413.130000px;}
.y39{bottom:421.770000px;}
.y1a6{bottom:423.750000px;}
.y1cc{bottom:424.290000px;}
.yb7{bottom:430.455000px;}
.y73{bottom:437.835000px;}
.y38{bottom:438.915000px;}
.y1f8{bottom:441.075000px;}
.y1cb{bottom:441.435000px;}
.yf1{bottom:447.915000px;}
.yb6{bottom:448.635000px;}
.y72{bottom:455.115000px;}
.y37{bottom:456.195000px;}
.y1f7{bottom:458.175000px;}
.y1ca{bottom:458.715000px;}
.yb5{bottom:466.995000px;}
.y71{bottom:472.395000px;}
.y36{bottom:472.755000px;}
.y1f6{bottom:475.455000px;}
.y1c9{bottom:475.995000px;}
.y1a5{bottom:483.015000px;}
.yb4{bottom:484.275000px;}
.y35{bottom:487.695000px;}
.y70{bottom:489.495000px;}
.y1f5{bottom:492.735000px;}
.y1c8{bottom:493.275000px;}
.y1a4{bottom:500.295000px;}
.y34{bottom:501.555000px;}
.y11c{bottom:504.075000px;}
.y6f{bottom:506.775000px;}
.y1f4{bottom:510.015000px;}
.y1c7{bottom:510.555000px;}
.yef{bottom:510.915000px;}
.y33{bottom:515.235000px;}
.y1a3{bottom:517.575000px;}
.yb3{bottom:518.835000px;}
.y6e{bottom:524.055000px;}
.y1f3{bottom:527.295000px;}
.y1c6{bottom:527.835000px;}
.y32{bottom:529.095000px;}
.y1a2{bottom:534.855000px;}
.yb2{bottom:536.115000px;}
.y6d{bottom:541.335000px;}
.y31{bottom:542.955000px;}
.y1f2{bottom:544.575000px;}
.y1c5{bottom:544.935000px;}
.y1a1{bottom:552.135000px;}
.yb1{bottom:554.295000px;}
.y30{bottom:556.635000px;}
.y6c{bottom:558.615000px;}
.y1f1{bottom:561.675000px;}
.y1c4{bottom:562.215000px;}
.y1a0{bottom:569.235000px;}
.y2f{bottom:570.495000px;}
.yb0{bottom:571.575000px;}
.yeb{bottom:574.095000px;}
.y6b{bottom:575.895000px;}
.y1f0{bottom:578.955000px;}
.y1c3{bottom:579.495000px;}
.y2e{bottom:584.355000px;}
.y19f{bottom:586.515000px;}
.yaf{bottom:589.935000px;}
.y6a{bottom:592.995000px;}
.y1ef{bottom:596.235000px;}
.y1c2{bottom:596.775000px;}
.y2d{bottom:598.035000px;}
.y119{bottom:600.915000px;}
.y19e{bottom:603.795000px;}
.yae{bottom:607.215000px;}
.y69{bottom:610.275000px;}
.y2c{bottom:611.895000px;}
.y1ee{bottom:613.515000px;}
.y1c1{bottom:614.055000px;}
.y19d{bottom:621.075000px;}
.yad{bottom:625.575000px;}
.y2b{bottom:625.755000px;}
.y68{bottom:627.555000px;}
.y1ed{bottom:630.795000px;}
.y1c0{bottom:631.335000px;}
.ye5{bottom:637.095000px;}
.y19c{bottom:638.355000px;}
.y2a{bottom:639.435000px;}
.yac{bottom:642.675000px;}
.y67{bottom:644.835000px;}
.y1ec{bottom:648.075000px;}
.y1bf{bottom:648.435000px;}
.y29{bottom:653.295000px;}
.y19b{bottom:655.635000px;}
.yab{bottom:659.955000px;}
.y66{bottom:662.115000px;}
.y14d{bottom:664.815000px;}
.y1eb{bottom:665.175000px;}
.y1be{bottom:665.715000px;}
.y28{bottom:667.005000px;}
.y19a{bottom:672.765000px;}
.yaa{bottom:677.265000px;}
.y65{bottom:679.425000px;}
.y27{bottom:680.865000px;}
.y1ea{bottom:682.485000px;}
.y114{bottom:683.205000px;}
.y199{bottom:690.045000px;}
.ya9{bottom:694.545000px;}
.y26{bottom:694.725000px;}
.y64{bottom:696.525000px;}
.y1e9{bottom:699.765000px;}
.ye4{bottom:700.125000px;}
.y198{bottom:707.325000px;}
.y25{bottom:708.405000px;}
.ya8{bottom:711.825000px;}
.y63{bottom:713.805000px;}
.y1e8{bottom:717.045000px;}
.y24{bottom:722.265000px;}
.y197{bottom:724.605000px;}
.y1bd{bottom:725.145000px;}
.ya7{bottom:729.105000px;}
.ye3{bottom:729.285000px;}
.y62{bottom:731.085000px;}
.y1e7{bottom:734.325000px;}
.y23{bottom:736.125000px;}
.y196{bottom:741.885000px;}
.ye2{bottom:744.945000px;}
.ya6{bottom:746.205000px;}
.y61{bottom:748.365000px;}
.y22{bottom:749.805000px;}
.y1e6{bottom:751.425000px;}
.ye1{bottom:755.205000px;}
.y195{bottom:759.165000px;}
.ya5{bottom:763.485000px;}
.y21{bottom:763.665000px;}
.y60{bottom:765.645000px;}
.y1e5{bottom:768.705000px;}
.ye0{bottom:772.485000px;}
.y194{bottom:776.265000px;}
.y20{bottom:777.525000px;}
.ya4{bottom:780.765000px;}
.y10c{bottom:780.945000px;}
.y5f{bottom:783.825000px;}
.y1bc{bottom:784.365000px;}
.y1e4{bottom:785.985000px;}
.ydf{bottom:789.765000px;}
.y1f{bottom:791.205000px;}
.y193{bottom:793.545000px;}
.ya3{bottom:797.145000px;}
.y5e{bottom:801.105000px;}
.y1bb{bottom:801.465000px;}
.y1e3{bottom:803.265000px;}
.y1e{bottom:805.065000px;}
.yde{bottom:806.865000px;}
.ya2{bottom:810.105000px;}
.y192{bottom:810.825000px;}
.y1ba{bottom:818.745000px;}
.y1d{bottom:818.925000px;}
.y5d{bottom:819.465000px;}
.y1e2{bottom:820.545000px;}
.ydd{bottom:824.145000px;}
.y97{bottom:824.865000px;}
.y191{bottom:828.105000px;}
.y1c{bottom:832.785000px;}
.y1b9{bottom:836.025000px;}
.y5c{bottom:837.825000px;}
.ydc{bottom:841.425000px;}
.y190{bottom:845.385000px;}
.y1b{bottom:849.885000px;}
.y1e1{bottom:851.685000px;}
.y1b8{bottom:853.305000px;}
.y5b{bottom:856.185000px;}
.ydb{bottom:858.705000px;}
.y18f{bottom:862.485000px;}
.y101{bottom:863.205000px;}
.y1a{bottom:866.985000px;}
.y1b7{bottom:870.585000px;}
.y5a{bottom:874.545000px;}
.yda{bottom:875.985000px;}
.y18e{bottom:879.765000px;}
.y19{bottom:884.265000px;}
.y1b6{bottom:887.685000px;}
.y59{bottom:892.725000px;}
.yd9{bottom:893.265000px;}
.y18d{bottom:897.045000px;}
.y18{bottom:901.545000px;}
.y14c{bottom:904.965000px;}
.yd8{bottom:910.410000px;}
.y58{bottom:911.130000px;}
.y1e0{bottom:913.830000px;}
.y18c{bottom:914.370000px;}
.y9f{bottom:915.990000px;}
.y17{bottom:918.870000px;}
.y14b{bottom:922.290000px;}
.yd7{bottom:927.690000px;}
.y57{bottom:929.490000px;}
.y18b{bottom:932.010000px;}
.y16{bottom:936.150000px;}
.y14a{bottom:939.570000px;}
.yd6{bottom:944.970000px;}
.y56{bottom:947.850000px;}
.y18a{bottom:950.550000px;}
.y15{bottom:953.430000px;}
.y149{bottom:956.850000px;}
.y9d{bottom:962.070000px;}
.yd5{bottom:963.330000px;}
.y55{bottom:965.130000px;}
.y189{bottom:968.190000px;}
.y14{bottom:971.250000px;}
.y148{bottom:974.130000px;}
.yd4{bottom:981.690000px;}
.y54{bottom:982.230000px;}
.y188{bottom:986.730000px;}
.y147{bottom:991.230000px;}
.y13{bottom:991.950000px;}
.yff{bottom:993.030000px;}
.y53{bottom:999.510000px;}
.yd3{bottom:999.870000px;}
.y187{bottom:1004.010000px;}
.y1df{bottom:1007.070000px;}
.y146{bottom:1008.510000px;}
.y12{bottom:1012.650000px;}
.y52{bottom:1016.790000px;}
.yd2{bottom:1018.230000px;}
.y186{bottom:1021.290000px;}
.y9a{bottom:1023.090000px;}
.y145{bottom:1025.790000px;}
.y11{bottom:1033.350000px;}
.y51{bottom:1034.070000px;}
.yd1{bottom:1035.510000px;}
.y185{bottom:1038.570000px;}
.yfe{bottom:1043.070000px;}
.yd0{bottom:1053.870000px;}
.y10{bottom:1054.050000px;}
.y50{bottom:1055.850000px;}
.yfd{bottom:1060.350000px;}
.y90{bottom:1068.990000px;}
.ycf{bottom:1072.230000px;}
.y184{bottom:1073.130000px;}
.yf{bottom:1074.750000px;}
.y4f{bottom:1077.630000px;}
.y183{bottom:1090.230000px;}
.yce{bottom:1090.410000px;}
.ye{bottom:1094.730000px;}
.y182{bottom:1107.510000px;}
.ycd{bottom:1108.770000px;}
.yd{bottom:1112.010000px;}
.y181{bottom:1124.790000px;}
.ycc{bottom:1126.050000px;}
.yc{bottom:1129.290000px;}
.y180{bottom:1142.070000px;}
.ycb{bottom:1144.410000px;}
.y8f{bottom:1145.130000px;}
.yb{bottom:1146.570000px;}
.y8d{bottom:1161.360000px;}
.yca{bottom:1162.800000px;}
.ya{bottom:1163.880000px;}
.y5{bottom:1188.000000px;}
.y1{bottom:1200.060000px;}
.h42{height:5.653125px;}
.h28{height:14.760000px;}
.h3c{height:15.480000px;}
.h1f{height:15.516000px;}
.h3e{height:15.660000px;}
.h1d{height:16.560000px;}
.h16{height:17.100000px;}
.h7{height:17.903320px;}
.h2{height:20.340000px;}
.h8{height:21.420000px;}
.h5{height:27.210938px;}
.h27{height:29.678906px;}
.h2e{height:30.960000px;}
.h3{height:31.564687px;}
.h10{height:33.824531px;}
.h40{height:35.280000px;}
.h18{height:37.863281px;}
.h26{height:40.985156px;}
.h11{height:41.902031px;}
.h22{height:45.180000px;}
.h24{height:45.360000px;}
.h19{height:46.620000px;}
.h1c{height:46.656000px;}
.hf{height:47.321367px;}
.h6{height:47.344922px;}
.h41{height:48.616875px;}
.h9{height:50.068125px;}
.h29{height:50.171484px;}
.h2b{height:52.543305px;}
.h1e{height:52.971680px;}
.h4{height:52.998047px;}
.h3d{height:53.709961px;}
.h30{height:55.503491px;}
.he{height:58.621992px;}
.hb{height:58.651172px;}
.h13{height:59.256000px;}
.h12{height:60.226875px;}
.h23{height:60.300000px;}
.h15{height:61.423863px;}
.h1a{height:62.100000px;}
.h3f{height:62.136000px;}
.h2c{height:62.280000px;}
.h2a{height:62.316000px;}
.h37{height:65.880000px;}
.ha{height:65.884219px;}
.h3b{height:66.757500px;}
.hc{height:72.562500px;}
.h20{height:75.420000px;}
.h3a{height:77.580000px;}
.h2d{height:77.760000px;}
.h31{height:81.540000px;}
.h33{height:81.576000px;}
.h36{height:82.440000px;}
.hd{height:84.898125px;}
.h25{height:90.396000px;}
.h34{height:96.120000px;}
.h32{height:97.020000px;}
.h17{height:109.440000px;}
.h2f{height:129.096000px;}
.h1b{height:156.810000px;}
.h35{height:160.050000px;}
.h38{height:221.250000px;}
.h21{height:243.390000px;}
.h39{height:263.910000px;}
.h14{height:282.656250px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:21.240000px;}
.w7{width:61.920000px;}
.w20{width:84.960000px;}
.w15{width:126.360000px;}
.wd{width:126.756000px;}
.w10{width:127.116000px;}
.w1c{width:133.416000px;}
.w1a{width:133.956000px;}
.w18{width:135.540000px;}
.w1b{width:136.440000px;}
.w19{width:136.476000px;}
.wc{width:137.160000px;}
.w3{width:157.530000px;}
.wf{width:158.070000px;}
.w12{width:158.430000px;}
.w13{width:190.290000px;}
.w8{width:228.990000px;}
.w4{width:253.110000px;}
.we{width:254.370000px;}
.w11{width:254.730000px;}
.w2{width:269.670000px;}
.w1e{width:270.570000px;}
.w1d{width:272.730000px;}
.w17{width:275.430000px;}
.w16{width:275.475000px;}
.wa{width:434.415000px;}
.w14{width:487.695000px;}
.w21{width:595.545000px;}
.w6{width:680.325000px;}
.w1f{width:682.485000px;}
.wb{width:688.785000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x57{left:1.980000px;}
.x5b{left:5.220000px;}
.x2{left:8.100000px;}
.x1a{left:9.360000px;}
.x4c{left:10.440000px;}
.x17{left:11.700000px;}
.x41{left:12.960000px;}
.x3e{left:14.040000px;}
.x28{left:15.660000px;}
.x32{left:17.460000px;}
.x47{left:19.440000px;}
.x2c{left:20.520000px;}
.x2a{left:23.040000px;}
.x2d{left:24.300000px;}
.x31{left:25.920000px;}
.x2f{left:27.360000px;}
.x2b{left:29.520000px;}
.x4b{left:32.085000px;}
.x3d{left:33.480000px;}
.x4{left:35.640000px;}
.x48{left:36.720000px;}
.x40{left:38.520000px;}
.x1e{left:40.680000px;}
.x3f{left:42.120000px;}
.x29{left:44.145000px;}
.x36{left:45.174000px;}
.x37{left:46.974000px;}
.x30{left:48.234000px;}
.x6{left:50.040000px;}
.x23{left:54.045000px;}
.x52{left:55.440000px;}
.x25{left:59.985000px;}
.x3a{left:62.865000px;}
.x24{left:65.154000px;}
.x4a{left:66.645000px;}
.x44{left:67.674000px;}
.x59{left:74.334000px;}
.x27{left:75.465000px;}
.x51{left:79.020000px;}
.x4d{left:85.494000px;}
.x4f{left:90.000000px;}
.x16{left:93.276000px;}
.x18{left:104.256000px;}
.x1{left:106.416000px;}
.x21{left:111.990000px;}
.x58{left:114.516000px;}
.x3c{left:116.280000px;}
.x26{left:123.690000px;}
.x42{left:124.775987px;}
.x15{left:127.655987px;}
.x54{left:133.235987px;}
.x50{left:135.180000px;}
.x4e{left:136.434000px;}
.x14{left:155.189987px;}
.x55{left:159.869987px;}
.x13{left:162.929987px;}
.xc{left:169.589987px;}
.x38{left:178.769987px;}
.x9{left:182.549987px;}
.x33{left:185.789987px;}
.x43{left:187.949987px;}
.x5a{left:199.470000px;}
.xd{left:226.469987px;}
.x39{left:234.390000px;}
.x45{left:243.390000px;}
.x1f{left:245.010000px;}
.xa{left:247.529987px;}
.x35{left:256.170000px;}
.x34{left:298.335000px;}
.x1d{left:316.694987px;}
.x56{left:331.959000px;}
.x19{left:333.255000px;}
.x8{left:335.739000px;}
.x1c{left:339.699000px;}
.x1b{left:354.495000px;}
.x20{left:372.675000px;}
.x3{left:376.095000px;}
.x46{left:380.775000px;}
.x53{left:418.574987px;}
.xe{left:420.014987px;}
.xb{left:446.474987px;}
.xf{left:448.814987px;}
.x3b{left:510.585000px;}
.x2e{left:515.769000px;}
.x5{left:533.625000px;}
.x10{left:596.984987px;}
.x11{left:617.864987px;}
.x22{left:627.945000px;}
.x49{left:652.605000px;}
.x12{left:661.244987px;}
.x7{left:786.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls33{letter-spacing:-0.656000pt;}
.ls34{letter-spacing:-0.624000pt;}
.ls24{letter-spacing:-0.592000pt;}
.ls31{letter-spacing:-0.480000pt;}
.ls26{letter-spacing:-0.320000pt;}
.ls20{letter-spacing:-0.288000pt;}
.ls1a{letter-spacing:-0.259200pt;}
.ls14{letter-spacing:-0.096000pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:-0.040320pt;}
.ls32{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.013440pt;}
.ls12{letter-spacing:0.016000pt;}
.ls2c{letter-spacing:0.032000pt;}
.ls2{letter-spacing:0.047360pt;}
.ls13{letter-spacing:0.094933pt;}
.ls27{letter-spacing:0.096000pt;}
.ls2e{letter-spacing:0.112000pt;}
.ls0{letter-spacing:0.116480pt;}
.ls1c{letter-spacing:0.138667pt;}
.ls4{letter-spacing:0.160000pt;}
.ls2a{letter-spacing:0.176000pt;}
.ls1{letter-spacing:0.186880pt;}
.ls18{letter-spacing:0.228480pt;}
.lsf{letter-spacing:0.231040pt;}
.ls35{letter-spacing:0.239467pt;}
.ls2f{letter-spacing:0.240000pt;}
.ls6{letter-spacing:0.256000pt;}
.ls22{letter-spacing:0.265600pt;}
.ls1f{letter-spacing:0.281600pt;}
.ls3{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.335147pt;}
.ls30{letter-spacing:0.416000pt;}
.ls2b{letter-spacing:0.480000pt;}
.ls11{letter-spacing:0.656000pt;}
.lsb{letter-spacing:0.960000pt;}
.ls23{letter-spacing:1.440000pt;}
.ls5{letter-spacing:3.360000pt;}
.ls1e{letter-spacing:4.640000pt;}
.ls15{letter-spacing:5.280000pt;}
.lsc{letter-spacing:7.200000pt;}
.ls10{letter-spacing:7.632640pt;}
.ls29{letter-spacing:7.840000pt;}
.ls28{letter-spacing:8.480000pt;}
.lsa{letter-spacing:9.760000pt;}
.ls1b{letter-spacing:11.040000pt;}
.ls25{letter-spacing:13.392640pt;}
.ls2d{letter-spacing:21.280000pt;}
.lsd{letter-spacing:25.120000pt;}
.lse{letter-spacing:25.760000pt;}
.ls1d{letter-spacing:35.936000pt;}
.ls17{letter-spacing:37.927680pt;}
.ls21{letter-spacing:39.611307pt;}
.ws9{word-spacing:-53.120000pt;}
.ws15{word-spacing:-48.416000pt;}
.ws14{word-spacing:-48.240000pt;}
.wse{word-spacing:-48.000000pt;}
.ws2{word-spacing:-16.000000pt;}
.wsf{word-spacing:-14.471680pt;}
.ws3{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.374933pt;}
.ws1{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.020800pt;}
.ws13{word-spacing:-12.960000pt;}
.ws12{word-spacing:-12.688000pt;}
.ws11{word-spacing:-12.320000pt;}
.ws1a{word-spacing:-12.160000pt;}
.ws19{word-spacing:-12.112000pt;}
.wsa{word-spacing:-12.000000pt;}
.ws16{word-spacing:-11.984000pt;}
.wsb{word-spacing:-11.904000pt;}
.ws10{word-spacing:-11.712000pt;}
.ws17{word-spacing:-11.680000pt;}
.wsd{word-spacing:-11.360000pt;}
.ws18{word-spacing:-11.344000pt;}
.ws1c{word-spacing:-11.040000pt;}
.ws1b{word-spacing:-10.959467pt;}
.ws4{word-spacing:-10.720000pt;}
.ws0{word-spacing:-8.945920pt;}
.ws7{word-spacing:-7.095040pt;}
.ws6{word-spacing:0.000000pt;}
._16{margin-left:-3.011413pt;}
._13{margin-left:-1.887787pt;}
._1{margin-left:-0.927573pt;}
._0{width:1.581227pt;}
._7{width:2.719573pt;}
._9{width:3.724587pt;}
._3{width:4.931200pt;}
._4{width:5.881387pt;}
._8{width:7.273813pt;}
._d{width:8.318080pt;}
._2{width:9.787947pt;}
._12{width:11.314560pt;}
._11{width:12.223147pt;}
._6{width:13.877333pt;}
._5{width:14.949333pt;}
._e{width:16.116907pt;}
._b{width:17.136213pt;}
._c{width:18.122453pt;}
._15{width:19.012267pt;}
._17{width:20.451200pt;}
._1a{width:21.360000pt;}
._f{width:24.365867pt;}
._10{width:25.656960pt;}
._a{width:31.559680pt;}
._14{width:33.040640pt;}
._19{width:36.227840pt;}
._18{width:37.608960pt;}
.fsd{font-size:5.120000pt;}
.fs5{font-size:16.000000pt;}
.fsb{font-size:26.880000pt;}
.fsa{font-size:29.440000pt;}
.fs3{font-size:32.000000pt;}
.fs0{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fsc{font-size:45.440000pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.fs9{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y20a{bottom:2.240000pt;}
.yea{bottom:2.400000pt;}
.y4c{bottom:2.560000pt;}
.y159{bottom:2.586667pt;}
.y80{bottom:2.720000pt;}
.y8e{bottom:2.880000pt;}
.y140{bottom:3.040000pt;}
.y75{bottom:3.200000pt;}
.y77{bottom:3.360000pt;}
.y3{bottom:3.840000pt;}
.y136{bottom:4.000000pt;}
.y8{bottom:5.600000pt;}
.y2{bottom:5.760000pt;}
.y4{bottom:6.240000pt;}
.y4e{bottom:6.400000pt;}
.y11f{bottom:9.120000pt;}
.y9c{bottom:9.280000pt;}
.y100{bottom:9.440000pt;}
.y7d{bottom:9.600000pt;}
.y88{bottom:9.626667pt;}
.y4d{bottom:10.720000pt;}
.y20b{bottom:14.560000pt;}
.y95{bottom:16.000000pt;}
.ye9{bottom:16.160000pt;}
.yf0{bottom:16.320000pt;}
.yfa{bottom:16.346667pt;}
.y7f{bottom:16.480000pt;}
.y8a{bottom:16.506667pt;}
.y143{bottom:17.120000pt;}
.y112{bottom:17.280000pt;}
.y135{bottom:17.760000pt;}
.y13f{bottom:17.786667pt;}
.y142{bottom:18.080000pt;}
.y163{bottom:19.866667pt;}
.y9b{bottom:22.560000pt;}
.y92{bottom:22.720000pt;}
.y7c{bottom:23.360000pt;}
.y87{bottom:23.386667pt;}
.yec{bottom:23.520000pt;}
.ye6{bottom:23.680000pt;}
.yf9{bottom:23.706667pt;}
.y113{bottom:24.640000pt;}
.y10e{bottom:24.960000pt;}
.y9{bottom:29.280000pt;}
.y94{bottom:29.440000pt;}
.yee{bottom:30.080000pt;}
.ye8{bottom:30.106667pt;}
.y173{bottom:30.120000pt;}
.y7e{bottom:30.240000pt;}
.y89{bottom:30.266667pt;}
.yf6{bottom:30.560000pt;}
.y10b{bottom:31.040000pt;}
.y13b{bottom:31.066667pt;}
.y134{bottom:31.520000pt;}
.y13e{bottom:31.546667pt;}
.y111{bottom:31.840000pt;}
.y131{bottom:32.000000pt;}
.y138{bottom:32.026667pt;}
.y12f{bottom:32.480000pt;}
.y162{bottom:33.626667pt;}
.y9e{bottom:36.000000pt;}
.y91{bottom:36.160000pt;}
.y8b{bottom:37.120000pt;}
.y7a{bottom:37.440000pt;}
.y105{bottom:38.400000pt;}
.y115{bottom:38.720000pt;}
.y10d{bottom:38.880000pt;}
.y93{bottom:42.720000pt;}
.y7{bottom:43.200000pt;}
.yed{bottom:43.840000pt;}
.yf3{bottom:43.880000pt;}
.y81{bottom:44.000000pt;}
.ye7{bottom:44.026667pt;}
.y172{bottom:44.040000pt;}
.y128{bottom:44.320000pt;}
.y121{bottom:44.800000pt;}
.y158{bottom:44.826667pt;}
.y11b{bottom:45.600000pt;}
.y118{bottom:45.760000pt;}
.y13a{bottom:45.786667pt;}
.y10a{bottom:45.800000pt;}
.y133{bottom:46.240000pt;}
.y13d{bottom:46.266667pt;}
.y110{bottom:46.560000pt;}
.y161{bottom:47.386667pt;}
.ya0{bottom:49.440000pt;}
.y79{bottom:51.200000pt;}
.y11e{bottom:52.160000pt;}
.y102{bottom:53.000000pt;}
.y96{bottom:56.160000pt;}
.yf7{bottom:57.760000pt;}
.y171{bottom:57.800000pt;}
.y84{bottom:58.560000pt;}
.y157{bottom:58.586667pt;}
.y127{bottom:59.040000pt;}
.y117{bottom:59.520000pt;}
.y109{bottom:59.560000pt;}
.y132{bottom:60.000000pt;}
.y13c{bottom:60.026667pt;}
.y10f{bottom:60.320000pt;}
.y11a{bottom:60.346667pt;}
.y139{bottom:60.506667pt;}
.y130{bottom:61.280000pt;}
.y160{bottom:61.306667pt;}
.y6{bottom:64.800000pt;}
.y123{bottom:66.720000pt;}
.y11d{bottom:66.880000pt;}
.y104{bottom:67.720000pt;}
.ya1{bottom:69.600000pt;}
.y170{bottom:71.560000pt;}
.y83{bottom:72.346667pt;}
.y120{bottom:73.280000pt;}
.y156{bottom:73.306667pt;}
.y12d{bottom:73.320000pt;}
.y126{bottom:73.640000pt;}
.y116{bottom:74.080000pt;}
.y108{bottom:74.120000pt;}
.y15f{bottom:75.066667pt;}
.yc9{bottom:78.720000pt;}
.y20c{bottom:80.640000pt;}
.y103{bottom:81.480000pt;}
.y209{bottom:81.760000pt;}
.y16f{bottom:85.320000pt;}
.y144{bottom:85.600000pt;}
.y155{bottom:87.066667pt;}
.y12c{bottom:87.880000pt;}
.y125{bottom:88.360000pt;}
.y8c{bottom:88.800000pt;}
.y15e{bottom:88.826667pt;}
.y107{bottom:88.840000pt;}
.yfc{bottom:90.880000pt;}
.y1b5{bottom:94.080000pt;}
.yc8{bottom:95.040000pt;}
.y99{bottom:97.320000pt;}
.y141{bottom:98.720000pt;}
.y16e{bottom:99.240000pt;}
.y1de{bottom:101.120000pt;}
.y12b{bottom:101.640000pt;}
.y154{bottom:101.786667pt;}
.y124{bottom:102.120000pt;}
.y15d{bottom:102.586667pt;}
.y106{bottom:102.600000pt;}
.y82{bottom:103.360000pt;}
.yfb{bottom:104.000000pt;}
.y17f{bottom:104.160000pt;}
.y4a{bottom:106.080000pt;}
.y1b4{bottom:109.280000pt;}
.yc7{bottom:110.400000pt;}
.y98{bottom:110.760000pt;}
.y165{bottom:113.000000pt;}
.y153{bottom:115.546667pt;}
.y208{bottom:116.000000pt;}
.y12a{bottom:116.360000pt;}
.y1dd{bottom:116.480000pt;}
.y15c{bottom:116.506667pt;}
.y17e{bottom:119.520000pt;}
.y49{bottom:121.440000pt;}
.y1b3{bottom:124.640000pt;}
.yc6{bottom:126.720000pt;}
.y16d{bottom:126.760000pt;}
.y152{bottom:129.306667pt;}
.y129{bottom:130.120000pt;}
.y15b{bottom:130.266667pt;}
.y207{bottom:131.360000pt;}
.y1dc{bottom:131.680000pt;}
.y17d{bottom:134.880000pt;}
.y48{bottom:136.800000pt;}
.y1b2{bottom:140.000000pt;}
.y16c{bottom:140.520000pt;}
.yc5{bottom:142.880000pt;}
.y151{bottom:143.066667pt;}
.y15a{bottom:144.026667pt;}
.y206{bottom:146.560000pt;}
.y1db{bottom:147.040000pt;}
.y17c{bottom:150.240000pt;}
.y47{bottom:152.160000pt;}
.y16b{bottom:154.280000pt;}
.y1b1{bottom:155.360000pt;}
.y150{bottom:157.786667pt;}
.y137{bottom:157.920000pt;}
.y86{bottom:159.200000pt;}
.yf8{bottom:160.000000pt;}
.y205{bottom:161.920000pt;}
.y1da{bottom:162.400000pt;}
.y17b{bottom:165.466667pt;}
.y46{bottom:167.546667pt;}
.y16a{bottom:168.200000pt;}
.y1b0{bottom:170.746667pt;}
.y14f{bottom:171.706667pt;}
.yc4{bottom:175.546667pt;}
.y204{bottom:177.306667pt;}
.y1d9{bottom:177.786667pt;}
.y17a{bottom:180.826667pt;}
.y169{bottom:181.960000pt;}
.y45{bottom:182.906667pt;}
.y14e{bottom:185.466667pt;}
.y1af{bottom:186.106667pt;}
.yc3{bottom:191.866667pt;}
.y203{bottom:192.666667pt;}
.y1d8{bottom:193.146667pt;}
.y168{bottom:195.720000pt;}
.y179{bottom:196.186667pt;}
.y44{bottom:198.106667pt;}
.y85{bottom:201.306667pt;}
.yc2{bottom:207.226667pt;}
.y202{bottom:208.026667pt;}
.y1d7{bottom:208.506667pt;}
.y167{bottom:209.480000pt;}
.y178{bottom:211.546667pt;}
.y43{bottom:213.466667pt;}
.yf5{bottom:216.186667pt;}
.y1ae{bottom:216.666667pt;}
.yc1{bottom:223.386667pt;}
.y166{bottom:223.400000pt;}
.y1d6{bottom:223.706667pt;}
.y177{bottom:226.906667pt;}
.y42{bottom:228.826667pt;}
.y12e{bottom:231.066667pt;}
.y1ad{bottom:232.026667pt;}
.y201{bottom:238.586667pt;}
.y1d5{bottom:239.066667pt;}
.yc0{bottom:239.706667pt;}
.y176{bottom:242.266667pt;}
.y78{bottom:243.386667pt;}
.y41{bottom:244.186667pt;}
.y1ac{bottom:247.386667pt;}
.y200{bottom:253.946667pt;}
.y1d4{bottom:254.426667pt;}
.ybf{bottom:256.026667pt;}
.y175{bottom:257.466667pt;}
.y40{bottom:259.546667pt;}
.y1ab{bottom:262.746667pt;}
.y1ff{bottom:269.306667pt;}
.y1d3{bottom:269.786667pt;}
.ybe{bottom:272.346667pt;}
.y174{bottom:272.826667pt;}
.y3f{bottom:274.906667pt;}
.y1aa{bottom:278.106667pt;}
.y1fe{bottom:284.666667pt;}
.y1d2{bottom:285.146667pt;}
.yf4{bottom:285.946667pt;}
.ybd{bottom:287.706667pt;}
.y1a9{bottom:293.306667pt;}
.y3e{bottom:294.106667pt;}
.y7b{bottom:299.226667pt;}
.y1fd{bottom:300.026667pt;}
.y1d1{bottom:300.506667pt;}
.ybc{bottom:303.066667pt;}
.y122{bottom:305.146667pt;}
.y1a8{bottom:308.666667pt;}
.y3d{bottom:313.466667pt;}
.y1fc{bottom:315.226667pt;}
.y1d0{bottom:315.706667pt;}
.ybb{bottom:319.226667pt;}
.y1a7{bottom:324.026667pt;}
.y3c{bottom:328.826667pt;}
.y1fb{bottom:330.586667pt;}
.y1cf{bottom:331.066667pt;}
.yba{bottom:334.586667pt;}
.y76{bottom:341.306667pt;}
.yf2{bottom:342.106667pt;}
.y3b{bottom:344.186667pt;}
.y1fa{bottom:345.946667pt;}
.y1ce{bottom:346.426667pt;}
.yb9{bottom:350.906667pt;}
.y164{bottom:355.706667pt;}
.y74{bottom:357.146667pt;}
.y3a{bottom:359.546667pt;}
.y1f9{bottom:361.306667pt;}
.y1cd{bottom:361.786667pt;}
.y4b{bottom:366.906667pt;}
.yb8{bottom:367.226667pt;}
.y39{bottom:374.906667pt;}
.y1a6{bottom:376.666667pt;}
.y1cc{bottom:377.146667pt;}
.yb7{bottom:382.626667pt;}
.y73{bottom:389.186667pt;}
.y38{bottom:390.146667pt;}
.y1f8{bottom:392.066667pt;}
.y1cb{bottom:392.386667pt;}
.yf1{bottom:398.146667pt;}
.yb6{bottom:398.786667pt;}
.y72{bottom:404.546667pt;}
.y37{bottom:405.506667pt;}
.y1f7{bottom:407.266667pt;}
.y1ca{bottom:407.746667pt;}
.yb5{bottom:415.106667pt;}
.y71{bottom:419.906667pt;}
.y36{bottom:420.226667pt;}
.y1f6{bottom:422.626667pt;}
.y1c9{bottom:423.106667pt;}
.y1a5{bottom:429.346667pt;}
.yb4{bottom:430.466667pt;}
.y35{bottom:433.506667pt;}
.y70{bottom:435.106667pt;}
.y1f5{bottom:437.986667pt;}
.y1c8{bottom:438.466667pt;}
.y1a4{bottom:444.706667pt;}
.y34{bottom:445.826667pt;}
.y11c{bottom:448.066667pt;}
.y6f{bottom:450.466667pt;}
.y1f4{bottom:453.346667pt;}
.y1c7{bottom:453.826667pt;}
.yef{bottom:454.146667pt;}
.y33{bottom:457.986667pt;}
.y1a3{bottom:460.066667pt;}
.yb3{bottom:461.186667pt;}
.y6e{bottom:465.826667pt;}
.y1f3{bottom:468.706667pt;}
.y1c6{bottom:469.186667pt;}
.y32{bottom:470.306667pt;}
.y1a2{bottom:475.426667pt;}
.yb2{bottom:476.546667pt;}
.y6d{bottom:481.186667pt;}
.y31{bottom:482.626667pt;}
.y1f2{bottom:484.066667pt;}
.y1c5{bottom:484.386667pt;}
.y1a1{bottom:490.786667pt;}
.yb1{bottom:492.706667pt;}
.y30{bottom:494.786667pt;}
.y6c{bottom:496.546667pt;}
.y1f1{bottom:499.266667pt;}
.y1c4{bottom:499.746667pt;}
.y1a0{bottom:505.986667pt;}
.y2f{bottom:507.106667pt;}
.yb0{bottom:508.066667pt;}
.yeb{bottom:510.306667pt;}
.y6b{bottom:511.906667pt;}
.y1f0{bottom:514.626667pt;}
.y1c3{bottom:515.106667pt;}
.y2e{bottom:519.426667pt;}
.y19f{bottom:521.346667pt;}
.yaf{bottom:524.386667pt;}
.y6a{bottom:527.106667pt;}
.y1ef{bottom:529.986667pt;}
.y1c2{bottom:530.466667pt;}
.y2d{bottom:531.586667pt;}
.y119{bottom:534.146667pt;}
.y19e{bottom:536.706667pt;}
.yae{bottom:539.746667pt;}
.y69{bottom:542.466667pt;}
.y2c{bottom:543.906667pt;}
.y1ee{bottom:545.346667pt;}
.y1c1{bottom:545.826667pt;}
.y19d{bottom:552.066667pt;}
.yad{bottom:556.066667pt;}
.y2b{bottom:556.226667pt;}
.y68{bottom:557.826667pt;}
.y1ed{bottom:560.706667pt;}
.y1c0{bottom:561.186667pt;}
.ye5{bottom:566.306667pt;}
.y19c{bottom:567.426667pt;}
.y2a{bottom:568.386667pt;}
.yac{bottom:571.266667pt;}
.y67{bottom:573.186667pt;}
.y1ec{bottom:576.066667pt;}
.y1bf{bottom:576.386667pt;}
.y29{bottom:580.706667pt;}
.y19b{bottom:582.786667pt;}
.yab{bottom:586.626667pt;}
.y66{bottom:588.546667pt;}
.y14d{bottom:590.946667pt;}
.y1eb{bottom:591.266667pt;}
.y1be{bottom:591.746667pt;}
.y28{bottom:592.893333pt;}
.y19a{bottom:598.013333pt;}
.yaa{bottom:602.013333pt;}
.y65{bottom:603.933333pt;}
.y27{bottom:605.213333pt;}
.y1ea{bottom:606.653333pt;}
.y114{bottom:607.293333pt;}
.y199{bottom:613.373333pt;}
.ya9{bottom:617.373333pt;}
.y26{bottom:617.533333pt;}
.y64{bottom:619.133333pt;}
.y1e9{bottom:622.013333pt;}
.ye4{bottom:622.333333pt;}
.y198{bottom:628.733333pt;}
.y25{bottom:629.693333pt;}
.ya8{bottom:632.733333pt;}
.y63{bottom:634.493333pt;}
.y1e8{bottom:637.373333pt;}
.y24{bottom:642.013333pt;}
.y197{bottom:644.093333pt;}
.y1bd{bottom:644.573333pt;}
.ya7{bottom:648.093333pt;}
.ye3{bottom:648.253333pt;}
.y62{bottom:649.853333pt;}
.y1e7{bottom:652.733333pt;}
.y23{bottom:654.333333pt;}
.y196{bottom:659.453333pt;}
.ye2{bottom:662.173333pt;}
.ya6{bottom:663.293333pt;}
.y61{bottom:665.213333pt;}
.y22{bottom:666.493333pt;}
.y1e6{bottom:667.933333pt;}
.ye1{bottom:671.293333pt;}
.y195{bottom:674.813333pt;}
.ya5{bottom:678.653333pt;}
.y21{bottom:678.813333pt;}
.y60{bottom:680.573333pt;}
.y1e5{bottom:683.293333pt;}
.ye0{bottom:686.653333pt;}
.y194{bottom:690.013333pt;}
.y20{bottom:691.133333pt;}
.ya4{bottom:694.013333pt;}
.y10c{bottom:694.173333pt;}
.y5f{bottom:696.733333pt;}
.y1bc{bottom:697.213333pt;}
.y1e4{bottom:698.653333pt;}
.ydf{bottom:702.013333pt;}
.y1f{bottom:703.293333pt;}
.y193{bottom:705.373333pt;}
.ya3{bottom:708.573333pt;}
.y5e{bottom:712.093333pt;}
.y1bb{bottom:712.413333pt;}
.y1e3{bottom:714.013333pt;}
.y1e{bottom:715.613333pt;}
.yde{bottom:717.213333pt;}
.ya2{bottom:720.093333pt;}
.y192{bottom:720.733333pt;}
.y1ba{bottom:727.773333pt;}
.y1d{bottom:727.933333pt;}
.y5d{bottom:728.413333pt;}
.y1e2{bottom:729.373333pt;}
.ydd{bottom:732.573333pt;}
.y97{bottom:733.213333pt;}
.y191{bottom:736.093333pt;}
.y1c{bottom:740.253333pt;}
.y1b9{bottom:743.133333pt;}
.y5c{bottom:744.733333pt;}
.ydc{bottom:747.933333pt;}
.y190{bottom:751.453333pt;}
.y1b{bottom:755.453333pt;}
.y1e1{bottom:757.053333pt;}
.y1b8{bottom:758.493333pt;}
.y5b{bottom:761.053333pt;}
.ydb{bottom:763.293333pt;}
.y18f{bottom:766.653333pt;}
.y101{bottom:767.293333pt;}
.y1a{bottom:770.653333pt;}
.y1b7{bottom:773.853333pt;}
.y5a{bottom:777.373333pt;}
.yda{bottom:778.653333pt;}
.y18e{bottom:782.013333pt;}
.y19{bottom:786.013333pt;}
.y1b6{bottom:789.053333pt;}
.y59{bottom:793.533333pt;}
.yd9{bottom:794.013333pt;}
.y18d{bottom:797.373333pt;}
.y18{bottom:801.373333pt;}
.y14c{bottom:804.413333pt;}
.yd8{bottom:809.253333pt;}
.y58{bottom:809.893333pt;}
.y1e0{bottom:812.293333pt;}
.y18c{bottom:812.773333pt;}
.y9f{bottom:814.213333pt;}
.y17{bottom:816.773333pt;}
.y14b{bottom:819.813333pt;}
.yd7{bottom:824.613333pt;}
.y57{bottom:826.213333pt;}
.y18b{bottom:828.453333pt;}
.y16{bottom:832.133333pt;}
.y14a{bottom:835.173333pt;}
.yd6{bottom:839.973333pt;}
.y56{bottom:842.533333pt;}
.y18a{bottom:844.933333pt;}
.y15{bottom:847.493333pt;}
.y149{bottom:850.533333pt;}
.y9d{bottom:855.173333pt;}
.yd5{bottom:856.293333pt;}
.y55{bottom:857.893333pt;}
.y189{bottom:860.613333pt;}
.y14{bottom:863.333333pt;}
.y148{bottom:865.893333pt;}
.yd4{bottom:872.613333pt;}
.y54{bottom:873.093333pt;}
.y188{bottom:877.093333pt;}
.y147{bottom:881.093333pt;}
.y13{bottom:881.733333pt;}
.yff{bottom:882.693333pt;}
.y53{bottom:888.453333pt;}
.yd3{bottom:888.773333pt;}
.y187{bottom:892.453333pt;}
.y1df{bottom:895.173333pt;}
.y146{bottom:896.453333pt;}
.y12{bottom:900.133333pt;}
.y52{bottom:903.813333pt;}
.yd2{bottom:905.093333pt;}
.y186{bottom:907.813333pt;}
.y9a{bottom:909.413333pt;}
.y145{bottom:911.813333pt;}
.y11{bottom:918.533333pt;}
.y51{bottom:919.173333pt;}
.yd1{bottom:920.453333pt;}
.y185{bottom:923.173333pt;}
.yfe{bottom:927.173333pt;}
.yd0{bottom:936.773333pt;}
.y10{bottom:936.933333pt;}
.y50{bottom:938.533333pt;}
.yfd{bottom:942.533333pt;}
.y90{bottom:950.213333pt;}
.ycf{bottom:953.093333pt;}
.y184{bottom:953.893333pt;}
.yf{bottom:955.333333pt;}
.y4f{bottom:957.893333pt;}
.y183{bottom:969.093333pt;}
.yce{bottom:969.253333pt;}
.ye{bottom:973.093333pt;}
.y182{bottom:984.453333pt;}
.ycd{bottom:985.573333pt;}
.yd{bottom:988.453333pt;}
.y181{bottom:999.813333pt;}
.ycc{bottom:1000.933333pt;}
.yc{bottom:1003.813333pt;}
.y180{bottom:1015.173333pt;}
.ycb{bottom:1017.253333pt;}
.y8f{bottom:1017.893333pt;}
.yb{bottom:1019.173333pt;}
.y8d{bottom:1032.320000pt;}
.yca{bottom:1033.600000pt;}
.ya{bottom:1034.560000pt;}
.y5{bottom:1056.000000pt;}
.y1{bottom:1066.720000pt;}
.h42{height:5.025000pt;}
.h28{height:13.120000pt;}
.h3c{height:13.760000pt;}
.h1f{height:13.792000pt;}
.h3e{height:13.920000pt;}
.h1d{height:14.720000pt;}
.h16{height:15.200000pt;}
.h7{height:15.914062pt;}
.h2{height:18.080000pt;}
.h8{height:19.040000pt;}
.h5{height:24.187500pt;}
.h27{height:26.381250pt;}
.h2e{height:27.520000pt;}
.h3{height:28.057500pt;}
.h10{height:30.066250pt;}
.h40{height:31.360000pt;}
.h18{height:33.656250pt;}
.h26{height:36.431250pt;}
.h11{height:37.246250pt;}
.h22{height:40.160000pt;}
.h24{height:40.320000pt;}
.h19{height:41.440000pt;}
.h1c{height:41.472000pt;}
.hf{height:42.063437pt;}
.h6{height:42.084375pt;}
.h41{height:43.215000pt;}
.h9{height:44.505000pt;}
.h29{height:44.596875pt;}
.h2b{height:46.705160pt;}
.h1e{height:47.085938pt;}
.h4{height:47.109375pt;}
.h3d{height:47.742188pt;}
.h30{height:49.336436pt;}
.he{height:52.108438pt;}
.hb{height:52.134375pt;}
.h13{height:52.672000pt;}
.h12{height:53.535000pt;}
.h23{height:53.600000pt;}
.h15{height:54.598989pt;}
.h1a{height:55.200000pt;}
.h3f{height:55.232000pt;}
.h2c{height:55.360000pt;}
.h2a{height:55.392000pt;}
.h37{height:58.560000pt;}
.ha{height:58.563750pt;}
.h3b{height:59.340000pt;}
.hc{height:64.500000pt;}
.h20{height:67.040000pt;}
.h3a{height:68.960000pt;}
.h2d{height:69.120000pt;}
.h31{height:72.480000pt;}
.h33{height:72.512000pt;}
.h36{height:73.280000pt;}
.hd{height:75.465000pt;}
.h25{height:80.352000pt;}
.h34{height:85.440000pt;}
.h32{height:86.240000pt;}
.h17{height:97.280000pt;}
.h2f{height:114.752000pt;}
.h1b{height:139.386667pt;}
.h35{height:142.266667pt;}
.h38{height:196.666667pt;}
.h21{height:216.346667pt;}
.h39{height:234.586667pt;}
.h14{height:251.250000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:18.880000pt;}
.w7{width:55.040000pt;}
.w20{width:75.520000pt;}
.w15{width:112.320000pt;}
.wd{width:112.672000pt;}
.w10{width:112.992000pt;}
.w1c{width:118.592000pt;}
.w1a{width:119.072000pt;}
.w18{width:120.480000pt;}
.w1b{width:121.280000pt;}
.w19{width:121.312000pt;}
.wc{width:121.920000pt;}
.w3{width:140.026667pt;}
.wf{width:140.506667pt;}
.w12{width:140.826667pt;}
.w13{width:169.146667pt;}
.w8{width:203.546667pt;}
.w4{width:224.986667pt;}
.we{width:226.106667pt;}
.w11{width:226.426667pt;}
.w2{width:239.706667pt;}
.w1e{width:240.506667pt;}
.w1d{width:242.426667pt;}
.w17{width:244.826667pt;}
.w16{width:244.866667pt;}
.wa{width:386.146667pt;}
.w14{width:433.506667pt;}
.w21{width:529.373333pt;}
.w6{width:604.733333pt;}
.w1f{width:606.653333pt;}
.wb{width:612.253333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x57{left:1.760000pt;}
.x5b{left:4.640000pt;}
.x2{left:7.200000pt;}
.x1a{left:8.320000pt;}
.x4c{left:9.280000pt;}
.x17{left:10.400000pt;}
.x41{left:11.520000pt;}
.x3e{left:12.480000pt;}
.x28{left:13.920000pt;}
.x32{left:15.520000pt;}
.x47{left:17.280000pt;}
.x2c{left:18.240000pt;}
.x2a{left:20.480000pt;}
.x2d{left:21.600000pt;}
.x31{left:23.040000pt;}
.x2f{left:24.320000pt;}
.x2b{left:26.240000pt;}
.x4b{left:28.520000pt;}
.x3d{left:29.760000pt;}
.x4{left:31.680000pt;}
.x48{left:32.640000pt;}
.x40{left:34.240000pt;}
.x1e{left:36.160000pt;}
.x3f{left:37.440000pt;}
.x29{left:39.240000pt;}
.x36{left:40.154667pt;}
.x37{left:41.754667pt;}
.x30{left:42.874667pt;}
.x6{left:44.480000pt;}
.x23{left:48.040000pt;}
.x52{left:49.280000pt;}
.x25{left:53.320000pt;}
.x3a{left:55.880000pt;}
.x24{left:57.914667pt;}
.x4a{left:59.240000pt;}
.x44{left:60.154667pt;}
.x59{left:66.074667pt;}
.x27{left:67.080000pt;}
.x51{left:70.240000pt;}
.x4d{left:75.994667pt;}
.x4f{left:80.000000pt;}
.x16{left:82.912000pt;}
.x18{left:92.672000pt;}
.x1{left:94.592000pt;}
.x21{left:99.546667pt;}
.x58{left:101.792000pt;}
.x3c{left:103.360000pt;}
.x26{left:109.946667pt;}
.x42{left:110.911988pt;}
.x15{left:113.471988pt;}
.x54{left:118.431988pt;}
.x50{left:120.160000pt;}
.x4e{left:121.274667pt;}
.x14{left:137.946655pt;}
.x55{left:142.106655pt;}
.x13{left:144.826655pt;}
.xc{left:150.746655pt;}
.x38{left:158.906655pt;}
.x9{left:162.266655pt;}
.x33{left:165.146655pt;}
.x43{left:167.066655pt;}
.x5a{left:177.306667pt;}
.xd{left:201.306655pt;}
.x39{left:208.346667pt;}
.x45{left:216.346667pt;}
.x1f{left:217.786667pt;}
.xa{left:220.026655pt;}
.x35{left:227.706667pt;}
.x34{left:265.186667pt;}
.x1d{left:281.506655pt;}
.x56{left:295.074667pt;}
.x19{left:296.226667pt;}
.x8{left:298.434667pt;}
.x1c{left:301.954667pt;}
.x1b{left:315.106667pt;}
.x20{left:331.266667pt;}
.x3{left:334.306667pt;}
.x46{left:338.466667pt;}
.x53{left:372.066655pt;}
.xe{left:373.346655pt;}
.xb{left:396.866655pt;}
.xf{left:398.946655pt;}
.x3b{left:453.853333pt;}
.x2e{left:458.461333pt;}
.x5{left:474.333333pt;}
.x10{left:530.653322pt;}
.x11{left:549.213322pt;}
.x22{left:558.173333pt;}
.x49{left:580.093333pt;}
.x12{left:587.773322pt;}
.x7{left:699.333322pt;}
}




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