
    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_40125f1dc1dfd52ef12ab32d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_54fbb7d180aca35df4432e7f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2bdbd659b5e837ecf4b79d63.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c202e5330fe610a07d1f3a9c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_1779fac575a0c9078fae4bec.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_632697f6eb7132dc9238637d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_8f997c19809c1075fdf509f7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940918;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_491a90b343770fba191e2c5c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_fdabc621288b1406874b471a.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7352804c4860bd83dd41fe7e.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b700a748babaaa7df171dc4c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.767578;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_8f499510f76efa46109308e5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_50ac9e1264c1faab30f1c196.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.913574;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_efc22a0e957ceb05bab4a69f.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_3cb426ce875f10dc118ed1c0.woff2')format("woff");}.fff{font-family:fff;line-height:0.853027;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v2{vertical-align:-24.240000px;}
.v1{vertical-align:-16.140000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:17.999991px;}
.v3{vertical-align:64.080000px;}
.ls21{letter-spacing:-0.936000px;}
.ls3{letter-spacing:-0.288000px;}
.ls1{letter-spacing:-0.262200px;}
.lsb{letter-spacing:-0.216000px;}
.ls26{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.107400px;}
.ls1f{letter-spacing:-0.072000px;}
.ls17{letter-spacing:-0.058320px;}
.ls18{letter-spacing:-0.018000px;}
.lsc{letter-spacing:-0.017280px;}
.ls9{letter-spacing:-0.008640px;}
.ls0{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.066000px;}
.ls1e{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.149760px;}
.ls19{letter-spacing:0.169200px;}
.ls12{letter-spacing:0.175200px;}
.lse{letter-spacing:0.177600px;}
.ls13{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.216000px;}
.ls20{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.306000px;}
.lsd{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.504000px;}
.lsa{letter-spacing:0.720000px;}
.ls22{letter-spacing:0.845760px;}
.ls1a{letter-spacing:0.989760px;}
.ls25{letter-spacing:2.160000px;}
.ls2{letter-spacing:3.720000px;}
.ls4{letter-spacing:4.469760px;}
.ls24{letter-spacing:5.189760px;}
.ls1d{letter-spacing:13.109760px;}
.ls16{letter-spacing:13.387680px;}
.ls8{letter-spacing:28.062720px;}
.ls23{letter-spacing:28.949760px;}
.ls15{letter-spacing:141.120000px;}
.ls6{letter-spacing:194.376000px;}
.ls1b{letter-spacing:197.405760px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws17{word-spacing:-66.240000px;}
.ws5{word-spacing:-19.440000px;}
.ws6{word-spacing:-19.431360px;}
.ws8{word-spacing:-19.422720px;}
.ws16{word-spacing:-18.720000px;}
.ws12{word-spacing:-18.504000px;}
.ws1f{word-spacing:-18.288000px;}
.ws1c{word-spacing:-18.216000px;}
.ws4{word-spacing:-18.144000px;}
.ws1d{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws1e{word-spacing:-17.928000px;}
.ws21{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.712000px;}
.ws20{word-spacing:-17.064000px;}
.ws0{word-spacing:-16.297800px;}
.ws9{word-spacing:-15.300000px;}
.ws13{word-spacing:-14.970240px;}
.ws1b{word-spacing:-14.319360px;}
.ws14{word-spacing:-13.811760px;}
.wsa{word-spacing:-13.683360px;}
.ws19{word-spacing:-13.674960px;}
.wsb{word-spacing:-13.505760px;}
.ws15{word-spacing:-13.398360px;}
.ws1a{word-spacing:-9.112320px;}
.ws1{word-spacing:0.000000px;}
.wsc{word-spacing:84.597120px;}
.wsd{word-spacing:94.001760px;}
.ws18{word-spacing:105.652560px;}
.ws11{word-spacing:351.612000px;}
.wsf{word-spacing:393.890880px;}
.ws10{word-spacing:424.069200px;}
.wse{word-spacing:424.189200px;}
._f{margin-left:-4.464000px;}
._7{margin-left:-3.240000px;}
._8{margin-left:-2.116800px;}
._1{margin-left:-1.059840px;}
._0{width:1.226880px;}
._9{width:2.831520px;}
._6{width:4.147680px;}
._4{width:5.400000px;}
._5{width:6.984000px;}
._a{width:8.004000px;}
._1a{width:9.022080px;}
._12{width:10.059840px;}
._2{width:11.376000px;}
._3{width:12.666240px;}
._b{width:13.976640px;}
._c{width:15.048000px;}
._d{width:16.416000px;}
._e{width:19.047840px;}
._10{width:20.160000px;}
._17{width:21.456000px;}
._13{width:22.824000px;}
._14{width:23.832000px;}
._1e{width:25.704000px;}
._18{width:27.000000px;}
._19{width:28.407360px;}
._1c{width:29.654400px;}
._1d{width:30.816000px;}
._15{width:31.824000px;}
._16{width:33.117120px;}
._1b{width:34.747200px;}
._26{width:36.384000px;}
._25{width:37.632000px;}
._27{width:40.248000px;}
._28{width:41.544000px;}
._29{width:42.780000px;}
._2c{width:45.477360px;}
._2d{width:46.751040px;}
._2b{width:48.525120px;}
._1f{width:59.760000px;}
._2a{width:87.875280px;}
._30{width:90.912000px;}
._31{width:92.280000px;}
._22{width:143.054400px;}
._23{width:144.186240px;}
._2e{width:162.959520px;}
._2f{width:176.376000px;}
._24{width:191.640000px;}
._11{width:194.376000px;}
._21{width:359.418000px;}
._20{width:380.448000px;}
.fc4{color:rgb(255,0,0);}
.fc1{color:transparent;}
.fc3{color:rgb(68,84,106);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:40.320000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs7{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs9{font-size:95.760000px;}
.fs3{font-size:120.240000px;}
.fs4{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y133{bottom:6.660000px;}
.y192{bottom:12.600000px;}
.y10d{bottom:12.960000px;}
.y110{bottom:13.140000px;}
.y15a{bottom:14.220000px;}
.y11b{bottom:14.400000px;}
.y109{bottom:14.580000px;}
.y159{bottom:16.560000px;}
.ydd{bottom:18.435000px;}
.yc0{bottom:18.900000px;}
.y103{bottom:20.700000px;}
.y139{bottom:25.380000px;}
.y136{bottom:27.720000px;}
.y132{bottom:27.765000px;}
.y1a1{bottom:28.050000px;}
.y193{bottom:33.990000px;}
.y10c{bottom:40.500000px;}
.y115{bottom:40.545000px;}
.y12e{bottom:40.680000px;}
.y137{bottom:46.440000px;}
.y1a0{bottom:47.265000px;}
.y135{bottom:48.780000px;}
.y131{bottom:48.825000px;}
.y100{bottom:49.500000px;}
.y194{bottom:55.410000px;}
.y2{bottom:57.420000px;}
.y12d{bottom:65.700000px;}
.yfb{bottom:66.090000px;}
.y134{bottom:67.545000px;}
.y10b{bottom:67.860000px;}
.y10f{bottom:68.040000px;}
.y114{bottom:68.085000px;}
.y130{bottom:69.885000px;}
.y19c{bottom:74.130000px;}
.y1{bottom:76.320000px;}
.y195{bottom:76.785000px;}
.y19f{bottom:83.730000px;}
.y196{bottom:98.175000px;}
.yfc{bottom:99.690000px;}
.ydb{bottom:104.760000px;}
.yfa{bottom:105.270000px;}
.yf5{bottom:109.620000px;}
.ye0{bottom:111.135000px;}
.yd8{bottom:111.816000px;}
.y16b{bottom:113.976000px;}
.ybe{bottom:114.156000px;}
.y1f1{bottom:114.336000px;}
.yf7{bottom:118.005000px;}
.y197{bottom:119.550000px;}
.y19e{bottom:120.210000px;}
.y40{bottom:121.356000px;}
.y1bd{bottom:122.436000px;}
.y5c{bottom:125.316000px;}
.y1c9{bottom:126.396000px;}
.y92{bottom:126.576000px;}
.yfd{bottom:133.305000px;}
.y18f{bottom:134.205000px;}
.y152{bottom:135.216000px;}
.y198{bottom:140.970000px;}
.ye{bottom:141.336000px;}
.yd7{bottom:142.776000px;}
.yf4{bottom:142.890000px;}
.y73{bottom:144.396000px;}
.y16a{bottom:144.936000px;}
.ydf{bottom:145.260000px;}
.ybd{bottom:145.296000px;}
.y50{bottom:145.476000px;}
.ydc{bottom:148.650000px;}
.y26{bottom:149.616000px;}
.yf1{bottom:151.410000px;}
.y1bc{bottom:153.570000px;}
.yf9{bottom:153.975000px;}
.y18d{bottom:154.290000px;}
.y190{bottom:155.595000px;}
.y19d{bottom:156.675000px;}
.y1e6{bottom:157.350000px;}
.y91{bottom:157.710000px;}
.y119{bottom:159.690000px;}
.y199{bottom:162.360000px;}
.y3f{bottom:164.550000px;}
.y13a{bottom:164.730000px;}
.y151{bottom:166.170000px;}
.yfe{bottom:166.890000px;}
.y1c8{bottom:169.410000px;}
.y5b{bottom:173.550000px;}
.yd6{bottom:173.910000px;}
.yd{bottom:175.170000px;}
.ybc{bottom:176.250000px;}
.y191{bottom:177.015000px;}
.y1a7{bottom:178.770000px;}
.y19a{bottom:183.750000px;}
.y1bb{bottom:184.530000px;}
.y72{bottom:187.410000px;}
.y169{bottom:187.950000px;}
.yf6{bottom:188.205000px;}
.y4f{bottom:188.490000px;}
.y90{bottom:188.670000px;}
.y118{bottom:190.650000px;}
.y17a{bottom:191.370000px;}
.y25{bottom:192.630000px;}
.yf0{bottom:194.430000px;}
.y1db{bottom:195.510000px;}
.ybf{bottom:197.130000px;}
.y150{bottom:197.310000px;}
.ye1{bottom:197.490000px;}
.yf3{bottom:200.340000px;}
.yff{bottom:200.520000px;}
.y1e5{bottom:200.550000px;}
.yf8{bottom:201.090000px;}
.y19b{bottom:205.170000px;}
.yda{bottom:206.025000px;}
.ybb{bottom:207.390000px;}
.y3e{bottom:207.570000px;}
.yc{bottom:208.830000px;}
.y1c7{bottom:212.430000px;}
.y1a6{bottom:213.330000px;}
.yd5{bottom:216.930000px;}
.y168{bottom:219.090000px;}
.y1f0{bottom:219.450000px;}
.y8f{bottom:219.810000px;}
.y5a{bottom:221.790000px;}
.y179{bottom:222.330000px;}
.yef{bottom:225.390000px;}
.y1ba{bottom:227.730000px;}
.y138{bottom:227.910000px;}
.y14f{bottom:228.270000px;}
.y101{bottom:229.605000px;}
.y71{bottom:230.610000px;}
.y4e{bottom:231.510000px;}
.y24{bottom:235.650000px;}
.yba{bottom:238.350000px;}
.y1da{bottom:238.530000px;}
.y1e4{bottom:243.570000px;}
.yde{bottom:243.720000px;}
.yd9{bottom:244.620000px;}
.y1a5{bottom:249.690000px;}
.y167{bottom:250.050000px;}
.y3d{bottom:250.590000px;}
.yb{bottom:250.770000px;}
.y178{bottom:253.470000px;}
.y1c6{bottom:255.450000px;}
.yee{bottom:256.530000px;}
.y1b9{bottom:258.690000px;}
.y18c{bottom:259.410000px;}
.yd4{bottom:259.950000px;}
.y1ef{bottom:262.650000px;}
.y117{bottom:264.810000px;}
.yb9{bottom:269.490000px;}
.y1d9{bottom:269.670000px;}
.y59{bottom:270.030000px;}
.y14e{bottom:271.470000px;}
.y70{bottom:273.630000px;}
.y4d{bottom:274.530000px;}
.y23{bottom:278.850000px;}
.y166{bottom:281.190000px;}
.y8e{bottom:281.910000px;}
.y177{bottom:284.430000px;}
.yed{bottom:287.490000px;}
.y1b8{bottom:289.830000px;}
.y18b{bottom:290.370000px;}
.y3c{bottom:293.610000px;}
.ya{bottom:293.790000px;}
.y1c5{bottom:298.650000px;}
.yb8{bottom:300.450000px;}
.y14d{bottom:302.430000px;}
.yd3{bottom:302.970000px;}
.y1e3{bottom:305.670000px;}
.y116{bottom:306.750000px;}
.y165{bottom:312.150000px;}
.y1d8{bottom:312.690000px;}
.y8d{bottom:312.870000px;}
.y6f{bottom:316.650000px;}
.y4c{bottom:317.550000px;}
.y58{bottom:318.270000px;}
.y1b7{bottom:320.790000px;}
.y18a{bottom:321.510000px;}
.y113{bottom:321.690000px;}
.y22{bottom:321.870000px;}
.y176{bottom:327.450000px;}
.yec{bottom:330.510000px;}
.yb7{bottom:331.410000px;}
.y12f{bottom:333.210000px;}
.y14c{bottom:333.390000px;}
.y3b{bottom:336.630000px;}
.y9{bottom:336.810000px;}
.y1c4{bottom:341.670000px;}
.y164{bottom:343.290000px;}
.y8c{bottom:344.010000px;}
.yd2{bottom:346.170000px;}
.y1e2{bottom:348.690000px;}
.y1b6{bottom:351.975000px;}
.y189{bottom:352.515000px;}
.y1d7{bottom:355.755000px;}
.y175{bottom:358.635000px;}
.y6e{bottom:359.715000px;}
.y4b{bottom:360.795000px;}
.yeb{bottom:361.695000px;}
.yb6{bottom:362.595000px;}
.y14b{bottom:364.575000px;}
.y21{bottom:364.935000px;}
.y57{bottom:366.555000px;}
.y1ee{bottom:367.815000px;}
.y1c3{bottom:372.675000px;}
.y163{bottom:374.295000px;}
.y8b{bottom:375.015000px;}
.y3a{bottom:379.695000px;}
.y1b5{bottom:382.935000px;}
.y188{bottom:383.655000px;}
.y1d6{bottom:386.895000px;}
.yd1{bottom:389.235000px;}
.y174{bottom:389.595000px;}
.y1e1{bottom:391.755000px;}
.yea{bottom:392.655000px;}
.y1ed{bottom:398.775000px;}
.y6d{bottom:402.735000px;}
.y4a{bottom:403.815000px;}
.y112{bottom:404.175000px;}
.yb5{bottom:405.615000px;}
.y14a{bottom:407.595000px;}
.y20{bottom:407.955000px;}
.y187{bottom:414.435000px;}
.y56{bottom:414.795000px;}
.y162{bottom:417.495000px;}
.y8a{bottom:418.215000px;}
.y12c{bottom:419.655000px;}
.y173{bottom:420.735000px;}
.y39{bottom:422.895000px;}
.y1b4{bottom:425.955000px;}
.y1d5{bottom:429.915000px;}
.yd0{bottom:432.255000px;}
.y1c2{bottom:434.775000px;}
.ye9{bottom:435.675000px;}
.y149{bottom:438.735000px;}
.y1ec{bottom:441.795000px;}
.y6c{bottom:445.755000px;}
.y49{bottom:446.835000px;}
.y161{bottom:448.455000px;}
.yb4{bottom:448.635000px;}
.y89{bottom:449.175000px;}
.y1f{bottom:450.975000px;}
.y172{bottom:451.695000px;}
.y1e0{bottom:453.855000px;}
.y1b3{bottom:457.095000px;}
.y55{bottom:463.035000px;}
.y186{bottom:463.755000px;}
.y38{bottom:465.915000px;}
.ye8{bottom:466.815000px;}
.y148{bottom:469.695000px;}
.y1d4{bottom:472.935000px;}
.ycf{bottom:475.275000px;}
.y48{bottom:477.795000px;}
.y160{bottom:479.595000px;}
.yb3{bottom:479.775000px;}
.y88{bottom:480.315000px;}
.y171{bottom:482.835000px;}
.y1df{bottom:484.995000px;}
.y111{bottom:486.615000px;}
.y1b2{bottom:488.055000px;}
.y6b{bottom:488.955000px;}
.y1e{bottom:493.995000px;}
.y185{bottom:494.715000px;}
.ye7{bottom:497.775000px;}
.y147{bottom:500.835000px;}
.y1d3{bottom:503.895000px;}
.y37{bottom:508.935000px;}
.y15f{bottom:510.555000px;}
.yb2{bottom:510.735000px;}
.y87{bottom:511.275000px;}
.y12b{bottom:515.955000px;}
.yce{bottom:518.295000px;}
.y47{bottom:520.995000px;}
.y170{bottom:525.855000px;}
.y1de{bottom:528.015000px;}
.ye6{bottom:528.915000px;}
.y1b1{bottom:531.075000px;}
.y146{bottom:531.795000px;}
.y6a{bottom:531.975000px;}
.y1d2{bottom:535.035000px;}
.y1d{bottom:537.015000px;}
.y36{bottom:539.895000px;}
.y10e{bottom:541.515000px;}
.yb1{bottom:541.875000px;}
.y86{bottom:542.235000px;}
.y1eb{bottom:546.915000px;}
.ycd{bottom:549.435000px;}
.ya2{bottom:551.955000px;}
.y12a{bottom:556.635000px;}
.y184{bottom:556.815000px;}
.y16f{bottom:556.995000px;}
.y1f2{bottom:558.975000px;}
.ye5{bottom:559.875000px;}
.y1b0{bottom:562.215000px;}
.y46{bottom:564.015000px;}
.y35{bottom:571.035000px;}
.yb0{bottom:572.835000px;}
.y85{bottom:573.375000px;}
.y145{bottom:574.815000px;}
.y69{bottom:574.995000px;}
.y1d1{bottom:578.055000px;}
.y1c{bottom:580.215000px;}
.ycc{bottom:580.395000px;}
.y54{bottom:582.915000px;}
.y129{bottom:587.775000px;}
.y16e{bottom:587.955000px;}
.y1ea{bottom:590.115000px;}
.y1af{bottom:593.175000px;}
.y45{bottom:594.975000px;}
.y34{bottom:601.995000px;}
.ye4{bottom:603.075000px;}
.yaf{bottom:603.975000px;}
.y84{bottom:604.335000px;}
.y15e{bottom:607.035000px;}
.y183{bottom:610.275000px;}
.ycb{bottom:611.565000px;}
.y1c1{bottom:614.085000px;}
.y102{bottom:616.605000px;}
.y144{bottom:616.785000px;}
.y68{bottom:618.045000px;}
.y128{bottom:618.765000px;}
.y16d{bottom:618.945000px;}
.y1d0{bottom:621.105000px;}
.y1b{bottom:623.265000px;}
.y10a{bottom:623.985000px;}
.y1ae{bottom:624.345000px;}
.y44{bottom:626.145000px;}
.y158{bottom:631.905000px;}
.y1dd{bottom:633.165000px;}
.yae{bottom:634.965000px;}
.y83{bottom:635.505000px;}
.ya1{bottom:638.025000px;}
.y33{bottom:645.045000px;}
.ye3{bottom:646.125000px;}
.y127{bottom:649.905000px;}
.y15d{bottom:650.085000px;}
.y1cf{bottom:652.245000px;}
.y182{bottom:653.325000px;}
.yca{bottom:654.585000px;}
.y1ad{bottom:655.305000px;}
.y43{bottom:657.105000px;}
.y67{bottom:661.065000px;}
.y157{bottom:662.865000px;}
.y1e9{bottom:664.125000px;}
.yf2{bottom:664.740000px;}
.yad{bottom:666.105000px;}
.y1a{bottom:666.285000px;}
.y82{bottom:666.465000px;}
.y1a4{bottom:670.245000px;}
.y32{bottom:676.185000px;}
.y126{bottom:680.865000px;}
.ya0{bottom:681.045000px;}
.y1ce{bottom:683.205000px;}
.yc9{bottom:685.545000px;}
.y1ac{bottom:686.445000px;}
.y42{bottom:688.245000px;}
.y156{bottom:690.405000px;}
.y1e8{bottom:695.265000px;}
.y181{bottom:696.345000px;}
.y66{bottom:704.085000px;}
.y1c0{bottom:707.145000px;}
.y108{bottom:708.585000px;}
.yac{bottom:709.125000px;}
.y19{bottom:709.305000px;}
.y81{bottom:709.665000px;}
.y125{bottom:712.005000px;}
.y15c{bottom:712.185000px;}
.yc8{bottom:716.685000px;}
.y155{bottom:717.765000px;}
.y31{bottom:719.205000px;}
.y9f{bottom:724.245000px;}
.y1cd{bottom:726.225000px;}
.y180{bottom:727.485000px;}
.y1ab{bottom:729.465000px;}
.y1e7{bottom:738.285000px;}
.y80{bottom:740.625000px;}
.y124{bottom:742.965000px;}
.y15b{bottom:743.145000px;}
.y154{bottom:745.305000px;}
.y65{bottom:747.105000px;}
.yc7{bottom:747.645000px;}
.y30{bottom:750.345000px;}
.yab{bottom:752.145000px;}
.y18{bottom:752.325000px;}
.y107{bottom:752.685000px;}
.y9e{bottom:755.205000px;}
.y17f{bottom:758.445000px;}
.y1cc{bottom:769.245000px;}
.y7f{bottom:771.765000px;}
.y1aa{bottom:772.665000px;}
.y1a3{bottom:774.285000px;}
.y153{bottom:775.005000px;}
.y123{bottom:777.345000px;}
.yc6{bottom:778.785000px;}
.y53{bottom:781.305000px;}
.yaa{bottom:783.105000px;}
.y9d{bottom:786.345000px;}
.y17e{bottom:789.405000px;}
.y64{bottom:790.305000px;}
.y122{bottom:792.285000px;}
.y2f{bottom:793.365000px;}
.y17{bottom:795.345000px;}
.y1cb{bottom:800.385000px;}
.y7e{bottom:802.725000px;}
.y1a2{bottom:805.245000px;}
.y1a9{bottom:807.225000px;}
.y1bf{bottom:812.445000px;}
.y143{bottom:816.405000px;}
.y9c{bottom:817.305000px;}
.y17d{bottom:820.545000px;}
.yc5{bottom:821.805000px;}
.y2e{bottom:824.325000px;}
.ya9{bottom:827.205000px;}
.y8{bottom:830.265000px;}
.y1ca{bottom:831.345000px;}
.y63{bottom:833.325000px;}
.y7d{bottom:833.865000px;}
.y16{bottom:838.545000px;}
.y1be{bottom:843.405000px;}
.y1a8{bottom:843.765000px;}
.y121{bottom:847.185000px;}
.y9b{bottom:848.445000px;}
.yc4{bottom:852.765000px;}
.y2d{bottom:855.465000px;}
.y142{bottom:857.085000px;}
.y17c{bottom:865.365000px;}
.y1dc{bottom:867.345000px;}
.ya8{bottom:871.845000px;}
.y120{bottom:874.590000px;}
.y62{bottom:876.390000px;}
.y7c{bottom:876.930000px;}
.y9a{bottom:879.450000px;}
.y15{bottom:881.610000px;}
.yc3{bottom:883.950000px;}
.y52{bottom:886.470000px;}
.y7{bottom:887.910000px;}
.y2c{bottom:898.530000px;}
.y141{bottom:900.150000px;}
.y11f{bottom:902.130000px;}
.y17b{bottom:905.010000px;}
.y7b{bottom:907.890000px;}
.y99{bottom:910.590000px;}
.ya7{bottom:914.910000px;}
.y106{bottom:917.610000px;}
.y61{bottom:919.410000px;}
.y14{bottom:924.630000px;}
.y2b{bottom:929.490000px;}
.y11e{bottom:929.670000px;}
.y18e{bottom:931.140000px;}
.y140{bottom:931.290000px;}
.y7a{bottom:939.030000px;}
.y98{bottom:941.550000px;}
.ya6{bottom:946.050000px;}
.y105{bottom:948.570000px;}
.y16c{bottom:953.610000px;}
.y6{bottom:956.850000px;}
.y2a{bottom:960.630000px;}
.y13f{bottom:962.250000px;}
.y60{bottom:962.430000px;}
.y13{bottom:967.650000px;}
.y79{bottom:969.990000px;}
.ye2{bottom:972.510000px;}
.yc2{bottom:977.010000px;}
.y104{bottom:979.710000px;}
.y97{bottom:984.570000px;}
.ya5{bottom:989.070000px;}
.y41{bottom:991.590000px;}
.y13e{bottom:993.210000px;}
.y78{bottom:1001.130000px;}
.y29{bottom:1003.650000px;}
.y5f{bottom:1005.450000px;}
.yc1{bottom:1008.150000px;}
.y12{bottom:1010.670000px;}
.y11d{bottom:1011.930000px;}
.y5{bottom:1013.910000px;}
.y96{bottom:1015.710000px;}
.ya4{bottom:1020.030000px;}
.y51{bottom:1022.730000px;}
.y13d{bottom:1024.350000px;}
.y77{bottom:1032.090000px;}
.y28{bottom:1034.610000px;}
.y11c{bottom:1039.470000px;}
.y95{bottom:1046.670000px;}
.y5e{bottom:1048.650000px;}
.ya3{bottom:1051.170000px;}
.y11{bottom:1053.690000px;}
.y13c{bottom:1055.310000px;}
.y76{bottom:1063.230000px;}
.y27{bottom:1065.750000px;}
.y94{bottom:1077.810000px;}
.y4{bottom:1080.330000px;}
.y13b{bottom:1086.450000px;}
.y5d{bottom:1091.670000px;}
.y75{bottom:1094.190000px;}
.y10{bottom:1096.710000px;}
.y93{bottom:1108.770000px;}
.y3{bottom:1137.060000px;}
.y74{bottom:1138.320000px;}
.yf{bottom:1139.940000px;}
.y11a{bottom:1142.280000px;}
.h21{height:27.360000px;}
.h22{height:27.396000px;}
.h20{height:27.540000px;}
.h1f{height:30.060000px;}
.h18{height:30.240000px;}
.h28{height:30.960000px;}
.hc{height:33.300000px;}
.h17{height:35.100000px;}
.h27{height:42.120000px;}
.h26{height:45.316055px;}
.h14{height:53.709961px;}
.h1d{height:54.900000px;}
.h15{height:56.320312px;}
.h23{height:56.900391px;}
.h2{height:58.651172px;}
.h13{height:59.439023px;}
.hd{height:61.189805px;}
.h10{height:63.019687px;}
.h19{height:63.070312px;}
.h25{height:63.180000px;}
.hb{height:64.546875px;}
.h8{height:65.010937px;}
.h3{height:65.884219px;}
.h29{height:70.628906px;}
.h9{height:70.664062px;}
.h1b{height:71.613281px;}
.h7{height:72.562500px;}
.he{height:78.367500px;}
.ha{height:80.949375px;}
.h1a{height:82.260000px;}
.h1e{height:82.440000px;}
.h1c{height:82.476000px;}
.h24{height:84.276000px;}
.h4{height:84.898125px;}
.h16{height:98.051133px;}
.h5{height:121.179375px;}
.h2b{height:123.519023px;}
.h6{height:132.789375px;}
.h2a{height:225.540000px;}
.h11{height:226.080000px;}
.hf{height:227.160000px;}
.h12{height:263.700000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:138.240000px;}
.wd{width:138.276000px;}
.w14{width:158.970000px;}
.w13{width:159.150000px;}
.w12{width:159.690000px;}
.w15{width:159.870000px;}
.w11{width:160.050000px;}
.w10{width:168.870000px;}
.wf{width:191.415000px;}
.wb{width:200.910000px;}
.w4{width:286.740000px;}
.w5{width:291.780000px;}
.wa{width:301.215000px;}
.w3{width:302.115000px;}
.w6{width:308.055000px;}
.w8{width:318.495000px;}
.w9{width:334.155000px;}
.wc{width:434.445000px;}
.w16{width:587.880000px;}
.w7{width:635.040000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x25{left:8.100000px;}
.x1d{left:9.900000px;}
.x1c{left:16.776000px;}
.x35{left:18.540000px;}
.x32{left:22.680000px;}
.x44{left:29.160000px;}
.x2e{left:36.720000px;}
.x2d{left:38.700000px;}
.x34{left:42.654000px;}
.x39{left:47.880000px;}
.x3e{left:49.314000px;}
.x3b{left:52.740000px;}
.x3f{left:55.260000px;}
.x37{left:56.694000px;}
.x30{left:58.350000px;}
.x3c{left:61.194000px;}
.x3a{left:62.814000px;}
.x27{left:69.114000px;}
.x38{left:70.380000px;}
.x15{left:73.725000px;}
.x3d{left:75.960000px;}
.xf{left:79.305000px;}
.x22{left:81.534000px;}
.x13{left:86.190000px;}
.xe{left:91.365000px;}
.x12{left:96.225000px;}
.x1e{left:106.815000px;}
.x18{left:113.835000px;}
.x24{left:120.465000px;}
.x14{left:121.536000px;}
.x2{left:127.655987px;}
.x42{left:129.270000px;}
.xc{left:130.710000px;}
.x41{left:151.560000px;}
.x7{left:154.649987px;}
.xd{left:156.630000px;}
.x11{left:162.255000px;}
.x4{left:165.989987px;}
.x29{left:173.730000px;}
.x2a{left:180.749987px;}
.x16{left:214.350000px;}
.x1f{left:215.715000px;}
.x43{left:234.180000px;}
.x47{left:246.494987px;}
.x33{left:250.274987px;}
.x19{left:252.795000px;}
.x2b{left:255.674987px;}
.x40{left:260.714987px;}
.x2c{left:265.935000px;}
.x26{left:270.254987px;}
.x21{left:279.074987px;}
.x20{left:286.815000px;}
.x1a{left:291.270000px;}
.x6{left:299.774987px;}
.x28{left:328.575000px;}
.x5{left:331.994987px;}
.x17{left:357.090000px;}
.x2f{left:404.175000px;}
.x45{left:421.590000px;}
.xa{left:426.884987px;}
.x1b{left:434.055000px;}
.xb{left:441.104987px;}
.x3{left:446.504987px;}
.x23{left:461.805000px;}
.x9{left:465.045000px;}
.x10{left:470.160000px;}
.x31{left:595.590000px;}
.x36{left:606.570000px;}
.x8{left:750.599987px;}
.x1{left:757.979987px;}
.x48{left:759.419987px;}
.x46{left:761.579987px;}
@media print{
.v2{vertical-align:-21.546667pt;}
.v1{vertical-align:-14.346667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:15.999992pt;}
.v3{vertical-align:56.960000pt;}
.ls21{letter-spacing:-0.832000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:-0.233067pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls26{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.095467pt;}
.ls1f{letter-spacing:-0.064000pt;}
.ls17{letter-spacing:-0.051840pt;}
.ls18{letter-spacing:-0.016000pt;}
.lsc{letter-spacing:-0.015360pt;}
.ls9{letter-spacing:-0.007680pt;}
.ls0{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.058667pt;}
.ls1e{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.133120pt;}
.ls19{letter-spacing:0.150400pt;}
.ls12{letter-spacing:0.155733pt;}
.lse{letter-spacing:0.157867pt;}
.ls13{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.192000pt;}
.ls20{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.272000pt;}
.lsd{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.448000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls22{letter-spacing:0.751787pt;}
.ls1a{letter-spacing:0.879787pt;}
.ls25{letter-spacing:1.920000pt;}
.ls2{letter-spacing:3.306667pt;}
.ls4{letter-spacing:3.973120pt;}
.ls24{letter-spacing:4.613120pt;}
.ls1d{letter-spacing:11.653120pt;}
.ls16{letter-spacing:11.900160pt;}
.ls8{letter-spacing:24.944640pt;}
.ls23{letter-spacing:25.733120pt;}
.ls15{letter-spacing:125.440000pt;}
.ls6{letter-spacing:172.778667pt;}
.ls1b{letter-spacing:175.471787pt;}
.ws17{word-spacing:-58.880000pt;}
.ws5{word-spacing:-17.280000pt;}
.ws6{word-spacing:-17.272320pt;}
.ws8{word-spacing:-17.264640pt;}
.ws16{word-spacing:-16.640000pt;}
.ws12{word-spacing:-16.448000pt;}
.ws1f{word-spacing:-16.256000pt;}
.ws1c{word-spacing:-16.192000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws1d{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws1e{word-spacing:-15.936000pt;}
.ws21{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws20{word-spacing:-15.168000pt;}
.ws0{word-spacing:-14.486933pt;}
.ws9{word-spacing:-13.600000pt;}
.ws13{word-spacing:-13.306880pt;}
.ws1b{word-spacing:-12.728320pt;}
.ws14{word-spacing:-12.277120pt;}
.wsa{word-spacing:-12.162987pt;}
.ws19{word-spacing:-12.155520pt;}
.wsb{word-spacing:-12.005120pt;}
.ws15{word-spacing:-11.909653pt;}
.ws1a{word-spacing:-8.099840pt;}
.ws1{word-spacing:0.000000pt;}
.wsc{word-spacing:75.197440pt;}
.wsd{word-spacing:83.557120pt;}
.ws18{word-spacing:93.913387pt;}
.ws11{word-spacing:312.544000pt;}
.wsf{word-spacing:350.125227pt;}
.ws10{word-spacing:376.950400pt;}
.wse{word-spacing:377.057067pt;}
._f{margin-left:-3.968000pt;}
._7{margin-left:-2.880000pt;}
._8{margin-left:-1.881600pt;}
._1{margin-left:-0.942080pt;}
._0{width:1.090560pt;}
._9{width:2.516907pt;}
._6{width:3.686827pt;}
._4{width:4.800000pt;}
._5{width:6.208000pt;}
._a{width:7.114667pt;}
._1a{width:8.019627pt;}
._12{width:8.942080pt;}
._2{width:10.112000pt;}
._3{width:11.258880pt;}
._b{width:12.423680pt;}
._c{width:13.376000pt;}
._d{width:14.592000pt;}
._e{width:16.931413pt;}
._10{width:17.920000pt;}
._17{width:19.072000pt;}
._13{width:20.288000pt;}
._14{width:21.184000pt;}
._1e{width:22.848000pt;}
._18{width:24.000000pt;}
._19{width:25.250987pt;}
._1c{width:26.359467pt;}
._1d{width:27.392000pt;}
._15{width:28.288000pt;}
._16{width:29.437440pt;}
._1b{width:30.886400pt;}
._26{width:32.341333pt;}
._25{width:33.450667pt;}
._27{width:35.776000pt;}
._28{width:36.928000pt;}
._29{width:38.026667pt;}
._2c{width:40.424320pt;}
._2d{width:41.556480pt;}
._2b{width:43.133440pt;}
._1f{width:53.120000pt;}
._2a{width:78.111360pt;}
._30{width:80.810667pt;}
._31{width:82.026667pt;}
._22{width:127.159467pt;}
._23{width:128.165547pt;}
._2e{width:144.852907pt;}
._2f{width:156.778667pt;}
._24{width:170.346667pt;}
._11{width:172.778667pt;}
._21{width:319.482667pt;}
._20{width:338.176000pt;}
.fsa{font-size:35.840000pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs7{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs9{font-size:85.120000pt;}
.fs3{font-size:106.880000pt;}
.fs4{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y133{bottom:5.920000pt;}
.y192{bottom:11.200000pt;}
.y10d{bottom:11.520000pt;}
.y110{bottom:11.680000pt;}
.y15a{bottom:12.640000pt;}
.y11b{bottom:12.800000pt;}
.y109{bottom:12.960000pt;}
.y159{bottom:14.720000pt;}
.ydd{bottom:16.386667pt;}
.yc0{bottom:16.800000pt;}
.y103{bottom:18.400000pt;}
.y139{bottom:22.560000pt;}
.y136{bottom:24.640000pt;}
.y132{bottom:24.680000pt;}
.y1a1{bottom:24.933333pt;}
.y193{bottom:30.213333pt;}
.y10c{bottom:36.000000pt;}
.y115{bottom:36.040000pt;}
.y12e{bottom:36.160000pt;}
.y137{bottom:41.280000pt;}
.y1a0{bottom:42.013333pt;}
.y135{bottom:43.360000pt;}
.y131{bottom:43.400000pt;}
.y100{bottom:44.000000pt;}
.y194{bottom:49.253333pt;}
.y2{bottom:51.040000pt;}
.y12d{bottom:58.400000pt;}
.yfb{bottom:58.746667pt;}
.y134{bottom:60.040000pt;}
.y10b{bottom:60.320000pt;}
.y10f{bottom:60.480000pt;}
.y114{bottom:60.520000pt;}
.y130{bottom:62.120000pt;}
.y19c{bottom:65.893333pt;}
.y1{bottom:67.840000pt;}
.y195{bottom:68.253333pt;}
.y19f{bottom:74.426667pt;}
.y196{bottom:87.266667pt;}
.yfc{bottom:88.613333pt;}
.ydb{bottom:93.120000pt;}
.yfa{bottom:93.573333pt;}
.yf5{bottom:97.440000pt;}
.ye0{bottom:98.786667pt;}
.yd8{bottom:99.392000pt;}
.y16b{bottom:101.312000pt;}
.ybe{bottom:101.472000pt;}
.y1f1{bottom:101.632000pt;}
.yf7{bottom:104.893333pt;}
.y197{bottom:106.266667pt;}
.y19e{bottom:106.853333pt;}
.y40{bottom:107.872000pt;}
.y1bd{bottom:108.832000pt;}
.y5c{bottom:111.392000pt;}
.y1c9{bottom:112.352000pt;}
.y92{bottom:112.512000pt;}
.yfd{bottom:118.493333pt;}
.y18f{bottom:119.293333pt;}
.y152{bottom:120.192000pt;}
.y198{bottom:125.306667pt;}
.ye{bottom:125.632000pt;}
.yd7{bottom:126.912000pt;}
.yf4{bottom:127.013333pt;}
.y73{bottom:128.352000pt;}
.y16a{bottom:128.832000pt;}
.ydf{bottom:129.120000pt;}
.ybd{bottom:129.152000pt;}
.y50{bottom:129.312000pt;}
.ydc{bottom:132.133333pt;}
.y26{bottom:132.992000pt;}
.yf1{bottom:134.586667pt;}
.y1bc{bottom:136.506667pt;}
.yf9{bottom:136.866667pt;}
.y18d{bottom:137.146667pt;}
.y190{bottom:138.306667pt;}
.y19d{bottom:139.266667pt;}
.y1e6{bottom:139.866667pt;}
.y91{bottom:140.186667pt;}
.y119{bottom:141.946667pt;}
.y199{bottom:144.320000pt;}
.y3f{bottom:146.266667pt;}
.y13a{bottom:146.426667pt;}
.y151{bottom:147.706667pt;}
.yfe{bottom:148.346667pt;}
.y1c8{bottom:150.586667pt;}
.y5b{bottom:154.266667pt;}
.yd6{bottom:154.586667pt;}
.yd{bottom:155.706667pt;}
.ybc{bottom:156.666667pt;}
.y191{bottom:157.346667pt;}
.y1a7{bottom:158.906667pt;}
.y19a{bottom:163.333333pt;}
.y1bb{bottom:164.026667pt;}
.y72{bottom:166.586667pt;}
.y169{bottom:167.066667pt;}
.yf6{bottom:167.293333pt;}
.y4f{bottom:167.546667pt;}
.y90{bottom:167.706667pt;}
.y118{bottom:169.466667pt;}
.y17a{bottom:170.106667pt;}
.y25{bottom:171.226667pt;}
.yf0{bottom:172.826667pt;}
.y1db{bottom:173.786667pt;}
.ybf{bottom:175.226667pt;}
.y150{bottom:175.386667pt;}
.ye1{bottom:175.546667pt;}
.yf3{bottom:178.080000pt;}
.yff{bottom:178.240000pt;}
.y1e5{bottom:178.266667pt;}
.yf8{bottom:178.746667pt;}
.y19b{bottom:182.373333pt;}
.yda{bottom:183.133333pt;}
.ybb{bottom:184.346667pt;}
.y3e{bottom:184.506667pt;}
.yc{bottom:185.626667pt;}
.y1c7{bottom:188.826667pt;}
.y1a6{bottom:189.626667pt;}
.yd5{bottom:192.826667pt;}
.y168{bottom:194.746667pt;}
.y1f0{bottom:195.066667pt;}
.y8f{bottom:195.386667pt;}
.y5a{bottom:197.146667pt;}
.y179{bottom:197.626667pt;}
.yef{bottom:200.346667pt;}
.y1ba{bottom:202.426667pt;}
.y138{bottom:202.586667pt;}
.y14f{bottom:202.906667pt;}
.y101{bottom:204.093333pt;}
.y71{bottom:204.986667pt;}
.y4e{bottom:205.786667pt;}
.y24{bottom:209.466667pt;}
.yba{bottom:211.866667pt;}
.y1da{bottom:212.026667pt;}
.y1e4{bottom:216.506667pt;}
.yde{bottom:216.640000pt;}
.yd9{bottom:217.440000pt;}
.y1a5{bottom:221.946667pt;}
.y167{bottom:222.266667pt;}
.y3d{bottom:222.746667pt;}
.yb{bottom:222.906667pt;}
.y178{bottom:225.306667pt;}
.y1c6{bottom:227.066667pt;}
.yee{bottom:228.026667pt;}
.y1b9{bottom:229.946667pt;}
.y18c{bottom:230.586667pt;}
.yd4{bottom:231.066667pt;}
.y1ef{bottom:233.466667pt;}
.y117{bottom:235.386667pt;}
.yb9{bottom:239.546667pt;}
.y1d9{bottom:239.706667pt;}
.y59{bottom:240.026667pt;}
.y14e{bottom:241.306667pt;}
.y70{bottom:243.226667pt;}
.y4d{bottom:244.026667pt;}
.y23{bottom:247.866667pt;}
.y166{bottom:249.946667pt;}
.y8e{bottom:250.586667pt;}
.y177{bottom:252.826667pt;}
.yed{bottom:255.546667pt;}
.y1b8{bottom:257.626667pt;}
.y18b{bottom:258.106667pt;}
.y3c{bottom:260.986667pt;}
.ya{bottom:261.146667pt;}
.y1c5{bottom:265.466667pt;}
.yb8{bottom:267.066667pt;}
.y14d{bottom:268.826667pt;}
.yd3{bottom:269.306667pt;}
.y1e3{bottom:271.706667pt;}
.y116{bottom:272.666667pt;}
.y165{bottom:277.466667pt;}
.y1d8{bottom:277.946667pt;}
.y8d{bottom:278.106667pt;}
.y6f{bottom:281.466667pt;}
.y4c{bottom:282.266667pt;}
.y58{bottom:282.906667pt;}
.y1b7{bottom:285.146667pt;}
.y18a{bottom:285.786667pt;}
.y113{bottom:285.946667pt;}
.y22{bottom:286.106667pt;}
.y176{bottom:291.066667pt;}
.yec{bottom:293.786667pt;}
.yb7{bottom:294.586667pt;}
.y12f{bottom:296.186667pt;}
.y14c{bottom:296.346667pt;}
.y3b{bottom:299.226667pt;}
.y9{bottom:299.386667pt;}
.y1c4{bottom:303.706667pt;}
.y164{bottom:305.146667pt;}
.y8c{bottom:305.786667pt;}
.yd2{bottom:307.706667pt;}
.y1e2{bottom:309.946667pt;}
.y1b6{bottom:312.866667pt;}
.y189{bottom:313.346667pt;}
.y1d7{bottom:316.226667pt;}
.y175{bottom:318.786667pt;}
.y6e{bottom:319.746667pt;}
.y4b{bottom:320.706667pt;}
.yeb{bottom:321.506667pt;}
.yb6{bottom:322.306667pt;}
.y14b{bottom:324.066667pt;}
.y21{bottom:324.386667pt;}
.y57{bottom:325.826667pt;}
.y1ee{bottom:326.946667pt;}
.y1c3{bottom:331.266667pt;}
.y163{bottom:332.706667pt;}
.y8b{bottom:333.346667pt;}
.y3a{bottom:337.506667pt;}
.y1b5{bottom:340.386667pt;}
.y188{bottom:341.026667pt;}
.y1d6{bottom:343.906667pt;}
.yd1{bottom:345.986667pt;}
.y174{bottom:346.306667pt;}
.y1e1{bottom:348.226667pt;}
.yea{bottom:349.026667pt;}
.y1ed{bottom:354.466667pt;}
.y6d{bottom:357.986667pt;}
.y4a{bottom:358.946667pt;}
.y112{bottom:359.266667pt;}
.yb5{bottom:360.546667pt;}
.y14a{bottom:362.306667pt;}
.y20{bottom:362.626667pt;}
.y187{bottom:368.386667pt;}
.y56{bottom:368.706667pt;}
.y162{bottom:371.106667pt;}
.y8a{bottom:371.746667pt;}
.y12c{bottom:373.026667pt;}
.y173{bottom:373.986667pt;}
.y39{bottom:375.906667pt;}
.y1b4{bottom:378.626667pt;}
.y1d5{bottom:382.146667pt;}
.yd0{bottom:384.226667pt;}
.y1c2{bottom:386.466667pt;}
.ye9{bottom:387.266667pt;}
.y149{bottom:389.986667pt;}
.y1ec{bottom:392.706667pt;}
.y6c{bottom:396.226667pt;}
.y49{bottom:397.186667pt;}
.y161{bottom:398.626667pt;}
.yb4{bottom:398.786667pt;}
.y89{bottom:399.266667pt;}
.y1f{bottom:400.866667pt;}
.y172{bottom:401.506667pt;}
.y1e0{bottom:403.426667pt;}
.y1b3{bottom:406.306667pt;}
.y55{bottom:411.586667pt;}
.y186{bottom:412.226667pt;}
.y38{bottom:414.146667pt;}
.ye8{bottom:414.946667pt;}
.y148{bottom:417.506667pt;}
.y1d4{bottom:420.386667pt;}
.ycf{bottom:422.466667pt;}
.y48{bottom:424.706667pt;}
.y160{bottom:426.306667pt;}
.yb3{bottom:426.466667pt;}
.y88{bottom:426.946667pt;}
.y171{bottom:429.186667pt;}
.y1df{bottom:431.106667pt;}
.y111{bottom:432.546667pt;}
.y1b2{bottom:433.826667pt;}
.y6b{bottom:434.626667pt;}
.y1e{bottom:439.106667pt;}
.y185{bottom:439.746667pt;}
.ye7{bottom:442.466667pt;}
.y147{bottom:445.186667pt;}
.y1d3{bottom:447.906667pt;}
.y37{bottom:452.386667pt;}
.y15f{bottom:453.826667pt;}
.yb2{bottom:453.986667pt;}
.y87{bottom:454.466667pt;}
.y12b{bottom:458.626667pt;}
.yce{bottom:460.706667pt;}
.y47{bottom:463.106667pt;}
.y170{bottom:467.426667pt;}
.y1de{bottom:469.346667pt;}
.ye6{bottom:470.146667pt;}
.y1b1{bottom:472.066667pt;}
.y146{bottom:472.706667pt;}
.y6a{bottom:472.866667pt;}
.y1d2{bottom:475.586667pt;}
.y1d{bottom:477.346667pt;}
.y36{bottom:479.906667pt;}
.y10e{bottom:481.346667pt;}
.yb1{bottom:481.666667pt;}
.y86{bottom:481.986667pt;}
.y1eb{bottom:486.146667pt;}
.ycd{bottom:488.386667pt;}
.ya2{bottom:490.626667pt;}
.y12a{bottom:494.786667pt;}
.y184{bottom:494.946667pt;}
.y16f{bottom:495.106667pt;}
.y1f2{bottom:496.866667pt;}
.ye5{bottom:497.666667pt;}
.y1b0{bottom:499.746667pt;}
.y46{bottom:501.346667pt;}
.y35{bottom:507.586667pt;}
.yb0{bottom:509.186667pt;}
.y85{bottom:509.666667pt;}
.y145{bottom:510.946667pt;}
.y69{bottom:511.106667pt;}
.y1d1{bottom:513.826667pt;}
.y1c{bottom:515.746667pt;}
.ycc{bottom:515.906667pt;}
.y54{bottom:518.146667pt;}
.y129{bottom:522.466667pt;}
.y16e{bottom:522.626667pt;}
.y1ea{bottom:524.546667pt;}
.y1af{bottom:527.266667pt;}
.y45{bottom:528.866667pt;}
.y34{bottom:535.106667pt;}
.ye4{bottom:536.066667pt;}
.yaf{bottom:536.866667pt;}
.y84{bottom:537.186667pt;}
.y15e{bottom:539.586667pt;}
.y183{bottom:542.466667pt;}
.ycb{bottom:543.613333pt;}
.y1c1{bottom:545.853333pt;}
.y102{bottom:548.093333pt;}
.y144{bottom:548.253333pt;}
.y68{bottom:549.373333pt;}
.y128{bottom:550.013333pt;}
.y16d{bottom:550.173333pt;}
.y1d0{bottom:552.093333pt;}
.y1b{bottom:554.013333pt;}
.y10a{bottom:554.653333pt;}
.y1ae{bottom:554.973333pt;}
.y44{bottom:556.573333pt;}
.y158{bottom:561.693333pt;}
.y1dd{bottom:562.813333pt;}
.yae{bottom:564.413333pt;}
.y83{bottom:564.893333pt;}
.ya1{bottom:567.133333pt;}
.y33{bottom:573.373333pt;}
.ye3{bottom:574.333333pt;}
.y127{bottom:577.693333pt;}
.y15d{bottom:577.853333pt;}
.y1cf{bottom:579.773333pt;}
.y182{bottom:580.733333pt;}
.yca{bottom:581.853333pt;}
.y1ad{bottom:582.493333pt;}
.y43{bottom:584.093333pt;}
.y67{bottom:587.613333pt;}
.y157{bottom:589.213333pt;}
.y1e9{bottom:590.333333pt;}
.yf2{bottom:590.880000pt;}
.yad{bottom:592.093333pt;}
.y1a{bottom:592.253333pt;}
.y82{bottom:592.413333pt;}
.y1a4{bottom:595.773333pt;}
.y32{bottom:601.053333pt;}
.y126{bottom:605.213333pt;}
.ya0{bottom:605.373333pt;}
.y1ce{bottom:607.293333pt;}
.yc9{bottom:609.373333pt;}
.y1ac{bottom:610.173333pt;}
.y42{bottom:611.773333pt;}
.y156{bottom:613.693333pt;}
.y1e8{bottom:618.013333pt;}
.y181{bottom:618.973333pt;}
.y66{bottom:625.853333pt;}
.y1c0{bottom:628.573333pt;}
.y108{bottom:629.853333pt;}
.yac{bottom:630.333333pt;}
.y19{bottom:630.493333pt;}
.y81{bottom:630.813333pt;}
.y125{bottom:632.893333pt;}
.y15c{bottom:633.053333pt;}
.yc8{bottom:637.053333pt;}
.y155{bottom:638.013333pt;}
.y31{bottom:639.293333pt;}
.y9f{bottom:643.773333pt;}
.y1cd{bottom:645.533333pt;}
.y180{bottom:646.653333pt;}
.y1ab{bottom:648.413333pt;}
.y1e7{bottom:656.253333pt;}
.y80{bottom:658.333333pt;}
.y124{bottom:660.413333pt;}
.y15b{bottom:660.573333pt;}
.y154{bottom:662.493333pt;}
.y65{bottom:664.093333pt;}
.yc7{bottom:664.573333pt;}
.y30{bottom:666.973333pt;}
.yab{bottom:668.573333pt;}
.y18{bottom:668.733333pt;}
.y107{bottom:669.053333pt;}
.y9e{bottom:671.293333pt;}
.y17f{bottom:674.173333pt;}
.y1cc{bottom:683.773333pt;}
.y7f{bottom:686.013333pt;}
.y1aa{bottom:686.813333pt;}
.y1a3{bottom:688.253333pt;}
.y153{bottom:688.893333pt;}
.y123{bottom:690.973333pt;}
.yc6{bottom:692.253333pt;}
.y53{bottom:694.493333pt;}
.yaa{bottom:696.093333pt;}
.y9d{bottom:698.973333pt;}
.y17e{bottom:701.693333pt;}
.y64{bottom:702.493333pt;}
.y122{bottom:704.253333pt;}
.y2f{bottom:705.213333pt;}
.y17{bottom:706.973333pt;}
.y1cb{bottom:711.453333pt;}
.y7e{bottom:713.533333pt;}
.y1a2{bottom:715.773333pt;}
.y1a9{bottom:717.533333pt;}
.y1bf{bottom:722.173333pt;}
.y143{bottom:725.693333pt;}
.y9c{bottom:726.493333pt;}
.y17d{bottom:729.373333pt;}
.yc5{bottom:730.493333pt;}
.y2e{bottom:732.733333pt;}
.ya9{bottom:735.293333pt;}
.y8{bottom:738.013333pt;}
.y1ca{bottom:738.973333pt;}
.y63{bottom:740.733333pt;}
.y7d{bottom:741.213333pt;}
.y16{bottom:745.373333pt;}
.y1be{bottom:749.693333pt;}
.y1a8{bottom:750.013333pt;}
.y121{bottom:753.053333pt;}
.y9b{bottom:754.173333pt;}
.yc4{bottom:758.013333pt;}
.y2d{bottom:760.413333pt;}
.y142{bottom:761.853333pt;}
.y17c{bottom:769.213333pt;}
.y1dc{bottom:770.973333pt;}
.ya8{bottom:774.973333pt;}
.y120{bottom:777.413333pt;}
.y62{bottom:779.013333pt;}
.y7c{bottom:779.493333pt;}
.y9a{bottom:781.733333pt;}
.y15{bottom:783.653333pt;}
.yc3{bottom:785.733333pt;}
.y52{bottom:787.973333pt;}
.y7{bottom:789.253333pt;}
.y2c{bottom:798.693333pt;}
.y141{bottom:800.133333pt;}
.y11f{bottom:801.893333pt;}
.y17b{bottom:804.453333pt;}
.y7b{bottom:807.013333pt;}
.y99{bottom:809.413333pt;}
.ya7{bottom:813.253333pt;}
.y106{bottom:815.653333pt;}
.y61{bottom:817.253333pt;}
.y14{bottom:821.893333pt;}
.y2b{bottom:826.213333pt;}
.y11e{bottom:826.373333pt;}
.y18e{bottom:827.680000pt;}
.y140{bottom:827.813333pt;}
.y7a{bottom:834.693333pt;}
.y98{bottom:836.933333pt;}
.ya6{bottom:840.933333pt;}
.y105{bottom:843.173333pt;}
.y16c{bottom:847.653333pt;}
.y6{bottom:850.533333pt;}
.y2a{bottom:853.893333pt;}
.y13f{bottom:855.333333pt;}
.y60{bottom:855.493333pt;}
.y13{bottom:860.133333pt;}
.y79{bottom:862.213333pt;}
.ye2{bottom:864.453333pt;}
.yc2{bottom:868.453333pt;}
.y104{bottom:870.853333pt;}
.y97{bottom:875.173333pt;}
.ya5{bottom:879.173333pt;}
.y41{bottom:881.413333pt;}
.y13e{bottom:882.853333pt;}
.y78{bottom:889.893333pt;}
.y29{bottom:892.133333pt;}
.y5f{bottom:893.733333pt;}
.yc1{bottom:896.133333pt;}
.y12{bottom:898.373333pt;}
.y11d{bottom:899.493333pt;}
.y5{bottom:901.253333pt;}
.y96{bottom:902.853333pt;}
.ya4{bottom:906.693333pt;}
.y51{bottom:909.093333pt;}
.y13d{bottom:910.533333pt;}
.y77{bottom:917.413333pt;}
.y28{bottom:919.653333pt;}
.y11c{bottom:923.973333pt;}
.y95{bottom:930.373333pt;}
.y5e{bottom:932.133333pt;}
.ya3{bottom:934.373333pt;}
.y11{bottom:936.613333pt;}
.y13c{bottom:938.053333pt;}
.y76{bottom:945.093333pt;}
.y27{bottom:947.333333pt;}
.y94{bottom:958.053333pt;}
.y4{bottom:960.293333pt;}
.y13b{bottom:965.733333pt;}
.y5d{bottom:970.373333pt;}
.y75{bottom:972.613333pt;}
.y10{bottom:974.853333pt;}
.y93{bottom:985.573333pt;}
.y3{bottom:1010.720000pt;}
.y74{bottom:1011.840000pt;}
.yf{bottom:1013.280000pt;}
.y11a{bottom:1015.360000pt;}
.h21{height:24.320000pt;}
.h22{height:24.352000pt;}
.h20{height:24.480000pt;}
.h1f{height:26.720000pt;}
.h18{height:26.880000pt;}
.h28{height:27.520000pt;}
.hc{height:29.600000pt;}
.h17{height:31.200000pt;}
.h27{height:37.440000pt;}
.h26{height:40.280938pt;}
.h14{height:47.742188pt;}
.h1d{height:48.800000pt;}
.h15{height:50.062500pt;}
.h23{height:50.578125pt;}
.h2{height:52.134375pt;}
.h13{height:52.834688pt;}
.hd{height:54.390938pt;}
.h10{height:56.017500pt;}
.h19{height:56.062500pt;}
.h25{height:56.160000pt;}
.hb{height:57.375000pt;}
.h8{height:57.787500pt;}
.h3{height:58.563750pt;}
.h29{height:62.781250pt;}
.h9{height:62.812500pt;}
.h1b{height:63.656250pt;}
.h7{height:64.500000pt;}
.he{height:69.660000pt;}
.ha{height:71.955000pt;}
.h1a{height:73.120000pt;}
.h1e{height:73.280000pt;}
.h1c{height:73.312000pt;}
.h24{height:74.912000pt;}
.h4{height:75.465000pt;}
.h16{height:87.156562pt;}
.h5{height:107.715000pt;}
.h2b{height:109.794687pt;}
.h6{height:118.035000pt;}
.h2a{height:200.480000pt;}
.h11{height:200.960000pt;}
.hf{height:201.920000pt;}
.h12{height:234.400000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:122.880000pt;}
.wd{width:122.912000pt;}
.w14{width:141.306667pt;}
.w13{width:141.466667pt;}
.w12{width:141.946667pt;}
.w15{width:142.106667pt;}
.w11{width:142.266667pt;}
.w10{width:150.106667pt;}
.wf{width:170.146667pt;}
.wb{width:178.586667pt;}
.w4{width:254.880000pt;}
.w5{width:259.360000pt;}
.wa{width:267.746667pt;}
.w3{width:268.546667pt;}
.w6{width:273.826667pt;}
.w8{width:283.106667pt;}
.w9{width:297.026667pt;}
.wc{width:386.173333pt;}
.w16{width:522.560000pt;}
.w7{width:564.480000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x25{left:7.200000pt;}
.x1d{left:8.800000pt;}
.x1c{left:14.912000pt;}
.x35{left:16.480000pt;}
.x32{left:20.160000pt;}
.x44{left:25.920000pt;}
.x2e{left:32.640000pt;}
.x2d{left:34.400000pt;}
.x34{left:37.914667pt;}
.x39{left:42.560000pt;}
.x3e{left:43.834667pt;}
.x3b{left:46.880000pt;}
.x3f{left:49.120000pt;}
.x37{left:50.394667pt;}
.x30{left:51.866667pt;}
.x3c{left:54.394667pt;}
.x3a{left:55.834667pt;}
.x27{left:61.434667pt;}
.x38{left:62.560000pt;}
.x15{left:65.533333pt;}
.x3d{left:67.520000pt;}
.xf{left:70.493333pt;}
.x22{left:72.474667pt;}
.x13{left:76.613333pt;}
.xe{left:81.213333pt;}
.x12{left:85.533333pt;}
.x1e{left:94.946667pt;}
.x18{left:101.186667pt;}
.x24{left:107.080000pt;}
.x14{left:108.032000pt;}
.x2{left:113.471988pt;}
.x42{left:114.906667pt;}
.xc{left:116.186667pt;}
.x41{left:134.720000pt;}
.x7{left:137.466655pt;}
.xd{left:139.226667pt;}
.x11{left:144.226667pt;}
.x4{left:147.546655pt;}
.x29{left:154.426667pt;}
.x2a{left:160.666655pt;}
.x16{left:190.533333pt;}
.x1f{left:191.746667pt;}
.x43{left:208.160000pt;}
.x47{left:219.106655pt;}
.x33{left:222.466655pt;}
.x19{left:224.706667pt;}
.x2b{left:227.266655pt;}
.x40{left:231.746655pt;}
.x2c{left:236.386667pt;}
.x26{left:240.226655pt;}
.x21{left:248.066655pt;}
.x20{left:254.946667pt;}
.x1a{left:258.906667pt;}
.x6{left:266.466655pt;}
.x28{left:292.066667pt;}
.x5{left:295.106655pt;}
.x17{left:317.413333pt;}
.x2f{left:359.266667pt;}
.x45{left:374.746667pt;}
.xa{left:379.453322pt;}
.x1b{left:385.826667pt;}
.xb{left:392.093322pt;}
.x3{left:396.893322pt;}
.x23{left:410.493333pt;}
.x9{left:413.373333pt;}
.x10{left:417.920000pt;}
.x31{left:529.413333pt;}
.x36{left:539.173333pt;}
.x8{left:667.199988pt;}
.x1{left:673.759988pt;}
.x48{left:675.039988pt;}
.x46{left:676.959988pt;}
}




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