
    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_45d90019855061e7efd4c0b2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.366211;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_da81ca4648c048bb6027d700.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.924805;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3a789b288222d8af9e7c9ad8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.366211;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_8a2cf9d06c6b4cc7403e31df.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.366211;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_3c0e567d356cc1d8a5e5c188.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.052734;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_69475817a3085e23c35cb097.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.366211;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_3b61dcb94369a0e2448e775f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.366211;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_579c0a8129a20f0dbb669662.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.366211;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_10d78b7ddda96333ceb20822.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.366211;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_53cf15fde85ed6e192dd5497.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_a693a8b4ea571a7b75129dac.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.366211;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_a6bc3343dfad4bef9cd5283e.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.366211;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_43858c0db89e4d6c79ac0107.woff2')format("woff");}.fff{font-family:fff;line-height:1.366211;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_496189eb61434994a3941e87.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.366211;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_001e70834c68588acdda5b3f.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.052734;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_11fadd77ece46c49e6d7a8fe.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.366211;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_65c510705499506cc41cbb91.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.020020;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);}
.v3{vertical-align:-21.000000px;}
.v2{vertical-align:-15.000000px;}
.v4{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.000000px;}
.ls1e{letter-spacing:-2.340000px;}
.lsb{letter-spacing:-0.816000px;}
.ls8{letter-spacing:-0.642000px;}
.ls12{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.420000px;}
.ls16{letter-spacing:-0.360000px;}
.ls24{letter-spacing:-0.312000px;}
.ls22{letter-spacing:-0.288000px;}
.ls20{letter-spacing:-0.282000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.018000px;}
.lsf{letter-spacing:0.060000px;}
.ls9{letter-spacing:0.102000px;}
.ls5{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.195000px;}
.lsc{letter-spacing:0.228000px;}
.ls18{letter-spacing:0.240000px;}
.ls0{letter-spacing:0.309000px;}
.ls17{letter-spacing:0.480000px;}
.ls1f{letter-spacing:0.516000px;}
.ls21{letter-spacing:0.528000px;}
.ls13{letter-spacing:0.540000px;}
.ls23{letter-spacing:0.564000px;}
.ls14{letter-spacing:0.660000px;}
.ls19{letter-spacing:0.696000px;}
.ls7{letter-spacing:0.720000px;}
.ls4{letter-spacing:1.500000px;}
.lsa{letter-spacing:1.698000px;}
.ls1a{letter-spacing:2.160000px;}
.ls1d{letter-spacing:13.959000px;}
.ls10{letter-spacing:54.984000px;}
.lse{letter-spacing:59.652000px;}
.lsd{letter-spacing:64.320000px;}
.ls15{letter-spacing:67.488000px;}
.ls1b{letter-spacing:165.066000px;}
.ls1c{letter-spacing:246.210000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(1,20,149),0 0.015em rgb(1,20,149),0.015em 0 rgb(1,20,149),0 -0.015em  rgb(1,20,149);}
.sc1{text-shadow:-0.015em 0 rgb(32,60,169),0 0.015em rgb(32,60,169),0.015em 0 rgb(32,60,169),0 -0.015em  rgb(32,60,169);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(1,20,149);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(32,60,169);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10{word-spacing:-72.000000px;}
.wsd{word-spacing:-66.000000px;}
.wsc{word-spacing:-60.000000px;}
.ws2{word-spacing:-51.000000px;}
.ws8{word-spacing:-48.000000px;}
.ws16{word-spacing:-39.000000px;}
.ws0{word-spacing:-22.620000px;}
.ws19{word-spacing:-21.540000px;}
.ws12{word-spacing:-17.160000px;}
.ws5{word-spacing:-16.911000px;}
.ws1d{word-spacing:-16.755000px;}
.ws14{word-spacing:-16.500000px;}
.ws13{word-spacing:-16.440000px;}
.ws7{word-spacing:-16.293000px;}
.ws4{word-spacing:-16.209000px;}
.ws3{word-spacing:-16.191000px;}
.ws11{word-spacing:-16.080000px;}
.wse{word-spacing:-16.020000px;}
.ws1a{word-spacing:-15.909000px;}
.ws1c{word-spacing:-15.903000px;}
.wsf{word-spacing:-15.900000px;}
.ws1e{word-spacing:-15.879000px;}
.ws6{word-spacing:-15.549000px;}
.ws15{word-spacing:-13.920000px;}
.ws1b{word-spacing:-13.635000px;}
.ws1f{word-spacing:-13.398000px;}
.wsb{word-spacing:-12.564000px;}
.ws9{word-spacing:-12.336000px;}
.wsa{word-spacing:-11.520000px;}
.ws17{word-spacing:-9.048000px;}
.ws18{word-spacing:-8.352000px;}
.ws1{word-spacing:0.000000px;}
._21{margin-left:-6.024000px;}
._20{margin-left:-4.962000px;}
._c{margin-left:-2.982000px;}
._3{margin-left:-1.608000px;}
._2{width:1.080000px;}
._7{width:2.271000px;}
._13{width:4.128000px;}
._10{width:5.940000px;}
._f{width:6.951000px;}
._11{width:8.193000px;}
._b{width:9.909000px;}
._a{width:11.253000px;}
._d{width:12.381000px;}
._e{width:13.617000px;}
._18{width:15.144000px;}
._12{width:17.988000px;}
._23{width:19.209000px;}
._17{width:22.818000px;}
._1c{width:24.306000px;}
._1b{width:29.736000px;}
._1a{width:31.311000px;}
._19{width:33.105000px;}
._26{width:34.416000px;}
._1e{width:67.080000px;}
._1d{width:68.253000px;}
._14{width:72.198000px;}
._15{width:90.807000px;}
._16{width:92.265000px;}
._8{width:109.914000px;}
._24{width:151.398000px;}
._25{width:165.501000px;}
._1f{width:171.069000px;}
._9{width:172.140000px;}
._5{width:173.721000px;}
._22{width:176.016000px;}
._6{width:203.043000px;}
._1{width:334.929000px;}
._4{width:848.139000px;}
._0{width:2531.859000px;}
.fc9{color:rgb(192,0,0);}
.fc6{color:transparent;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(0,0,255);}
.fc8{color:rgb(0,32,96);}
.fc3{color:rgb(1,20,149);}
.fc7{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(32,60,169);}
.fc0{color:rgb(22,33,91);}
.fs11{font-size:3.000000px;}
.fsc{font-size:30.000000px;}
.fse{font-size:33.000000px;}
.fs12{font-size:36.000000px;}
.fsb{font-size:39.000000px;}
.fsd{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs9{font-size:60.000000px;}
.fs0{font-size:63.000000px;}
.fs10{font-size:66.000000px;}
.fsf{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs7{font-size:96.000000px;}
.fs4{font-size:120.000000px;}
.fsa{font-size:144.000000px;}
.fs5{font-size:216.000000px;}
.fs2{font-size:288.150000px;}
.yf1{bottom:-0.015000px;}
.y0{bottom:0.000000px;}
.yf6{bottom:0.015000px;}
.yfa{bottom:0.750000px;}
.y10e{bottom:1.125000px;}
.y151{bottom:1.140000px;}
.y10a{bottom:1.500000px;}
.yf9{bottom:1.875000px;}
.y117{bottom:2.250000px;}
.yf0{bottom:2.610000px;}
.y5{bottom:2.625000px;}
.y125{bottom:2.640000px;}
.y133{bottom:2.985000px;}
.y114{bottom:3.000000px;}
.y7e{bottom:3.375000px;}
.y11e{bottom:3.390000px;}
.y83{bottom:3.405000px;}
.y163{bottom:3.735000px;}
.y80{bottom:3.750000px;}
.y7a{bottom:4.110000px;}
.y12a{bottom:4.125000px;}
.yaf{bottom:4.500000px;}
.y108{bottom:4.875000px;}
.yf3{bottom:5.235000px;}
.ye8{bottom:5.250000px;}
.y126{bottom:5.265000px;}
.y175{bottom:6.000000px;}
.y13a{bottom:7.125000px;}
.y16b{bottom:7.875000px;}
.y10b{bottom:9.000000px;}
.y127{bottom:9.375000px;}
.y15c{bottom:9.750000px;}
.y11f{bottom:9.795000px;}
.y12d{bottom:10.125000px;}
.y173{bottom:10.155000px;}
.y17c{bottom:10.170000px;}
.y155{bottom:10.500000px;}
.y14a{bottom:10.860000px;}
.y15b{bottom:10.875000px;}
.y15d{bottom:11.250000px;}
.y120{bottom:11.295000px;}
.y109{bottom:11.625000px;}
.y150{bottom:11.640000px;}
.y171{bottom:11.655000px;}
.yf5{bottom:12.000000px;}
.y13b{bottom:12.375000px;}
.yfb{bottom:12.750000px;}
.y168{bottom:12.780000px;}
.y107{bottom:13.125000px;}
.y146{bottom:13.155000px;}
.y12b{bottom:13.500000px;}
.y121{bottom:13.545000px;}
.y166{bottom:13.875000px;}
.y16f{bottom:14.250000px;}
.y16e{bottom:14.625000px;}
.y177{bottom:15.000000px;}
.y172{bottom:15.030000px;}
.y17b{bottom:15.045000px;}
.y157{bottom:15.375000px;}
.y17a{bottom:15.795000px;}
.y16c{bottom:17.250000px;}
.y156{bottom:18.000000px;}
.y118{bottom:18.360000px;}
.y158{bottom:18.375000px;}
.yf2{bottom:18.735000px;}
.yed{bottom:18.750000px;}
.y104{bottom:18.780000px;}
.ybe{bottom:19.920000px;}
.y159{bottom:20.625000px;}
.y139{bottom:20.670000px;}
.y88{bottom:21.375000px;}
.yf8{bottom:21.405000px;}
.y4{bottom:21.412500px;}
.y162{bottom:21.735000px;}
.y7d{bottom:21.750000px;}
.y82{bottom:21.795000px;}
.y129{bottom:22.125000px;}
.y145{bottom:22.155000px;}
.y1b{bottom:22.500000px;}
.y78{bottom:23.250000px;}
.ya4{bottom:23.280000px;}
.y2{bottom:23.625000px;}
.y169{bottom:24.030000px;}
.y174{bottom:24.405000px;}
.yae{bottom:25.500000px;}
.y154{bottom:28.875000px;}
.y14c{bottom:29.625000px;}
.y11a{bottom:30.750000px;}
.ybd{bottom:38.295000px;}
.y100{bottom:39.750000px;}
.y87{bottom:39.780000px;}
.y11d{bottom:39.795000px;}
.ye4{bottom:40.117500px;}
.y7c{bottom:40.125000px;}
.y161{bottom:40.155000px;}
.yd4{bottom:40.170000px;}
.yca{bottom:40.500000px;}
.y9d{bottom:43.500000px;}
.yad{bottom:44.250000px;}
.y1{bottom:45.375000px;}
.y153{bottom:46.882500px;}
.y12{bottom:47.670000px;}
.y123{bottom:48.742500px;}
.y130{bottom:49.860000px;}
.ye{bottom:51.000000px;}
.y1a{bottom:51.750000px;}
.ybc{bottom:56.670000px;}
.y86{bottom:57.780000px;}
.y137{bottom:58.155000px;}
.ye3{bottom:58.507500px;}
.yd3{bottom:58.545000px;}
.yc9{bottom:58.875000px;}
.yde{bottom:58.905000px;}
.y3{bottom:60.750000px;}
.yff{bottom:61.530000px;}
.y9c{bottom:61.875000px;}
.yac{bottom:62.625000px;}
.y112{bottom:66.780000px;}
.y111{bottom:70.545000px;}
.y19{bottom:73.537500px;}
.ybb{bottom:75.420000px;}
.y85{bottom:76.155000px;}
.ye2{bottom:77.287500px;}
.yc8{bottom:77.295000px;}
.yfe{bottom:79.530000px;}
.y9b{bottom:80.295000px;}
.yab{bottom:80.625000px;}
.y160{bottom:81.405000px;}
.yeb{bottom:84.750000px;}
.yea{bottom:88.125000px;}
.yd{bottom:90.405000px;}
.yba{bottom:93.795000px;}
.y136{bottom:94.530000px;}
.ydd{bottom:95.655000px;}
.yd2{bottom:95.670000px;}
.ye1{bottom:96.037500px;}
.yc7{bottom:96.045000px;}
.yfd{bottom:97.905000px;}
.y9a{bottom:98.655000px;}
.yaa{bottom:99.000000px;}
.y15f{bottom:99.780000px;}
.y72{bottom:110.662500px;}
.y152{bottom:112.162500px;}
.yb9{bottom:112.170000px;}
.yc0{bottom:112.537500px;}
.ydc{bottom:114.045000px;}
.yc6{bottom:114.420000px;}
.ye0{bottom:114.787500px;}
.y71{bottom:115.162500px;}
.y122{bottom:116.287500px;}
.y99{bottom:117.045000px;}
.ya9{bottom:117.795000px;}
.y11{bottom:118.170000px;}
.y18a{bottom:118.537500px;}
.ya2{bottom:123.787500px;}
.y70{bottom:125.662500px;}
.ydf{bottom:127.912500px;}
.y6f{bottom:130.162500px;}
.yb8{bottom:130.920000px;}
.y193{bottom:132.412500px;}
.ydb{bottom:132.420000px;}
.yc5{bottom:132.795000px;}
.y98{bottom:135.405000px;}
.ya8{bottom:136.170000px;}
.y192{bottom:137.662500px;}
.y189{bottom:140.662500px;}
.y16{bottom:140.700000px;}
.y6e{bottom:141.412500px;}
.ya1{bottom:145.537500px;}
.yb7{bottom:149.700000px;}
.yda{bottom:150.795000px;}
.yd1{bottom:150.825000px;}
.yc4{bottom:151.170000px;}
.y124{bottom:151.530000px;}
.y191{bottom:151.905000px;}
.y97{bottom:153.795000px;}
.ya7{bottom:154.545000px;}
.y6d{bottom:156.045000px;}
.y6c{bottom:160.545000px;}
.y188{bottom:162.420000px;}
.ya0{bottom:167.670000px;}
.yb6{bottom:168.075000px;}
.yd0{bottom:169.200000px;}
.yd9{bottom:169.545000px;}
.yc3{bottom:169.920000px;}
.y6b{bottom:170.670000px;}
.y96{bottom:172.545000px;}
.ya6{bottom:173.670000px;}
.y3e{bottom:174.780000px;}
.y15{bottom:175.950000px;}
.y14f{bottom:181.530000px;}
.y187{bottom:184.545000px;}
.y6a{bottom:185.280000px;}
.yb5{bottom:186.450000px;}
.ycf{bottom:187.200000px;}
.y10{bottom:188.700000px;}
.y9f{bottom:189.420000px;}
.y11c{bottom:189.780000px;}
.y95{bottom:190.920000px;}
.y3d{bottom:196.920000px;}
.y69{bottom:199.575000px;}
.y68{bottom:204.075000px;}
.yb4{bottom:205.200000px;}
.yce{bottom:205.575000px;}
.y94{bottom:208.950000px;}
.y9e{bottom:211.575000px;}
.y67{bottom:214.200000px;}
.y14e{bottom:216.825000px;}
.y3c{bottom:218.700000px;}
.y186{bottom:219.075000px;}
.yb3{bottom:223.950000px;}
.y93{bottom:227.325000px;}
.y66{bottom:228.825000px;}
.y14{bottom:230.325000px;}
.y65{bottom:233.325000px;}
.y3b{bottom:240.450000px;}
.ycd{bottom:242.325000px;}
.yb2{bottom:242.700000px;}
.y64{bottom:244.200000px;}
.y119{bottom:244.950000px;}
.y92{bottom:246.075000px;}
.y89{bottom:249.450000px;}
.y14b{bottom:254.700000px;}
.ycc{bottom:260.700000px;}
.yb1{bottom:261.450000px;}
.y3a{bottom:262.575000px;}
.y91{bottom:264.450000px;}
.yd8{bottom:275.700000px;}
.ycb{bottom:279.480000px;}
.y11b{bottom:280.200000px;}
.y90{bottom:282.825000px;}
.y39{bottom:284.325000px;}
.y14d{bottom:289.950000px;}
.y185{bottom:297.825000px;}
.y8f{bottom:301.200000px;}
.y38{bottom:306.450000px;}
.y110{bottom:318.450000px;}
.y8e{bottom:319.575000px;}
.y147{bottom:325.245000px;}
.y37{bottom:328.245000px;}
.y8d{bottom:337.995000px;}
.y62{bottom:341.355000px;}
.y184{bottom:341.745000px;}
.y63{bottom:346.620000px;}
.y36{bottom:350.370000px;}
.y8c{bottom:356.370000px;}
.y116{bottom:356.745000px;}
.y149{bottom:360.495000px;}
.y61{bottom:363.120000px;}
.y183{bottom:363.495000px;}
.y35{bottom:372.120000px;}
.y8b{bottom:374.745000px;}
.y60{bottom:384.855000px;}
.y182{bottom:385.620000px;}
.y8a{bottom:393.870000px;}
.y115{bottom:394.620000px;}
.y148{bottom:398.745000px;}
.y5f{bottom:406.995000px;}
.y181{bottom:407.370000px;}
.y34{bottom:411.495000px;}
.y5e{bottom:428.745000px;}
.y180{bottom:429.120000px;}
.y113{bottom:432.870000px;}
.y144{bottom:436.995000px;}
.y5d{bottom:450.900000px;}
.y17f{bottom:451.275000px;}
.y10f{bottom:471.150000px;}
.y5c{bottom:472.650000px;}
.y143{bottom:475.275000px;}
.yd7{bottom:478.275000px;}
.y17e{bottom:481.650000px;}
.y33{bottom:483.150000px;}
.y5b{bottom:494.775000px;}
.y10c{bottom:509.400000px;}
.y141{bottom:510.525000px;}
.y32{bottom:513.525000px;}
.y5a{bottom:516.525000px;}
.yd6{bottom:525.900000px;}
.y17d{bottom:526.650000px;}
.y59{bottom:538.650000px;}
.ybf{bottom:542.775000px;}
.y142{bottom:545.775000px;}
.y10d{bottom:547.650000px;}
.yd5{bottom:548.025000px;}
.yb0{bottom:556.650000px;}
.y58{bottom:560.400000px;}
.y31{bottom:564.150000px;}
.y13{bottom:567.525000px;}
.y179{bottom:567.900000px;}
.y56{bottom:582.195000px;}
.y105{bottom:582.945000px;}
.y140{bottom:584.070000px;}
.y30{bottom:586.320000px;}
.y57{bottom:587.445000px;}
.y55{bottom:604.320000px;}
.y2f{bottom:608.070000px;}
.y178{bottom:610.320000px;}
.y106{bottom:618.195000px;}
.y13f{bottom:620.820000px;}
.y54{bottom:626.070000px;}
.y2e{bottom:630.195000px;}
.y53{bottom:648.195000px;}
.y176{bottom:650.445000px;}
.y2d{bottom:654.570000px;}
.yfc{bottom:656.070000px;}
.y13e{bottom:659.070000px;}
.y52{bottom:669.945000px;}
.y84{bottom:676.320000px;}
.y2c{bottom:683.820000px;}
.y51{bottom:692.070000px;}
.y170{bottom:692.820000px;}
.y103{bottom:694.320000px;}
.y2b{bottom:713.100000px;}
.y50{bottom:713.850000px;}
.y13d{bottom:729.600000px;}
.y102{bottom:732.600000px;}
.y16d{bottom:735.225000px;}
.y2a{bottom:741.975000px;}
.y4f{bottom:748.350000px;}
.y29{bottom:767.475000px;}
.y13c{bottom:767.850000px;}
.y101{bottom:770.850000px;}
.y16a{bottom:775.350000px;}
.y28{bottom:791.475000px;}
.y4e{bottom:805.350000px;}
.y138{bottom:806.100000px;}
.yf7{bottom:809.100000px;}
.y27{bottom:813.225000px;}
.y167{bottom:821.475000px;}
.y81{bottom:824.100000px;}
.y4d{bottom:827.130000px;}
.y26{bottom:835.380000px;}
.ye9{bottom:845.880000px;}
.y4c{bottom:848.880000px;}
.ya5{bottom:851.130000px;}
.y25{bottom:857.130000px;}
.y135{bottom:858.630000px;}
.y7f{bottom:860.880000px;}
.y165{bottom:867.255000px;}
.y4b{bottom:871.005000px;}
.yc2{bottom:876.630000px;}
.y24{bottom:879.255000px;}
.y7b{bottom:879.630000px;}
.yf4{bottom:881.130000px;}
.y18f{bottom:882.630000px;}
.y190{bottom:887.880000px;}
.y49{bottom:892.755000px;}
.y134{bottom:895.755000px;}
.y12f{bottom:895.770000px;}
.y4a{bottom:898.005000px;}
.y23{bottom:901.005000px;}
.y164{bottom:904.380000px;}
.y48{bottom:914.880000px;}
.yef{bottom:919.395000px;}
.y15e{bottom:920.520000px;}
.y22{bottom:923.130000px;}
.yb{bottom:925.005000px;}
.y18e{bottom:926.505000px;}
.yf{bottom:927.630000px;}
.y132{bottom:931.020000px;}
.y79{bottom:934.395000px;}
.y47{bottom:936.630000px;}
.y21{bottom:944.880000px;}
.y18d{bottom:948.255000px;}
.ya{bottom:949.380000px;}
.yee{bottom:957.675000px;}
.y46{bottom:958.800000px;}
.y20{bottom:967.050000px;}
.y131{bottom:969.300000px;}
.y18c{bottom:970.425000px;}
.y77{bottom:971.550000px;}
.y9{bottom:976.050000px;}
.y45{bottom:980.550000px;}
.y18b{bottom:992.175000px;}
.y1f{bottom:994.425000px;}
.yec{bottom:995.925000px;}
.y8{bottom:1000.425000px;}
.y43{bottom:1002.675000px;}
.y12e{bottom:1007.550000px;}
.y44{bottom:1007.925000px;}
.y76{bottom:1019.175000px;}
.y41{bottom:1024.425000px;}
.yc{bottom:1026.675000px;}
.y7{bottom:1027.425000px;}
.y42{bottom:1029.675000px;}
.y15a{bottom:1030.425000px;}
.ye7{bottom:1034.175000px;}
.y1e{bottom:1039.800000px;}
.y75{bottom:1041.300000px;}
.y12c{bottom:1045.425000px;}
.y40{bottom:1046.175000px;}
.ya3{bottom:1057.800000px;}
.y6{bottom:1061.550000px;}
.y74{bottom:1063.050000px;}
.ye6{bottom:1071.300000px;}
.yc1{bottom:1079.580000px;}
.y128{bottom:1082.580000px;}
.y1d{bottom:1083.705000px;}
.y3f{bottom:1085.580000px;}
.y73{bottom:1097.580000px;}
.ye5{bottom:1100.580000px;}
.y1c{bottom:1105.455000px;}
.y18{bottom:1174.080000px;}
.y17{bottom:1193.205000px;}
.h2e{height:2.528320px;}
.h21{height:3.140625px;}
.h1a{height:18.750000px;}
.h2b{height:21.375000px;}
.h4a{height:30.000000px;}
.h12{height:31.406250px;}
.h30{height:34.500000px;}
.h42{height:34.522500px;}
.h3{height:34.537500px;}
.h15{height:34.546875px;}
.h36{height:35.566406px;}
.h43{height:36.000000px;}
.h32{height:36.037500px;}
.h3f{height:36.375000px;}
.h18{height:36.397500px;}
.h3d{height:36.412500px;}
.h1b{height:36.787500px;}
.h35{height:37.125000px;}
.h2d{height:37.500000px;}
.h2f{height:37.522500px;}
.h39{height:37.537500px;}
.h48{height:37.687500px;}
.h4e{height:39.375000px;}
.h16{height:40.500000px;}
.h24{height:40.537500px;}
.h11{height:40.828125px;}
.h50{height:41.625000px;}
.h4f{height:41.662500px;}
.h49{height:41.812500px;}
.h4b{height:45.037500px;}
.h4d{height:45.375000px;}
.h31{height:45.509766px;}
.h13{height:50.250000px;}
.h14{height:50.566406px;}
.h41{height:51.787500px;}
.he{height:53.390625px;}
.h51{height:53.953125px;}
.h3b{height:54.412500px;}
.h19{height:54.750000px;}
.h4c{height:55.623047px;}
.h4{height:56.531250px;}
.h1c{height:56.625000px;}
.h3c{height:60.679688px;}
.hf{height:62.812500px;}
.h2{height:65.953125px;}
.h1d{height:67.837600px;}
.h46{height:68.625000px;}
.h1e{height:69.093750px;}
.h45{height:69.787500px;}
.h34{height:72.375000px;}
.h3a{height:72.750000px;}
.h37{height:72.787500px;}
.h23{height:74.004654px;}
.h17{height:75.375000px;}
.h6{height:83.548828px;}
.h7{height:87.937500px;}
.h9{height:90.000000px;}
.h1f{height:91.147500px;}
.hd{height:100.500000px;}
.h47{height:109.147500px;}
.h44{height:111.000000px;}
.h3e{height:111.022500px;}
.h2a{height:147.037500px;}
.h10{height:150.750000px;}
.h38{height:151.950000px;}
.h33{height:152.280000px;}
.h8{height:157.155000px;}
.hb{height:162.000000px;}
.h40{height:163.560000px;}
.h2c{height:187.545000px;}
.h29{height:201.825000px;}
.h27{height:202.200000px;}
.h25{height:205.920000px;}
.h5{height:216.112500px;}
.ha{height:265.950000px;}
.h26{height:293.730000px;}
.h20{height:294.480000px;}
.h28{height:311.730000px;}
.hc{height:313.980000px;}
.h22{height:426.120000px;}
.h0{height:1262.625000px;}
.h1{height:1263.000000px;}
.we{width:62.625000px;}
.wc{width:93.037500px;}
.w15{width:95.325000px;}
.w13{width:99.037500px;}
.wd{width:117.825000px;}
.w12{width:155.700000px;}
.wa{width:175.200000px;}
.w2{width:228.825000px;}
.w14{width:240.075000px;}
.w16{width:240.450000px;}
.w3{width:242.355000px;}
.wf{width:271.995000px;}
.wb{width:335.355000px;}
.w4{width:496.320000px;}
.w11{width:675.630000px;}
.w8{width:710.925000px;}
.w9{width:723.300000px;}
.w10{width:724.050000px;}
.w7{width:727.050000px;}
.w5{width:757.050000px;}
.w6{width:893.249973px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:7.875000px;}
.x7{left:10.860000px;}
.x30{left:12.375000px;}
.x33{left:13.500000px;}
.x31{left:16.125000px;}
.x20{left:17.250000px;}
.x39{left:18.750000px;}
.x35{left:21.750000px;}
.x38{left:22.875000px;}
.x26{left:25.125000px;}
.x32{left:27.000000px;}
.x3b{left:28.125000px;}
.x25{left:30.030000px;}
.x2e{left:31.125000px;}
.x3e{left:32.625000px;}
.x1b{left:34.875000px;}
.x3d{left:36.000000px;}
.x3c{left:37.500000px;}
.x40{left:39.000000px;}
.x3f{left:45.375000px;}
.x2b{left:46.530000px;}
.x22{left:48.375000px;}
.x36{left:51.000000px;}
.x28{left:53.625000px;}
.x3a{left:55.875000px;}
.x5{left:59.625000px;}
.x2{left:60.787487px;}
.x8{left:61.912500px;}
.x16{left:63.412487px;}
.x17{left:64.912487px;}
.x18{left:66.037487px;}
.x4{left:69.375000px;}
.x9{left:72.787487px;}
.x37{left:78.030000px;}
.x44{left:79.912500px;}
.x2c{left:81.030000px;}
.x2d{left:86.280000px;}
.x34{left:87.412500px;}
.x27{left:94.912500px;}
.x2a{left:98.280000px;}
.x2f{left:102.450000px;}
.x41{left:160.575000px;}
.xe{left:201.449973px;}
.xf{left:207.449987px;}
.x21{left:237.120000px;}
.x1e{left:254.737500px;}
.x1c{left:256.612500px;}
.x15{left:276.869987px;}
.x29{left:300.495000px;}
.x1a{left:308.737500px;}
.x1f{left:315.487500px;}
.x3{left:329.025000px;}
.x1d{left:342.532500px;}
.x42{left:401.400000px;}
.xa{left:440.819973px;}
.xb{left:444.569987px;}
.x10{left:493.349987px;}
.x43{left:496.725000px;}
.x23{left:573.225000px;}
.x45{left:601.004973px;}
.x46{left:606.629987px;}
.x6{left:618.645000px;}
.xc{left:627.269973px;}
.xd{left:632.879987px;}
.x24{left:667.020000px;}
.x13{left:707.924973px;}
.x14{left:713.549987px;}
.x11{left:738.299973px;}
.x12{left:744.299987px;}
.x1{left:785.579987px;}
@media print{
.v3{vertical-align:-18.666667pt;}
.v2{vertical-align:-13.333333pt;}
.v4{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.666667pt;}
.ls1e{letter-spacing:-2.080000pt;}
.lsb{letter-spacing:-0.725333pt;}
.ls8{letter-spacing:-0.570667pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.373333pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls24{letter-spacing:-0.277333pt;}
.ls22{letter-spacing:-0.256000pt;}
.ls20{letter-spacing:-0.250667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.016000pt;}
.lsf{letter-spacing:0.053333pt;}
.ls9{letter-spacing:0.090667pt;}
.ls5{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.173333pt;}
.lsc{letter-spacing:0.202667pt;}
.ls18{letter-spacing:0.213333pt;}
.ls0{letter-spacing:0.274667pt;}
.ls17{letter-spacing:0.426667pt;}
.ls1f{letter-spacing:0.458667pt;}
.ls21{letter-spacing:0.469333pt;}
.ls13{letter-spacing:0.480000pt;}
.ls23{letter-spacing:0.501333pt;}
.ls14{letter-spacing:0.586667pt;}
.ls19{letter-spacing:0.618667pt;}
.ls7{letter-spacing:0.640000pt;}
.ls4{letter-spacing:1.333333pt;}
.lsa{letter-spacing:1.509333pt;}
.ls1a{letter-spacing:1.920000pt;}
.ls1d{letter-spacing:12.408000pt;}
.ls10{letter-spacing:48.874667pt;}
.lse{letter-spacing:53.024000pt;}
.lsd{letter-spacing:57.173333pt;}
.ls15{letter-spacing:59.989333pt;}
.ls1b{letter-spacing:146.725333pt;}
.ls1c{letter-spacing:218.853333pt;}
.ws10{word-spacing:-64.000000pt;}
.wsd{word-spacing:-58.666667pt;}
.wsc{word-spacing:-53.333333pt;}
.ws2{word-spacing:-45.333333pt;}
.ws8{word-spacing:-42.666667pt;}
.ws16{word-spacing:-34.666667pt;}
.ws0{word-spacing:-20.106667pt;}
.ws19{word-spacing:-19.146667pt;}
.ws12{word-spacing:-15.253333pt;}
.ws5{word-spacing:-15.032000pt;}
.ws1d{word-spacing:-14.893333pt;}
.ws14{word-spacing:-14.666667pt;}
.ws13{word-spacing:-14.613333pt;}
.ws7{word-spacing:-14.482667pt;}
.ws4{word-spacing:-14.408000pt;}
.ws3{word-spacing:-14.392000pt;}
.ws11{word-spacing:-14.293333pt;}
.wse{word-spacing:-14.240000pt;}
.ws1a{word-spacing:-14.141333pt;}
.ws1c{word-spacing:-14.136000pt;}
.wsf{word-spacing:-14.133333pt;}
.ws1e{word-spacing:-14.114667pt;}
.ws6{word-spacing:-13.821333pt;}
.ws15{word-spacing:-12.373333pt;}
.ws1b{word-spacing:-12.120000pt;}
.ws1f{word-spacing:-11.909333pt;}
.wsb{word-spacing:-11.168000pt;}
.ws9{word-spacing:-10.965333pt;}
.wsa{word-spacing:-10.240000pt;}
.ws17{word-spacing:-8.042667pt;}
.ws18{word-spacing:-7.424000pt;}
.ws1{word-spacing:0.000000pt;}
._21{margin-left:-5.354667pt;}
._20{margin-left:-4.410667pt;}
._c{margin-left:-2.650667pt;}
._3{margin-left:-1.429333pt;}
._2{width:0.960000pt;}
._7{width:2.018667pt;}
._13{width:3.669333pt;}
._10{width:5.280000pt;}
._f{width:6.178667pt;}
._11{width:7.282667pt;}
._b{width:8.808000pt;}
._a{width:10.002667pt;}
._d{width:11.005333pt;}
._e{width:12.104000pt;}
._18{width:13.461333pt;}
._12{width:15.989333pt;}
._23{width:17.074667pt;}
._17{width:20.282667pt;}
._1c{width:21.605333pt;}
._1b{width:26.432000pt;}
._1a{width:27.832000pt;}
._19{width:29.426667pt;}
._26{width:30.592000pt;}
._1e{width:59.626667pt;}
._1d{width:60.669333pt;}
._14{width:64.176000pt;}
._15{width:80.717333pt;}
._16{width:82.013333pt;}
._8{width:97.701333pt;}
._24{width:134.576000pt;}
._25{width:147.112000pt;}
._1f{width:152.061333pt;}
._9{width:153.013333pt;}
._5{width:154.418667pt;}
._22{width:156.458667pt;}
._6{width:180.482667pt;}
._1{width:297.714667pt;}
._4{width:753.901333pt;}
._0{width:2250.541333pt;}
.fs11{font-size:2.666667pt;}
.fsc{font-size:26.666667pt;}
.fse{font-size:29.333333pt;}
.fs12{font-size:32.000000pt;}
.fsb{font-size:34.666667pt;}
.fsd{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs9{font-size:53.333333pt;}
.fs0{font-size:56.000000pt;}
.fs10{font-size:58.666667pt;}
.fsf{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs7{font-size:85.333333pt;}
.fs4{font-size:106.666667pt;}
.fsa{font-size:128.000000pt;}
.fs5{font-size:192.000000pt;}
.fs2{font-size:256.133333pt;}
.yf1{bottom:-0.013333pt;}
.y0{bottom:0.000000pt;}
.yf6{bottom:0.013333pt;}
.yfa{bottom:0.666667pt;}
.y10e{bottom:1.000000pt;}
.y151{bottom:1.013333pt;}
.y10a{bottom:1.333333pt;}
.yf9{bottom:1.666667pt;}
.y117{bottom:2.000000pt;}
.yf0{bottom:2.320000pt;}
.y5{bottom:2.333333pt;}
.y125{bottom:2.346667pt;}
.y133{bottom:2.653333pt;}
.y114{bottom:2.666667pt;}
.y7e{bottom:3.000000pt;}
.y11e{bottom:3.013333pt;}
.y83{bottom:3.026667pt;}
.y163{bottom:3.320000pt;}
.y80{bottom:3.333333pt;}
.y7a{bottom:3.653333pt;}
.y12a{bottom:3.666667pt;}
.yaf{bottom:4.000000pt;}
.y108{bottom:4.333333pt;}
.yf3{bottom:4.653333pt;}
.ye8{bottom:4.666667pt;}
.y126{bottom:4.680000pt;}
.y175{bottom:5.333333pt;}
.y13a{bottom:6.333333pt;}
.y16b{bottom:7.000000pt;}
.y10b{bottom:8.000000pt;}
.y127{bottom:8.333333pt;}
.y15c{bottom:8.666667pt;}
.y11f{bottom:8.706667pt;}
.y12d{bottom:9.000000pt;}
.y173{bottom:9.026667pt;}
.y17c{bottom:9.040000pt;}
.y155{bottom:9.333333pt;}
.y14a{bottom:9.653333pt;}
.y15b{bottom:9.666667pt;}
.y15d{bottom:10.000000pt;}
.y120{bottom:10.040000pt;}
.y109{bottom:10.333333pt;}
.y150{bottom:10.346667pt;}
.y171{bottom:10.360000pt;}
.yf5{bottom:10.666667pt;}
.y13b{bottom:11.000000pt;}
.yfb{bottom:11.333333pt;}
.y168{bottom:11.360000pt;}
.y107{bottom:11.666667pt;}
.y146{bottom:11.693333pt;}
.y12b{bottom:12.000000pt;}
.y121{bottom:12.040000pt;}
.y166{bottom:12.333333pt;}
.y16f{bottom:12.666667pt;}
.y16e{bottom:13.000000pt;}
.y177{bottom:13.333333pt;}
.y172{bottom:13.360000pt;}
.y17b{bottom:13.373333pt;}
.y157{bottom:13.666667pt;}
.y17a{bottom:14.040000pt;}
.y16c{bottom:15.333333pt;}
.y156{bottom:16.000000pt;}
.y118{bottom:16.320000pt;}
.y158{bottom:16.333333pt;}
.yf2{bottom:16.653333pt;}
.yed{bottom:16.666667pt;}
.y104{bottom:16.693333pt;}
.ybe{bottom:17.706667pt;}
.y159{bottom:18.333333pt;}
.y139{bottom:18.373333pt;}
.y88{bottom:19.000000pt;}
.yf8{bottom:19.026667pt;}
.y4{bottom:19.033333pt;}
.y162{bottom:19.320000pt;}
.y7d{bottom:19.333333pt;}
.y82{bottom:19.373333pt;}
.y129{bottom:19.666667pt;}
.y145{bottom:19.693333pt;}
.y1b{bottom:20.000000pt;}
.y78{bottom:20.666667pt;}
.ya4{bottom:20.693333pt;}
.y2{bottom:21.000000pt;}
.y169{bottom:21.360000pt;}
.y174{bottom:21.693333pt;}
.yae{bottom:22.666667pt;}
.y154{bottom:25.666667pt;}
.y14c{bottom:26.333333pt;}
.y11a{bottom:27.333333pt;}
.ybd{bottom:34.040000pt;}
.y100{bottom:35.333333pt;}
.y87{bottom:35.360000pt;}
.y11d{bottom:35.373333pt;}
.ye4{bottom:35.660000pt;}
.y7c{bottom:35.666667pt;}
.y161{bottom:35.693333pt;}
.yd4{bottom:35.706667pt;}
.yca{bottom:36.000000pt;}
.y9d{bottom:38.666667pt;}
.yad{bottom:39.333333pt;}
.y1{bottom:40.333333pt;}
.y153{bottom:41.673333pt;}
.y12{bottom:42.373333pt;}
.y123{bottom:43.326667pt;}
.y130{bottom:44.320000pt;}
.ye{bottom:45.333333pt;}
.y1a{bottom:46.000000pt;}
.ybc{bottom:50.373333pt;}
.y86{bottom:51.360000pt;}
.y137{bottom:51.693333pt;}
.ye3{bottom:52.006667pt;}
.yd3{bottom:52.040000pt;}
.yc9{bottom:52.333333pt;}
.yde{bottom:52.360000pt;}
.y3{bottom:54.000000pt;}
.yff{bottom:54.693333pt;}
.y9c{bottom:55.000000pt;}
.yac{bottom:55.666667pt;}
.y112{bottom:59.360000pt;}
.y111{bottom:62.706667pt;}
.y19{bottom:65.366667pt;}
.ybb{bottom:67.040000pt;}
.y85{bottom:67.693333pt;}
.ye2{bottom:68.700000pt;}
.yc8{bottom:68.706667pt;}
.yfe{bottom:70.693333pt;}
.y9b{bottom:71.373333pt;}
.yab{bottom:71.666667pt;}
.y160{bottom:72.360000pt;}
.yeb{bottom:75.333333pt;}
.yea{bottom:78.333333pt;}
.yd{bottom:80.360000pt;}
.yba{bottom:83.373333pt;}
.y136{bottom:84.026667pt;}
.ydd{bottom:85.026667pt;}
.yd2{bottom:85.040000pt;}
.ye1{bottom:85.366667pt;}
.yc7{bottom:85.373333pt;}
.yfd{bottom:87.026667pt;}
.y9a{bottom:87.693333pt;}
.yaa{bottom:88.000000pt;}
.y15f{bottom:88.693333pt;}
.y72{bottom:98.366667pt;}
.y152{bottom:99.700000pt;}
.yb9{bottom:99.706667pt;}
.yc0{bottom:100.033333pt;}
.ydc{bottom:101.373333pt;}
.yc6{bottom:101.706667pt;}
.ye0{bottom:102.033333pt;}
.y71{bottom:102.366667pt;}
.y122{bottom:103.366667pt;}
.y99{bottom:104.040000pt;}
.ya9{bottom:104.706667pt;}
.y11{bottom:105.040000pt;}
.y18a{bottom:105.366667pt;}
.ya2{bottom:110.033333pt;}
.y70{bottom:111.700000pt;}
.ydf{bottom:113.700000pt;}
.y6f{bottom:115.700000pt;}
.yb8{bottom:116.373333pt;}
.y193{bottom:117.700000pt;}
.ydb{bottom:117.706667pt;}
.yc5{bottom:118.040000pt;}
.y98{bottom:120.360000pt;}
.ya8{bottom:121.040000pt;}
.y192{bottom:122.366667pt;}
.y189{bottom:125.033333pt;}
.y16{bottom:125.066667pt;}
.y6e{bottom:125.700000pt;}
.ya1{bottom:129.366667pt;}
.yb7{bottom:133.066667pt;}
.yda{bottom:134.040000pt;}
.yd1{bottom:134.066667pt;}
.yc4{bottom:134.373333pt;}
.y124{bottom:134.693333pt;}
.y191{bottom:135.026667pt;}
.y97{bottom:136.706667pt;}
.ya7{bottom:137.373333pt;}
.y6d{bottom:138.706667pt;}
.y6c{bottom:142.706667pt;}
.y188{bottom:144.373333pt;}
.ya0{bottom:149.040000pt;}
.yb6{bottom:149.400000pt;}
.yd0{bottom:150.400000pt;}
.yd9{bottom:150.706667pt;}
.yc3{bottom:151.040000pt;}
.y6b{bottom:151.706667pt;}
.y96{bottom:153.373333pt;}
.ya6{bottom:154.373333pt;}
.y3e{bottom:155.360000pt;}
.y15{bottom:156.400000pt;}
.y14f{bottom:161.360000pt;}
.y187{bottom:164.040000pt;}
.y6a{bottom:164.693333pt;}
.yb5{bottom:165.733333pt;}
.ycf{bottom:166.400000pt;}
.y10{bottom:167.733333pt;}
.y9f{bottom:168.373333pt;}
.y11c{bottom:168.693333pt;}
.y95{bottom:169.706667pt;}
.y3d{bottom:175.040000pt;}
.y69{bottom:177.400000pt;}
.y68{bottom:181.400000pt;}
.yb4{bottom:182.400000pt;}
.yce{bottom:182.733333pt;}
.y94{bottom:185.733333pt;}
.y9e{bottom:188.066667pt;}
.y67{bottom:190.400000pt;}
.y14e{bottom:192.733333pt;}
.y3c{bottom:194.400000pt;}
.y186{bottom:194.733333pt;}
.yb3{bottom:199.066667pt;}
.y93{bottom:202.066667pt;}
.y66{bottom:203.400000pt;}
.y14{bottom:204.733333pt;}
.y65{bottom:207.400000pt;}
.y3b{bottom:213.733333pt;}
.ycd{bottom:215.400000pt;}
.yb2{bottom:215.733333pt;}
.y64{bottom:217.066667pt;}
.y119{bottom:217.733333pt;}
.y92{bottom:218.733333pt;}
.y89{bottom:221.733333pt;}
.y14b{bottom:226.400000pt;}
.ycc{bottom:231.733333pt;}
.yb1{bottom:232.400000pt;}
.y3a{bottom:233.400000pt;}
.y91{bottom:235.066667pt;}
.yd8{bottom:245.066667pt;}
.ycb{bottom:248.426667pt;}
.y11b{bottom:249.066667pt;}
.y90{bottom:251.400000pt;}
.y39{bottom:252.733333pt;}
.y14d{bottom:257.733333pt;}
.y185{bottom:264.733333pt;}
.y8f{bottom:267.733333pt;}
.y38{bottom:272.400000pt;}
.y110{bottom:283.066667pt;}
.y8e{bottom:284.066667pt;}
.y147{bottom:289.106667pt;}
.y37{bottom:291.773333pt;}
.y8d{bottom:300.440000pt;}
.y62{bottom:303.426667pt;}
.y184{bottom:303.773333pt;}
.y63{bottom:308.106667pt;}
.y36{bottom:311.440000pt;}
.y8c{bottom:316.773333pt;}
.y116{bottom:317.106667pt;}
.y149{bottom:320.440000pt;}
.y61{bottom:322.773333pt;}
.y183{bottom:323.106667pt;}
.y35{bottom:330.773333pt;}
.y8b{bottom:333.106667pt;}
.y60{bottom:342.093333pt;}
.y182{bottom:342.773333pt;}
.y8a{bottom:350.106667pt;}
.y115{bottom:350.773333pt;}
.y148{bottom:354.440000pt;}
.y5f{bottom:361.773333pt;}
.y181{bottom:362.106667pt;}
.y34{bottom:365.773333pt;}
.y5e{bottom:381.106667pt;}
.y180{bottom:381.440000pt;}
.y113{bottom:384.773333pt;}
.y144{bottom:388.440000pt;}
.y5d{bottom:400.800000pt;}
.y17f{bottom:401.133333pt;}
.y10f{bottom:418.800000pt;}
.y5c{bottom:420.133333pt;}
.y143{bottom:422.466667pt;}
.yd7{bottom:425.133333pt;}
.y17e{bottom:428.133333pt;}
.y33{bottom:429.466667pt;}
.y5b{bottom:439.800000pt;}
.y10c{bottom:452.800000pt;}
.y141{bottom:453.800000pt;}
.y32{bottom:456.466667pt;}
.y5a{bottom:459.133333pt;}
.yd6{bottom:467.466667pt;}
.y17d{bottom:468.133333pt;}
.y59{bottom:478.800000pt;}
.ybf{bottom:482.466667pt;}
.y142{bottom:485.133333pt;}
.y10d{bottom:486.800000pt;}
.yd5{bottom:487.133333pt;}
.yb0{bottom:494.800000pt;}
.y58{bottom:498.133333pt;}
.y31{bottom:501.466667pt;}
.y13{bottom:504.466667pt;}
.y179{bottom:504.800000pt;}
.y56{bottom:517.506667pt;}
.y105{bottom:518.173333pt;}
.y140{bottom:519.173333pt;}
.y30{bottom:521.173333pt;}
.y57{bottom:522.173333pt;}
.y55{bottom:537.173333pt;}
.y2f{bottom:540.506667pt;}
.y178{bottom:542.506667pt;}
.y106{bottom:549.506667pt;}
.y13f{bottom:551.840000pt;}
.y54{bottom:556.506667pt;}
.y2e{bottom:560.173333pt;}
.y53{bottom:576.173333pt;}
.y176{bottom:578.173333pt;}
.y2d{bottom:581.840000pt;}
.yfc{bottom:583.173333pt;}
.y13e{bottom:585.840000pt;}
.y52{bottom:595.506667pt;}
.y84{bottom:601.173333pt;}
.y2c{bottom:607.840000pt;}
.y51{bottom:615.173333pt;}
.y170{bottom:615.840000pt;}
.y103{bottom:617.173333pt;}
.y2b{bottom:633.866667pt;}
.y50{bottom:634.533333pt;}
.y13d{bottom:648.533333pt;}
.y102{bottom:651.200000pt;}
.y16d{bottom:653.533333pt;}
.y2a{bottom:659.533333pt;}
.y4f{bottom:665.200000pt;}
.y29{bottom:682.200000pt;}
.y13c{bottom:682.533333pt;}
.y101{bottom:685.200000pt;}
.y16a{bottom:689.200000pt;}
.y28{bottom:703.533333pt;}
.y4e{bottom:715.866667pt;}
.y138{bottom:716.533333pt;}
.yf7{bottom:719.200000pt;}
.y27{bottom:722.866667pt;}
.y167{bottom:730.200000pt;}
.y81{bottom:732.533333pt;}
.y4d{bottom:735.226667pt;}
.y26{bottom:742.560000pt;}
.ye9{bottom:751.893333pt;}
.y4c{bottom:754.560000pt;}
.ya5{bottom:756.560000pt;}
.y25{bottom:761.893333pt;}
.y135{bottom:763.226667pt;}
.y7f{bottom:765.226667pt;}
.y165{bottom:770.893333pt;}
.y4b{bottom:774.226667pt;}
.yc2{bottom:779.226667pt;}
.y24{bottom:781.560000pt;}
.y7b{bottom:781.893333pt;}
.yf4{bottom:783.226667pt;}
.y18f{bottom:784.560000pt;}
.y190{bottom:789.226667pt;}
.y49{bottom:793.560000pt;}
.y134{bottom:796.226667pt;}
.y12f{bottom:796.240000pt;}
.y4a{bottom:798.226667pt;}
.y23{bottom:800.893333pt;}
.y164{bottom:803.893333pt;}
.y48{bottom:813.226667pt;}
.yef{bottom:817.240000pt;}
.y15e{bottom:818.240000pt;}
.y22{bottom:820.560000pt;}
.yb{bottom:822.226667pt;}
.y18e{bottom:823.560000pt;}
.yf{bottom:824.560000pt;}
.y132{bottom:827.573333pt;}
.y79{bottom:830.573333pt;}
.y47{bottom:832.560000pt;}
.y21{bottom:839.893333pt;}
.y18d{bottom:842.893333pt;}
.ya{bottom:843.893333pt;}
.yee{bottom:851.266667pt;}
.y46{bottom:852.266667pt;}
.y20{bottom:859.600000pt;}
.y131{bottom:861.600000pt;}
.y18c{bottom:862.600000pt;}
.y77{bottom:863.600000pt;}
.y9{bottom:867.600000pt;}
.y45{bottom:871.600000pt;}
.y18b{bottom:881.933333pt;}
.y1f{bottom:883.933333pt;}
.yec{bottom:885.266667pt;}
.y8{bottom:889.266667pt;}
.y43{bottom:891.266667pt;}
.y12e{bottom:895.600000pt;}
.y44{bottom:895.933333pt;}
.y76{bottom:905.933333pt;}
.y41{bottom:910.600000pt;}
.yc{bottom:912.600000pt;}
.y7{bottom:913.266667pt;}
.y42{bottom:915.266667pt;}
.y15a{bottom:915.933333pt;}
.ye7{bottom:919.266667pt;}
.y1e{bottom:924.266667pt;}
.y75{bottom:925.600000pt;}
.y12c{bottom:929.266667pt;}
.y40{bottom:929.933333pt;}
.ya3{bottom:940.266667pt;}
.y6{bottom:943.600000pt;}
.y74{bottom:944.933333pt;}
.ye6{bottom:952.266667pt;}
.yc1{bottom:959.626667pt;}
.y128{bottom:962.293333pt;}
.y1d{bottom:963.293333pt;}
.y3f{bottom:964.960000pt;}
.y73{bottom:975.626667pt;}
.ye5{bottom:978.293333pt;}
.y1c{bottom:982.626667pt;}
.y18{bottom:1043.626667pt;}
.y17{bottom:1060.626667pt;}
.h2e{height:2.247396pt;}
.h21{height:2.791667pt;}
.h1a{height:16.666667pt;}
.h2b{height:19.000000pt;}
.h4a{height:26.666667pt;}
.h12{height:27.916667pt;}
.h30{height:30.666667pt;}
.h42{height:30.686667pt;}
.h3{height:30.700000pt;}
.h15{height:30.708333pt;}
.h36{height:31.614583pt;}
.h43{height:32.000000pt;}
.h32{height:32.033333pt;}
.h3f{height:32.333333pt;}
.h18{height:32.353333pt;}
.h3d{height:32.366667pt;}
.h1b{height:32.700000pt;}
.h35{height:33.000000pt;}
.h2d{height:33.333333pt;}
.h2f{height:33.353333pt;}
.h39{height:33.366667pt;}
.h48{height:33.500000pt;}
.h4e{height:35.000000pt;}
.h16{height:36.000000pt;}
.h24{height:36.033333pt;}
.h11{height:36.291667pt;}
.h50{height:37.000000pt;}
.h4f{height:37.033333pt;}
.h49{height:37.166667pt;}
.h4b{height:40.033333pt;}
.h4d{height:40.333333pt;}
.h31{height:40.453125pt;}
.h13{height:44.666667pt;}
.h14{height:44.947917pt;}
.h41{height:46.033333pt;}
.he{height:47.458333pt;}
.h51{height:47.958333pt;}
.h3b{height:48.366667pt;}
.h19{height:48.666667pt;}
.h4c{height:49.442708pt;}
.h4{height:50.250000pt;}
.h1c{height:50.333333pt;}
.h3c{height:53.937500pt;}
.hf{height:55.833333pt;}
.h2{height:58.625000pt;}
.h1d{height:60.300089pt;}
.h46{height:61.000000pt;}
.h1e{height:61.416667pt;}
.h45{height:62.033333pt;}
.h34{height:64.333333pt;}
.h3a{height:64.666667pt;}
.h37{height:64.700000pt;}
.h23{height:65.781915pt;}
.h17{height:67.000000pt;}
.h6{height:74.265625pt;}
.h7{height:78.166667pt;}
.h9{height:80.000000pt;}
.h1f{height:81.020000pt;}
.hd{height:89.333333pt;}
.h47{height:97.020000pt;}
.h44{height:98.666667pt;}
.h3e{height:98.686667pt;}
.h2a{height:130.700000pt;}
.h10{height:134.000000pt;}
.h38{height:135.066667pt;}
.h33{height:135.360000pt;}
.h8{height:139.693333pt;}
.hb{height:144.000000pt;}
.h40{height:145.386667pt;}
.h2c{height:166.706667pt;}
.h29{height:179.400000pt;}
.h27{height:179.733333pt;}
.h25{height:183.040000pt;}
.h5{height:192.100000pt;}
.ha{height:236.400000pt;}
.h26{height:261.093333pt;}
.h20{height:261.760000pt;}
.h28{height:277.093333pt;}
.hc{height:279.093333pt;}
.h22{height:378.773333pt;}
.h0{height:1122.333333pt;}
.h1{height:1122.666667pt;}
.we{width:55.666667pt;}
.wc{width:82.700000pt;}
.w15{width:84.733333pt;}
.w13{width:88.033333pt;}
.wd{width:104.733333pt;}
.w12{width:138.400000pt;}
.wa{width:155.733333pt;}
.w2{width:203.400000pt;}
.w14{width:213.400000pt;}
.w16{width:213.733333pt;}
.w3{width:215.426667pt;}
.wf{width:241.773333pt;}
.wb{width:298.093333pt;}
.w4{width:441.173333pt;}
.w11{width:600.560000pt;}
.w8{width:631.933333pt;}
.w9{width:642.933333pt;}
.w10{width:643.600000pt;}
.w7{width:646.266667pt;}
.w5{width:672.933333pt;}
.w6{width:793.999976pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:7.000000pt;}
.x7{left:9.653333pt;}
.x30{left:11.000000pt;}
.x33{left:12.000000pt;}
.x31{left:14.333333pt;}
.x20{left:15.333333pt;}
.x39{left:16.666667pt;}
.x35{left:19.333333pt;}
.x38{left:20.333333pt;}
.x26{left:22.333333pt;}
.x32{left:24.000000pt;}
.x3b{left:25.000000pt;}
.x25{left:26.693333pt;}
.x2e{left:27.666667pt;}
.x3e{left:29.000000pt;}
.x1b{left:31.000000pt;}
.x3d{left:32.000000pt;}
.x3c{left:33.333333pt;}
.x40{left:34.666667pt;}
.x3f{left:40.333333pt;}
.x2b{left:41.360000pt;}
.x22{left:43.000000pt;}
.x36{left:45.333333pt;}
.x28{left:47.666667pt;}
.x3a{left:49.666667pt;}
.x5{left:53.000000pt;}
.x2{left:54.033322pt;}
.x8{left:55.033333pt;}
.x16{left:56.366655pt;}
.x17{left:57.699988pt;}
.x18{left:58.699988pt;}
.x4{left:61.666667pt;}
.x9{left:64.699988pt;}
.x37{left:69.360000pt;}
.x44{left:71.033333pt;}
.x2c{left:72.026667pt;}
.x2d{left:76.693333pt;}
.x34{left:77.700000pt;}
.x27{left:84.366667pt;}
.x2a{left:87.360000pt;}
.x2f{left:91.066667pt;}
.x41{left:142.733333pt;}
.xe{left:179.066643pt;}
.xf{left:184.399988pt;}
.x21{left:210.773333pt;}
.x1e{left:226.433333pt;}
.x1c{left:228.100000pt;}
.x15{left:246.106655pt;}
.x29{left:267.106667pt;}
.x1a{left:274.433333pt;}
.x1f{left:280.433333pt;}
.x3{left:292.466667pt;}
.x1d{left:304.473333pt;}
.x42{left:356.800000pt;}
.xa{left:391.839976pt;}
.xb{left:395.173322pt;}
.x10{left:438.533322pt;}
.x43{left:441.533333pt;}
.x23{left:509.533333pt;}
.x45{left:534.226643pt;}
.x46{left:539.226655pt;}
.x6{left:549.906667pt;}
.xc{left:557.573310pt;}
.xd{left:562.559988pt;}
.x24{left:592.906667pt;}
.x13{left:629.266643pt;}
.x14{left:634.266655pt;}
.x11{left:656.266643pt;}
.x12{left:661.599988pt;}
.x1{left:698.293322pt;}
}




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