
    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_2577f675bff661b3baad6c12.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_71a0e7c0aefc2c92608709ba.woff')format("woff");}.ff2{font-family:ff2;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_59b04edaab0ed0e85eba7c66.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2f0dbf72a7fc02a116b591b0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.119629;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_2708fd9fd160649447b04223.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7adeb9b1695b13dc16a02ca0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.877441;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_7ab78b7f89af641b632e7dc6.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_001f0878b194e3d4c5c823c7.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b010e47a581509ad388b8702.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a07afe1b1823860ac453566f.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_8716369ca24e7fa9907ab3b9.woff')format("woff");}.ffb{font-family:ffb;line-height:0.908203;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_0f31720e86d7001c818442b7.woff')format("woff");}.ffc{font-family:ffc;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b4603d5343e847babdc076c2.woff')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_9944ad5c8687e03af1b5af9f.woff')format("woff");}.ffe{font-family:ffe;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_a325dfdfa4d764cc5ad1dff9.woff')format("woff");}.fff{font-family:fff;line-height:0.914062;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);}
.v5{vertical-align:-72.000000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.120000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:23.760000px;}
.v6{vertical-align:37.200000px;}
.ls10{letter-spacing:-1.440000px;}
.ls1b{letter-spacing:-1.260000px;}
.lsc{letter-spacing:-0.810000px;}
.ls1a{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.540000px;}
.ls19{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.223800px;}
.ls18{letter-spacing:-0.181200px;}
.lsf{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.053280px;}
.ls11{letter-spacing:0.106800px;}
.ls12{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.144720px;}
.ls7{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.181200px;}
.ls15{letter-spacing:0.259800px;}
.ls1e{letter-spacing:0.259920px;}
.ls1f{letter-spacing:0.298800px;}
.ls9{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.493920px;}
.ls16{letter-spacing:0.496080px;}
.ls4{letter-spacing:0.569520px;}
.lse{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.900000px;}
.ls1c{letter-spacing:1.080000px;}
.ls13{letter-spacing:1.620000px;}
.ls1d{letter-spacing:18.900000px;}
.ls2{letter-spacing:47.700000px;}
.ls1{letter-spacing:72.000000px;}
.ls0{letter-spacing:72.720000px;}
.ls17{letter-spacing:390.396000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf{word-spacing:-18.000000px;}
.wsc{word-spacing:-16.560000px;}
.ws17{word-spacing:-15.300000px;}
.ws18{word-spacing:-15.238800px;}
.ws13{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.046800px;}
.wsd{word-spacing:-14.993280px;}
.wse{word-spacing:-14.940000px;}
.ws16{word-spacing:-14.580000px;}
.ws7{word-spacing:-13.500000px;}
.ws5{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.241200px;}
.ws10{word-spacing:-12.060000px;}
.ws11{word-spacing:-11.878800px;}
.ws2{word-spacing:-11.700000px;}
.ws3{word-spacing:-11.340000px;}
.ws6{word-spacing:-10.950480px;}
.ws9{word-spacing:-10.440000px;}
.ws8{word-spacing:-9.000000px;}
.ws1{word-spacing:-7.560000px;}
.ws12{word-spacing:-6.840000px;}
.wsa{word-spacing:0.000000px;}
.ws15{word-spacing:52.134432px;}
.ws0{word-spacing:60.840000px;}
.ws14{word-spacing:185.636640px;}
._5{margin-left:-59.580000px;}
._29{margin-left:-4.234320px;}
._1a{margin-left:-3.024000px;}
._2{margin-left:-1.187520px;}
._0{width:1.044000px;}
._1{width:2.424480px;}
._a{width:3.944160px;}
._c{width:5.023440px;}
._13{width:6.633360px;}
._19{width:7.696080px;}
._18{width:8.766000px;}
._14{width:9.920160px;}
._d{width:11.653200px;}
._e{width:13.238640px;}
._15{width:15.174000px;}
._1b{width:16.362000px;}
._1c{width:17.939520px;}
._17{width:19.200000px;}
._16{width:20.358000px;}
._b{width:21.513600px;}
._8{width:23.127120px;}
._9{width:24.382080px;}
._26{width:25.450080px;}
._2a{width:26.533440px;}
._f{width:27.549360px;}
._23{width:28.949520px;}
._2b{width:30.178800px;}
._27{width:31.254480px;}
._24{width:32.421600px;}
._25{width:33.465600px;}
._1f{width:35.579520px;}
._2c{width:37.441440px;}
._7{width:39.262320px;}
._21{width:40.716000px;}
._20{width:42.006720px;}
._10{width:43.027200px;}
._30{width:44.194320px;}
._31{width:45.505440px;}
._1d{width:47.147040px;}
._2e{width:48.778560px;}
._40{width:49.959360px;}
._12{width:54.780480px;}
._11{width:55.875600px;}
._37{width:56.951280px;}
._36{width:58.445280px;}
._28{width:59.520960px;}
._2d{width:63.285840px;}
._3{width:65.496000px;}
._3e{width:69.500880px;}
._39{width:84.646080px;}
._38{width:86.950800px;}
._3f{width:94.241520px;}
._32{width:96.631920px;}
._2f{width:102.240000px;}
._3b{width:103.825440px;}
._3c{width:105.215040px;}
._33{width:115.814880px;}
._3d{width:127.313280px;}
._41{width:137.448000px;}
._34{width:150.329280px;}
._35{width:154.001520px;}
._3a{width:171.318720px;}
._1e{width:198.007680px;}
._4{width:199.620000px;}
._22{width:282.270000px;}
._6{width:755.976000px;}
.fc5{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(89,89,89);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fs11{font-size:6.000000px;}
.fsc{font-size:23.760000px;}
.fsf{font-size:27.360000px;}
.fs8{font-size:30.240000px;}
.fsd{font-size:36.000000px;}
.fsb{font-size:37.946952px;}
.fs0{font-size:41.760000px;}
.fs7{font-size:45.360000px;}
.fs9{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs10{font-size:54.144000px;}
.fs1{font-size:59.760000px;}
.fse{font-size:62.991941px;}
.fs6{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y44{bottom:-247.710000px;}
.y43{bottom:-214.050000px;}
.y82{bottom:-182.370000px;}
.y42{bottom:-180.210000px;}
.y81{bottom:-148.710000px;}
.y41{bottom:-146.550000px;}
.y80{bottom:-115.050000px;}
.y40{bottom:-112.890000px;}
.y7f{bottom:-81.210000px;}
.y3f{bottom:-79.020000px;}
.y7e{bottom:-47.505000px;}
.y3e{bottom:-45.360000px;}
.y47{bottom:-27.180000px;}
.y84{bottom:-17.922750px;}
.y7d{bottom:-13.665000px;}
.y3d{bottom:-11.520000px;}
.y0{bottom:0.000000px;}
.y21a{bottom:1.837500px;}
.y2{bottom:3.960000px;}
.y10b{bottom:4.680000px;}
.y10d{bottom:4.860000px;}
.y113{bottom:4.875000px;}
.y46{bottom:5.040000px;}
.y118{bottom:5.055000px;}
.y71{bottom:5.580000px;}
.y130{bottom:6.135000px;}
.y3c{bottom:6.840000px;}
.y68{bottom:7.725000px;}
.y129{bottom:11.730000px;}
.y115{bottom:11.895000px;}
.y5{bottom:12.600000px;}
.y12d{bottom:13.680000px;}
.y7c{bottom:17.295000px;}
.y6f{bottom:17.685000px;}
.y12a{bottom:18.750000px;}
.y112{bottom:18.915000px;}
.y3b{bottom:20.700000px;}
.y6{bottom:21.960000px;}
.y132{bottom:22.680000px;}
.y12e{bottom:22.860000px;}
.y3{bottom:23.220000px;}
.y67{bottom:23.745000px;}
.y4{bottom:24.660000px;}
.y114{bottom:25.740000px;}
.y119{bottom:25.920000px;}
.y7b{bottom:30.255000px;}
.y6e{bottom:31.365000px;}
.y110{bottom:32.760000px;}
.y3a{bottom:34.740000px;}
.y66{bottom:39.045000px;}
.y7a{bottom:43.395000px;}
.y6d{bottom:44.325000px;}
.y142{bottom:46.725000px;}
.y86{bottom:46.980000px;}
.y39{bottom:47.520000px;}
.y65{bottom:51.465000px;}
.y79{bottom:56.355000px;}
.y6c{bottom:57.285000px;}
.y1{bottom:57.420000px;}
.y83{bottom:63.780000px;}
.y64{bottom:69.285000px;}
.y78{bottom:69.315000px;}
.y6b{bottom:70.425000px;}
.y143{bottom:72.825000px;}
.y77{bottom:82.455000px;}
.y63{bottom:87.105000px;}
.y6a{bottom:87.345000px;}
.y76{bottom:95.415000px;}
.y16d{bottom:98.460000px;}
.y144{bottom:98.925000px;}
.y18f{bottom:99.180000px;}
.y194{bottom:101.520000px;}
.yb8{bottom:103.680000px;}
.y140{bottom:104.040000px;}
.y62{bottom:105.150000px;}
.y103{bottom:106.020000px;}
.yc9{bottom:106.560000px;}
.y1ac{bottom:106.740000px;}
.y75{bottom:108.375000px;}
.yef{bottom:109.620000px;}
.y219{bottom:109.800000px;}
.y1e1{bottom:111.240000px;}
.y16c{bottom:118.260000px;}
.y18e{bottom:119.160000px;}
.y13f{bottom:119.520000px;}
.y37{bottom:120.060000px;}
.y193{bottom:121.320000px;}
.y74{bottom:121.515000px;}
.y61{bottom:122.970000px;}
.yb7{bottom:123.480000px;}
.y145{bottom:125.025000px;}
.y102{bottom:125.820000px;}
.yc8{bottom:126.360000px;}
.y1ab{bottom:126.540000px;}
.y218{bottom:127.080000px;}
.y1e0{bottom:128.340000px;}
.yee{bottom:129.420000px;}
.y108{bottom:129.780000px;}
.y13e{bottom:131.760000px;}
.y141{bottom:133.740000px;}
.y73{bottom:133.755000px;}
.y60{bottom:136.290000px;}
.y16b{bottom:138.060000px;}
.y18d{bottom:138.960000px;}
.y36{bottom:139.860000px;}
.y192{bottom:141.120000px;}
.yb6{bottom:143.280000px;}
.y217{bottom:144.360000px;}
.y5f{bottom:145.110000px;}
.y101{bottom:145.620000px;}
.yc7{bottom:146.340000px;}
.y1aa{bottom:147.240000px;}
.yed{bottom:149.220000px;}
.y107{bottom:149.580000px;}
.y146{bottom:151.125000px;}
.y16a{bottom:157.860000px;}
.y18c{bottom:158.760000px;}
.y35{bottom:159.660000px;}
.y191{bottom:161.100000px;}
.y216{bottom:161.640000px;}
.y5e{bottom:162.930000px;}
.yb5{bottom:163.110000px;}
.y100{bottom:165.450000px;}
.yc6{bottom:166.170000px;}
.yec{bottom:169.050000px;}
.y106{bottom:169.590000px;}
.y147{bottom:177.225000px;}
.y169{bottom:177.690000px;}
.y18b{bottom:178.590000px;}
.y215{bottom:178.950000px;}
.y34{bottom:179.490000px;}
.y1df{bottom:180.210000px;}
.y5d{bottom:180.750000px;}
.y190{bottom:181.830000px;}
.yb4{bottom:183.090000px;}
.yff{bottom:185.430000px;}
.yc5{bottom:185.970000px;}
.y1a9{bottom:188.310000px;}
.yeb{bottom:189.030000px;}
.y105{bottom:189.390000px;}
.y214{bottom:196.050000px;}
.y1de{bottom:197.490000px;}
.y168{bottom:197.670000px;}
.y18a{bottom:198.390000px;}
.y5c{bottom:198.570000px;}
.y33{bottom:199.470000px;}
.yb3{bottom:202.890000px;}
.y148{bottom:205.410000px;}
.yc4{bottom:205.770000px;}
.yfe{bottom:206.130000px;}
.y1a8{bottom:208.110000px;}
.yea{bottom:208.830000px;}
.y104{bottom:209.190000px;}
.y213{bottom:213.330000px;}
.y1dd{bottom:214.770000px;}
.y5b{bottom:216.570000px;}
.y167{bottom:217.470000px;}
.y189{bottom:218.370000px;}
.y32{bottom:219.270000px;}
.yb2{bottom:222.690000px;}
.yc3{bottom:225.570000px;}
.y1a7{bottom:227.910000px;}
.ye9{bottom:228.630000px;}
.yfd{bottom:228.990000px;}
.y212{bottom:230.610000px;}
.y1dc{bottom:231.870000px;}
.y5a{bottom:234.390000px;}
.y166{bottom:237.270000px;}
.y188{bottom:238.170000px;}
.y31{bottom:239.070000px;}
.yb1{bottom:242.490000px;}
.yc2{bottom:245.550000px;}
.y59{bottom:247.710000px;}
.y211{bottom:247.890000px;}
.ye8{bottom:248.430000px;}
.yfc{bottom:248.790000px;}
.y1db{bottom:249.150000px;}
.y58{bottom:256.530000px;}
.y165{bottom:257.070000px;}
.y187{bottom:257.970000px;}
.y30{bottom:259.770000px;}
.yb0{bottom:262.290000px;}
.yfb{bottom:265.170000px;}
.yc1{bottom:265.350000px;}
.y1da{bottom:266.430000px;}
.ye7{bottom:268.230000px;}
.y1a6{bottom:268.410000px;}
.y57{bottom:274.350000px;}
.y164{bottom:276.870000px;}
.y2f{bottom:277.050000px;}
.y186{bottom:277.770000px;}
.yaf{bottom:282.270000px;}
.y210{bottom:282.450000px;}
.y1d9{bottom:283.710000px;}
.yc0{bottom:285.150000px;}
.y2e{bottom:285.510000px;}
.ye6{bottom:288.210000px;}
.y48{bottom:289.305000px;}
.y56{bottom:292.170000px;}
.y163{bottom:296.850000px;}
.y185{bottom:297.570000px;}
.y20f{bottom:299.550000px;}
.y1d8{bottom:300.990000px;}
.yae{bottom:302.070000px;}
.ybf{bottom:305.850000px;}
.ye5{bottom:308.010000px;}
.y2d{bottom:309.450000px;}
.y55{bottom:309.990000px;}
.y162{bottom:316.650000px;}
.y20e{bottom:316.830000px;}
.y184{bottom:317.550000px;}
.y1d7{bottom:318.270000px;}
.yad{bottom:321.870000px;}
.ybe{bottom:325.470000px;}
.ye4{bottom:327.810000px;}
.y54{bottom:327.990000px;}
.y1a5{bottom:330.150000px;}
.y2c{bottom:333.210000px;}
.y20d{bottom:334.110000px;}
.y1d6{bottom:335.370000px;}
.y161{bottom:336.450000px;}
.y183{bottom:337.350000px;}
.ybd{bottom:338.790000px;}
.yac{bottom:341.670000px;}
.y53{bottom:345.840000px;}
.ye3{bottom:347.610000px;}
.y20c{bottom:351.390000px;}
.y1d5{bottom:352.650000px;}
.y160{bottom:356.250000px;}
.y2b{bottom:356.970000px;}
.y182{bottom:357.150000px;}
.ybc{bottom:358.590000px;}
.yab{bottom:361.470000px;}
.y52{bottom:363.660000px;}
.ye2{bottom:367.410000px;}
.y20b{bottom:368.670000px;}
.y1d4{bottom:369.930000px;}
.y1a4{bottom:371.010000px;}
.y15f{bottom:376.050000px;}
.y181{bottom:376.950000px;}
.ybb{bottom:378.390000px;}
.y2a{bottom:380.730000px;}
.yaa{bottom:381.450000px;}
.y51{bottom:381.480000px;}
.y20a{bottom:385.770000px;}
.y1d3{bottom:387.210000px;}
.ye1{bottom:387.390000px;}
.y1a3{bottom:390.810000px;}
.y13d{bottom:391.530000px;}
.y15e{bottom:396.075000px;}
.y180{bottom:396.795000px;}
.yba{bottom:399.135000px;}
.y50{bottom:399.300000px;}
.y13c{bottom:400.935000px;}
.ya9{bottom:401.295000px;}
.y209{bottom:403.095000px;}
.y1d2{bottom:404.535000px;}
.y29{bottom:404.715000px;}
.ye0{bottom:407.235000px;}
.y1a2{bottom:410.655000px;}
.y13b{bottom:412.995000px;}
.y15d{bottom:415.875000px;}
.y17f{bottom:416.775000px;}
.y4f{bottom:417.120000px;}
.yb9{bottom:420.015000px;}
.y208{bottom:420.375000px;}
.ya8{bottom:421.095000px;}
.y1d1{bottom:421.635000px;}
.y13a{bottom:424.695000px;}
.ydf{bottom:427.035000px;}
.y28{bottom:428.475000px;}
.y4e{bottom:430.440000px;}
.y1a1{bottom:430.635000px;}
.y15c{bottom:435.675000px;}
.y17e{bottom:436.575000px;}
.y207{bottom:437.655000px;}
.y1d0{bottom:438.915000px;}
.y4d{bottom:439.440000px;}
.ya7{bottom:440.895000px;}
.y139{bottom:441.420000px;}
.y138{bottom:441.435000px;}
.yde{bottom:446.835000px;}
.y1a0{bottom:451.335000px;}
.y27{bottom:452.235000px;}
.y206{bottom:454.935000px;}
.y15b{bottom:455.475000px;}
.y1cf{bottom:456.195000px;}
.y17d{bottom:456.375000px;}
.y4c{bottom:457.260000px;}
.y72{bottom:460.320000px;}
.ya6{bottom:460.695000px;}
.ydd{bottom:466.635000px;}
.y205{bottom:472.215000px;}
.y26{bottom:473.115000px;}
.y1ce{bottom:473.475000px;}
.y4b{bottom:475.080000px;}
.y15a{bottom:475.275000px;}
.y137{bottom:475.800000px;}
.y136{bottom:475.815000px;}
.y17c{bottom:476.175000px;}
.ya5{bottom:480.675000px;}
.ydc{bottom:486.615000px;}
.y204{bottom:489.315000px;}
.y1cd{bottom:490.755000px;}
.y19f{bottom:492.195000px;}
.y4a{bottom:492.900000px;}
.y25{bottom:492.915000px;}
.y159{bottom:495.255000px;}
.y17b{bottom:495.975000px;}
.ya4{bottom:500.475000px;}
.ydb{bottom:506.415000px;}
.y203{bottom:506.595000px;}
.y24{bottom:506.775000px;}
.y1cc{bottom:508.035000px;}
.y135{bottom:510.180000px;}
.y134{bottom:510.195000px;}
.y49{bottom:510.720000px;}
.y19e{bottom:511.995000px;}
.y158{bottom:515.055000px;}
.y23{bottom:515.415000px;}
.y17a{bottom:515.955000px;}
.ya3{bottom:520.275000px;}
.y202{bottom:523.875000px;}
.y1cb{bottom:525.135000px;}
.yda{bottom:526.215000px;}
.y19d{bottom:532.695000px;}
.y157{bottom:534.855000px;}
.y179{bottom:535.755000px;}
.y22{bottom:538.635000px;}
.ya2{bottom:540.075000px;}
.y201{bottom:541.155000px;}
.y1ca{bottom:542.415000px;}
.y133{bottom:544.560000px;}
.y131{bottom:544.575000px;}
.yd9{bottom:546.015000px;}
.y156{bottom:554.655000px;}
.y178{bottom:555.555000px;}
.y19c{bottom:556.635000px;}
.y200{bottom:558.435000px;}
.y1c9{bottom:559.695000px;}
.ya1{bottom:559.875000px;}
.y21{bottom:562.035000px;}
.yd8{bottom:565.815000px;}
.y155{bottom:574.455000px;}
.y177{bottom:575.355000px;}
.y1ff{bottom:575.715000px;}
.y1c8{bottom:576.975000px;}
.y12f{bottom:578.940000px;}
.y12c{bottom:578.955000px;}
.ya0{bottom:579.855000px;}
.y20{bottom:585.255000px;}
.yd7{bottom:585.795000px;}
.y1fe{bottom:592.815000px;}
.y1c7{bottom:594.255000px;}
.y154{bottom:594.435000px;}
.y176{bottom:595.155000px;}
.y19b{bottom:597.495000px;}
.y9f{bottom:599.655000px;}
.yd6{bottom:605.595000px;}
.y1fd{bottom:610.095000px;}
.y1c6{bottom:611.535000px;}
.y153{bottom:614.235000px;}
.y69{bottom:614.580000px;}
.y12b{bottom:614.760000px;}
.y128{bottom:614.775000px;}
.y175{bottom:615.135000px;}
.y19a{bottom:617.295000px;}
.y9e{bottom:619.455000px;}
.yd5{bottom:625.425000px;}
.y1fc{bottom:627.405000px;}
.y1c5{bottom:628.665000px;}
.y152{bottom:634.065000px;}
.y174{bottom:634.965000px;}
.y199{bottom:637.125000px;}
.y9d{bottom:639.285000px;}
.y1f{bottom:640.185000px;}
.y1fb{bottom:644.685000px;}
.yd4{bottom:645.225000px;}
.y1c4{bottom:645.945000px;}
.y127{bottom:652.425000px;}
.y151{bottom:653.865000px;}
.y173{bottom:654.765000px;}
.y1e{bottom:655.665000px;}
.y198{bottom:656.925000px;}
.y9c{bottom:659.085000px;}
.y1fa{bottom:661.965000px;}
.y1c3{bottom:663.225000px;}
.yd3{bottom:665.025000px;}
.y1d{bottom:671.145000px;}
.y150{bottom:673.665000px;}
.y172{bottom:674.565000px;}
.y197{bottom:676.905000px;}
.y9b{bottom:679.065000px;}
.y1f9{bottom:679.245000px;}
.y1c2{bottom:680.505000px;}
.yd2{bottom:685.005000px;}
.y1c{bottom:686.625000px;}
.y126{bottom:688.245000px;}
.y14f{bottom:693.645000px;}
.y171{bottom:694.365000px;}
.y1f8{bottom:696.345000px;}
.y196{bottom:696.705000px;}
.y1c1{bottom:697.785000px;}
.y9a{bottom:698.865000px;}
.y1b{bottom:702.285000px;}
.yd1{bottom:704.805000px;}
.yf1{bottom:705.705000px;}
.y125{bottom:708.405000px;}
.y1a{bottom:713.265000px;}
.y14e{bottom:713.445000px;}
.y1f7{bottom:713.625000px;}
.y170{bottom:714.345000px;}
.y1c0{bottom:714.885000px;}
.y195{bottom:717.405000px;}
.y99{bottom:718.665000px;}
.y38{bottom:722.085000px;}
.yd0{bottom:724.605000px;}
.yf0{bottom:725.505000px;}
.y19{bottom:726.945000px;}
.y124{bottom:728.205000px;}
.y1f6{bottom:730.905000px;}
.y1bf{bottom:732.165000px;}
.y14d{bottom:733.245000px;}
.y16f{bottom:734.145000px;}
.y98{bottom:738.465000px;}
.y18{bottom:739.905000px;}
.ycf{bottom:744.405000px;}
.y123{bottom:748.005000px;}
.y1f5{bottom:748.185000px;}
.y1be{bottom:749.445000px;}
.y14c{bottom:751.065000px;}
.y17{bottom:752.865000px;}
.y16e{bottom:753.945000px;}
.y97{bottom:758.265000px;}
.yce{bottom:764.205000px;}
.y1f4{bottom:765.465000px;}
.y16{bottom:765.825000px;}
.y1bd{bottom:766.725000px;}
.y122{bottom:767.985000px;}
.y14b{bottom:771.765000px;}
.y96{bottom:778.245000px;}
.y15{bottom:779.505000px;}
.y1f3{bottom:782.565000px;}
.y1bc{bottom:784.005000px;}
.ycd{bottom:784.185000px;}
.y121{bottom:787.785000px;}
.y14a{bottom:791.565000px;}
.y14{bottom:792.465000px;}
.y95{bottom:798.045000px;}
.y1f2{bottom:799.845000px;}
.y1bb{bottom:801.285000px;}
.ycc{bottom:803.985000px;}
.y149{bottom:807.045000px;}
.y120{bottom:807.585000px;}
.y1f1{bottom:817.125000px;}
.y94{bottom:817.845000px;}
.y1ba{bottom:818.385000px;}
.y13{bottom:819.285000px;}
.yfa{bottom:823.785000px;}
.ycb{bottom:824.685000px;}
.y11f{bottom:827.385000px;}
.y12{bottom:830.445000px;}
.y1f0{bottom:834.405000px;}
.y1b9{bottom:835.665000px;}
.y93{bottom:837.645000px;}
.yf9{bottom:843.585000px;}
.yca{bottom:844.485000px;}
.y11e{bottom:847.185000px;}
.y1ef{bottom:851.685000px;}
.y1b8{bottom:852.990000px;}
.y11{bottom:854.610000px;}
.y92{bottom:857.490000px;}
.yf8{bottom:863.430000px;}
.y11d{bottom:867.210000px;}
.y1ee{bottom:869.010000px;}
.y1b7{bottom:870.270000px;}
.y91{bottom:877.470000px;}
.y10{bottom:878.730000px;}
.yf7{bottom:883.410000px;}
.y1ed{bottom:886.110000px;}
.y1b6{bottom:887.550000px;}
.yf{bottom:893.670000px;}
.y11c{bottom:895.470000px;}
.y90{bottom:897.270000px;}
.yf6{bottom:903.210000px;}
.y1ec{bottom:903.390000px;}
.y1b5{bottom:904.830000px;}
.y11b{bottom:907.530000px;}
.ye{bottom:908.610000px;}
.y8f{bottom:917.070000px;}
.y11a{bottom:919.590000px;}
.yd{bottom:919.950000px;}
.y1eb{bottom:920.670000px;}
.y1b4{bottom:921.930000px;}
.yf5{bottom:923.010000px;}
.y117{bottom:931.275000px;}
.y116{bottom:931.290000px;}
.y8e{bottom:936.870000px;}
.yc{bottom:937.590000px;}
.y1ea{bottom:937.950000px;}
.y1b3{bottom:939.210000px;}
.yf4{bottom:942.810000px;}
.y1e9{bottom:955.230000px;}
.y1b2{bottom:956.490000px;}
.y8d{bottom:956.670000px;}
.yb{bottom:959.190000px;}
.yf3{bottom:963.510000px;}
.y1e8{bottom:972.510000px;}
.y1b1{bottom:973.770000px;}
.y111{bottom:975.555000px;}
.y10f{bottom:975.570000px;}
.y8c{bottom:976.650000px;}
.ya{bottom:980.970000px;}
.yf2{bottom:983.310000px;}
.y1e7{bottom:989.610000px;}
.y1b0{bottom:991.410000px;}
.y8b{bottom:996.450000px;}
.y1e6{bottom:1006.890000px;}
.y9{bottom:1008.690000px;}
.y8a{bottom:1016.250000px;}
.y10e{bottom:1019.850000px;}
.y1e5{bottom:1024.170000px;}
.y1af{bottom:1032.090000px;}
.y89{bottom:1036.050000px;}
.y8{bottom:1036.230000px;}
.y10c{bottom:1036.410000px;}
.y1e4{bottom:1041.450000px;}
.y1ae{bottom:1051.890000px;}
.y10a{bottom:1054.590000px;}
.y88{bottom:1055.850000px;}
.y1e3{bottom:1058.730000px;}
.y7{bottom:1063.230000px;}
.y1ad{bottom:1072.590000px;}
.y87{bottom:1075.650000px;}
.y1e2{bottom:1075.830000px;}
.y109{bottom:1077.090000px;}
.y70{bottom:1096.200000px;}
.y85{bottom:1123.200000px;}
.y45{bottom:1137.240000px;}
.h6{height:5.653125px;}
.h16{height:5.805000px;}
.h3f{height:6.257812px;}
.h2{height:13.500000px;}
.h2d{height:15.825000px;}
.h1a{height:16.920000px;}
.h22{height:22.140000px;}
.h15{height:23.319141px;}
.h2a{height:29.664141px;}
.hc{height:29.678906px;}
.h31{height:29.730000px;}
.h32{height:29.736000px;}
.h33{height:29.745000px;}
.he{height:30.963516px;}
.h2b{height:31.081955px;}
.h37{height:33.465000px;}
.h38{height:33.475500px;}
.h39{height:33.480000px;}
.h34{height:33.645000px;}
.h35{height:33.655500px;}
.h36{height:33.660000px;}
.h4{height:34.200000px;}
.h20{height:36.281250px;}
.h13{height:39.503370px;}
.h5{height:40.985156px;}
.h3e{height:41.726953px;}
.h21{height:42.086250px;}
.h2e{height:43.551000px;}
.h2f{height:43.560000px;}
.h27{height:43.737568px;}
.h10{height:44.518359px;}
.hb{height:45.116367px;}
.h18{height:45.714375px;}
.h11{height:46.622932px;}
.h12{height:47.344922px;}
.h1b{height:48.616875px;}
.h30{height:49.583118px;}
.h14{height:52.998047px;}
.h3b{height:53.709961px;}
.h1c{height:54.421875px;}
.hf{height:55.291992px;}
.h1e{height:55.503491px;}
.h17{height:57.780000px;}
.h26{height:58.621992px;}
.h3{height:58.651172px;}
.h28{height:60.226875px;}
.h2c{height:61.423863px;}
.h3d{height:62.211094px;}
.ha{height:65.010937px;}
.h19{height:65.884219px;}
.hd{height:67.824844px;}
.h29{height:70.628906px;}
.h9{height:72.562500px;}
.h23{height:74.953125px;}
.h25{height:75.093750px;}
.h7{height:87.695156px;}
.h3c{height:91.053188px;}
.h1f{height:95.445000px;}
.h8{height:96.508125px;}
.h24{height:144.720000px;}
.h3a{height:236.880000px;}
.h1d{height:522.975000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w3{width:82.071000px;}
.w19{width:94.521000px;}
.w17{width:94.522500px;}
.wd{width:108.021000px;}
.w11{width:108.022500px;}
.w18{width:114.645000px;}
.wc{width:128.376000px;}
.w10{width:128.385000px;}
.w15{width:135.036000px;}
.w16{width:135.045000px;}
.wb{width:141.321000px;}
.wf{width:141.322500px;}
.we{width:141.645000px;}
.w12{width:141.651000px;}
.w13{width:141.660000px;}
.w5{width:154.470000px;}
.w14{width:175.155000px;}
.wa{width:180.390000px;}
.w8{width:182.550000px;}
.w1a{width:462.420000px;}
.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;}
.x3f{left:4.252500px;}
.x2{left:8.091000px;}
.x13{left:10.791000px;}
.x39{left:13.845000px;}
.x24{left:15.120000px;}
.x26{left:17.085000px;}
.x33{left:19.455000px;}
.x19{left:21.255000px;}
.x2a{left:23.400000px;}
.x29{left:30.600000px;}
.x2f{left:32.025000px;}
.x2b{left:33.660000px;}
.x35{left:35.850000px;}
.x32{left:37.965000px;}
.x3a{left:40.170000px;}
.x2d{left:42.120000px;}
.x31{left:48.060000px;}
.x2e{left:53.985000px;}
.x28{left:61.200000px;}
.x2c{left:64.110000px;}
.x38{left:67.530000px;}
.x30{left:70.740000px;}
.x3{left:73.965000px;}
.x16{left:80.505000px;}
.x14{left:81.765000px;}
.x12{left:93.105000px;}
.x18{left:94.905000px;}
.xa{left:104.616000px;}
.x1{left:108.045000px;}
.x1f{left:115.776000px;}
.x7{left:119.016000px;}
.x1d{left:128.376000px;}
.x1e{left:131.616000px;}
.xf{left:132.696000px;}
.x6{left:135.396000px;}
.x21{left:155.370000px;}
.xd{left:163.290000px;}
.xc{left:167.790000px;}
.xe{left:182.730000px;}
.x4{left:190.125000px;}
.x8{left:202.350000px;}
.x22{left:209.025000px;}
.x3c{left:236.370000px;}
.x1b{left:301.215000px;}
.x15{left:303.015000px;}
.x1c{left:304.815000px;}
.x17{left:310.350000px;}
.x23{left:350.355000px;}
.x34{left:384.195000px;}
.x3d{left:435.855000px;}
.x9{left:443.085000px;}
.x5{left:446.505000px;}
.xb{left:459.105000px;}
.x25{left:478.740000px;}
.x10{left:489.165000px;}
.x11{left:490.785000px;}
.x36{left:519.240000px;}
.x27{left:586.770000px;}
.x37{left:613.770000px;}
.x1a{left:620.253000px;}
.x3b{left:700.530000px;}
.x3e{left:702.690000px;}
.x20{left:808.560000px;}
@media print{
.v5{vertical-align:-64.000000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.440000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:21.120000pt;}
.v6{vertical-align:33.066667pt;}
.ls10{letter-spacing:-1.280000pt;}
.ls1b{letter-spacing:-1.120000pt;}
.lsc{letter-spacing:-0.720000pt;}
.ls1a{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls19{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.198933pt;}
.ls18{letter-spacing:-0.161067pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.047360pt;}
.ls11{letter-spacing:0.094933pt;}
.ls12{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.128640pt;}
.ls7{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.161067pt;}
.ls15{letter-spacing:0.230933pt;}
.ls1e{letter-spacing:0.231040pt;}
.ls1f{letter-spacing:0.265600pt;}
.ls9{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.439040pt;}
.ls16{letter-spacing:0.440960pt;}
.ls4{letter-spacing:0.506240pt;}
.lse{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.800000pt;}
.ls1c{letter-spacing:0.960000pt;}
.ls13{letter-spacing:1.440000pt;}
.ls1d{letter-spacing:16.800000pt;}
.ls2{letter-spacing:42.400000pt;}
.ls1{letter-spacing:64.000000pt;}
.ls0{letter-spacing:64.640000pt;}
.ls17{letter-spacing:347.018667pt;}
.wsf{word-spacing:-16.000000pt;}
.wsc{word-spacing:-14.720000pt;}
.ws17{word-spacing:-13.600000pt;}
.ws18{word-spacing:-13.545600pt;}
.ws13{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.374933pt;}
.wsd{word-spacing:-13.327360pt;}
.wse{word-spacing:-13.280000pt;}
.ws16{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.881067pt;}
.ws10{word-spacing:-10.720000pt;}
.ws11{word-spacing:-10.558933pt;}
.ws2{word-spacing:-10.400000pt;}
.ws3{word-spacing:-10.080000pt;}
.ws6{word-spacing:-9.733760pt;}
.ws9{word-spacing:-9.280000pt;}
.ws8{word-spacing:-8.000000pt;}
.ws1{word-spacing:-6.720000pt;}
.ws12{word-spacing:-6.080000pt;}
.wsa{word-spacing:0.000000pt;}
.ws15{word-spacing:46.341717pt;}
.ws0{word-spacing:54.080000pt;}
.ws14{word-spacing:165.010347pt;}
._5{margin-left:-52.960000pt;}
._29{margin-left:-3.763840pt;}
._1a{margin-left:-2.688000pt;}
._2{margin-left:-1.055573pt;}
._0{width:0.928000pt;}
._1{width:2.155093pt;}
._a{width:3.505920pt;}
._c{width:4.465280pt;}
._13{width:5.896320pt;}
._19{width:6.840960pt;}
._18{width:7.792000pt;}
._14{width:8.817920pt;}
._d{width:10.358400pt;}
._e{width:11.767680pt;}
._15{width:13.488000pt;}
._1b{width:14.544000pt;}
._1c{width:15.946240pt;}
._17{width:17.066667pt;}
._16{width:18.096000pt;}
._b{width:19.123200pt;}
._8{width:20.557440pt;}
._9{width:21.672960pt;}
._26{width:22.622293pt;}
._2a{width:23.585280pt;}
._f{width:24.488320pt;}
._23{width:25.732907pt;}
._2b{width:26.825600pt;}
._27{width:27.781760pt;}
._24{width:28.819200pt;}
._25{width:29.747200pt;}
._1f{width:31.626240pt;}
._2c{width:33.281280pt;}
._7{width:34.899840pt;}
._21{width:36.192000pt;}
._20{width:37.339307pt;}
._10{width:38.246400pt;}
._30{width:39.283840pt;}
._31{width:40.449280pt;}
._1d{width:41.908480pt;}
._2e{width:43.358720pt;}
._40{width:44.408320pt;}
._12{width:48.693760pt;}
._11{width:49.667200pt;}
._37{width:50.623360pt;}
._36{width:51.951360pt;}
._28{width:52.907520pt;}
._2d{width:56.254080pt;}
._3{width:58.218667pt;}
._3e{width:61.778560pt;}
._39{width:75.240960pt;}
._38{width:77.289600pt;}
._3f{width:83.770240pt;}
._32{width:85.895040pt;}
._2f{width:90.880000pt;}
._3b{width:92.289280pt;}
._3c{width:93.524480pt;}
._33{width:102.946560pt;}
._3d{width:113.167360pt;}
._41{width:122.176000pt;}
._34{width:133.626027pt;}
._35{width:136.890240pt;}
._3a{width:152.283307pt;}
._1e{width:176.006827pt;}
._4{width:177.440000pt;}
._22{width:250.906667pt;}
._6{width:671.978667pt;}
.fs2{font-size:5.120000pt;}
.fs11{font-size:5.333333pt;}
.fsc{font-size:21.120000pt;}
.fsf{font-size:24.320000pt;}
.fs8{font-size:26.880000pt;}
.fsd{font-size:32.000000pt;}
.fsb{font-size:33.730624pt;}
.fs0{font-size:37.120000pt;}
.fs7{font-size:40.320000pt;}
.fs9{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs10{font-size:48.128000pt;}
.fs1{font-size:53.120000pt;}
.fse{font-size:55.992837pt;}
.fs6{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y44{bottom:-220.186667pt;}
.y43{bottom:-190.266667pt;}
.y82{bottom:-162.106667pt;}
.y42{bottom:-160.186667pt;}
.y81{bottom:-132.186667pt;}
.y41{bottom:-130.266667pt;}
.y80{bottom:-102.266667pt;}
.y40{bottom:-100.346667pt;}
.y7f{bottom:-72.186667pt;}
.y3f{bottom:-70.240000pt;}
.y7e{bottom:-42.226667pt;}
.y3e{bottom:-40.320000pt;}
.y47{bottom:-24.160000pt;}
.y84{bottom:-15.931333pt;}
.y7d{bottom:-12.146667pt;}
.y3d{bottom:-10.240000pt;}
.y0{bottom:0.000000pt;}
.y21a{bottom:1.633333pt;}
.y2{bottom:3.520000pt;}
.y10b{bottom:4.160000pt;}
.y10d{bottom:4.320000pt;}
.y113{bottom:4.333333pt;}
.y46{bottom:4.480000pt;}
.y118{bottom:4.493333pt;}
.y71{bottom:4.960000pt;}
.y130{bottom:5.453333pt;}
.y3c{bottom:6.080000pt;}
.y68{bottom:6.866667pt;}
.y129{bottom:10.426667pt;}
.y115{bottom:10.573333pt;}
.y5{bottom:11.200000pt;}
.y12d{bottom:12.160000pt;}
.y7c{bottom:15.373333pt;}
.y6f{bottom:15.720000pt;}
.y12a{bottom:16.666667pt;}
.y112{bottom:16.813333pt;}
.y3b{bottom:18.400000pt;}
.y6{bottom:19.520000pt;}
.y132{bottom:20.160000pt;}
.y12e{bottom:20.320000pt;}
.y3{bottom:20.640000pt;}
.y67{bottom:21.106667pt;}
.y4{bottom:21.920000pt;}
.y114{bottom:22.880000pt;}
.y119{bottom:23.040000pt;}
.y7b{bottom:26.893333pt;}
.y6e{bottom:27.880000pt;}
.y110{bottom:29.120000pt;}
.y3a{bottom:30.880000pt;}
.y66{bottom:34.706667pt;}
.y7a{bottom:38.573333pt;}
.y6d{bottom:39.400000pt;}
.y142{bottom:41.533333pt;}
.y86{bottom:41.760000pt;}
.y39{bottom:42.240000pt;}
.y65{bottom:45.746667pt;}
.y79{bottom:50.093333pt;}
.y6c{bottom:50.920000pt;}
.y1{bottom:51.040000pt;}
.y83{bottom:56.693333pt;}
.y64{bottom:61.586667pt;}
.y78{bottom:61.613333pt;}
.y6b{bottom:62.600000pt;}
.y143{bottom:64.733333pt;}
.y77{bottom:73.293333pt;}
.y63{bottom:77.426667pt;}
.y6a{bottom:77.640000pt;}
.y76{bottom:84.813333pt;}
.y16d{bottom:87.520000pt;}
.y144{bottom:87.933333pt;}
.y18f{bottom:88.160000pt;}
.y194{bottom:90.240000pt;}
.yb8{bottom:92.160000pt;}
.y140{bottom:92.480000pt;}
.y62{bottom:93.466667pt;}
.y103{bottom:94.240000pt;}
.yc9{bottom:94.720000pt;}
.y1ac{bottom:94.880000pt;}
.y75{bottom:96.333333pt;}
.yef{bottom:97.440000pt;}
.y219{bottom:97.600000pt;}
.y1e1{bottom:98.880000pt;}
.y16c{bottom:105.120000pt;}
.y18e{bottom:105.920000pt;}
.y13f{bottom:106.240000pt;}
.y37{bottom:106.720000pt;}
.y193{bottom:107.840000pt;}
.y74{bottom:108.013333pt;}
.y61{bottom:109.306667pt;}
.yb7{bottom:109.760000pt;}
.y145{bottom:111.133333pt;}
.y102{bottom:111.840000pt;}
.yc8{bottom:112.320000pt;}
.y1ab{bottom:112.480000pt;}
.y218{bottom:112.960000pt;}
.y1e0{bottom:114.080000pt;}
.yee{bottom:115.040000pt;}
.y108{bottom:115.360000pt;}
.y13e{bottom:117.120000pt;}
.y141{bottom:118.880000pt;}
.y73{bottom:118.893333pt;}
.y60{bottom:121.146667pt;}
.y16b{bottom:122.720000pt;}
.y18d{bottom:123.520000pt;}
.y36{bottom:124.320000pt;}
.y192{bottom:125.440000pt;}
.yb6{bottom:127.360000pt;}
.y217{bottom:128.320000pt;}
.y5f{bottom:128.986667pt;}
.y101{bottom:129.440000pt;}
.yc7{bottom:130.080000pt;}
.y1aa{bottom:130.880000pt;}
.yed{bottom:132.640000pt;}
.y107{bottom:132.960000pt;}
.y146{bottom:134.333333pt;}
.y16a{bottom:140.320000pt;}
.y18c{bottom:141.120000pt;}
.y35{bottom:141.920000pt;}
.y191{bottom:143.200000pt;}
.y216{bottom:143.680000pt;}
.y5e{bottom:144.826667pt;}
.yb5{bottom:144.986667pt;}
.y100{bottom:147.066667pt;}
.yc6{bottom:147.706667pt;}
.yec{bottom:150.266667pt;}
.y106{bottom:150.746667pt;}
.y147{bottom:157.533333pt;}
.y169{bottom:157.946667pt;}
.y18b{bottom:158.746667pt;}
.y215{bottom:159.066667pt;}
.y34{bottom:159.546667pt;}
.y1df{bottom:160.186667pt;}
.y5d{bottom:160.666667pt;}
.y190{bottom:161.626667pt;}
.yb4{bottom:162.746667pt;}
.yff{bottom:164.826667pt;}
.yc5{bottom:165.306667pt;}
.y1a9{bottom:167.386667pt;}
.yeb{bottom:168.026667pt;}
.y105{bottom:168.346667pt;}
.y214{bottom:174.266667pt;}
.y1de{bottom:175.546667pt;}
.y168{bottom:175.706667pt;}
.y18a{bottom:176.346667pt;}
.y5c{bottom:176.506667pt;}
.y33{bottom:177.306667pt;}
.yb3{bottom:180.346667pt;}
.y148{bottom:182.586667pt;}
.yc4{bottom:182.906667pt;}
.yfe{bottom:183.226667pt;}
.y1a8{bottom:184.986667pt;}
.yea{bottom:185.626667pt;}
.y104{bottom:185.946667pt;}
.y213{bottom:189.626667pt;}
.y1dd{bottom:190.906667pt;}
.y5b{bottom:192.506667pt;}
.y167{bottom:193.306667pt;}
.y189{bottom:194.106667pt;}
.y32{bottom:194.906667pt;}
.yb2{bottom:197.946667pt;}
.yc3{bottom:200.506667pt;}
.y1a7{bottom:202.586667pt;}
.ye9{bottom:203.226667pt;}
.yfd{bottom:203.546667pt;}
.y212{bottom:204.986667pt;}
.y1dc{bottom:206.106667pt;}
.y5a{bottom:208.346667pt;}
.y166{bottom:210.906667pt;}
.y188{bottom:211.706667pt;}
.y31{bottom:212.506667pt;}
.yb1{bottom:215.546667pt;}
.yc2{bottom:218.266667pt;}
.y59{bottom:220.186667pt;}
.y211{bottom:220.346667pt;}
.ye8{bottom:220.826667pt;}
.yfc{bottom:221.146667pt;}
.y1db{bottom:221.466667pt;}
.y58{bottom:228.026667pt;}
.y165{bottom:228.506667pt;}
.y187{bottom:229.306667pt;}
.y30{bottom:230.906667pt;}
.yb0{bottom:233.146667pt;}
.yfb{bottom:235.706667pt;}
.yc1{bottom:235.866667pt;}
.y1da{bottom:236.826667pt;}
.ye7{bottom:238.426667pt;}
.y1a6{bottom:238.586667pt;}
.y57{bottom:243.866667pt;}
.y164{bottom:246.106667pt;}
.y2f{bottom:246.266667pt;}
.y186{bottom:246.906667pt;}
.yaf{bottom:250.906667pt;}
.y210{bottom:251.066667pt;}
.y1d9{bottom:252.186667pt;}
.yc0{bottom:253.466667pt;}
.y2e{bottom:253.786667pt;}
.ye6{bottom:256.186667pt;}
.y48{bottom:257.160000pt;}
.y56{bottom:259.706667pt;}
.y163{bottom:263.866667pt;}
.y185{bottom:264.506667pt;}
.y20f{bottom:266.266667pt;}
.y1d8{bottom:267.546667pt;}
.yae{bottom:268.506667pt;}
.ybf{bottom:271.866667pt;}
.ye5{bottom:273.786667pt;}
.y2d{bottom:275.066667pt;}
.y55{bottom:275.546667pt;}
.y162{bottom:281.466667pt;}
.y20e{bottom:281.626667pt;}
.y184{bottom:282.266667pt;}
.y1d7{bottom:282.906667pt;}
.yad{bottom:286.106667pt;}
.ybe{bottom:289.306667pt;}
.ye4{bottom:291.386667pt;}
.y54{bottom:291.546667pt;}
.y1a5{bottom:293.466667pt;}
.y2c{bottom:296.186667pt;}
.y20d{bottom:296.986667pt;}
.y1d6{bottom:298.106667pt;}
.y161{bottom:299.066667pt;}
.y183{bottom:299.866667pt;}
.ybd{bottom:301.146667pt;}
.yac{bottom:303.706667pt;}
.y53{bottom:307.413333pt;}
.ye3{bottom:308.986667pt;}
.y20c{bottom:312.346667pt;}
.y1d5{bottom:313.466667pt;}
.y160{bottom:316.666667pt;}
.y2b{bottom:317.306667pt;}
.y182{bottom:317.466667pt;}
.ybc{bottom:318.746667pt;}
.yab{bottom:321.306667pt;}
.y52{bottom:323.253333pt;}
.ye2{bottom:326.586667pt;}
.y20b{bottom:327.706667pt;}
.y1d4{bottom:328.826667pt;}
.y1a4{bottom:329.786667pt;}
.y15f{bottom:334.266667pt;}
.y181{bottom:335.066667pt;}
.ybb{bottom:336.346667pt;}
.y2a{bottom:338.426667pt;}
.yaa{bottom:339.066667pt;}
.y51{bottom:339.093333pt;}
.y20a{bottom:342.906667pt;}
.y1d3{bottom:344.186667pt;}
.ye1{bottom:344.346667pt;}
.y1a3{bottom:347.386667pt;}
.y13d{bottom:348.026667pt;}
.y15e{bottom:352.066667pt;}
.y180{bottom:352.706667pt;}
.yba{bottom:354.786667pt;}
.y50{bottom:354.933333pt;}
.y13c{bottom:356.386667pt;}
.ya9{bottom:356.706667pt;}
.y209{bottom:358.306667pt;}
.y1d2{bottom:359.586667pt;}
.y29{bottom:359.746667pt;}
.ye0{bottom:361.986667pt;}
.y1a2{bottom:365.026667pt;}
.y13b{bottom:367.106667pt;}
.y15d{bottom:369.666667pt;}
.y17f{bottom:370.466667pt;}
.y4f{bottom:370.773333pt;}
.yb9{bottom:373.346667pt;}
.y208{bottom:373.666667pt;}
.ya8{bottom:374.306667pt;}
.y1d1{bottom:374.786667pt;}
.y13a{bottom:377.506667pt;}
.ydf{bottom:379.586667pt;}
.y28{bottom:380.866667pt;}
.y4e{bottom:382.613333pt;}
.y1a1{bottom:382.786667pt;}
.y15c{bottom:387.266667pt;}
.y17e{bottom:388.066667pt;}
.y207{bottom:389.026667pt;}
.y1d0{bottom:390.146667pt;}
.y4d{bottom:390.613333pt;}
.ya7{bottom:391.906667pt;}
.y139{bottom:392.373333pt;}
.y138{bottom:392.386667pt;}
.yde{bottom:397.186667pt;}
.y1a0{bottom:401.186667pt;}
.y27{bottom:401.986667pt;}
.y206{bottom:404.386667pt;}
.y15b{bottom:404.866667pt;}
.y1cf{bottom:405.506667pt;}
.y17d{bottom:405.666667pt;}
.y4c{bottom:406.453333pt;}
.y72{bottom:409.173333pt;}
.ya6{bottom:409.506667pt;}
.ydd{bottom:414.786667pt;}
.y205{bottom:419.746667pt;}
.y26{bottom:420.546667pt;}
.y1ce{bottom:420.866667pt;}
.y4b{bottom:422.293333pt;}
.y15a{bottom:422.466667pt;}
.y137{bottom:422.933333pt;}
.y136{bottom:422.946667pt;}
.y17c{bottom:423.266667pt;}
.ya5{bottom:427.266667pt;}
.ydc{bottom:432.546667pt;}
.y204{bottom:434.946667pt;}
.y1cd{bottom:436.226667pt;}
.y19f{bottom:437.506667pt;}
.y4a{bottom:438.133333pt;}
.y25{bottom:438.146667pt;}
.y159{bottom:440.226667pt;}
.y17b{bottom:440.866667pt;}
.ya4{bottom:444.866667pt;}
.ydb{bottom:450.146667pt;}
.y203{bottom:450.306667pt;}
.y24{bottom:450.466667pt;}
.y1cc{bottom:451.586667pt;}
.y135{bottom:453.493333pt;}
.y134{bottom:453.506667pt;}
.y49{bottom:453.973333pt;}
.y19e{bottom:455.106667pt;}
.y158{bottom:457.826667pt;}
.y23{bottom:458.146667pt;}
.y17a{bottom:458.626667pt;}
.ya3{bottom:462.466667pt;}
.y202{bottom:465.666667pt;}
.y1cb{bottom:466.786667pt;}
.yda{bottom:467.746667pt;}
.y19d{bottom:473.506667pt;}
.y157{bottom:475.426667pt;}
.y179{bottom:476.226667pt;}
.y22{bottom:478.786667pt;}
.ya2{bottom:480.066667pt;}
.y201{bottom:481.026667pt;}
.y1ca{bottom:482.146667pt;}
.y133{bottom:484.053333pt;}
.y131{bottom:484.066667pt;}
.yd9{bottom:485.346667pt;}
.y156{bottom:493.026667pt;}
.y178{bottom:493.826667pt;}
.y19c{bottom:494.786667pt;}
.y200{bottom:496.386667pt;}
.y1c9{bottom:497.506667pt;}
.ya1{bottom:497.666667pt;}
.y21{bottom:499.586667pt;}
.yd8{bottom:502.946667pt;}
.y155{bottom:510.626667pt;}
.y177{bottom:511.426667pt;}
.y1ff{bottom:511.746667pt;}
.y1c8{bottom:512.866667pt;}
.y12f{bottom:514.613333pt;}
.y12c{bottom:514.626667pt;}
.ya0{bottom:515.426667pt;}
.y20{bottom:520.226667pt;}
.yd7{bottom:520.706667pt;}
.y1fe{bottom:526.946667pt;}
.y1c7{bottom:528.226667pt;}
.y154{bottom:528.386667pt;}
.y176{bottom:529.026667pt;}
.y19b{bottom:531.106667pt;}
.y9f{bottom:533.026667pt;}
.yd6{bottom:538.306667pt;}
.y1fd{bottom:542.306667pt;}
.y1c6{bottom:543.586667pt;}
.y153{bottom:545.986667pt;}
.y69{bottom:546.293333pt;}
.y12b{bottom:546.453333pt;}
.y128{bottom:546.466667pt;}
.y175{bottom:546.786667pt;}
.y19a{bottom:548.706667pt;}
.y9e{bottom:550.626667pt;}
.yd5{bottom:555.933333pt;}
.y1fc{bottom:557.693333pt;}
.y1c5{bottom:558.813333pt;}
.y152{bottom:563.613333pt;}
.y174{bottom:564.413333pt;}
.y199{bottom:566.333333pt;}
.y9d{bottom:568.253333pt;}
.y1f{bottom:569.053333pt;}
.y1fb{bottom:573.053333pt;}
.yd4{bottom:573.533333pt;}
.y1c4{bottom:574.173333pt;}
.y127{bottom:579.933333pt;}
.y151{bottom:581.213333pt;}
.y173{bottom:582.013333pt;}
.y1e{bottom:582.813333pt;}
.y198{bottom:583.933333pt;}
.y9c{bottom:585.853333pt;}
.y1fa{bottom:588.413333pt;}
.y1c3{bottom:589.533333pt;}
.yd3{bottom:591.133333pt;}
.y1d{bottom:596.573333pt;}
.y150{bottom:598.813333pt;}
.y172{bottom:599.613333pt;}
.y197{bottom:601.693333pt;}
.y9b{bottom:603.613333pt;}
.y1f9{bottom:603.773333pt;}
.y1c2{bottom:604.893333pt;}
.yd2{bottom:608.893333pt;}
.y1c{bottom:610.333333pt;}
.y126{bottom:611.773333pt;}
.y14f{bottom:616.573333pt;}
.y171{bottom:617.213333pt;}
.y1f8{bottom:618.973333pt;}
.y196{bottom:619.293333pt;}
.y1c1{bottom:620.253333pt;}
.y9a{bottom:621.213333pt;}
.y1b{bottom:624.253333pt;}
.yd1{bottom:626.493333pt;}
.yf1{bottom:627.293333pt;}
.y125{bottom:629.693333pt;}
.y1a{bottom:634.013333pt;}
.y14e{bottom:634.173333pt;}
.y1f7{bottom:634.333333pt;}
.y170{bottom:634.973333pt;}
.y1c0{bottom:635.453333pt;}
.y195{bottom:637.693333pt;}
.y99{bottom:638.813333pt;}
.y38{bottom:641.853333pt;}
.yd0{bottom:644.093333pt;}
.yf0{bottom:644.893333pt;}
.y19{bottom:646.173333pt;}
.y124{bottom:647.293333pt;}
.y1f6{bottom:649.693333pt;}
.y1bf{bottom:650.813333pt;}
.y14d{bottom:651.773333pt;}
.y16f{bottom:652.573333pt;}
.y98{bottom:656.413333pt;}
.y18{bottom:657.693333pt;}
.ycf{bottom:661.693333pt;}
.y123{bottom:664.893333pt;}
.y1f5{bottom:665.053333pt;}
.y1be{bottom:666.173333pt;}
.y14c{bottom:667.613333pt;}
.y17{bottom:669.213333pt;}
.y16e{bottom:670.173333pt;}
.y97{bottom:674.013333pt;}
.yce{bottom:679.293333pt;}
.y1f4{bottom:680.413333pt;}
.y16{bottom:680.733333pt;}
.y1bd{bottom:681.533333pt;}
.y122{bottom:682.653333pt;}
.y14b{bottom:686.013333pt;}
.y96{bottom:691.773333pt;}
.y15{bottom:692.893333pt;}
.y1f3{bottom:695.613333pt;}
.y1bc{bottom:696.893333pt;}
.ycd{bottom:697.053333pt;}
.y121{bottom:700.253333pt;}
.y14a{bottom:703.613333pt;}
.y14{bottom:704.413333pt;}
.y95{bottom:709.373333pt;}
.y1f2{bottom:710.973333pt;}
.y1bb{bottom:712.253333pt;}
.ycc{bottom:714.653333pt;}
.y149{bottom:717.373333pt;}
.y120{bottom:717.853333pt;}
.y1f1{bottom:726.333333pt;}
.y94{bottom:726.973333pt;}
.y1ba{bottom:727.453333pt;}
.y13{bottom:728.253333pt;}
.yfa{bottom:732.253333pt;}
.ycb{bottom:733.053333pt;}
.y11f{bottom:735.453333pt;}
.y12{bottom:738.173333pt;}
.y1f0{bottom:741.693333pt;}
.y1b9{bottom:742.813333pt;}
.y93{bottom:744.573333pt;}
.yf9{bottom:749.853333pt;}
.yca{bottom:750.653333pt;}
.y11e{bottom:753.053333pt;}
.y1ef{bottom:757.053333pt;}
.y1b8{bottom:758.213333pt;}
.y11{bottom:759.653333pt;}
.y92{bottom:762.213333pt;}
.yf8{bottom:767.493333pt;}
.y11d{bottom:770.853333pt;}
.y1ee{bottom:772.453333pt;}
.y1b7{bottom:773.573333pt;}
.y91{bottom:779.973333pt;}
.y10{bottom:781.093333pt;}
.yf7{bottom:785.253333pt;}
.y1ed{bottom:787.653333pt;}
.y1b6{bottom:788.933333pt;}
.yf{bottom:794.373333pt;}
.y11c{bottom:795.973333pt;}
.y90{bottom:797.573333pt;}
.yf6{bottom:802.853333pt;}
.y1ec{bottom:803.013333pt;}
.y1b5{bottom:804.293333pt;}
.y11b{bottom:806.693333pt;}
.ye{bottom:807.653333pt;}
.y8f{bottom:815.173333pt;}
.y11a{bottom:817.413333pt;}
.yd{bottom:817.733333pt;}
.y1eb{bottom:818.373333pt;}
.y1b4{bottom:819.493333pt;}
.yf5{bottom:820.453333pt;}
.y117{bottom:827.800000pt;}
.y116{bottom:827.813333pt;}
.y8e{bottom:832.773333pt;}
.yc{bottom:833.413333pt;}
.y1ea{bottom:833.733333pt;}
.y1b3{bottom:834.853333pt;}
.yf4{bottom:838.053333pt;}
.y1e9{bottom:849.093333pt;}
.y1b2{bottom:850.213333pt;}
.y8d{bottom:850.373333pt;}
.yb{bottom:852.613333pt;}
.yf3{bottom:856.453333pt;}
.y1e8{bottom:864.453333pt;}
.y1b1{bottom:865.573333pt;}
.y111{bottom:867.160000pt;}
.y10f{bottom:867.173333pt;}
.y8c{bottom:868.133333pt;}
.ya{bottom:871.973333pt;}
.yf2{bottom:874.053333pt;}
.y1e7{bottom:879.653333pt;}
.y1b0{bottom:881.253333pt;}
.y8b{bottom:885.733333pt;}
.y1e6{bottom:895.013333pt;}
.y9{bottom:896.613333pt;}
.y8a{bottom:903.333333pt;}
.y10e{bottom:906.533333pt;}
.y1e5{bottom:910.373333pt;}
.y1af{bottom:917.413333pt;}
.y89{bottom:920.933333pt;}
.y8{bottom:921.093333pt;}
.y10c{bottom:921.253333pt;}
.y1e4{bottom:925.733333pt;}
.y1ae{bottom:935.013333pt;}
.y10a{bottom:937.413333pt;}
.y88{bottom:938.533333pt;}
.y1e3{bottom:941.093333pt;}
.y7{bottom:945.093333pt;}
.y1ad{bottom:953.413333pt;}
.y87{bottom:956.133333pt;}
.y1e2{bottom:956.293333pt;}
.y109{bottom:957.413333pt;}
.y70{bottom:974.400000pt;}
.y85{bottom:998.400000pt;}
.y45{bottom:1010.880000pt;}
.h6{height:5.025000pt;}
.h16{height:5.160000pt;}
.h3f{height:5.562500pt;}
.h2{height:12.000000pt;}
.h2d{height:14.066667pt;}
.h1a{height:15.040000pt;}
.h22{height:19.680000pt;}
.h15{height:20.728125pt;}
.h2a{height:26.368125pt;}
.hc{height:26.381250pt;}
.h31{height:26.426667pt;}
.h32{height:26.432000pt;}
.h33{height:26.440000pt;}
.he{height:27.523125pt;}
.h2b{height:27.628404pt;}
.h37{height:29.746667pt;}
.h38{height:29.756000pt;}
.h39{height:29.760000pt;}
.h34{height:29.906667pt;}
.h35{height:29.916000pt;}
.h36{height:29.920000pt;}
.h4{height:30.400000pt;}
.h20{height:32.250000pt;}
.h13{height:35.114107pt;}
.h5{height:36.431250pt;}
.h3e{height:37.090625pt;}
.h21{height:37.410000pt;}
.h2e{height:38.712000pt;}
.h2f{height:38.720000pt;}
.h27{height:38.877839pt;}
.h10{height:39.571875pt;}
.hb{height:40.103437pt;}
.h18{height:40.635000pt;}
.h11{height:41.442606pt;}
.h12{height:42.084375pt;}
.h1b{height:43.215000pt;}
.h30{height:44.073883pt;}
.h14{height:47.109375pt;}
.h3b{height:47.742188pt;}
.h1c{height:48.375000pt;}
.hf{height:49.148438pt;}
.h1e{height:49.336436pt;}
.h17{height:51.360000pt;}
.h26{height:52.108438pt;}
.h3{height:52.134375pt;}
.h28{height:53.535000pt;}
.h2c{height:54.598989pt;}
.h3d{height:55.298750pt;}
.ha{height:57.787500pt;}
.h19{height:58.563750pt;}
.hd{height:60.288750pt;}
.h29{height:62.781250pt;}
.h9{height:64.500000pt;}
.h23{height:66.625000pt;}
.h25{height:66.750000pt;}
.h7{height:77.951250pt;}
.h3c{height:80.936167pt;}
.h1f{height:84.840000pt;}
.h8{height:85.785000pt;}
.h24{height:128.640000pt;}
.h3a{height:210.560000pt;}
.h1d{height:464.866667pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w3{width:72.952000pt;}
.w19{width:84.018667pt;}
.w17{width:84.020000pt;}
.wd{width:96.018667pt;}
.w11{width:96.020000pt;}
.w18{width:101.906667pt;}
.wc{width:114.112000pt;}
.w10{width:114.120000pt;}
.w15{width:120.032000pt;}
.w16{width:120.040000pt;}
.wb{width:125.618667pt;}
.wf{width:125.620000pt;}
.we{width:125.906667pt;}
.w12{width:125.912000pt;}
.w13{width:125.920000pt;}
.w5{width:137.306667pt;}
.w14{width:155.693333pt;}
.wa{width:160.346667pt;}
.w8{width:162.266667pt;}
.w1a{width:411.040000pt;}
.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;}
.x3f{left:3.780000pt;}
.x2{left:7.192000pt;}
.x13{left:9.592000pt;}
.x39{left:12.306667pt;}
.x24{left:13.440000pt;}
.x26{left:15.186667pt;}
.x33{left:17.293333pt;}
.x19{left:18.893333pt;}
.x2a{left:20.800000pt;}
.x29{left:27.200000pt;}
.x2f{left:28.466667pt;}
.x2b{left:29.920000pt;}
.x35{left:31.866667pt;}
.x32{left:33.746667pt;}
.x3a{left:35.706667pt;}
.x2d{left:37.440000pt;}
.x31{left:42.720000pt;}
.x2e{left:47.986667pt;}
.x28{left:54.400000pt;}
.x2c{left:56.986667pt;}
.x38{left:60.026667pt;}
.x30{left:62.880000pt;}
.x3{left:65.746667pt;}
.x16{left:71.560000pt;}
.x14{left:72.680000pt;}
.x12{left:82.760000pt;}
.x18{left:84.360000pt;}
.xa{left:92.992000pt;}
.x1{left:96.040000pt;}
.x1f{left:102.912000pt;}
.x7{left:105.792000pt;}
.x1d{left:114.112000pt;}
.x1e{left:116.992000pt;}
.xf{left:117.952000pt;}
.x6{left:120.352000pt;}
.x21{left:138.106667pt;}
.xd{left:145.146667pt;}
.xc{left:149.146667pt;}
.xe{left:162.426667pt;}
.x4{left:169.000000pt;}
.x8{left:179.866667pt;}
.x22{left:185.800000pt;}
.x3c{left:210.106667pt;}
.x1b{left:267.746667pt;}
.x15{left:269.346667pt;}
.x1c{left:270.946667pt;}
.x17{left:275.866667pt;}
.x23{left:311.426667pt;}
.x34{left:341.506667pt;}
.x3d{left:387.426667pt;}
.x9{left:393.853333pt;}
.x5{left:396.893333pt;}
.xb{left:408.093333pt;}
.x25{left:425.546667pt;}
.x10{left:434.813333pt;}
.x11{left:436.253333pt;}
.x36{left:461.546667pt;}
.x27{left:521.573333pt;}
.x37{left:545.573333pt;}
.x1a{left:551.336000pt;}
.x3b{left:622.693333pt;}
.x3e{left:624.613333pt;}
.x20{left:718.720000pt;}
}




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