
    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_a7a0439b1377ae719f5d9653.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_858f529b3f7a8ff3f51d2ac6.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5c67de48c3a49f328e2f119a.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_eb19fdb61fa3764e23558a1b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b0b15e2014e9299aee880581.woff')format("woff");}.ff5{font-family:ff5;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2708fd9fd160649447b04223.woff')format("woff");}.ff6{font-family:ff6;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_415bf13999b01f0214830b4e.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_a07afe1b1823860ac453566f.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8425e66e58e97f5f4469f1b7.woff')format("woff");}.ff9{font-family:ff9;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b010e47a581509ad388b8702.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_cb831bfc45030f6d94299355.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_863fa374908edd152982e486.woff')format("woff");}.ffc{font-family:ffc;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b4603d5343e847babdc076c2.woff')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_6838ca8dfd8e142a912ce802.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_8f3fa06bef87538c64bf6017.woff')format("woff");}.fff{font-family:fff;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_33c709b9cfdf30b12abdf56f.woff')format("woff");}.ff10{font-family:ff10;line-height:0.758789;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_9b867db23b06cf1a73bd2452.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_8643051d87604919e4c58549.woff')format("woff");}.ff13{font-family:ff13;line-height:1.070312;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);}
.v4{vertical-align:-77.940000px;}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-18.000000px;}
.v9{vertical-align:-12.240000px;}
.vb{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.859971px;}
.v5{vertical-align:3.599975px;}
.va{vertical-align:12.240000px;}
.v1{vertical-align:23.760000px;}
.v8{vertical-align:46.080000px;}
.v7{vertical-align:48.960000px;}
.vc{vertical-align:52.560000px;}
.ls11{letter-spacing:-2.700000px;}
.lse{letter-spacing:-0.900000px;}
.ls1c{letter-spacing:-0.858000px;}
.ls12{letter-spacing:-0.540000px;}
.ls31{letter-spacing:-0.460200px;}
.ls2e{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.223800px;}
.ls13{letter-spacing:-0.206400px;}
.ls2a{letter-spacing:-0.053280px;}
.lsa{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.012960px;}
.ls30{letter-spacing:0.053280px;}
.ls1b{letter-spacing:0.106800px;}
.ls15{letter-spacing:0.108000px;}
.ls14{letter-spacing:0.120000px;}
.ls19{letter-spacing:0.129600px;}
.ls6{letter-spacing:0.144720px;}
.ls8{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.257760px;}
.ls10{letter-spacing:0.259800px;}
.lsf{letter-spacing:0.259920px;}
.ls2f{letter-spacing:0.298800px;}
.ls9{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.399600px;}
.lsb{letter-spacing:0.414600px;}
.lsd{letter-spacing:0.569400px;}
.ls2d{letter-spacing:0.858000px;}
.ls7{letter-spacing:0.900000px;}
.ls2c{letter-spacing:1.080000px;}
.ls28{letter-spacing:2.460960px;}
.ls1a{letter-spacing:6.660000px;}
.ls27{letter-spacing:12.895920px;}
.ls23{letter-spacing:12.959280px;}
.ls26{letter-spacing:13.644000px;}
.ls20{letter-spacing:13.679280px;}
.ls1f{letter-spacing:14.079600px;}
.ls24{letter-spacing:14.259600px;}
.ls4{letter-spacing:15.300000px;}
.ls25{letter-spacing:15.420960px;}
.ls22{letter-spacing:16.140960px;}
.ls1e{letter-spacing:16.260960px;}
.ls5{letter-spacing:47.700000px;}
.ls18{letter-spacing:56.429280px;}
.ls1{letter-spacing:71.400000px;}
.ls0{letter-spacing:71.460000px;}
.ls3{letter-spacing:72.000000px;}
.ls2{letter-spacing:72.720000px;}
.ls29{letter-spacing:333.759600px;}
.ls17{letter-spacing:381.660000px;}
.ls16{letter-spacing:388.980000px;}
.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;}
}
.wsc{word-spacing:-48.240000px;}
.wse{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.560000px;}
.ws8{word-spacing:-15.300000px;}
.ws17{word-spacing:-15.238800px;}
.wsb{word-spacing:-15.199800px;}
.ws9{word-spacing:-14.940000px;}
.ws14{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.733600px;}
.ws16{word-spacing:-14.580000px;}
.ws18{word-spacing:-14.479800px;}
.ws5{word-spacing:-13.500000px;}
.wsf{word-spacing:-13.147200px;}
.ws15{word-spacing:-12.420000px;}
.ws3{word-spacing:-12.060000px;}
.wsd{word-spacing:-11.202000px;}
.ws4{word-spacing:-10.950480px;}
.ws0{word-spacing:-10.440000px;}
.ws6{word-spacing:-9.000000px;}
.ws2{word-spacing:-7.560000px;}
.ws10{word-spacing:-0.251280px;}
.ws7{word-spacing:0.000000px;}
.ws11{word-spacing:0.468720px;}
.ws12{word-spacing:0.532080px;}
.ws13{word-spacing:0.712080px;}
._6{margin-left:-59.580000px;}
._29{margin-left:-9.090720px;}
._15{margin-left:-4.041360px;}
._14{margin-left:-2.827440px;}
._2{margin-left:-1.235520px;}
._0{width:1.044000px;}
._1{width:2.424480px;}
._13{width:4.302720px;}
._d{width:5.796720px;}
._a{width:7.362480px;}
._11{width:8.771040px;}
._17{width:10.263600px;}
._16{width:11.286000px;}
._e{width:12.848400px;}
._22{width:13.888800px;}
._2d{width:15.210000px;}
._f{width:16.644960px;}
._1c{width:18.664560px;}
._10{width:20.597760px;}
._8{width:21.931920px;}
._9{width:23.246640px;}
._1d{width:24.385680px;}
._2e{width:25.485840px;}
._25{width:26.533440px;}
._24{width:27.728640px;}
._12{width:28.983600px;}
._c{width:30.002880px;}
._b{width:31.075200px;}
._27{width:32.509440px;}
._26{width:34.541280px;}
._23{width:35.796240px;}
._2a{width:37.170720px;}
._2f{width:38.545200px;}
._1e{width:39.561120px;}
._28{width:40.638240px;}
._1a{width:41.843520px;}
._19{width:43.096320px;}
._1f{width:44.999280px;}
._20{width:46.383600px;}
._30{width:49.839840px;}
._18{width:51.615360px;}
._2b{width:52.697520px;}
._2c{width:53.755920px;}
._32{width:57.070800px;}
._31{width:59.353920px;}
._33{width:61.552800px;}
._4{width:65.496000px;}
._3{width:71.338080px;}
._21{width:83.903040px;}
._34{width:85.725840px;}
._5{width:199.620000px;}
._1b{width:278.610000px;}
._7{width:755.976000px;}
.fc5{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(32,33,36);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fsf{font-size:6.000000px;}
.fsd{font-size:18.000000px;}
.fsc{font-size:23.760000px;}
.fs6{font-size:30.240000px;}
.fse{font-size:36.000000px;}
.fsb{font-size:37.946952px;}
.fs0{font-size:41.760000px;}
.fsa{font-size:45.360000px;}
.fs7{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y71{bottom:-251.670000px;}
.y70{bottom:-217.830000px;}
.y6f{bottom:-184.170000px;}
.y81{bottom:-181.110000px;}
.y6e{bottom:-150.330000px;}
.y80{bottom:-147.450000px;}
.y6d{bottom:-116.640000px;}
.y7f{bottom:-113.610000px;}
.y6c{bottom:-82.800000px;}
.y7e{bottom:-79.905000px;}
.y6b{bottom:-49.140000px;}
.y7d{bottom:-46.065000px;}
.y137{bottom:-31.890000px;}
.y64{bottom:-28.650000px;}
.y3b{bottom:-27.180000px;}
.y83{bottom:-17.922750px;}
.y6a{bottom:-15.480000px;}
.y7c{bottom:-12.405000px;}
.y136{bottom:-1.425000px;}
.y0{bottom:0.000000px;}
.y218{bottom:1.837500px;}
.y69{bottom:2.520000px;}
.y59{bottom:3.585000px;}
.y2{bottom:3.960000px;}
.y15d{bottom:4.680000px;}
.y15c{bottom:4.860000px;}
.y3a{bottom:5.040000px;}
.y63{bottom:5.580000px;}
.y175{bottom:7.200000px;}
.y177{bottom:7.215000px;}
.y15f{bottom:8.640000px;}
.y160{bottom:8.820000px;}
.y7{bottom:12.420000px;}
.y179{bottom:12.600000px;}
.y17b{bottom:12.780000px;}
.y17e{bottom:12.960000px;}
.y135{bottom:13.335000px;}
.y4{bottom:13.500000px;}
.y3{bottom:13.680000px;}
.y123{bottom:14.235000px;}
.y173{bottom:15.120000px;}
.y68{bottom:15.660000px;}
.y125{bottom:15.675000px;}
.y61{bottom:16.020000px;}
.y127{bottom:16.560000px;}
.y129{bottom:16.740000px;}
.y162{bottom:17.100000px;}
.y12b{bottom:17.460000px;}
.y7b{bottom:18.555000px;}
.y58{bottom:19.425000px;}
.y121{bottom:19.995000px;}
.y180{bottom:20.520000px;}
.y17a{bottom:20.700000px;}
.y17d{bottom:20.880000px;}
.y174{bottom:23.040000px;}
.y6{bottom:25.200000px;}
.y134{bottom:28.095000px;}
.y60{bottom:28.440000px;}
.y67{bottom:28.620000px;}
.y7a{bottom:31.515000px;}
.y57{bottom:32.790000px;}
.y181{bottom:36.540000px;}
.y183{bottom:36.720000px;}
.y5{bottom:38.160000px;}
.y5f{bottom:40.500000px;}
.y66{bottom:41.040000px;}
.y56{bottom:41.610000px;}
.y133{bottom:41.775000px;}
.y79{bottom:44.655000px;}
.yda{bottom:46.260000px;}
.y1cd{bottom:47.700000px;}
.y5e{bottom:52.560000px;}
.y132{bottom:56.535000px;}
.y78{bottom:57.615000px;}
.y55{bottom:59.610000px;}
.y86{bottom:60.480000px;}
.y1{bottom:61.380000px;}
.yd9{bottom:62.640000px;}
.y82{bottom:63.780000px;}
.y5d{bottom:64.620000px;}
.y1cc{bottom:66.420000px;}
.y131{bottom:70.215000px;}
.y77{bottom:70.755000px;}
.y5c{bottom:76.680000px;}
.y54{bottom:77.430000px;}
.yd8{bottom:80.460000px;}
.y1cb{bottom:81.540000px;}
.y76{bottom:83.715000px;}
.y130{bottom:84.975000px;}
.y53{bottom:92.730000px;}
.y5b{bottom:93.780000px;}
.y75{bottom:96.675000px;}
.y1ad{bottom:99.900000px;}
.y14c{bottom:101.160000px;}
.y11f{bottom:101.340000px;}
.y52{bottom:105.150000px;}
.y19f{bottom:108.360000px;}
.y74{bottom:109.815000px;}
.y1a3{bottom:110.520000px;}
.y12f{bottom:110.715000px;}
.y171{bottom:113.400000px;}
.y38{bottom:114.840000px;}
.y109{bottom:115.380000px;}
.y1ca{bottom:116.640000px;}
.yb6{bottom:116.820000px;}
.y1fe{bottom:119.520000px;}
.y1ac{bottom:119.700000px;}
.y14b{bottom:120.960000px;}
.y11e{bottom:121.320000px;}
.y73{bottom:122.055000px;}
.y51{bottom:122.970000px;}
.y217{bottom:123.480000px;}
.y158{bottom:124.740000px;}
.y19e{bottom:128.160000px;}
.y170{bottom:128.880000px;}
.y1a2{bottom:130.320000px;}
.yd7{bottom:131.580000px;}
.y37{bottom:134.640000px;}
.y108{bottom:135.180000px;}
.yb5{bottom:136.620000px;}
.y12e{bottom:136.635000px;}
.y1fd{bottom:139.320000px;}
.y1ab{bottom:139.500000px;}
.y14a{bottom:140.760000px;}
.y50{bottom:140.790000px;}
.y11d{bottom:141.120000px;}
.y216{bottom:143.280000px;}
.y157{bottom:144.720000px;}
.y19d{bottom:147.960000px;}
.y1a1{bottom:150.120000px;}
.yd6{bottom:151.560000px;}
.y36{bottom:154.440000px;}
.y107{bottom:154.980000px;}
.yb4{bottom:156.420000px;}
.y4f{bottom:158.790000px;}
.y1fc{bottom:159.120000px;}
.y1aa{bottom:159.480000px;}
.y149{bottom:160.740000px;}
.y11c{bottom:160.920000px;}
.y215{bottom:163.110000px;}
.y156{bottom:164.550000px;}
.y19c{bottom:168.870000px;}
.y1a0{bottom:170.130000px;}
.yd5{bottom:171.390000px;}
.y35{bottom:174.270000px;}
.y106{bottom:174.810000px;}
.yb3{bottom:176.250000px;}
.y4e{bottom:176.610000px;}
.y1c9{bottom:177.150000px;}
.y1fb{bottom:179.130000px;}
.y1a9{bottom:179.310000px;}
.y148{bottom:180.570000px;}
.y11b{bottom:180.750000px;}
.y214{bottom:183.090000px;}
.y155{bottom:185.250000px;}
.y4d{bottom:189.930000px;}
.yd4{bottom:191.190000px;}
.y34{bottom:194.250000px;}
.y105{bottom:194.610000px;}
.yb2{bottom:196.050000px;}
.y4c{bottom:198.750000px;}
.y1fa{bottom:198.930000px;}
.y1a8{bottom:199.110000px;}
.y147{bottom:200.370000px;}
.y11a{bottom:200.550000px;}
.y213{bottom:202.890000px;}
.y19b{bottom:209.730000px;}
.yd3{bottom:210.990000px;}
.y33{bottom:214.050000px;}
.y104{bottom:214.410000px;}
.yb1{bottom:216.030000px;}
.y4b{bottom:216.570000px;}
.y1c8{bottom:218.010000px;}
.y1f9{bottom:218.730000px;}
.y1a7{bottom:218.910000px;}
.y146{bottom:220.170000px;}
.y119{bottom:220.530000px;}
.y212{bottom:222.690000px;}
.y154{bottom:226.110000px;}
.y19a{bottom:229.530000px;}
.yd2{bottom:230.790000px;}
.y32{bottom:233.850000px;}
.y4a{bottom:234.390000px;}
.yb0{bottom:236.730000px;}
.y1f8{bottom:238.530000px;}
.y1a6{bottom:238.710000px;}
.y1c7{bottom:238.890000px;}
.y145{bottom:239.970000px;}
.y118{bottom:240.330000px;}
.y211{bottom:242.490000px;}
.y153{bottom:245.910000px;}
.y199{bottom:249.330000px;}
.yd1{bottom:250.770000px;}
.y49{bottom:252.210000px;}
.y31{bottom:253.650000px;}
.y103{bottom:254.190000px;}
.yaf{bottom:257.610000px;}
.y1f7{bottom:258.330000px;}
.y1a5{bottom:258.690000px;}
.y144{bottom:259.950000px;}
.y117{bottom:260.130000px;}
.y210{bottom:262.290000px;}
.y152{bottom:265.890000px;}
.y198{bottom:269.310000px;}
.y48{bottom:270.240000px;}
.yd0{bottom:270.570000px;}
.y30{bottom:273.450000px;}
.y102{bottom:273.990000px;}
.y1f6{bottom:278.310000px;}
.y1a4{bottom:278.490000px;}
.y143{bottom:279.750000px;}
.y116{bottom:279.930000px;}
.y20f{bottom:282.270000px;}
.y151{bottom:285.690000px;}
.y47{bottom:288.060000px;}
.y197{bottom:289.110000px;}
.ycf{bottom:290.370000px;}
.y2f{bottom:293.430000px;}
.y101{bottom:293.790000px;}
.y1f5{bottom:298.110000px;}
.yae{bottom:298.290000px;}
.y142{bottom:299.550000px;}
.y115{bottom:299.730000px;}
.y20e{bottom:302.070000px;}
.y150{bottom:305.490000px;}
.y46{bottom:305.880000px;}
.y196{bottom:308.910000px;}
.yce{bottom:310.170000px;}
.y2e{bottom:313.230000px;}
.y100{bottom:313.590000px;}
.y1f4{bottom:317.910000px;}
.yad{bottom:318.090000px;}
.y141{bottom:319.350000px;}
.y114{bottom:319.710000px;}
.y20d{bottom:321.870000px;}
.y45{bottom:323.700000px;}
.y14f{bottom:325.290000px;}
.y195{bottom:328.710000px;}
.ycd{bottom:329.970000px;}
.yff{bottom:333.570000px;}
.y2d{bottom:333.930000px;}
.y44{bottom:337.020000px;}
.y16f{bottom:337.530000px;}
.y1f3{bottom:337.710000px;}
.yac{bottom:337.890000px;}
.y140{bottom:339.150000px;}
.y113{bottom:339.510000px;}
.y20c{bottom:341.670000px;}
.y43{bottom:345.840000px;}
.y14e{bottom:345.990000px;}
.y194{bottom:348.510000px;}
.ycc{bottom:349.950000px;}
.yfe{bottom:353.370000px;}
.y2c{bottom:354.270000px;}
.y16e{bottom:356.790000px;}
.y1f2{bottom:357.510000px;}
.yab{bottom:357.870000px;}
.y13f{bottom:359.130000px;}
.y112{bottom:359.310000px;}
.y20b{bottom:361.470000px;}
.y3c{bottom:363.645000px;}
.y42{bottom:363.840000px;}
.y2b{bottom:364.170000px;}
.y14d{bottom:365.970000px;}
.y193{bottom:368.490000px;}
.ycb{bottom:369.750000px;}
.y16d{bottom:372.090000px;}
.yfd{bottom:373.170000px;}
.y2a{bottom:375.510000px;}
.y1f1{bottom:377.310000px;}
.yaa{bottom:377.670000px;}
.y13e{bottom:378.930000px;}
.y111{bottom:379.110000px;}
.y20a{bottom:381.450000px;}
.y41{bottom:381.660000px;}
.y192{bottom:388.290000px;}
.yca{bottom:389.550000px;}
.yfc{bottom:393.015000px;}
.y1f0{bottom:397.335000px;}
.ya9{bottom:397.515000px;}
.y13d{bottom:398.775000px;}
.y110{bottom:398.955000px;}
.y40{bottom:399.480000px;}
.y29{bottom:399.495000px;}
.y209{bottom:401.295000px;}
.y191{bottom:408.135000px;}
.yc9{bottom:410.295000px;}
.yfb{bottom:412.815000px;}
.y1ef{bottom:417.135000px;}
.y3f{bottom:417.300000px;}
.ya8{bottom:417.315000px;}
.y13c{bottom:418.575000px;}
.y10f{bottom:418.935000px;}
.y28{bottom:420.375000px;}
.y208{bottom:421.095000px;}
.y190{bottom:427.935000px;}
.yc8{bottom:430.095000px;}
.yfa{bottom:432.795000px;}
.y3e{bottom:435.120000px;}
.y1ee{bottom:436.935000px;}
.ya7{bottom:437.115000px;}
.y13b{bottom:438.375000px;}
.y10e{bottom:438.735000px;}
.y27{bottom:440.175000px;}
.y207{bottom:440.895000px;}
.yc7{bottom:443.055000px;}
.y18f{bottom:447.735000px;}
.yf9{bottom:452.595000px;}
.y3d{bottom:452.940000px;}
.y26{bottom:453.855000px;}
.y1ed{bottom:456.735000px;}
.ya6{bottom:457.095000px;}
.y1c6{bottom:458.175000px;}
.y13a{bottom:458.355000px;}
.y10d{bottom:458.535000px;}
.y206{bottom:460.695000px;}
.y25{bottom:462.495000px;}
.yc6{bottom:463.035000px;}
.y18e{bottom:467.715000px;}
.yf8{bottom:472.395000px;}
.y1ec{bottom:476.535000px;}
.ya5{bottom:476.895000px;}
.y72{bottom:477.060000px;}
.y1c5{bottom:478.155000px;}
.y10c{bottom:478.335000px;}
.y205{bottom:480.675000px;}
.yc5{bottom:482.835000px;}
.y24{bottom:485.895000px;}
.y18d{bottom:487.515000px;}
.y139{bottom:489.675000px;}
.yf7{bottom:492.195000px;}
.y1eb{bottom:496.515000px;}
.ya4{bottom:496.695000px;}
.y1c4{bottom:497.955000px;}
.y10b{bottom:499.035000px;}
.y204{bottom:500.475000px;}
.yc4{bottom:502.635000px;}
.y18c{bottom:507.315000px;}
.y23{bottom:509.115000px;}
.yf6{bottom:511.995000px;}
.y1ea{bottom:516.315000px;}
.ya3{bottom:516.495000px;}
.y10a{bottom:518.655000px;}
.y203{bottom:520.275000px;}
.yc3{bottom:522.435000px;}
.y138{bottom:522.975000px;}
.y18b{bottom:527.115000px;}
.yf5{bottom:531.975000px;}
.y22{bottom:532.515000px;}
.y1e9{bottom:536.115000px;}
.ya2{bottom:536.295000px;}
.y202{bottom:540.075000px;}
.yc2{bottom:542.235000px;}
.y18a{bottom:546.915000px;}
.yf4{bottom:551.775000px;}
.y21{bottom:555.735000px;}
.y1e8{bottom:555.915000px;}
.ya1{bottom:556.275000px;}
.y1c3{bottom:559.515000px;}
.y201{bottom:559.875000px;}
.yc1{bottom:562.215000px;}
.y189{bottom:566.895000px;}
.y1e7{bottom:575.715000px;}
.ya0{bottom:576.075000px;}
.y20{bottom:578.955000px;}
.y200{bottom:579.855000px;}
.y1c2{bottom:580.395000px;}
.yc0{bottom:582.015000px;}
.yf3{bottom:583.275000px;}
.y188{bottom:584.895000px;}
.y1e6{bottom:595.695000px;}
.y9f{bottom:595.875000px;}
.y187{bottom:596.595000px;}
.y1ff{bottom:599.655000px;}
.ybf{bottom:601.815000px;}
.y1f{bottom:602.355000px;}
.y1e5{bottom:615.495000px;}
.y9e{bottom:615.675000px;}
.yf2{bottom:619.455000px;}
.y1c1{bottom:621.255000px;}
.ybe{bottom:621.615000px;}
.y5a{bottom:623.805000px;}
.y186{bottom:629.205000px;}
.y12a{bottom:633.165000px;}
.y1e4{bottom:635.325000px;}
.y9d{bottom:635.505000px;}
.yf1{bottom:639.285000px;}
.y1c0{bottom:641.085000px;}
.ybd{bottom:641.445000px;}
.y1e3{bottom:655.125000px;}
.y9c{bottom:655.485000px;}
.y1e{bottom:657.105000px;}
.yf0{bottom:659.085000px;}
.y1bf{bottom:660.885000px;}
.ybc{bottom:661.425000px;}
.y185{bottom:661.605000px;}
.y12c{bottom:664.170000px;}
.y1d{bottom:672.765000px;}
.y1e2{bottom:674.925000px;}
.y9b{bottom:675.285000px;}
.yef{bottom:679.065000px;}
.ybb{bottom:681.225000px;}
.y1be{bottom:681.585000px;}
.y1c{bottom:688.245000px;}
.y184{bottom:694.185000px;}
.y1e1{bottom:694.905000px;}
.y9a{bottom:695.085000px;}
.yee{bottom:698.865000px;}
.yba{bottom:701.025000px;}
.y1b{bottom:703.725000px;}
.y128{bottom:712.725000px;}
.y16c{bottom:713.985000px;}
.y1e0{bottom:714.705000px;}
.y99{bottom:714.885000px;}
.yed{bottom:718.665000px;}
.y1a{bottom:719.205000px;}
.yb9{bottom:720.825000px;}
.y1bd{bottom:722.625000px;}
.y182{bottom:726.585000px;}
.y19{bottom:730.365000px;}
.y1df{bottom:734.505000px;}
.y98{bottom:734.685000px;}
.y16b{bottom:736.485000px;}
.yec{bottom:738.465000px;}
.yb8{bottom:741.525000px;}
.y65{bottom:742.245000px;}
.y1bc{bottom:743.325000px;}
.y18{bottom:744.045000px;}
.y16a{bottom:746.565000px;}
.y1de{bottom:754.305000px;}
.y97{bottom:754.665000px;}
.y17{bottom:756.645000px;}
.yeb{bottom:758.265000px;}
.yb7{bottom:761.325000px;}
.y1bb{bottom:767.085000px;}
.y16{bottom:769.065000px;}
.y1dd{bottom:774.105000px;}
.y96{bottom:774.465000px;}
.y17f{bottom:775.005000px;}
.y169{bottom:775.725000px;}
.yea{bottom:778.245000px;}
.y15{bottom:782.025000px;}
.y126{bottom:786.165000px;}
.y1dc{bottom:794.085000px;}
.y95{bottom:794.265000px;}
.y14{bottom:795.705000px;}
.ye9{bottom:798.045000px;}
.y1ba{bottom:807.945000px;}
.y13{bottom:808.665000px;}
.y1db{bottom:813.885000px;}
.y94{bottom:814.065000px;}
.ye8{bottom:817.845000px;}
.y17c{bottom:823.245000px;}
.y1b9{bottom:827.745000px;}
.y168{bottom:832.425000px;}
.y1da{bottom:833.685000px;}
.y93{bottom:833.865000px;}
.y12{bottom:835.485000px;}
.ye7{bottom:837.645000px;}
.y1b8{bottom:847.725000px;}
.y167{bottom:849.705000px;}
.y1d9{bottom:853.530000px;}
.y92{bottom:853.890000px;}
.y178{bottom:855.870000px;}
.ye6{bottom:857.490000px;}
.y12d{bottom:860.355000px;}
.y166{bottom:865.770000px;}
.y11{bottom:866.130000px;}
.y1b7{bottom:867.570000px;}
.y124{bottom:870.255000px;}
.y1d8{bottom:873.330000px;}
.y91{bottom:873.690000px;}
.ye5{bottom:877.470000px;}
.y165{bottom:877.830000px;}
.y10{bottom:884.490000px;}
.y1b6{bottom:887.370000px;}
.y176{bottom:889.875000px;}
.y164{bottom:889.890000px;}
.y1d7{bottom:893.310000px;}
.y90{bottom:893.490000px;}
.ye4{bottom:897.270000px;}
.yf{bottom:898.350000px;}
.y163{bottom:902.130000px;}
.y1b5{bottom:908.070000px;}
.ye{bottom:911.490000px;}
.y1d6{bottom:913.110000px;}
.y8f{bottom:913.290000px;}
.y161{bottom:913.830000px;}
.ye3{bottom:917.070000px;}
.y15e{bottom:930.390000px;}
.y1d5{bottom:932.910000px;}
.y8e{bottom:933.090000px;}
.yd{bottom:933.270000px;}
.y172{bottom:934.530000px;}
.y122{bottom:934.695000px;}
.ye2{bottom:936.870000px;}
.y1b4{bottom:949.110000px;}
.y1d4{bottom:952.710000px;}
.y8d{bottom:953.070000px;}
.y15b{bottom:956.310000px;}
.ye1{bottom:956.670000px;}
.yc{bottom:957.750000px;}
.y1b3{bottom:968.910000px;}
.y1d3{bottom:972.510000px;}
.y8c{bottom:972.870000px;}
.ye0{bottom:976.650000px;}
.y15a{bottom:980.070000px;}
.yb{bottom:980.970000px;}
.y1b2{bottom:988.710000px;}
.y1d2{bottom:992.490000px;}
.y8b{bottom:992.670000px;}
.ydf{bottom:996.450000px;}
.y159{bottom:997.890000px;}
.ya{bottom:1004.550000px;}
.y1b1{bottom:1008.510000px;}
.y1d1{bottom:1012.290000px;}
.y8a{bottom:1012.470000px;}
.yde{bottom:1016.250000px;}
.y1b0{bottom:1028.310000px;}
.y120{bottom:1029.195000px;}
.y1d0{bottom:1032.090000px;}
.y89{bottom:1032.270000px;}
.ydd{bottom:1036.050000px;}
.y9{bottom:1036.230000px;}
.y1af{bottom:1048.290000px;}
.y1cf{bottom:1051.890000px;}
.y88{bottom:1052.250000px;}
.ydc{bottom:1055.850000px;}
.y8{bottom:1063.230000px;}
.y1ae{bottom:1068.990000px;}
.y87{bottom:1072.050000px;}
.y1ce{bottom:1072.590000px;}
.ydb{bottom:1075.650000px;}
.y62{bottom:1096.200000px;}
.y85{bottom:1103.940000px;}
.y84{bottom:1123.200000px;}
.y39{bottom:1137.240000px;}
.h6{height:5.653125px;}
.h42{height:6.257812px;}
.h2{height:13.500000px;}
.h32{height:15.825000px;}
.h18{height:16.920000px;}
.h16{height:18.140625px;}
.h1e{height:22.140000px;}
.h14{height:23.319141px;}
.h33{height:23.565000px;}
.h2a{height:25.200000px;}
.h2b{height:26.640000px;}
.h2c{height:28.980000px;}
.h25{height:29.664141px;}
.hc{height:29.678906px;}
.h2d{height:29.700000px;}
.he{height:30.963516px;}
.h2e{height:31.140000px;}
.h3c{height:31.665000px;}
.h40{height:31.680000px;}
.h41{height:31.710000px;}
.h3d{height:31.882500px;}
.h29{height:36.180000px;}
.h17{height:36.281250px;}
.h39{height:36.885000px;}
.h3a{height:36.891000px;}
.h3b{height:36.900000px;}
.h12{height:39.503370px;}
.h34{height:40.125000px;}
.h5{height:40.985156px;}
.h28{height:41.535703px;}
.h1d{height:42.086250px;}
.h26{height:43.215117px;}
.h10{height:44.518359px;}
.h11{height:46.622932px;}
.hd{height:47.344922px;}
.h3e{height:47.520000px;}
.h4{height:47.699850px;}
.h3f{height:47.700000px;}
.h19{height:48.616875px;}
.h31{height:49.583118px;}
.h20{height:52.020000px;}
.h13{height:52.998047px;}
.h2f{height:54.076821px;}
.h1a{height:54.421875px;}
.hf{height:55.291992px;}
.h3{height:58.651172px;}
.ha{height:60.226875px;}
.h27{height:61.423863px;}
.hb{height:65.010937px;}
.h21{height:65.884219px;}
.h24{height:70.628906px;}
.h35{height:70.664062px;}
.h15{height:72.562500px;}
.h1f{height:74.953125px;}
.h23{height:75.093750px;}
.h37{height:81.305156px;}
.h38{height:82.676953px;}
.h7{height:86.585445px;}
.h8{height:96.508125px;}
.h36{height:99.557578px;}
.h9{height:99.687656px;}
.h1c{height:101.880000px;}
.h22{height:133.020000px;}
.h30{height:147.600000px;}
.h1b{height:465.195000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w15{width:46.791000px;}
.w12{width:67.125000px;}
.w1f{width:79.740000px;}
.w17{width:81.540000px;}
.w3{width:82.071000px;}
.w21{width:90.021000px;}
.w1c{width:90.022500px;}
.w18{width:90.036000px;}
.w19{width:90.045000px;}
.w20{width:90.165000px;}
.w1a{width:90.175500px;}
.w1b{width:90.180000px;}
.w14{width:94.530000px;}
.w22{width:100.470000px;}
.w1d{width:100.476000px;}
.w1e{width:100.485000px;}
.w16{width:141.861000px;}
.w9{width:154.470000px;}
.wd{width:174.645000px;}
.wc{width:174.825000px;}
.w13{width:175.515000px;}
.wa{width:180.390000px;}
.w7{width:180.930000px;}
.we{width:233.145000px;}
.wf{width:236.745000px;}
.w10{width:237.825000px;}
.wb{width:240.345000px;}
.w11{width:257.265000px;}
.w6{width:532.920000px;}
.w4{width:639.855000px;}
.w2{width:721.935000px;}
.w8{width:743.175000px;}
.w5{width:747.135000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4c{left:4.252500px;}
.x2{left:8.091000px;}
.x44{left:9.720000px;}
.x11{left:10.791000px;}
.x41{left:12.600000px;}
.x48{left:13.665000px;}
.x4a{left:15.825000px;}
.x30{left:16.905000px;}
.x3b{left:18.720000px;}
.x17{left:21.255000px;}
.x3d{left:22.680000px;}
.x45{left:25.740000px;}
.x32{left:28.290000px;}
.x3f{left:29.730000px;}
.x49{left:31.125000px;}
.x26{left:32.220000px;}
.x47{left:35.625000px;}
.x2a{left:37.815000px;}
.x46{left:38.865000px;}
.x20{left:41.760000px;}
.x42{left:43.215000px;}
.x39{left:45.345000px;}
.x22{left:50.040000px;}
.x2b{left:58.155000px;}
.x28{left:61.200000px;}
.x2c{left:64.815000px;}
.x24{left:69.330000px;}
.x3{left:73.965000px;}
.x10{left:81.765000px;}
.x13{left:92.565000px;}
.x16{left:95.085000px;}
.xd{left:101.196000px;}
.x1{left:108.045000px;}
.x1c{left:121.176000px;}
.xe{left:132.696000px;}
.x6{left:133.956000px;}
.x1a{left:135.036000px;}
.x9{left:143.676000px;}
.xb{left:152.310000px;}
.x2e{left:155.370000px;}
.x1e{left:168.870000px;}
.x4b{left:172.830000px;}
.x7{left:181.110000px;}
.x4{left:190.125000px;}
.xc{left:195.330000px;}
.x36{left:216.030000px;}
.x38{left:222.870000px;}
.x33{left:253.155000px;}
.x19{left:266.295000px;}
.x3a{left:296.715000px;}
.x12{left:302.655000px;}
.xa{left:305.895000px;}
.x14{left:310.350000px;}
.x1f{left:314.175000px;}
.x27{left:328.215000px;}
.x25{left:330.375000px;}
.x21{left:352.875000px;}
.x23{left:354.495000px;}
.x15{left:371.580000px;}
.x3c{left:378.255000px;}
.x5{left:446.505000px;}
.x8{left:452.265000px;}
.x3e{left:468.300000px;}
.x34{left:473.685000px;}
.xf{left:490.785000px;}
.x2f{left:557.940000px;}
.x29{left:593.775000px;}
.x18{left:620.253000px;}
.x40{left:648.510000px;}
.x1d{left:651.570000px;}
.x35{left:726.270000px;}
.x31{left:733.470000px;}
.x43{left:748.980000px;}
.x2d{left:772.560000px;}
.x37{left:782.640000px;}
.x1b{left:799.200000px;}
@media print{
.v4{vertical-align:-69.280000pt;}
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-16.000000pt;}
.v9{vertical-align:-10.880000pt;}
.vb{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.653308pt;}
.v5{vertical-align:3.199978pt;}
.va{vertical-align:10.880000pt;}
.v1{vertical-align:21.120000pt;}
.v8{vertical-align:40.960000pt;}
.v7{vertical-align:43.520000pt;}
.vc{vertical-align:46.720000pt;}
.ls11{letter-spacing:-2.400000pt;}
.lse{letter-spacing:-0.800000pt;}
.ls1c{letter-spacing:-0.762667pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls31{letter-spacing:-0.409067pt;}
.ls2e{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.198933pt;}
.ls13{letter-spacing:-0.183467pt;}
.ls2a{letter-spacing:-0.047360pt;}
.lsa{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.011520pt;}
.ls30{letter-spacing:0.047360pt;}
.ls1b{letter-spacing:0.094933pt;}
.ls15{letter-spacing:0.096000pt;}
.ls14{letter-spacing:0.106667pt;}
.ls19{letter-spacing:0.115200pt;}
.ls6{letter-spacing:0.128640pt;}
.ls8{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.229120pt;}
.ls10{letter-spacing:0.230933pt;}
.lsf{letter-spacing:0.231040pt;}
.ls2f{letter-spacing:0.265600pt;}
.ls9{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.355200pt;}
.lsb{letter-spacing:0.368533pt;}
.lsd{letter-spacing:0.506133pt;}
.ls2d{letter-spacing:0.762667pt;}
.ls7{letter-spacing:0.800000pt;}
.ls2c{letter-spacing:0.960000pt;}
.ls28{letter-spacing:2.187520pt;}
.ls1a{letter-spacing:5.920000pt;}
.ls27{letter-spacing:11.463040pt;}
.ls23{letter-spacing:11.519360pt;}
.ls26{letter-spacing:12.128000pt;}
.ls20{letter-spacing:12.159360pt;}
.ls1f{letter-spacing:12.515200pt;}
.ls24{letter-spacing:12.675200pt;}
.ls4{letter-spacing:13.600000pt;}
.ls25{letter-spacing:13.707520pt;}
.ls22{letter-spacing:14.347520pt;}
.ls1e{letter-spacing:14.454187pt;}
.ls5{letter-spacing:42.400000pt;}
.ls18{letter-spacing:50.159360pt;}
.ls1{letter-spacing:63.466667pt;}
.ls0{letter-spacing:63.520000pt;}
.ls3{letter-spacing:64.000000pt;}
.ls2{letter-spacing:64.640000pt;}
.ls29{letter-spacing:296.675200pt;}
.ls17{letter-spacing:339.253333pt;}
.ls16{letter-spacing:345.760000pt;}
.wsc{word-spacing:-42.880000pt;}
.wse{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws8{word-spacing:-13.600000pt;}
.ws17{word-spacing:-13.545600pt;}
.wsb{word-spacing:-13.510933pt;}
.ws9{word-spacing:-13.280000pt;}
.ws14{word-spacing:-13.232640pt;}
.wsa{word-spacing:-13.096533pt;}
.ws16{word-spacing:-12.960000pt;}
.ws18{word-spacing:-12.870933pt;}
.ws5{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.686400pt;}
.ws15{word-spacing:-11.040000pt;}
.ws3{word-spacing:-10.720000pt;}
.wsd{word-spacing:-9.957333pt;}
.ws4{word-spacing:-9.733760pt;}
.ws0{word-spacing:-9.280000pt;}
.ws6{word-spacing:-8.000000pt;}
.ws2{word-spacing:-6.720000pt;}
.ws10{word-spacing:-0.223360pt;}
.ws7{word-spacing:0.000000pt;}
.ws11{word-spacing:0.416640pt;}
.ws12{word-spacing:0.472960pt;}
.ws13{word-spacing:0.632960pt;}
._6{margin-left:-52.960000pt;}
._29{margin-left:-8.080640pt;}
._15{margin-left:-3.592320pt;}
._14{margin-left:-2.513280pt;}
._2{margin-left:-1.098240pt;}
._0{width:0.928000pt;}
._1{width:2.155093pt;}
._13{width:3.824640pt;}
._d{width:5.152640pt;}
._a{width:6.544427pt;}
._11{width:7.796480pt;}
._17{width:9.123200pt;}
._16{width:10.032000pt;}
._e{width:11.420800pt;}
._22{width:12.345600pt;}
._2d{width:13.520000pt;}
._f{width:14.795520pt;}
._1c{width:16.590720pt;}
._10{width:18.309120pt;}
._8{width:19.495040pt;}
._9{width:20.663680pt;}
._1d{width:21.676160pt;}
._2e{width:22.654080pt;}
._25{width:23.585280pt;}
._24{width:24.647680pt;}
._12{width:25.763200pt;}
._c{width:26.669227pt;}
._b{width:27.622400pt;}
._27{width:28.897280pt;}
._26{width:30.703360pt;}
._23{width:31.818880pt;}
._2a{width:33.040640pt;}
._2f{width:34.262400pt;}
._1e{width:35.165440pt;}
._28{width:36.122880pt;}
._1a{width:37.194240pt;}
._19{width:38.307840pt;}
._1f{width:39.999360pt;}
._20{width:41.229867pt;}
._30{width:44.302080pt;}
._18{width:45.880320pt;}
._2b{width:46.842240pt;}
._2c{width:47.783040pt;}
._32{width:50.729600pt;}
._31{width:52.759040pt;}
._33{width:54.713600pt;}
._4{width:58.218667pt;}
._3{width:63.411627pt;}
._21{width:74.580480pt;}
._34{width:76.200747pt;}
._5{width:177.440000pt;}
._1b{width:247.653333pt;}
._7{width:671.978667pt;}
.fs2{font-size:5.120000pt;}
.fsf{font-size:5.333333pt;}
.fsd{font-size:16.000000pt;}
.fsc{font-size:21.120000pt;}
.fs6{font-size:26.880000pt;}
.fse{font-size:32.000000pt;}
.fsb{font-size:33.730624pt;}
.fs0{font-size:37.120000pt;}
.fsa{font-size:40.320000pt;}
.fs7{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y71{bottom:-223.706667pt;}
.y70{bottom:-193.626667pt;}
.y6f{bottom:-163.706667pt;}
.y81{bottom:-160.986667pt;}
.y6e{bottom:-133.626667pt;}
.y80{bottom:-131.066667pt;}
.y6d{bottom:-103.680000pt;}
.y7f{bottom:-100.986667pt;}
.y6c{bottom:-73.600000pt;}
.y7e{bottom:-71.026667pt;}
.y6b{bottom:-43.680000pt;}
.y7d{bottom:-40.946667pt;}
.y137{bottom:-28.346667pt;}
.y64{bottom:-25.466667pt;}
.y3b{bottom:-24.160000pt;}
.y83{bottom:-15.931333pt;}
.y6a{bottom:-13.760000pt;}
.y7c{bottom:-11.026667pt;}
.y136{bottom:-1.266667pt;}
.y0{bottom:0.000000pt;}
.y218{bottom:1.633333pt;}
.y69{bottom:2.240000pt;}
.y59{bottom:3.186667pt;}
.y2{bottom:3.520000pt;}
.y15d{bottom:4.160000pt;}
.y15c{bottom:4.320000pt;}
.y3a{bottom:4.480000pt;}
.y63{bottom:4.960000pt;}
.y175{bottom:6.400000pt;}
.y177{bottom:6.413333pt;}
.y15f{bottom:7.680000pt;}
.y160{bottom:7.840000pt;}
.y7{bottom:11.040000pt;}
.y179{bottom:11.200000pt;}
.y17b{bottom:11.360000pt;}
.y17e{bottom:11.520000pt;}
.y135{bottom:11.853333pt;}
.y4{bottom:12.000000pt;}
.y3{bottom:12.160000pt;}
.y123{bottom:12.653333pt;}
.y173{bottom:13.440000pt;}
.y68{bottom:13.920000pt;}
.y125{bottom:13.933333pt;}
.y61{bottom:14.240000pt;}
.y127{bottom:14.720000pt;}
.y129{bottom:14.880000pt;}
.y162{bottom:15.200000pt;}
.y12b{bottom:15.520000pt;}
.y7b{bottom:16.493333pt;}
.y58{bottom:17.266667pt;}
.y121{bottom:17.773333pt;}
.y180{bottom:18.240000pt;}
.y17a{bottom:18.400000pt;}
.y17d{bottom:18.560000pt;}
.y174{bottom:20.480000pt;}
.y6{bottom:22.400000pt;}
.y134{bottom:24.973333pt;}
.y60{bottom:25.280000pt;}
.y67{bottom:25.440000pt;}
.y7a{bottom:28.013333pt;}
.y57{bottom:29.146667pt;}
.y181{bottom:32.480000pt;}
.y183{bottom:32.640000pt;}
.y5{bottom:33.920000pt;}
.y5f{bottom:36.000000pt;}
.y66{bottom:36.480000pt;}
.y56{bottom:36.986667pt;}
.y133{bottom:37.133333pt;}
.y79{bottom:39.693333pt;}
.yda{bottom:41.120000pt;}
.y1cd{bottom:42.400000pt;}
.y5e{bottom:46.720000pt;}
.y132{bottom:50.253333pt;}
.y78{bottom:51.213333pt;}
.y55{bottom:52.986667pt;}
.y86{bottom:53.760000pt;}
.y1{bottom:54.560000pt;}
.yd9{bottom:55.680000pt;}
.y82{bottom:56.693333pt;}
.y5d{bottom:57.440000pt;}
.y1cc{bottom:59.040000pt;}
.y131{bottom:62.413333pt;}
.y77{bottom:62.893333pt;}
.y5c{bottom:68.160000pt;}
.y54{bottom:68.826667pt;}
.yd8{bottom:71.520000pt;}
.y1cb{bottom:72.480000pt;}
.y76{bottom:74.413333pt;}
.y130{bottom:75.533333pt;}
.y53{bottom:82.426667pt;}
.y5b{bottom:83.360000pt;}
.y75{bottom:85.933333pt;}
.y1ad{bottom:88.800000pt;}
.y14c{bottom:89.920000pt;}
.y11f{bottom:90.080000pt;}
.y52{bottom:93.466667pt;}
.y19f{bottom:96.320000pt;}
.y74{bottom:97.613333pt;}
.y1a3{bottom:98.240000pt;}
.y12f{bottom:98.413333pt;}
.y171{bottom:100.800000pt;}
.y38{bottom:102.080000pt;}
.y109{bottom:102.560000pt;}
.y1ca{bottom:103.680000pt;}
.yb6{bottom:103.840000pt;}
.y1fe{bottom:106.240000pt;}
.y1ac{bottom:106.400000pt;}
.y14b{bottom:107.520000pt;}
.y11e{bottom:107.840000pt;}
.y73{bottom:108.493333pt;}
.y51{bottom:109.306667pt;}
.y217{bottom:109.760000pt;}
.y158{bottom:110.880000pt;}
.y19e{bottom:113.920000pt;}
.y170{bottom:114.560000pt;}
.y1a2{bottom:115.840000pt;}
.yd7{bottom:116.960000pt;}
.y37{bottom:119.680000pt;}
.y108{bottom:120.160000pt;}
.yb5{bottom:121.440000pt;}
.y12e{bottom:121.453333pt;}
.y1fd{bottom:123.840000pt;}
.y1ab{bottom:124.000000pt;}
.y14a{bottom:125.120000pt;}
.y50{bottom:125.146667pt;}
.y11d{bottom:125.440000pt;}
.y216{bottom:127.360000pt;}
.y157{bottom:128.640000pt;}
.y19d{bottom:131.520000pt;}
.y1a1{bottom:133.440000pt;}
.yd6{bottom:134.720000pt;}
.y36{bottom:137.280000pt;}
.y107{bottom:137.760000pt;}
.yb4{bottom:139.040000pt;}
.y4f{bottom:141.146667pt;}
.y1fc{bottom:141.440000pt;}
.y1aa{bottom:141.760000pt;}
.y149{bottom:142.880000pt;}
.y11c{bottom:143.040000pt;}
.y215{bottom:144.986667pt;}
.y156{bottom:146.266667pt;}
.y19c{bottom:150.106667pt;}
.y1a0{bottom:151.226667pt;}
.yd5{bottom:152.346667pt;}
.y35{bottom:154.906667pt;}
.y106{bottom:155.386667pt;}
.yb3{bottom:156.666667pt;}
.y4e{bottom:156.986667pt;}
.y1c9{bottom:157.466667pt;}
.y1fb{bottom:159.226667pt;}
.y1a9{bottom:159.386667pt;}
.y148{bottom:160.506667pt;}
.y11b{bottom:160.666667pt;}
.y214{bottom:162.746667pt;}
.y155{bottom:164.666667pt;}
.y4d{bottom:168.826667pt;}
.yd4{bottom:169.946667pt;}
.y34{bottom:172.666667pt;}
.y105{bottom:172.986667pt;}
.yb2{bottom:174.266667pt;}
.y4c{bottom:176.666667pt;}
.y1fa{bottom:176.826667pt;}
.y1a8{bottom:176.986667pt;}
.y147{bottom:178.106667pt;}
.y11a{bottom:178.266667pt;}
.y213{bottom:180.346667pt;}
.y19b{bottom:186.426667pt;}
.yd3{bottom:187.546667pt;}
.y33{bottom:190.266667pt;}
.y104{bottom:190.586667pt;}
.yb1{bottom:192.026667pt;}
.y4b{bottom:192.506667pt;}
.y1c8{bottom:193.786667pt;}
.y1f9{bottom:194.426667pt;}
.y1a7{bottom:194.586667pt;}
.y146{bottom:195.706667pt;}
.y119{bottom:196.026667pt;}
.y212{bottom:197.946667pt;}
.y154{bottom:200.986667pt;}
.y19a{bottom:204.026667pt;}
.yd2{bottom:205.146667pt;}
.y32{bottom:207.866667pt;}
.y4a{bottom:208.346667pt;}
.yb0{bottom:210.426667pt;}
.y1f8{bottom:212.026667pt;}
.y1a6{bottom:212.186667pt;}
.y1c7{bottom:212.346667pt;}
.y145{bottom:213.306667pt;}
.y118{bottom:213.626667pt;}
.y211{bottom:215.546667pt;}
.y153{bottom:218.586667pt;}
.y199{bottom:221.626667pt;}
.yd1{bottom:222.906667pt;}
.y49{bottom:224.186667pt;}
.y31{bottom:225.466667pt;}
.y103{bottom:225.946667pt;}
.yaf{bottom:228.986667pt;}
.y1f7{bottom:229.626667pt;}
.y1a5{bottom:229.946667pt;}
.y144{bottom:231.066667pt;}
.y117{bottom:231.226667pt;}
.y210{bottom:233.146667pt;}
.y152{bottom:236.346667pt;}
.y198{bottom:239.386667pt;}
.y48{bottom:240.213333pt;}
.yd0{bottom:240.506667pt;}
.y30{bottom:243.066667pt;}
.y102{bottom:243.546667pt;}
.y1f6{bottom:247.386667pt;}
.y1a4{bottom:247.546667pt;}
.y143{bottom:248.666667pt;}
.y116{bottom:248.826667pt;}
.y20f{bottom:250.906667pt;}
.y151{bottom:253.946667pt;}
.y47{bottom:256.053333pt;}
.y197{bottom:256.986667pt;}
.ycf{bottom:258.106667pt;}
.y2f{bottom:260.826667pt;}
.y101{bottom:261.146667pt;}
.y1f5{bottom:264.986667pt;}
.yae{bottom:265.146667pt;}
.y142{bottom:266.266667pt;}
.y115{bottom:266.426667pt;}
.y20e{bottom:268.506667pt;}
.y150{bottom:271.546667pt;}
.y46{bottom:271.893333pt;}
.y196{bottom:274.586667pt;}
.yce{bottom:275.706667pt;}
.y2e{bottom:278.426667pt;}
.y100{bottom:278.746667pt;}
.y1f4{bottom:282.586667pt;}
.yad{bottom:282.746667pt;}
.y141{bottom:283.866667pt;}
.y114{bottom:284.186667pt;}
.y20d{bottom:286.106667pt;}
.y45{bottom:287.733333pt;}
.y14f{bottom:289.146667pt;}
.y195{bottom:292.186667pt;}
.ycd{bottom:293.306667pt;}
.yff{bottom:296.506667pt;}
.y2d{bottom:296.826667pt;}
.y44{bottom:299.573333pt;}
.y16f{bottom:300.026667pt;}
.y1f3{bottom:300.186667pt;}
.yac{bottom:300.346667pt;}
.y140{bottom:301.466667pt;}
.y113{bottom:301.786667pt;}
.y20c{bottom:303.706667pt;}
.y43{bottom:307.413333pt;}
.y14e{bottom:307.546667pt;}
.y194{bottom:309.786667pt;}
.ycc{bottom:311.066667pt;}
.yfe{bottom:314.106667pt;}
.y2c{bottom:314.906667pt;}
.y16e{bottom:317.146667pt;}
.y1f2{bottom:317.786667pt;}
.yab{bottom:318.106667pt;}
.y13f{bottom:319.226667pt;}
.y112{bottom:319.386667pt;}
.y20b{bottom:321.306667pt;}
.y3c{bottom:323.240000pt;}
.y42{bottom:323.413333pt;}
.y2b{bottom:323.706667pt;}
.y14d{bottom:325.306667pt;}
.y193{bottom:327.546667pt;}
.ycb{bottom:328.666667pt;}
.y16d{bottom:330.746667pt;}
.yfd{bottom:331.706667pt;}
.y2a{bottom:333.786667pt;}
.y1f1{bottom:335.386667pt;}
.yaa{bottom:335.706667pt;}
.y13e{bottom:336.826667pt;}
.y111{bottom:336.986667pt;}
.y20a{bottom:339.066667pt;}
.y41{bottom:339.253333pt;}
.y192{bottom:345.146667pt;}
.yca{bottom:346.266667pt;}
.yfc{bottom:349.346667pt;}
.y1f0{bottom:353.186667pt;}
.ya9{bottom:353.346667pt;}
.y13d{bottom:354.466667pt;}
.y110{bottom:354.626667pt;}
.y40{bottom:355.093333pt;}
.y29{bottom:355.106667pt;}
.y209{bottom:356.706667pt;}
.y191{bottom:362.786667pt;}
.yc9{bottom:364.706667pt;}
.yfb{bottom:366.946667pt;}
.y1ef{bottom:370.786667pt;}
.y3f{bottom:370.933333pt;}
.ya8{bottom:370.946667pt;}
.y13c{bottom:372.066667pt;}
.y10f{bottom:372.386667pt;}
.y28{bottom:373.666667pt;}
.y208{bottom:374.306667pt;}
.y190{bottom:380.386667pt;}
.yc8{bottom:382.306667pt;}
.yfa{bottom:384.706667pt;}
.y3e{bottom:386.773333pt;}
.y1ee{bottom:388.386667pt;}
.ya7{bottom:388.546667pt;}
.y13b{bottom:389.666667pt;}
.y10e{bottom:389.986667pt;}
.y27{bottom:391.266667pt;}
.y207{bottom:391.906667pt;}
.yc7{bottom:393.826667pt;}
.y18f{bottom:397.986667pt;}
.yf9{bottom:402.306667pt;}
.y3d{bottom:402.613333pt;}
.y26{bottom:403.426667pt;}
.y1ed{bottom:405.986667pt;}
.ya6{bottom:406.306667pt;}
.y1c6{bottom:407.266667pt;}
.y13a{bottom:407.426667pt;}
.y10d{bottom:407.586667pt;}
.y206{bottom:409.506667pt;}
.y25{bottom:411.106667pt;}
.yc6{bottom:411.586667pt;}
.y18e{bottom:415.746667pt;}
.yf8{bottom:419.906667pt;}
.y1ec{bottom:423.586667pt;}
.ya5{bottom:423.906667pt;}
.y72{bottom:424.053333pt;}
.y1c5{bottom:425.026667pt;}
.y10c{bottom:425.186667pt;}
.y205{bottom:427.266667pt;}
.yc5{bottom:429.186667pt;}
.y24{bottom:431.906667pt;}
.y18d{bottom:433.346667pt;}
.y139{bottom:435.266667pt;}
.yf7{bottom:437.506667pt;}
.y1eb{bottom:441.346667pt;}
.ya4{bottom:441.506667pt;}
.y1c4{bottom:442.626667pt;}
.y10b{bottom:443.586667pt;}
.y204{bottom:444.866667pt;}
.yc4{bottom:446.786667pt;}
.y18c{bottom:450.946667pt;}
.y23{bottom:452.546667pt;}
.yf6{bottom:455.106667pt;}
.y1ea{bottom:458.946667pt;}
.ya3{bottom:459.106667pt;}
.y10a{bottom:461.026667pt;}
.y203{bottom:462.466667pt;}
.yc3{bottom:464.386667pt;}
.y138{bottom:464.866667pt;}
.y18b{bottom:468.546667pt;}
.yf5{bottom:472.866667pt;}
.y22{bottom:473.346667pt;}
.y1e9{bottom:476.546667pt;}
.ya2{bottom:476.706667pt;}
.y202{bottom:480.066667pt;}
.yc2{bottom:481.986667pt;}
.y18a{bottom:486.146667pt;}
.yf4{bottom:490.466667pt;}
.y21{bottom:493.986667pt;}
.y1e8{bottom:494.146667pt;}
.ya1{bottom:494.466667pt;}
.y1c3{bottom:497.346667pt;}
.y201{bottom:497.666667pt;}
.yc1{bottom:499.746667pt;}
.y189{bottom:503.906667pt;}
.y1e7{bottom:511.746667pt;}
.ya0{bottom:512.066667pt;}
.y20{bottom:514.626667pt;}
.y200{bottom:515.426667pt;}
.y1c2{bottom:515.906667pt;}
.yc0{bottom:517.346667pt;}
.yf3{bottom:518.466667pt;}
.y188{bottom:519.906667pt;}
.y1e6{bottom:529.506667pt;}
.y9f{bottom:529.666667pt;}
.y187{bottom:530.306667pt;}
.y1ff{bottom:533.026667pt;}
.ybf{bottom:534.946667pt;}
.y1f{bottom:535.426667pt;}
.y1e5{bottom:547.106667pt;}
.y9e{bottom:547.266667pt;}
.yf2{bottom:550.626667pt;}
.y1c1{bottom:552.226667pt;}
.ybe{bottom:552.546667pt;}
.y5a{bottom:554.493333pt;}
.y186{bottom:559.293333pt;}
.y12a{bottom:562.813333pt;}
.y1e4{bottom:564.733333pt;}
.y9d{bottom:564.893333pt;}
.yf1{bottom:568.253333pt;}
.y1c0{bottom:569.853333pt;}
.ybd{bottom:570.173333pt;}
.y1e3{bottom:582.333333pt;}
.y9c{bottom:582.653333pt;}
.y1e{bottom:584.093333pt;}
.yf0{bottom:585.853333pt;}
.y1bf{bottom:587.453333pt;}
.ybc{bottom:587.933333pt;}
.y185{bottom:588.093333pt;}
.y12c{bottom:590.373333pt;}
.y1d{bottom:598.013333pt;}
.y1e2{bottom:599.933333pt;}
.y9b{bottom:600.253333pt;}
.yef{bottom:603.613333pt;}
.ybb{bottom:605.533333pt;}
.y1be{bottom:605.853333pt;}
.y1c{bottom:611.773333pt;}
.y184{bottom:617.053333pt;}
.y1e1{bottom:617.693333pt;}
.y9a{bottom:617.853333pt;}
.yee{bottom:621.213333pt;}
.yba{bottom:623.133333pt;}
.y1b{bottom:625.533333pt;}
.y128{bottom:633.533333pt;}
.y16c{bottom:634.653333pt;}
.y1e0{bottom:635.293333pt;}
.y99{bottom:635.453333pt;}
.yed{bottom:638.813333pt;}
.y1a{bottom:639.293333pt;}
.yb9{bottom:640.733333pt;}
.y1bd{bottom:642.333333pt;}
.y182{bottom:645.853333pt;}
.y19{bottom:649.213333pt;}
.y1df{bottom:652.893333pt;}
.y98{bottom:653.053333pt;}
.y16b{bottom:654.653333pt;}
.yec{bottom:656.413333pt;}
.yb8{bottom:659.133333pt;}
.y65{bottom:659.773333pt;}
.y1bc{bottom:660.733333pt;}
.y18{bottom:661.373333pt;}
.y16a{bottom:663.613333pt;}
.y1de{bottom:670.493333pt;}
.y97{bottom:670.813333pt;}
.y17{bottom:672.573333pt;}
.yeb{bottom:674.013333pt;}
.yb7{bottom:676.733333pt;}
.y1bb{bottom:681.853333pt;}
.y16{bottom:683.613333pt;}
.y1dd{bottom:688.093333pt;}
.y96{bottom:688.413333pt;}
.y17f{bottom:688.893333pt;}
.y169{bottom:689.533333pt;}
.yea{bottom:691.773333pt;}
.y15{bottom:695.133333pt;}
.y126{bottom:698.813333pt;}
.y1dc{bottom:705.853333pt;}
.y95{bottom:706.013333pt;}
.y14{bottom:707.293333pt;}
.ye9{bottom:709.373333pt;}
.y1ba{bottom:718.173333pt;}
.y13{bottom:718.813333pt;}
.y1db{bottom:723.453333pt;}
.y94{bottom:723.613333pt;}
.ye8{bottom:726.973333pt;}
.y17c{bottom:731.773333pt;}
.y1b9{bottom:735.773333pt;}
.y168{bottom:739.933333pt;}
.y1da{bottom:741.053333pt;}
.y93{bottom:741.213333pt;}
.y12{bottom:742.653333pt;}
.ye7{bottom:744.573333pt;}
.y1b8{bottom:753.533333pt;}
.y167{bottom:755.293333pt;}
.y1d9{bottom:758.693333pt;}
.y92{bottom:759.013333pt;}
.y178{bottom:760.773333pt;}
.ye6{bottom:762.213333pt;}
.y12d{bottom:764.760000pt;}
.y166{bottom:769.573333pt;}
.y11{bottom:769.893333pt;}
.y1b7{bottom:771.173333pt;}
.y124{bottom:773.560000pt;}
.y1d8{bottom:776.293333pt;}
.y91{bottom:776.613333pt;}
.ye5{bottom:779.973333pt;}
.y165{bottom:780.293333pt;}
.y10{bottom:786.213333pt;}
.y1b6{bottom:788.773333pt;}
.y176{bottom:791.000000pt;}
.y164{bottom:791.013333pt;}
.y1d7{bottom:794.053333pt;}
.y90{bottom:794.213333pt;}
.ye4{bottom:797.573333pt;}
.yf{bottom:798.533333pt;}
.y163{bottom:801.893333pt;}
.y1b5{bottom:807.173333pt;}
.ye{bottom:810.213333pt;}
.y1d6{bottom:811.653333pt;}
.y8f{bottom:811.813333pt;}
.y161{bottom:812.293333pt;}
.ye3{bottom:815.173333pt;}
.y15e{bottom:827.013333pt;}
.y1d5{bottom:829.253333pt;}
.y8e{bottom:829.413333pt;}
.yd{bottom:829.573333pt;}
.y172{bottom:830.693333pt;}
.y122{bottom:830.840000pt;}
.ye2{bottom:832.773333pt;}
.y1b4{bottom:843.653333pt;}
.y1d4{bottom:846.853333pt;}
.y8d{bottom:847.173333pt;}
.y15b{bottom:850.053333pt;}
.ye1{bottom:850.373333pt;}
.yc{bottom:851.333333pt;}
.y1b3{bottom:861.253333pt;}
.y1d3{bottom:864.453333pt;}
.y8c{bottom:864.773333pt;}
.ye0{bottom:868.133333pt;}
.y15a{bottom:871.173333pt;}
.yb{bottom:871.973333pt;}
.y1b2{bottom:878.853333pt;}
.y1d2{bottom:882.213333pt;}
.y8b{bottom:882.373333pt;}
.ydf{bottom:885.733333pt;}
.y159{bottom:887.013333pt;}
.ya{bottom:892.933333pt;}
.y1b1{bottom:896.453333pt;}
.y1d1{bottom:899.813333pt;}
.y8a{bottom:899.973333pt;}
.yde{bottom:903.333333pt;}
.y1b0{bottom:914.053333pt;}
.y120{bottom:914.840000pt;}
.y1d0{bottom:917.413333pt;}
.y89{bottom:917.573333pt;}
.ydd{bottom:920.933333pt;}
.y9{bottom:921.093333pt;}
.y1af{bottom:931.813333pt;}
.y1cf{bottom:935.013333pt;}
.y88{bottom:935.333333pt;}
.ydc{bottom:938.533333pt;}
.y8{bottom:945.093333pt;}
.y1ae{bottom:950.213333pt;}
.y87{bottom:952.933333pt;}
.y1ce{bottom:953.413333pt;}
.ydb{bottom:956.133333pt;}
.y62{bottom:974.400000pt;}
.y85{bottom:981.280000pt;}
.y84{bottom:998.400000pt;}
.y39{bottom:1010.880000pt;}
.h6{height:5.025000pt;}
.h42{height:5.562500pt;}
.h2{height:12.000000pt;}
.h32{height:14.066667pt;}
.h18{height:15.040000pt;}
.h16{height:16.125000pt;}
.h1e{height:19.680000pt;}
.h14{height:20.728125pt;}
.h33{height:20.946667pt;}
.h2a{height:22.400000pt;}
.h2b{height:23.680000pt;}
.h2c{height:25.760000pt;}
.h25{height:26.368125pt;}
.hc{height:26.381250pt;}
.h2d{height:26.400000pt;}
.he{height:27.523125pt;}
.h2e{height:27.680000pt;}
.h3c{height:28.146667pt;}
.h40{height:28.160000pt;}
.h41{height:28.186667pt;}
.h3d{height:28.340000pt;}
.h29{height:32.160000pt;}
.h17{height:32.250000pt;}
.h39{height:32.786667pt;}
.h3a{height:32.792000pt;}
.h3b{height:32.800000pt;}
.h12{height:35.114107pt;}
.h34{height:35.666667pt;}
.h5{height:36.431250pt;}
.h28{height:36.920625pt;}
.h1d{height:37.410000pt;}
.h26{height:38.413438pt;}
.h10{height:39.571875pt;}
.h11{height:41.442606pt;}
.hd{height:42.084375pt;}
.h3e{height:42.240000pt;}
.h4{height:42.399867pt;}
.h3f{height:42.400000pt;}
.h19{height:43.215000pt;}
.h31{height:44.073883pt;}
.h20{height:46.240000pt;}
.h13{height:47.109375pt;}
.h2f{height:48.068285pt;}
.h1a{height:48.375000pt;}
.hf{height:49.148438pt;}
.h3{height:52.134375pt;}
.ha{height:53.535000pt;}
.h27{height:54.598989pt;}
.hb{height:57.787500pt;}
.h21{height:58.563750pt;}
.h24{height:62.781250pt;}
.h35{height:62.812500pt;}
.h15{height:64.500000pt;}
.h1f{height:66.625000pt;}
.h23{height:66.750000pt;}
.h37{height:72.271250pt;}
.h38{height:73.490625pt;}
.h7{height:76.964840pt;}
.h8{height:85.785000pt;}
.h36{height:88.495625pt;}
.h9{height:88.611250pt;}
.h1c{height:90.560000pt;}
.h22{height:118.240000pt;}
.h30{height:131.200000pt;}
.h1b{height:413.506667pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w15{width:41.592000pt;}
.w12{width:59.666667pt;}
.w1f{width:70.880000pt;}
.w17{width:72.480000pt;}
.w3{width:72.952000pt;}
.w21{width:80.018667pt;}
.w1c{width:80.020000pt;}
.w18{width:80.032000pt;}
.w19{width:80.040000pt;}
.w20{width:80.146667pt;}
.w1a{width:80.156000pt;}
.w1b{width:80.160000pt;}
.w14{width:84.026667pt;}
.w22{width:89.306667pt;}
.w1d{width:89.312000pt;}
.w1e{width:89.320000pt;}
.w16{width:126.098667pt;}
.w9{width:137.306667pt;}
.wd{width:155.240000pt;}
.wc{width:155.400000pt;}
.w13{width:156.013333pt;}
.wa{width:160.346667pt;}
.w7{width:160.826667pt;}
.we{width:207.240000pt;}
.wf{width:210.440000pt;}
.w10{width:211.400000pt;}
.wb{width:213.640000pt;}
.w11{width:228.680000pt;}
.w6{width:473.706667pt;}
.w4{width:568.760000pt;}
.w2{width:641.720000pt;}
.w8{width:660.600000pt;}
.w5{width:664.120000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4c{left:3.780000pt;}
.x2{left:7.192000pt;}
.x44{left:8.640000pt;}
.x11{left:9.592000pt;}
.x41{left:11.200000pt;}
.x48{left:12.146667pt;}
.x4a{left:14.066667pt;}
.x30{left:15.026667pt;}
.x3b{left:16.640000pt;}
.x17{left:18.893333pt;}
.x3d{left:20.160000pt;}
.x45{left:22.880000pt;}
.x32{left:25.146667pt;}
.x3f{left:26.426667pt;}
.x49{left:27.666667pt;}
.x26{left:28.640000pt;}
.x47{left:31.666667pt;}
.x2a{left:33.613333pt;}
.x46{left:34.546667pt;}
.x20{left:37.120000pt;}
.x42{left:38.413333pt;}
.x39{left:40.306667pt;}
.x22{left:44.480000pt;}
.x2b{left:51.693333pt;}
.x28{left:54.400000pt;}
.x2c{left:57.613333pt;}
.x24{left:61.626667pt;}
.x3{left:65.746667pt;}
.x10{left:72.680000pt;}
.x13{left:82.280000pt;}
.x16{left:84.520000pt;}
.xd{left:89.952000pt;}
.x1{left:96.040000pt;}
.x1c{left:107.712000pt;}
.xe{left:117.952000pt;}
.x6{left:119.072000pt;}
.x1a{left:120.032000pt;}
.x9{left:127.712000pt;}
.xb{left:135.386667pt;}
.x2e{left:138.106667pt;}
.x1e{left:150.106667pt;}
.x4b{left:153.626667pt;}
.x7{left:160.986667pt;}
.x4{left:169.000000pt;}
.xc{left:173.626667pt;}
.x36{left:192.026667pt;}
.x38{left:198.106667pt;}
.x33{left:225.026667pt;}
.x19{left:236.706667pt;}
.x3a{left:263.746667pt;}
.x12{left:269.026667pt;}
.xa{left:271.906667pt;}
.x14{left:275.866667pt;}
.x1f{left:279.266667pt;}
.x27{left:291.746667pt;}
.x25{left:293.666667pt;}
.x21{left:313.666667pt;}
.x23{left:315.106667pt;}
.x15{left:330.293333pt;}
.x3c{left:336.226667pt;}
.x5{left:396.893333pt;}
.x8{left:402.013333pt;}
.x3e{left:416.266667pt;}
.x34{left:421.053333pt;}
.xf{left:436.253333pt;}
.x2f{left:495.946667pt;}
.x29{left:527.800000pt;}
.x18{left:551.336000pt;}
.x40{left:576.453333pt;}
.x1d{left:579.173333pt;}
.x35{left:645.573333pt;}
.x31{left:651.973333pt;}
.x43{left:665.760000pt;}
.x2d{left:686.720000pt;}
.x37{left:695.680000pt;}
.x1b{left:710.400000pt;}
}




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