
    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_78cd81aac0b640c0d4eedac2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_294f768b607041fc154bda57.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_a523997a991fd8591a435619.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_544d80106abc5b9a0c9189db.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.962402;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_e9b8102de85b88f01cb16277.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.101562;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_a5d279ebac7d0f03d255aa48.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.130859;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_ee7d74c19ad2dbaf2ec5d83b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_af7e65c80bf895b40111c3de.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5c7bd53d3ac32687a3f1a250.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.130371;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_a72da33113f5cf233d25f93d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.084961;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_d218f8084e658428c64f9663.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.084961;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_16fea3dcc8f927093d95245e.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.172852;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_4e3bfe4e938930d8784c8dee.woff2')format("woff");}.fff{font-family:fff;line-height:1.172852;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_26c16d23a39df6723d7723e4.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.937500;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_defe3e793fd7503e79175673.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.783691;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_8ac17739ec7eb620c88a57c1.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.104004;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_9a8b451093d25741b24e75f6.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.937500;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:ff14;src:url('chunks/assets/font_3ba45ad2995de53baee75361.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.776855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v2{vertical-align:30.240000px;}
.ls5{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.324600px;}
.ls1e{letter-spacing:-0.229800px;}
.ls11{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.181200px;}
.ls15{letter-spacing:-0.100800px;}
.ls9{letter-spacing:-0.053280px;}
.ls6{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.015120px;}
.ls0{letter-spacing:0.018000px;}
.ls25{letter-spacing:0.027360px;}
.ls12{letter-spacing:0.028080px;}
.ls18{letter-spacing:0.073440px;}
.lse{letter-spacing:0.129600px;}
.ls14{letter-spacing:0.142560px;}
.ls8{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.253440px;}
.ls2{letter-spacing:0.298800px;}
.ls1a{letter-spacing:0.341400px;}
.lsc{letter-spacing:0.350400px;}
.lsb{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.395280px;}
.ls1b{letter-spacing:1.061280px;}
.lsd{letter-spacing:1.386720px;}
.ls22{letter-spacing:2.561760px;}
.ls21{letter-spacing:3.221280px;}
.ls10{letter-spacing:11.340000px;}
.ls19{letter-spacing:17.597280px;}
.ls1c{letter-spacing:17.621280px;}
.ls26{letter-spacing:18.341280px;}
.ls24{letter-spacing:19.781280px;}
.ls28{letter-spacing:21.197280px;}
.lsa{letter-spacing:21.221280px;}
.lsf{letter-spacing:27.701280px;}
.ls17{letter-spacing:57.941280px;}
.ls20{letter-spacing:58.637280px;}
.ls27{letter-spacing:58.661280px;}
.ls13{letter-spacing:59.381280px;}
.ls1{letter-spacing:190.800000px;}
.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;}
}
.ws11{word-spacing:-84.240000px;}
.ws8{word-spacing:-21.420000px;}
.wsa{word-spacing:-21.410400px;}
.wsc{word-spacing:-21.088080px;}
.ws4{word-spacing:-21.060000px;}
.ws9{word-spacing:-20.700000px;}
.ws12{word-spacing:-19.053360px;}
.wsf{word-spacing:-19.038240px;}
.wse{word-spacing:-18.937440px;}
.ws13{word-spacing:-18.808440px;}
.ws10{word-spacing:-18.713640px;}
.wsd{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.238800px;}
.ws5{word-spacing:-14.940000px;}
.ws0{word-spacing:-14.580000px;}
.ws1{word-spacing:-13.482000px;}
.ws3{word-spacing:-13.410720px;}
.wsb{word-spacing:-13.284000px;}
.ws2{word-spacing:-13.229520px;}
.ws7{word-spacing:0.000000px;}
._2c{margin-left:-19.800960px;}
._26{margin-left:-13.362720px;}
._1a{margin-left:-9.013680px;}
._20{margin-left:-7.459680px;}
._1d{margin-left:-6.334320px;}
._18{margin-left:-4.633200px;}
._17{margin-left:-3.116880px;}
._11{margin-left:-2.021760px;}
._0{margin-left:-1.008000px;}
._1{width:1.560000px;}
._10{width:2.898720px;}
._1c{width:4.174320px;}
._15{width:5.344800px;}
._14{width:6.402240px;}
._19{width:7.999920px;}
._13{width:9.306960px;}
._9{width:10.442880px;}
._f{width:11.580960px;}
._e{width:13.309200px;}
._d{width:14.991840px;}
._c{width:16.508160px;}
._b{width:18.027360px;}
._a{width:19.122480px;}
._12{width:22.276800px;}
._28{width:23.418720px;}
._1b{width:24.850800px;}
._16{width:26.744640px;}
._25{width:27.799200px;}
._23{width:29.062800px;}
._27{width:30.157920px;}
._24{width:31.168800px;}
._22{width:32.421120px;}
._21{width:33.443280px;}
._8{width:35.967600px;}
._2a{width:40.896960px;}
._2b{width:42.416400px;}
._1f{width:47.595360px;}
._1e{width:48.687840px;}
._29{width:61.155120px;}
._5{width:62.232240px;}
._7{width:63.249840px;}
._6{width:64.359360px;}
._4{width:393.300000px;}
._3{width:833.400000px;}
._2{width:1590.936000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs4{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y25{bottom:3.240000px;}
.y19d{bottom:4.500000px;}
.y1a3{bottom:4.680000px;}
.y7c{bottom:5.760000px;}
.y7a{bottom:5.940000px;}
.y82{bottom:5.985000px;}
.y113{bottom:8.460000px;}
.y120{bottom:8.505000px;}
.y117{bottom:8.640000px;}
.y78{bottom:9.720000px;}
.y76{bottom:11.880000px;}
.y19f{bottom:16.560000px;}
.y1a6{bottom:16.740000px;}
.y24{bottom:20.520000px;}
.y19c{bottom:28.620000px;}
.y1a7{bottom:28.800000px;}
.y122{bottom:30.960000px;}
.y23{bottom:37.620000px;}
.y11e{bottom:40.320000px;}
.y1ad{bottom:40.680000px;}
.ye{bottom:43.740000px;}
.y1ae{bottom:52.920000px;}
.y22{bottom:56.205000px;}
.yc{bottom:68.580000px;}
.y115{bottom:75.600000px;}
.y1af{bottom:77.040000px;}
.y21{bottom:80.505000px;}
.ya{bottom:94.860000px;}
.y20{bottom:103.365000px;}
.yd3{bottom:133.416000px;}
.y1f{bottom:140.265000px;}
.ye9{bottom:144.216000px;}
.y19a{bottom:145.476000px;}
.y126{bottom:146.196000px;}
.ybe{bottom:147.276000px;}
.y1da{bottom:147.456000px;}
.y13f{bottom:147.816000px;}
.yf0{bottom:149.976000px;}
.y2b{bottom:151.590000px;}
.y1b9{bottom:155.730000px;}
.y51{bottom:156.450000px;}
.y72{bottom:156.630000px;}
.yac{bottom:159.870000px;}
.yd2{bottom:161.310000px;}
.y8b{bottom:163.110000px;}
.y17e{bottom:164.370000px;}
.y161{bottom:164.910000px;}
.y110{bottom:167.610000px;}
.y1e{bottom:168.165000px;}
.y1d9{bottom:171.570000px;}
.ye8{bottom:171.930000px;}
.y199{bottom:173.730000px;}
.y125{bottom:174.450000px;}
.y13e{bottom:175.710000px;}
.y2a{bottom:179.130000px;}
.y71{bottom:180.750000px;}
.ybd{bottom:183.990000px;}
.yef{bottom:186.150000px;}
.yd1{bottom:189.030000px;}
.yab{bottom:189.210000px;}
.y1fa{bottom:190.110000px;}
.y1b8{bottom:191.730000px;}
.y17d{bottom:192.090000px;}
.y160{bottom:192.630000px;}
.y50{bottom:193.170000px;}
.y10f{bottom:195.330000px;}
.y1d8{bottom:195.690000px;}
.y1d{bottom:196.065000px;}
.ye7{bottom:199.650000px;}
.y8a{bottom:200.010000px;}
.y198{bottom:201.450000px;}
.y13d{bottom:203.430000px;}
.y70{bottom:204.870000px;}
.y124{bottom:206.130000px;}
.y29{bottom:206.670000px;}
.y1f9{bottom:215.850000px;}
.yd0{bottom:216.750000px;}
.yaa{bottom:218.730000px;}
.y15f{bottom:220.350000px;}
.ybc{bottom:220.890000px;}
.yee{bottom:222.330000px;}
.y10e{bottom:223.050000px;}
.y1c{bottom:223.785000px;}
.ye6{bottom:227.550000px;}
.y1b7{bottom:227.910000px;}
.y1d7{bottom:228.810000px;}
.y17c{bottom:228.990000px;}
.y6f{bottom:229.170000px;}
.y4f{bottom:229.890000px;}
.y13c{bottom:231.150000px;}
.y89{bottom:232.230000px;}
.y28{bottom:234.390000px;}
.y1f8{bottom:241.590000px;}
.ycf{bottom:244.470000px;}
.ya9{bottom:248.250000px;}
.y10d{bottom:250.770000px;}
.y1b{bottom:251.505000px;}
.y1d6{bottom:253.110000px;}
.y6e{bottom:253.290000px;}
.yed{bottom:253.830000px;}
.ye5{bottom:255.270000px;}
.y17b{bottom:256.710000px;}
.y197{bottom:257.070000px;}
.ybb{bottom:257.610000px;}
.y13b{bottom:258.870000px;}
.y27{bottom:261.930000px;}
.y1b6{bottom:264.090000px;}
.y4e{bottom:266.790000px;}
.y1f7{bottom:267.330000px;}
.yce{bottom:272.370000px;}
.y15e{bottom:275.970000px;}
.y1d5{bottom:277.230000px;}
.y6d{bottom:277.410000px;}
.ya8{bottom:277.770000px;}
.y10c{bottom:278.670000px;}
.y1a{bottom:279.225000px;}
.yec{bottom:279.750000px;}
.ye4{bottom:282.990000px;}
.y17a{bottom:284.430000px;}
.y196{bottom:284.790000px;}
.y13a{bottom:286.770000px;}
.y26{bottom:289.470000px;}
.yba{bottom:294.330000px;}
.ycd{bottom:300.090000px;}
.y1b5{bottom:300.270000px;}
.y1d4{bottom:301.350000px;}
.y6c{bottom:301.530000px;}
.y4d{bottom:303.510000px;}
.y15d{bottom:303.690000px;}
.y1f6{bottom:305.130000px;}
.y10b{bottom:306.390000px;}
.ya7{bottom:307.110000px;}
.y19{bottom:308.205000px;}
.yeb{bottom:310.350000px;}
.ye3{bottom:310.890000px;}
.y195{bottom:312.510000px;}
.y179{bottom:312.690000px;}
.y18{bottom:314.130000px;}
.y139{bottom:314.490000px;}
.y1d3{bottom:325.470000px;}
.y6b{bottom:325.650000px;}
.ycc{bottom:327.810000px;}
.y1f5{bottom:330.870000px;}
.yb9{bottom:331.230000px;}
.y15c{bottom:331.590000px;}
.y10a{bottom:334.110000px;}
.y1b4{bottom:336.450000px;}
.ya6{bottom:336.630000px;}
.ye2{bottom:338.610000px;}
.y4c{bottom:340.230000px;}
.y194{bottom:340.410000px;}
.y178{bottom:340.770000px;}
.yea{bottom:342.030000px;}
.y138{bottom:342.210000px;}
.y1d2{bottom:349.590000px;}
.y6a{bottom:349.770000px;}
.ycb{bottom:355.710000px;}
.y15b{bottom:359.310000px;}
.y109{bottom:362.010000px;}
.ya5{bottom:366.195000px;}
.ye1{bottom:366.375000px;}
.yb8{bottom:367.995000px;}
.y193{bottom:368.175000px;}
.y1f4{bottom:368.535000px;}
.y177{bottom:369.075000px;}
.y137{bottom:370.155000px;}
.y1b3{bottom:372.495000px;}
.y1d1{bottom:373.755000px;}
.y69{bottom:375.195000px;}
.y4b{bottom:376.995000px;}
.yca{bottom:383.475000px;}
.y15a{bottom:387.075000px;}
.y108{bottom:389.775000px;}
.ye0{bottom:394.095000px;}
.y1f3{bottom:394.455000px;}
.ya4{bottom:395.715000px;}
.y192{bottom:395.895000px;}
.y176{bottom:397.155000px;}
.y136{bottom:397.875000px;}
.y1d0{bottom:398.055000px;}
.y68{bottom:400.755000px;}
.yb7{bottom:404.715000px;}
.y4a{bottom:404.895000px;}
.y1b2{bottom:408.675000px;}
.yc9{bottom:411.195000px;}
.y159{bottom:414.795000px;}
.y107{bottom:417.495000px;}
.ydf{bottom:421.995000px;}
.y1cf{bottom:422.175000px;}
.y191{bottom:423.615000px;}
.y175{bottom:425.055000px;}
.ya3{bottom:425.235000px;}
.y135{bottom:425.595000px;}
.y67{bottom:426.495000px;}
.y1f2{bottom:432.075000px;}
.y49{bottom:432.615000px;}
.y106{bottom:437.835000px;}
.yc8{bottom:438.915000px;}
.yb6{bottom:441.435000px;}
.y158{bottom:442.695000px;}
.y1b1{bottom:444.855000px;}
.y1ce{bottom:446.295000px;}
.yde{bottom:449.715000px;}
.y190{bottom:451.515000px;}
.y174{bottom:453.135000px;}
.y134{bottom:453.315000px;}
.ya2{bottom:454.575000px;}
.y1f1{bottom:457.815000px;}
.y48{bottom:460.335000px;}
.y105{bottom:461.055000px;}
.y66{bottom:463.575000px;}
.yc7{bottom:466.815000px;}
.y157{bottom:470.415000px;}
.yb5{bottom:474.735000px;}
.ydd{bottom:477.435000px;}
.y18f{bottom:480.315000px;}
.y133{bottom:481.215000px;}
.y1b0{bottom:482.835000px;}
.y1f0{bottom:483.735000px;}
.ya1{bottom:484.095000px;}
.y47{bottom:488.055000px;}
.y65{bottom:491.295000px;}
.y104{bottom:491.835000px;}
.yc6{bottom:494.535000px;}
.y156{bottom:498.135000px;}
.ydc{bottom:505.155000px;}
.yb4{bottom:506.775000px;}
.y18e{bottom:508.755000px;}
.y132{bottom:508.935000px;}
.y173{bottom:509.475000px;}
.y1ac{bottom:512.715000px;}
.ya0{bottom:513.615000px;}
.y46{bottom:515.955000px;}
.y1cd{bottom:518.655000px;}
.y64{bottom:519.015000px;}
.y1ef{bottom:521.355000px;}
.yc5{bottom:522.255000px;}
.y155{bottom:525.855000px;}
.ydb{bottom:533.055000px;}
.y18d{bottom:536.475000px;}
.y172{bottom:537.555000px;}
.y131{bottom:537.915000px;}
.y1cc{bottom:542.775000px;}
.y9f{bottom:543.135000px;}
.y45{bottom:543.675000px;}
.y1ee{bottom:547.095000px;}
.yc4{bottom:550.155000px;}
.y154{bottom:553.755000px;}
.y63{bottom:557.355000px;}
.yda{bottom:560.775000px;}
.y18c{bottom:564.195000px;}
.y171{bottom:565.455000px;}
.y9e{bottom:572.475000px;}
.y1ed{bottom:572.835000px;}
.y130{bottom:575.175000px;}
.y1cb{bottom:577.695000px;}
.y103{bottom:578.055000px;}
.y44{bottom:580.395000px;}
.y153{bottom:581.475000px;}
.y62{bottom:585.075000px;}
.yd9{bottom:588.495000px;}
.yc3{bottom:591.195000px;}
.y18b{bottom:592.095000px;}
.y170{bottom:593.535000px;}
.y9d{bottom:601.995000px;}
.y12f{bottom:602.895000px;}
.y1ca{bottom:603.435000px;}
.y102{bottom:605.775000px;}
.y43{bottom:608.295000px;}
.y152{bottom:609.195000px;}
.y1ab{bottom:610.095000px;}
.y1ec{bottom:610.635000px;}
.y61{bottom:612.975000px;}
.yd8{bottom:616.395000px;}
.yc2{bottom:619.275000px;}
.y18a{bottom:619.815000px;}
.y16f{bottom:621.615000px;}
.y12e{bottom:630.825000px;}
.y9c{bottom:631.545000px;}
.y101{bottom:633.705000px;}
.y1aa{bottom:634.965000px;}
.y42{bottom:636.045000px;}
.y1eb{bottom:636.405000px;}
.y151{bottom:637.125000px;}
.y1c9{bottom:638.205000px;}
.y60{bottom:640.545000px;}
.yd7{bottom:644.145000px;}
.yc1{bottom:647.205000px;}
.y189{bottom:647.565000px;}
.y17{bottom:648.105000px;}
.y16e{bottom:649.905000px;}
.y12d{bottom:658.545000px;}
.y1a9{bottom:659.805000px;}
.y9b{bottom:661.065000px;}
.y100{bottom:661.425000px;}
.y1ea{bottom:662.145000px;}
.y41{bottom:663.765000px;}
.y150{bottom:664.845000px;}
.yd6{bottom:671.865000px;}
.y1c8{bottom:672.945000px;}
.y16{bottom:675.105000px;}
.y188{bottom:675.285000px;}
.y16d{bottom:677.985000px;}
.y5f{bottom:679.065000px;}
.yc0{bottom:680.325000px;}
.y1e9{bottom:688.065000px;}
.yff{bottom:689.145000px;}
.y9a{bottom:690.585000px;}
.y40{bottom:691.485000px;}
.y14f{bottom:692.565000px;}
.y1c7{bottom:698.685000px;}
.yd5{bottom:699.585000px;}
.y12c{bottom:702.285000px;}
.y187{bottom:703.185000px;}
.y15{bottom:703.545000px;}
.y5e{bottom:706.605000px;}
.y1a8{bottom:708.945000px;}
.ybf{bottom:712.365000px;}
.y16c{bottom:714.705000px;}
.yfe{bottom:716.865000px;}
.y99{bottom:719.925000px;}
.y14e{bottom:720.285000px;}
.y14{bottom:722.805000px;}
.y1e8{bottom:725.685000px;}
.y3f{bottom:728.385000px;}
.y88{bottom:730.905000px;}
.yd4{bottom:731.265000px;}
.y1c6{bottom:731.805000px;}
.y1a5{bottom:733.785000px;}
.y12b{bottom:734.505000px;}
.y16b{bottom:742.605000px;}
.yfd{bottom:744.765000px;}
.y5d{bottom:744.945000px;}
.y14d{bottom:748.185000px;}
.y98{bottom:749.445000px;}
.y1e7{bottom:751.425000px;}
.y13{bottom:754.845000px;}
.y1c5{bottom:755.925000px;}
.y3e{bottom:756.105000px;}
.y186{bottom:758.625000px;}
.y87{bottom:760.245000px;}
.y16a{bottom:770.325000px;}
.yfc{bottom:772.485000px;}
.y14c{bottom:775.905000px;}
.y1e6{bottom:777.345000px;}
.y97{bottom:778.965000px;}
.y1a4{bottom:782.925000px;}
.y5c{bottom:783.285000px;}
.y86{bottom:783.465000px;}
.y3d{bottom:783.825000px;}
.y12{bottom:787.065000px;}
.y123{bottom:787.245000px;}
.y1c4{bottom:790.665000px;}
.y185{bottom:795.525000px;}
.y169{bottom:798.585000px;}
.yfb{bottom:800.205000px;}
.y1e5{bottom:803.085000px;}
.y14b{bottom:803.625000px;}
.y85{bottom:806.685000px;}
.y11d{bottom:807.765000px;}
.y96{bottom:808.485000px;}
.y5b{bottom:811.005000px;}
.y3c{bottom:811.725000px;}
.y1c3{bottom:816.405000px;}
.y168{bottom:826.665000px;}
.yfa{bottom:828.105000px;}
.y84{bottom:830.085000px;}
.y14a{bottom:831.525000px;}
.y184{bottom:832.245000px;}
.y1a2{bottom:832.605000px;}
.y95{bottom:837.825000px;}
.y3b{bottom:839.445000px;}
.y1e4{bottom:840.705000px;}
.y11{bottom:841.425000px;}
.y5a{bottom:847.905000px;}
.y1c2{bottom:851.325000px;}
.y83{bottom:853.305000px;}
.y121{bottom:853.485000px;}
.yf9{bottom:855.825000px;}
.y1a1{bottom:857.625000px;}
.y149{bottom:859.245000px;}
.y183{bottom:859.965000px;}
.y167{bottom:863.745000px;}
.y1e3{bottom:866.445000px;}
.y3a{bottom:867.165000px;}
.y94{bottom:867.345000px;}
.y59{bottom:875.625000px;}
.y81{bottom:876.525000px;}
.y11f{bottom:876.705000px;}
.y10{bottom:877.245000px;}
.y1a0{bottom:882.510000px;}
.yf8{bottom:883.590000px;}
.y1c1{bottom:886.470000px;}
.y148{bottom:887.010000px;}
.y166{bottom:891.690000px;}
.y1e2{bottom:892.410000px;}
.y39{bottom:894.930000px;}
.y182{bottom:896.730000px;}
.y93{bottom:896.910000px;}
.y80{bottom:899.790000px;}
.y114{bottom:899.970000px;}
.y58{bottom:903.390000px;}
.yf7{bottom:911.310000px;}
.yf{bottom:912.930000px;}
.y147{bottom:914.730000px;}
.y1c0{bottom:921.570000px;}
.y7f{bottom:923.010000px;}
.y11c{bottom:923.370000px;}
.y181{bottom:924.630000px;}
.y92{bottom:926.430000px;}
.y38{bottom:928.230000px;}
.y1e1{bottom:930.030000px;}
.y57{bottom:931.290000px;}
.y165{bottom:931.470000px;}
.y19e{bottom:931.650000px;}
.yf6{bottom:939.210000px;}
.y9{bottom:941.370000px;}
.y146{bottom:942.630000px;}
.y7e{bottom:946.230000px;}
.y11b{bottom:946.590000px;}
.y37{bottom:952.350000px;}
.y1e0{bottom:955.770000px;}
.y91{bottom:955.950000px;}
.y1bf{bottom:956.670000px;}
.y8{bottom:958.650000px;}
.y56{bottom:959.010000px;}
.yb3{bottom:959.550000px;}
.y164{bottom:960.270000px;}
.yf5{bottom:966.930000px;}
.y7d{bottom:969.630000px;}
.y11a{bottom:969.810000px;}
.y145{bottom:970.350000px;}
.y7{bottom:972.690000px;}
.y36{bottom:976.470000px;}
.y19b{bottom:980.610000px;}
.y90{bottom:985.290000px;}
.y163{bottom:986.550000px;}
.y55{bottom:986.730000px;}
.yb2{bottom:989.070000px;}
.y1be{bottom:989.970000px;}
.y7b{bottom:992.850000px;}
.y119{bottom:993.030000px;}
.y1df{bottom:993.570000px;}
.yf4{bottom:994.650000px;}
.y144{bottom:998.070000px;}
.y35{bottom:1000.590000px;}
.y162{bottom:1009.950000px;}
.y12a{bottom:1010.490000px;}
.y1bd{bottom:1014.090000px;}
.y54{bottom:1014.450000px;}
.y8f{bottom:1014.810000px;}
.y79{bottom:1016.070000px;}
.y118{bottom:1016.250000px;}
.y180{bottom:1016.790000px;}
.yb1{bottom:1018.410000px;}
.y1de{bottom:1019.310000px;}
.yf3{bottom:1022.370000px;}
.y34{bottom:1024.710000px;}
.y143{bottom:1025.790000px;}
.y6{bottom:1027.230000px;}
.y129{bottom:1038.210000px;}
.y77{bottom:1039.290000px;}
.y116{bottom:1039.470000px;}
.y53{bottom:1042.350000px;}
.y1dd{bottom:1043.430000px;}
.y8e{bottom:1044.330000px;}
.y17f{bottom:1044.690000px;}
.y1bc{bottom:1047.210000px;}
.yb0{bottom:1047.930000px;}
.y33{bottom:1048.830000px;}
.yf2{bottom:1050.270000px;}
.y5{bottom:1052.070000px;}
.y142{bottom:1053.690000px;}
.y112{bottom:1062.870000px;}
.y75{bottom:1070.070000px;}
.y1bb{bottom:1071.330000px;}
.y32{bottom:1072.950000px;}
.y4{bottom:1073.130000px;}
.y8d{bottom:1073.850000px;}
.y52{bottom:1074.210000px;}
.yaf{bottom:1077.450000px;}
.yf1{bottom:1077.990000px;}
.y128{bottom:1079.430000px;}
.y1dc{bottom:1079.610000px;}
.y141{bottom:1081.410000px;}
.y3{bottom:1093.830000px;}
.y1ba{bottom:1095.450000px;}
.y31{bottom:1097.250000px;}
.y8c{bottom:1103.190000px;}
.yae{bottom:1106.970000px;}
.y127{bottom:1108.590000px;}
.y111{bottom:1108.950000px;}
.y140{bottom:1109.130000px;}
.y74{bottom:1110.930000px;}
.y1db{bottom:1112.730000px;}
.y2{bottom:1114.530000px;}
.y1{bottom:1131.270000px;}
.yad{bottom:1136.490000px;}
.y73{bottom:1136.670000px;}
.y30{bottom:1137.030000px;}
.y2f{bottom:1166.400000px;}
.y2e{bottom:1180.440000px;}
.y2d{bottom:1201.140000px;}
.y2c{bottom:1227.420000px;}
.h6{height:8.640000px;}
.h8{height:15.480000px;}
.h17{height:22.500000px;}
.h18{height:22.536000px;}
.h21{height:24.120000px;}
.h24{height:24.156000px;}
.h22{height:24.300000px;}
.h16{height:30.060000px;}
.h14{height:34.560000px;}
.h5{height:44.507812px;}
.h1f{height:45.000000px;}
.h7{height:47.381836px;}
.h20{height:48.240000px;}
.h23{height:48.420000px;}
.h4{height:52.435898px;}
.h2{height:53.077852px;}
.hb{height:59.221406px;}
.ha{height:60.034219px;}
.h3{height:63.949219px;}
.h1c{height:63.961523px;}
.h15{height:67.824844px;}
.h19{height:68.362734px;}
.h12{height:69.432187px;}
.he{height:73.915664px;}
.h10{height:74.820586px;}
.h1a{height:75.314180px;}
.h11{height:77.621836px;}
.h13{height:80.208984px;}
.h1b{height:83.787539px;}
.hf{height:85.052461px;}
.hd{height:86.255508px;}
.h1e{height:91.476000px;}
.h9{height:95.923828px;}
.h25{height:96.660000px;}
.h1d{height:162.000000px;}
.hc{height:328.395000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:88.416000px;}
.wa{width:120.780000px;}
.w9{width:120.816000px;}
.wf{width:131.580000px;}
.wc{width:142.596000px;}
.wb{width:147.060000px;}
.w11{width:156.810000px;}
.w10{width:168.870000px;}
.w12{width:194.610000px;}
.w8{width:249.870000px;}
.we{width:292.530000px;}
.w7{width:339.330000px;}
.w4{width:339.690000px;}
.w3{width:340.815000px;}
.w6{width:341.175000px;}
.w5{width:679.785000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:1.260000px;}
.x9{left:8.640000px;}
.x1e{left:11.340000px;}
.x52{left:14.400000px;}
.x20{left:16.020000px;}
.x5c{left:17.100000px;}
.x56{left:20.160000px;}
.x23{left:21.420000px;}
.x2a{left:23.034000px;}
.x27{left:25.200000px;}
.x61{left:26.325000px;}
.x60{left:27.765000px;}
.x59{left:29.160000px;}
.x47{left:32.445000px;}
.x2f{left:33.654000px;}
.x12{left:35.100000px;}
.x46{left:36.225000px;}
.x5e{left:42.150000px;}
.x43{left:44.310000px;}
.x5f{left:45.720000px;}
.x5d{left:47.025000px;}
.x57{left:48.090000px;}
.x24{left:49.140000px;}
.x40{left:50.934000px;}
.x45{left:54.714000px;}
.x2e{left:56.514000px;}
.x2d{left:59.034000px;}
.x5b{left:60.474000px;}
.x2c{left:61.914000px;}
.x26{left:63.354000px;}
.x54{left:67.545000px;}
.x5a{left:69.345000px;}
.x3e{left:78.474000px;}
.x3d{left:83.334000px;}
.x25{left:84.594000px;}
.x1c{left:86.574000px;}
.x29{left:87.834000px;}
.x28{left:89.994000px;}
.x22{left:95.034000px;}
.x2b{left:96.654000px;}
.x4c{left:99.395987px;}
.x7{left:106.235987px;}
.x38{left:107.315987px;}
.x39{left:110.375987px;}
.x18{left:113.075987px;}
.x3f{left:114.336000px;}
.x51{left:119.556000px;}
.x33{left:133.235987px;}
.x1b{left:139.356000px;}
.x4b{left:146.735987px;}
.x19{left:148.715987px;}
.x3c{left:153.569987px;}
.x17{left:159.329987px;}
.x10{left:162.389987px;}
.xb{left:163.649987px;}
.x31{left:167.069987px;}
.x3b{left:173.729987px;}
.x1a{left:176.789987px;}
.x15{left:180.749987px;}
.x16{left:187.229987px;}
.xc{left:190.829987px;}
.xe{left:194.249987px;}
.xd{left:201.629987px;}
.x4d{left:214.229987px;}
.x35{left:218.009987px;}
.xf{left:227.189987px;}
.x50{left:241.229987px;}
.x3a{left:246.989987px;}
.x53{left:251.850000px;}
.x2{left:254.189987px;}
.x4f{left:255.809987px;}
.x41{left:261.390000px;}
.x6{left:274.034987px;}
.x49{left:286.454987px;}
.xa{left:304.065000px;}
.x30{left:308.954987px;}
.x14{left:339.879000px;}
.x5{left:362.414987px;}
.x4{left:379.874987px;}
.x1d{left:389.955000px;}
.x3{left:398.414987px;}
.x42{left:403.995000px;}
.x11{left:407.954987px;}
.x55{left:421.455000px;}
.x8{left:446.474987px;}
.x36{left:460.004987px;}
.x44{left:492.405000px;}
.x1f{left:511.485000px;}
.x58{left:578.985000px;}
.x4a{left:613.184987px;}
.x21{left:633.030000px;}
.x37{left:705.209987px;}
.x48{left:764.789987px;}
.x1{left:786.749987px;}
.x34{left:790.349987px;}
.x32{left:793.589987px;}
.x4e{left:799.349987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v2{vertical-align:26.880000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.288533pt;}
.ls1e{letter-spacing:-0.204267pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.161067pt;}
.ls15{letter-spacing:-0.089600pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.013440pt;}
.ls0{letter-spacing:0.016000pt;}
.ls25{letter-spacing:0.024320pt;}
.ls12{letter-spacing:0.024960pt;}
.ls18{letter-spacing:0.065280pt;}
.lse{letter-spacing:0.115200pt;}
.ls14{letter-spacing:0.126720pt;}
.ls8{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.225280pt;}
.ls2{letter-spacing:0.265600pt;}
.ls1a{letter-spacing:0.303467pt;}
.lsc{letter-spacing:0.311467pt;}
.lsb{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.351360pt;}
.ls1b{letter-spacing:0.943360pt;}
.lsd{letter-spacing:1.232640pt;}
.ls22{letter-spacing:2.277120pt;}
.ls21{letter-spacing:2.863360pt;}
.ls10{letter-spacing:10.080000pt;}
.ls19{letter-spacing:15.642027pt;}
.ls1c{letter-spacing:15.663360pt;}
.ls26{letter-spacing:16.303360pt;}
.ls24{letter-spacing:17.583360pt;}
.ls28{letter-spacing:18.842027pt;}
.lsa{letter-spacing:18.863360pt;}
.lsf{letter-spacing:24.623360pt;}
.ls17{letter-spacing:51.503360pt;}
.ls20{letter-spacing:52.122027pt;}
.ls27{letter-spacing:52.143360pt;}
.ls13{letter-spacing:52.783360pt;}
.ls1{letter-spacing:169.600000pt;}
.ws11{word-spacing:-74.880000pt;}
.ws8{word-spacing:-19.040000pt;}
.wsa{word-spacing:-19.031467pt;}
.wsc{word-spacing:-18.744960pt;}
.ws4{word-spacing:-18.720000pt;}
.ws9{word-spacing:-18.400000pt;}
.ws12{word-spacing:-16.936320pt;}
.wsf{word-spacing:-16.922880pt;}
.wse{word-spacing:-16.833280pt;}
.ws13{word-spacing:-16.718613pt;}
.ws10{word-spacing:-16.634347pt;}
.wsd{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.545600pt;}
.ws5{word-spacing:-13.280000pt;}
.ws0{word-spacing:-12.960000pt;}
.ws1{word-spacing:-11.984000pt;}
.ws3{word-spacing:-11.920640pt;}
.wsb{word-spacing:-11.808000pt;}
.ws2{word-spacing:-11.759573pt;}
.ws7{word-spacing:0.000000pt;}
._2c{margin-left:-17.600853pt;}
._26{margin-left:-11.877973pt;}
._1a{margin-left:-8.012160pt;}
._20{margin-left:-6.630827pt;}
._1d{margin-left:-5.630507pt;}
._18{margin-left:-4.118400pt;}
._17{margin-left:-2.770560pt;}
._11{margin-left:-1.797120pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.386667pt;}
._10{width:2.576640pt;}
._1c{width:3.710507pt;}
._15{width:4.750933pt;}
._14{width:5.690880pt;}
._19{width:7.111040pt;}
._13{width:8.272853pt;}
._9{width:9.282560pt;}
._f{width:10.294187pt;}
._e{width:11.830400pt;}
._d{width:13.326080pt;}
._c{width:14.673920pt;}
._b{width:16.024320pt;}
._a{width:16.997760pt;}
._12{width:19.801600pt;}
._28{width:20.816640pt;}
._1b{width:22.089600pt;}
._16{width:23.773013pt;}
._25{width:24.710400pt;}
._23{width:25.833600pt;}
._27{width:26.807040pt;}
._24{width:27.705600pt;}
._22{width:28.818773pt;}
._21{width:29.727360pt;}
._8{width:31.971200pt;}
._2a{width:36.352853pt;}
._2b{width:37.703467pt;}
._1f{width:42.306987pt;}
._1e{width:43.278080pt;}
._29{width:54.360107pt;}
._5{width:55.317547pt;}
._7{width:56.222080pt;}
._6{width:57.208320pt;}
._4{width:349.600000pt;}
._3{width:740.800000pt;}
._2{width:1414.165333pt;}
.fs4{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y25{bottom:2.880000pt;}
.y19d{bottom:4.000000pt;}
.y1a3{bottom:4.160000pt;}
.y7c{bottom:5.120000pt;}
.y7a{bottom:5.280000pt;}
.y82{bottom:5.320000pt;}
.y113{bottom:7.520000pt;}
.y120{bottom:7.560000pt;}
.y117{bottom:7.680000pt;}
.y78{bottom:8.640000pt;}
.y76{bottom:10.560000pt;}
.y19f{bottom:14.720000pt;}
.y1a6{bottom:14.880000pt;}
.y24{bottom:18.240000pt;}
.y19c{bottom:25.440000pt;}
.y1a7{bottom:25.600000pt;}
.y122{bottom:27.520000pt;}
.y23{bottom:33.440000pt;}
.y11e{bottom:35.840000pt;}
.y1ad{bottom:36.160000pt;}
.ye{bottom:38.880000pt;}
.y1ae{bottom:47.040000pt;}
.y22{bottom:49.960000pt;}
.yc{bottom:60.960000pt;}
.y115{bottom:67.200000pt;}
.y1af{bottom:68.480000pt;}
.y21{bottom:71.560000pt;}
.ya{bottom:84.320000pt;}
.y20{bottom:91.880000pt;}
.yd3{bottom:118.592000pt;}
.y1f{bottom:124.680000pt;}
.ye9{bottom:128.192000pt;}
.y19a{bottom:129.312000pt;}
.y126{bottom:129.952000pt;}
.ybe{bottom:130.912000pt;}
.y1da{bottom:131.072000pt;}
.y13f{bottom:131.392000pt;}
.yf0{bottom:133.312000pt;}
.y2b{bottom:134.746667pt;}
.y1b9{bottom:138.426667pt;}
.y51{bottom:139.066667pt;}
.y72{bottom:139.226667pt;}
.yac{bottom:142.106667pt;}
.yd2{bottom:143.386667pt;}
.y8b{bottom:144.986667pt;}
.y17e{bottom:146.106667pt;}
.y161{bottom:146.586667pt;}
.y110{bottom:148.986667pt;}
.y1e{bottom:149.480000pt;}
.y1d9{bottom:152.506667pt;}
.ye8{bottom:152.826667pt;}
.y199{bottom:154.426667pt;}
.y125{bottom:155.066667pt;}
.y13e{bottom:156.186667pt;}
.y2a{bottom:159.226667pt;}
.y71{bottom:160.666667pt;}
.ybd{bottom:163.546667pt;}
.yef{bottom:165.466667pt;}
.yd1{bottom:168.026667pt;}
.yab{bottom:168.186667pt;}
.y1fa{bottom:168.986667pt;}
.y1b8{bottom:170.426667pt;}
.y17d{bottom:170.746667pt;}
.y160{bottom:171.226667pt;}
.y50{bottom:171.706667pt;}
.y10f{bottom:173.626667pt;}
.y1d8{bottom:173.946667pt;}
.y1d{bottom:174.280000pt;}
.ye7{bottom:177.466667pt;}
.y8a{bottom:177.786667pt;}
.y198{bottom:179.066667pt;}
.y13d{bottom:180.826667pt;}
.y70{bottom:182.106667pt;}
.y124{bottom:183.226667pt;}
.y29{bottom:183.706667pt;}
.y1f9{bottom:191.866667pt;}
.yd0{bottom:192.666667pt;}
.yaa{bottom:194.426667pt;}
.y15f{bottom:195.866667pt;}
.ybc{bottom:196.346667pt;}
.yee{bottom:197.626667pt;}
.y10e{bottom:198.266667pt;}
.y1c{bottom:198.920000pt;}
.ye6{bottom:202.266667pt;}
.y1b7{bottom:202.586667pt;}
.y1d7{bottom:203.386667pt;}
.y17c{bottom:203.546667pt;}
.y6f{bottom:203.706667pt;}
.y4f{bottom:204.346667pt;}
.y13c{bottom:205.466667pt;}
.y89{bottom:206.426667pt;}
.y28{bottom:208.346667pt;}
.y1f8{bottom:214.746667pt;}
.ycf{bottom:217.306667pt;}
.ya9{bottom:220.666667pt;}
.y10d{bottom:222.906667pt;}
.y1b{bottom:223.560000pt;}
.y1d6{bottom:224.986667pt;}
.y6e{bottom:225.146667pt;}
.yed{bottom:225.626667pt;}
.ye5{bottom:226.906667pt;}
.y17b{bottom:228.186667pt;}
.y197{bottom:228.506667pt;}
.ybb{bottom:228.986667pt;}
.y13b{bottom:230.106667pt;}
.y27{bottom:232.826667pt;}
.y1b6{bottom:234.746667pt;}
.y4e{bottom:237.146667pt;}
.y1f7{bottom:237.626667pt;}
.yce{bottom:242.106667pt;}
.y15e{bottom:245.306667pt;}
.y1d5{bottom:246.426667pt;}
.y6d{bottom:246.586667pt;}
.ya8{bottom:246.906667pt;}
.y10c{bottom:247.706667pt;}
.y1a{bottom:248.200000pt;}
.yec{bottom:248.666667pt;}
.ye4{bottom:251.546667pt;}
.y17a{bottom:252.826667pt;}
.y196{bottom:253.146667pt;}
.y13a{bottom:254.906667pt;}
.y26{bottom:257.306667pt;}
.yba{bottom:261.626667pt;}
.ycd{bottom:266.746667pt;}
.y1b5{bottom:266.906667pt;}
.y1d4{bottom:267.866667pt;}
.y6c{bottom:268.026667pt;}
.y4d{bottom:269.786667pt;}
.y15d{bottom:269.946667pt;}
.y1f6{bottom:271.226667pt;}
.y10b{bottom:272.346667pt;}
.ya7{bottom:272.986667pt;}
.y19{bottom:273.960000pt;}
.yeb{bottom:275.866667pt;}
.ye3{bottom:276.346667pt;}
.y195{bottom:277.786667pt;}
.y179{bottom:277.946667pt;}
.y18{bottom:279.226667pt;}
.y139{bottom:279.546667pt;}
.y1d3{bottom:289.306667pt;}
.y6b{bottom:289.466667pt;}
.ycc{bottom:291.386667pt;}
.y1f5{bottom:294.106667pt;}
.yb9{bottom:294.426667pt;}
.y15c{bottom:294.746667pt;}
.y10a{bottom:296.986667pt;}
.y1b4{bottom:299.066667pt;}
.ya6{bottom:299.226667pt;}
.ye2{bottom:300.986667pt;}
.y4c{bottom:302.426667pt;}
.y194{bottom:302.586667pt;}
.y178{bottom:302.906667pt;}
.yea{bottom:304.026667pt;}
.y138{bottom:304.186667pt;}
.y1d2{bottom:310.746667pt;}
.y6a{bottom:310.906667pt;}
.ycb{bottom:316.186667pt;}
.y15b{bottom:319.386667pt;}
.y109{bottom:321.786667pt;}
.ya5{bottom:325.506667pt;}
.ye1{bottom:325.666667pt;}
.yb8{bottom:327.106667pt;}
.y193{bottom:327.266667pt;}
.y1f4{bottom:327.586667pt;}
.y177{bottom:328.066667pt;}
.y137{bottom:329.026667pt;}
.y1b3{bottom:331.106667pt;}
.y1d1{bottom:332.226667pt;}
.y69{bottom:333.506667pt;}
.y4b{bottom:335.106667pt;}
.yca{bottom:340.866667pt;}
.y15a{bottom:344.066667pt;}
.y108{bottom:346.466667pt;}
.ye0{bottom:350.306667pt;}
.y1f3{bottom:350.626667pt;}
.ya4{bottom:351.746667pt;}
.y192{bottom:351.906667pt;}
.y176{bottom:353.026667pt;}
.y136{bottom:353.666667pt;}
.y1d0{bottom:353.826667pt;}
.y68{bottom:356.226667pt;}
.yb7{bottom:359.746667pt;}
.y4a{bottom:359.906667pt;}
.y1b2{bottom:363.266667pt;}
.yc9{bottom:365.506667pt;}
.y159{bottom:368.706667pt;}
.y107{bottom:371.106667pt;}
.ydf{bottom:375.106667pt;}
.y1cf{bottom:375.266667pt;}
.y191{bottom:376.546667pt;}
.y175{bottom:377.826667pt;}
.ya3{bottom:377.986667pt;}
.y135{bottom:378.306667pt;}
.y67{bottom:379.106667pt;}
.y1f2{bottom:384.066667pt;}
.y49{bottom:384.546667pt;}
.y106{bottom:389.186667pt;}
.yc8{bottom:390.146667pt;}
.yb6{bottom:392.386667pt;}
.y158{bottom:393.506667pt;}
.y1b1{bottom:395.426667pt;}
.y1ce{bottom:396.706667pt;}
.yde{bottom:399.746667pt;}
.y190{bottom:401.346667pt;}
.y174{bottom:402.786667pt;}
.y134{bottom:402.946667pt;}
.ya2{bottom:404.066667pt;}
.y1f1{bottom:406.946667pt;}
.y48{bottom:409.186667pt;}
.y105{bottom:409.826667pt;}
.y66{bottom:412.066667pt;}
.yc7{bottom:414.946667pt;}
.y157{bottom:418.146667pt;}
.yb5{bottom:421.986667pt;}
.ydd{bottom:424.386667pt;}
.y18f{bottom:426.946667pt;}
.y133{bottom:427.746667pt;}
.y1b0{bottom:429.186667pt;}
.y1f0{bottom:429.986667pt;}
.ya1{bottom:430.306667pt;}
.y47{bottom:433.826667pt;}
.y65{bottom:436.706667pt;}
.y104{bottom:437.186667pt;}
.yc6{bottom:439.586667pt;}
.y156{bottom:442.786667pt;}
.ydc{bottom:449.026667pt;}
.yb4{bottom:450.466667pt;}
.y18e{bottom:452.226667pt;}
.y132{bottom:452.386667pt;}
.y173{bottom:452.866667pt;}
.y1ac{bottom:455.746667pt;}
.ya0{bottom:456.546667pt;}
.y46{bottom:458.626667pt;}
.y1cd{bottom:461.026667pt;}
.y64{bottom:461.346667pt;}
.y1ef{bottom:463.426667pt;}
.yc5{bottom:464.226667pt;}
.y155{bottom:467.426667pt;}
.ydb{bottom:473.826667pt;}
.y18d{bottom:476.866667pt;}
.y172{bottom:477.826667pt;}
.y131{bottom:478.146667pt;}
.y1cc{bottom:482.466667pt;}
.y9f{bottom:482.786667pt;}
.y45{bottom:483.266667pt;}
.y1ee{bottom:486.306667pt;}
.yc4{bottom:489.026667pt;}
.y154{bottom:492.226667pt;}
.y63{bottom:495.426667pt;}
.yda{bottom:498.466667pt;}
.y18c{bottom:501.506667pt;}
.y171{bottom:502.626667pt;}
.y9e{bottom:508.866667pt;}
.y1ed{bottom:509.186667pt;}
.y130{bottom:511.266667pt;}
.y1cb{bottom:513.506667pt;}
.y103{bottom:513.826667pt;}
.y44{bottom:515.906667pt;}
.y153{bottom:516.866667pt;}
.y62{bottom:520.066667pt;}
.yd9{bottom:523.106667pt;}
.yc3{bottom:525.506667pt;}
.y18b{bottom:526.306667pt;}
.y170{bottom:527.586667pt;}
.y9d{bottom:535.106667pt;}
.y12f{bottom:535.906667pt;}
.y1ca{bottom:536.386667pt;}
.y102{bottom:538.466667pt;}
.y43{bottom:540.706667pt;}
.y152{bottom:541.506667pt;}
.y1ab{bottom:542.306667pt;}
.y1ec{bottom:542.786667pt;}
.y61{bottom:544.866667pt;}
.yd8{bottom:547.906667pt;}
.yc2{bottom:550.466667pt;}
.y18a{bottom:550.946667pt;}
.y16f{bottom:552.546667pt;}
.y12e{bottom:560.733333pt;}
.y9c{bottom:561.373333pt;}
.y101{bottom:563.293333pt;}
.y1aa{bottom:564.413333pt;}
.y42{bottom:565.373333pt;}
.y1eb{bottom:565.693333pt;}
.y151{bottom:566.333333pt;}
.y1c9{bottom:567.293333pt;}
.y60{bottom:569.373333pt;}
.yd7{bottom:572.573333pt;}
.yc1{bottom:575.293333pt;}
.y189{bottom:575.613333pt;}
.y17{bottom:576.093333pt;}
.y16e{bottom:577.693333pt;}
.y12d{bottom:585.373333pt;}
.y1a9{bottom:586.493333pt;}
.y9b{bottom:587.613333pt;}
.y100{bottom:587.933333pt;}
.y1ea{bottom:588.573333pt;}
.y41{bottom:590.013333pt;}
.y150{bottom:590.973333pt;}
.yd6{bottom:597.213333pt;}
.y1c8{bottom:598.173333pt;}
.y16{bottom:600.093333pt;}
.y188{bottom:600.253333pt;}
.y16d{bottom:602.653333pt;}
.y5f{bottom:603.613333pt;}
.yc0{bottom:604.733333pt;}
.y1e9{bottom:611.613333pt;}
.yff{bottom:612.573333pt;}
.y9a{bottom:613.853333pt;}
.y40{bottom:614.653333pt;}
.y14f{bottom:615.613333pt;}
.y1c7{bottom:621.053333pt;}
.yd5{bottom:621.853333pt;}
.y12c{bottom:624.253333pt;}
.y187{bottom:625.053333pt;}
.y15{bottom:625.373333pt;}
.y5e{bottom:628.093333pt;}
.y1a8{bottom:630.173333pt;}
.ybf{bottom:633.213333pt;}
.y16c{bottom:635.293333pt;}
.yfe{bottom:637.213333pt;}
.y99{bottom:639.933333pt;}
.y14e{bottom:640.253333pt;}
.y14{bottom:642.493333pt;}
.y1e8{bottom:645.053333pt;}
.y3f{bottom:647.453333pt;}
.y88{bottom:649.693333pt;}
.yd4{bottom:650.013333pt;}
.y1c6{bottom:650.493333pt;}
.y1a5{bottom:652.253333pt;}
.y12b{bottom:652.893333pt;}
.y16b{bottom:660.093333pt;}
.yfd{bottom:662.013333pt;}
.y5d{bottom:662.173333pt;}
.y14d{bottom:665.053333pt;}
.y98{bottom:666.173333pt;}
.y1e7{bottom:667.933333pt;}
.y13{bottom:670.973333pt;}
.y1c5{bottom:671.933333pt;}
.y3e{bottom:672.093333pt;}
.y186{bottom:674.333333pt;}
.y87{bottom:675.773333pt;}
.y16a{bottom:684.733333pt;}
.yfc{bottom:686.653333pt;}
.y14c{bottom:689.693333pt;}
.y1e6{bottom:690.973333pt;}
.y97{bottom:692.413333pt;}
.y1a4{bottom:695.933333pt;}
.y5c{bottom:696.253333pt;}
.y86{bottom:696.413333pt;}
.y3d{bottom:696.733333pt;}
.y12{bottom:699.613333pt;}
.y123{bottom:699.773333pt;}
.y1c4{bottom:702.813333pt;}
.y185{bottom:707.133333pt;}
.y169{bottom:709.853333pt;}
.yfb{bottom:711.293333pt;}
.y1e5{bottom:713.853333pt;}
.y14b{bottom:714.333333pt;}
.y85{bottom:717.053333pt;}
.y11d{bottom:718.013333pt;}
.y96{bottom:718.653333pt;}
.y5b{bottom:720.893333pt;}
.y3c{bottom:721.533333pt;}
.y1c3{bottom:725.693333pt;}
.y168{bottom:734.813333pt;}
.yfa{bottom:736.093333pt;}
.y84{bottom:737.853333pt;}
.y14a{bottom:739.133333pt;}
.y184{bottom:739.773333pt;}
.y1a2{bottom:740.093333pt;}
.y95{bottom:744.733333pt;}
.y3b{bottom:746.173333pt;}
.y1e4{bottom:747.293333pt;}
.y11{bottom:747.933333pt;}
.y5a{bottom:753.693333pt;}
.y1c2{bottom:756.733333pt;}
.y83{bottom:758.493333pt;}
.y121{bottom:758.653333pt;}
.yf9{bottom:760.733333pt;}
.y1a1{bottom:762.333333pt;}
.y149{bottom:763.773333pt;}
.y183{bottom:764.413333pt;}
.y167{bottom:767.773333pt;}
.y1e3{bottom:770.173333pt;}
.y3a{bottom:770.813333pt;}
.y94{bottom:770.973333pt;}
.y59{bottom:778.333333pt;}
.y81{bottom:779.133333pt;}
.y11f{bottom:779.293333pt;}
.y10{bottom:779.773333pt;}
.y1a0{bottom:784.453333pt;}
.yf8{bottom:785.413333pt;}
.y1c1{bottom:787.973333pt;}
.y148{bottom:788.453333pt;}
.y166{bottom:792.613333pt;}
.y1e2{bottom:793.253333pt;}
.y39{bottom:795.493333pt;}
.y182{bottom:797.093333pt;}
.y93{bottom:797.253333pt;}
.y80{bottom:799.813333pt;}
.y114{bottom:799.973333pt;}
.y58{bottom:803.013333pt;}
.yf7{bottom:810.053333pt;}
.yf{bottom:811.493333pt;}
.y147{bottom:813.093333pt;}
.y1c0{bottom:819.173333pt;}
.y7f{bottom:820.453333pt;}
.y11c{bottom:820.773333pt;}
.y181{bottom:821.893333pt;}
.y92{bottom:823.493333pt;}
.y38{bottom:825.093333pt;}
.y1e1{bottom:826.693333pt;}
.y57{bottom:827.813333pt;}
.y165{bottom:827.973333pt;}
.y19e{bottom:828.133333pt;}
.yf6{bottom:834.853333pt;}
.y9{bottom:836.773333pt;}
.y146{bottom:837.893333pt;}
.y7e{bottom:841.093333pt;}
.y11b{bottom:841.413333pt;}
.y37{bottom:846.533333pt;}
.y1e0{bottom:849.573333pt;}
.y91{bottom:849.733333pt;}
.y1bf{bottom:850.373333pt;}
.y8{bottom:852.133333pt;}
.y56{bottom:852.453333pt;}
.yb3{bottom:852.933333pt;}
.y164{bottom:853.573333pt;}
.yf5{bottom:859.493333pt;}
.y7d{bottom:861.893333pt;}
.y11a{bottom:862.053333pt;}
.y145{bottom:862.533333pt;}
.y7{bottom:864.613333pt;}
.y36{bottom:867.973333pt;}
.y19b{bottom:871.653333pt;}
.y90{bottom:875.813333pt;}
.y163{bottom:876.933333pt;}
.y55{bottom:877.093333pt;}
.yb2{bottom:879.173333pt;}
.y1be{bottom:879.973333pt;}
.y7b{bottom:882.533333pt;}
.y119{bottom:882.693333pt;}
.y1df{bottom:883.173333pt;}
.yf4{bottom:884.133333pt;}
.y144{bottom:887.173333pt;}
.y35{bottom:889.413333pt;}
.y162{bottom:897.733333pt;}
.y12a{bottom:898.213333pt;}
.y1bd{bottom:901.413333pt;}
.y54{bottom:901.733333pt;}
.y8f{bottom:902.053333pt;}
.y79{bottom:903.173333pt;}
.y118{bottom:903.333333pt;}
.y180{bottom:903.813333pt;}
.yb1{bottom:905.253333pt;}
.y1de{bottom:906.053333pt;}
.yf3{bottom:908.773333pt;}
.y34{bottom:910.853333pt;}
.y143{bottom:911.813333pt;}
.y6{bottom:913.093333pt;}
.y129{bottom:922.853333pt;}
.y77{bottom:923.813333pt;}
.y116{bottom:923.973333pt;}
.y53{bottom:926.533333pt;}
.y1dd{bottom:927.493333pt;}
.y8e{bottom:928.293333pt;}
.y17f{bottom:928.613333pt;}
.y1bc{bottom:930.853333pt;}
.yb0{bottom:931.493333pt;}
.y33{bottom:932.293333pt;}
.yf2{bottom:933.573333pt;}
.y5{bottom:935.173333pt;}
.y142{bottom:936.613333pt;}
.y112{bottom:944.773333pt;}
.y75{bottom:951.173333pt;}
.y1bb{bottom:952.293333pt;}
.y32{bottom:953.733333pt;}
.y4{bottom:953.893333pt;}
.y8d{bottom:954.533333pt;}
.y52{bottom:954.853333pt;}
.yaf{bottom:957.733333pt;}
.yf1{bottom:958.213333pt;}
.y128{bottom:959.493333pt;}
.y1dc{bottom:959.653333pt;}
.y141{bottom:961.253333pt;}
.y3{bottom:972.293333pt;}
.y1ba{bottom:973.733333pt;}
.y31{bottom:975.333333pt;}
.y8c{bottom:980.613333pt;}
.yae{bottom:983.973333pt;}
.y127{bottom:985.413333pt;}
.y111{bottom:985.733333pt;}
.y140{bottom:985.893333pt;}
.y74{bottom:987.493333pt;}
.y1db{bottom:989.093333pt;}
.y2{bottom:990.693333pt;}
.y1{bottom:1005.573333pt;}
.yad{bottom:1010.213333pt;}
.y73{bottom:1010.373333pt;}
.y30{bottom:1010.693333pt;}
.y2f{bottom:1036.800000pt;}
.y2e{bottom:1049.280000pt;}
.y2d{bottom:1067.680000pt;}
.y2c{bottom:1091.040000pt;}
.h6{height:7.680000pt;}
.h8{height:13.760000pt;}
.h17{height:20.000000pt;}
.h18{height:20.032000pt;}
.h21{height:21.440000pt;}
.h24{height:21.472000pt;}
.h22{height:21.600000pt;}
.h16{height:26.720000pt;}
.h14{height:30.720000pt;}
.h5{height:39.562500pt;}
.h1f{height:40.000000pt;}
.h7{height:42.117188pt;}
.h20{height:42.880000pt;}
.h23{height:43.040000pt;}
.h4{height:46.609688pt;}
.h2{height:47.180312pt;}
.hb{height:52.641250pt;}
.ha{height:53.363750pt;}
.h3{height:56.843750pt;}
.h1c{height:56.854687pt;}
.h15{height:60.288750pt;}
.h19{height:60.766875pt;}
.h12{height:61.717500pt;}
.he{height:65.702812pt;}
.h10{height:66.507188pt;}
.h1a{height:66.945937pt;}
.h11{height:68.997187pt;}
.h13{height:71.296875pt;}
.h1b{height:74.477812pt;}
.hf{height:75.602187pt;}
.hd{height:76.671562pt;}
.h1e{height:81.312000pt;}
.h9{height:85.265625pt;}
.h25{height:85.920000pt;}
.h1d{height:144.000000pt;}
.hc{height:291.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:78.592000pt;}
.wa{width:107.360000pt;}
.w9{width:107.392000pt;}
.wf{width:116.960000pt;}
.wc{width:126.752000pt;}
.wb{width:130.720000pt;}
.w11{width:139.386667pt;}
.w10{width:150.106667pt;}
.w12{width:172.986667pt;}
.w8{width:222.106667pt;}
.we{width:260.026667pt;}
.w7{width:301.626667pt;}
.w4{width:301.946667pt;}
.w3{width:302.946667pt;}
.w6{width:303.266667pt;}
.w5{width:604.253333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:1.120000pt;}
.x9{left:7.680000pt;}
.x1e{left:10.080000pt;}
.x52{left:12.800000pt;}
.x20{left:14.240000pt;}
.x5c{left:15.200000pt;}
.x56{left:17.920000pt;}
.x23{left:19.040000pt;}
.x2a{left:20.474667pt;}
.x27{left:22.400000pt;}
.x61{left:23.400000pt;}
.x60{left:24.680000pt;}
.x59{left:25.920000pt;}
.x47{left:28.840000pt;}
.x2f{left:29.914667pt;}
.x12{left:31.200000pt;}
.x46{left:32.200000pt;}
.x5e{left:37.466667pt;}
.x43{left:39.386667pt;}
.x5f{left:40.640000pt;}
.x5d{left:41.800000pt;}
.x57{left:42.746667pt;}
.x24{left:43.680000pt;}
.x40{left:45.274667pt;}
.x45{left:48.634667pt;}
.x2e{left:50.234667pt;}
.x2d{left:52.474667pt;}
.x5b{left:53.754667pt;}
.x2c{left:55.034667pt;}
.x26{left:56.314667pt;}
.x54{left:60.040000pt;}
.x5a{left:61.640000pt;}
.x3e{left:69.754667pt;}
.x3d{left:74.074667pt;}
.x25{left:75.194667pt;}
.x1c{left:76.954667pt;}
.x29{left:78.074667pt;}
.x28{left:79.994667pt;}
.x22{left:84.474667pt;}
.x2b{left:85.914667pt;}
.x4c{left:88.351988pt;}
.x7{left:94.431988pt;}
.x38{left:95.391988pt;}
.x39{left:98.111988pt;}
.x18{left:100.511988pt;}
.x3f{left:101.632000pt;}
.x51{left:106.272000pt;}
.x33{left:118.431988pt;}
.x1b{left:123.872000pt;}
.x4b{left:130.431988pt;}
.x19{left:132.191988pt;}
.x3c{left:136.506655pt;}
.x17{left:141.626655pt;}
.x10{left:144.346655pt;}
.xb{left:145.466655pt;}
.x31{left:148.506655pt;}
.x3b{left:154.426655pt;}
.x1a{left:157.146655pt;}
.x15{left:160.666655pt;}
.x16{left:166.426655pt;}
.xc{left:169.626655pt;}
.xe{left:172.666655pt;}
.xd{left:179.226655pt;}
.x4d{left:190.426655pt;}
.x35{left:193.786655pt;}
.xf{left:201.946655pt;}
.x50{left:214.426655pt;}
.x3a{left:219.546655pt;}
.x53{left:223.866667pt;}
.x2{left:225.946655pt;}
.x4f{left:227.386655pt;}
.x41{left:232.346667pt;}
.x6{left:243.586655pt;}
.x49{left:254.626655pt;}
.xa{left:270.280000pt;}
.x30{left:274.626655pt;}
.x14{left:302.114667pt;}
.x5{left:322.146655pt;}
.x4{left:337.666655pt;}
.x1d{left:346.626667pt;}
.x3{left:354.146655pt;}
.x42{left:359.106667pt;}
.x11{left:362.626655pt;}
.x55{left:374.626667pt;}
.x8{left:396.866655pt;}
.x36{left:408.893322pt;}
.x44{left:437.693333pt;}
.x1f{left:454.653333pt;}
.x58{left:514.653333pt;}
.x4a{left:545.053322pt;}
.x21{left:562.693333pt;}
.x37{left:626.853322pt;}
.x48{left:679.813322pt;}
.x1{left:699.333322pt;}
.x34{left:702.533322pt;}
.x32{left:705.413322pt;}
.x4e{left:710.533322pt;}
}




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