
    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_2b08e89314383486ed80ebd3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.197000;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_b8e1dbf970e02e9a71ba2648.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.197000;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_37b22815b01ad333ee685440.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.179000;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_c10afca5676465df936a90f1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.066000;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_2f66b109d1f149b814607dcd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112000;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_266145e7aa7aba33255414c0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.283203;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_685415f4a0263fb4ca9a70db.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.137000;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_a308d9b46ce25c98598a3778.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_cd0ade96b6862c7f8a599cb8.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_feea6c7f1f1bae45a3e3b26c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.088379;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_e5b419837910269a186e67d4.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_1a00d09bef8282c365a3fda8.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_6a722460606cf8d3be3e62de.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_3ebeb6173f16dc8686bfd0be.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.137000;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_5e5c0565757b632a9dd0a29b.woff2')format("woff");}.fff{font-family:fff;line-height:0.859375;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_49536ffa7dd282f47b0d272f.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.075000;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_5b354e5f78dc2be0f7030c85.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.075000;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_50eb8ccb99385dc35f2d4b70.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2a{letter-spacing:-2.232000px;}
.ls38{letter-spacing:-1.512000px;}
.ls31{letter-spacing:-0.270600px;}
.lsc{letter-spacing:-0.265200px;}
.ls30{letter-spacing:-0.201600px;}
.ls2b{letter-spacing:-0.193200px;}
.ls2{letter-spacing:-0.184200px;}
.lse{letter-spacing:-0.169800px;}
.ls7{letter-spacing:-0.152400px;}
.ls13{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.135600px;}
.ls14{letter-spacing:-0.083400px;}
.ls0{letter-spacing:-0.075000px;}
.lsd{letter-spacing:-0.051840px;}
.ls3f{letter-spacing:-0.046080px;}
.ls4{letter-spacing:-0.040320px;}
.lsf{letter-spacing:-0.020160px;}
.ls1{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.005754px;}
.ls29{letter-spacing:0.025920px;}
.ls9{letter-spacing:0.080400px;}
.ls1b{letter-spacing:0.080640px;}
.ls3{letter-spacing:0.129600px;}
.ls20{letter-spacing:0.135360px;}
.lsb{letter-spacing:0.135600px;}
.ls6{letter-spacing:0.147000px;}
.ls3c{letter-spacing:0.151800px;}
.ls12{letter-spacing:0.155400px;}
.ls41{letter-spacing:0.158400px;}
.ls37{letter-spacing:0.180000px;}
.ls33{letter-spacing:0.190080px;}
.ls42{letter-spacing:0.193200px;}
.ls11{letter-spacing:0.219000px;}
.ls3a{letter-spacing:0.261360px;}
.ls34{letter-spacing:0.310800px;}
.ls8{letter-spacing:0.325200px;}
.ls15{letter-spacing:0.348600px;}
.ls19{letter-spacing:0.357000px;}
.ls23{letter-spacing:0.381600px;}
.ls40{letter-spacing:0.385800px;}
.ls39{letter-spacing:4.248000px;}
.ls2e{letter-spacing:23.345280px;}
.ls26{letter-spacing:25.505280px;}
.ls32{letter-spacing:27.665280px;}
.ls25{letter-spacing:28.385280px;}
.ls2d{letter-spacing:29.105280px;}
.ls2f{letter-spacing:30.545280px;}
.ls3e{letter-spacing:33.425280px;}
.ls3b{letter-spacing:36.714720px;}
.ls2c{letter-spacing:38.862720px;}
.ls36{letter-spacing:44.784000px;}
.ls24{letter-spacing:46.074720px;}
.ls3d{letter-spacing:46.361280px;}
.ls28{letter-spacing:49.985280px;}
.ls27{letter-spacing:53.982720px;}
.ls1e{letter-spacing:56.707200px;}
.ls35{letter-spacing:59.184000px;}
.ls22{letter-spacing:65.514720px;}
.ls1d{letter-spacing:70.387200px;}
.ls21{letter-spacing:73.243200px;}
.ls17{letter-spacing:79.723200px;}
.ls16{letter-spacing:93.403200px;}
.ls1a{letter-spacing:94.147200px;}
.ls1f{letter-spacing:94.867200px;}
.ls18{letter-spacing:107.827200px;}
.ls1c{letter-spacing:108.547200px;}
.ls5{letter-spacing:847.596000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(111,177,77),0 0.015em rgb(111,177,77),0.015em 0 rgb(111,177,77),0 -0.015em  rgb(111,177,77);}
.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(111,177,77);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws13{word-spacing:-66.240000px;}
.ws1d{word-spacing:-27.258480px;}
.ws10{word-spacing:-27.100080px;}
.ws12{word-spacing:-22.006080px;}
.ws19{word-spacing:-20.376000px;}
.ws18{word-spacing:-20.232000px;}
.ws1c{word-spacing:-19.131720px;}
.ws14{word-spacing:-18.745920px;}
.wsc{word-spacing:-18.720000px;}
.ws1a{word-spacing:-18.699840px;}
.ws1b{word-spacing:-18.544320px;}
.wsf{word-spacing:-17.711880px;}
.ws5{word-spacing:-17.680080px;}
.ws17{word-spacing:-17.665680px;}
.wsb{word-spacing:-17.510280px;}
.ws4{word-spacing:-17.501880px;}
.ws1{word-spacing:-17.484480px;}
.ws11{word-spacing:-17.380800px;}
.wsa{word-spacing:-17.360634px;}
.ws6{word-spacing:-17.354880px;}
.ws2{word-spacing:-17.314560px;}
.wse{word-spacing:-17.271480px;}
.ws7{word-spacing:-17.219280px;}
.wsd{word-spacing:-17.202480px;}
.ws9{word-spacing:-17.185080px;}
.ws0{word-spacing:-17.170680px;}
.ws15{word-spacing:-17.153280px;}
.ws8{word-spacing:-17.089680px;}
.ws16{word-spacing:-17.084280px;}
.ws1e{word-spacing:-14.766000px;}
.ws3{word-spacing:0.000000px;}
._f{margin-left:-16.204800px;}
._15{margin-left:-13.392000px;}
._11{margin-left:-11.532480px;}
._14{margin-left:-10.139520px;}
._10{margin-left:-8.528280px;}
._12{margin-left:-6.960720px;}
._24{margin-left:-4.835520px;}
._8{margin-left:-3.643200px;}
._0{margin-left:-1.640160px;}
._1{width:1.065840px;}
._9{width:2.215680px;}
._27{width:3.469200px;}
._1c{width:5.384160px;}
._1b{width:6.491520px;}
._32{width:7.804800px;}
._2d{width:9.270720px;}
._28{width:10.591200px;}
._2f{width:12.044160px;}
._2c{width:13.049280px;}
._2b{width:14.932800px;}
._29{width:16.305600px;}
._23{width:18.414720px;}
._25{width:19.938240px;}
._26{width:21.207840px;}
._b{width:23.117760px;}
._33{width:24.415200px;}
._2a{width:25.436160px;}
._21{width:26.694720px;}
._20{width:28.666080px;}
._22{width:29.921760px;}
._c{width:31.331520px;}
._6{width:33.812640px;}
._1e{width:36.649440px;}
._1d{width:38.021760px;}
._1f{width:39.249600px;}
._5{width:42.134400px;}
._4{width:43.464960px;}
._7{width:45.109440px;}
._31{width:48.090240px;}
._30{width:49.469760px;}
._3{width:59.044320px;}
._2{width:65.378880px;}
._2e{width:89.674560px;}
._34{width:94.651200px;}
._35{width:96.002400px;}
._a{width:135.063360px;}
._e{width:1140.540960px;}
._13{width:1337.491200px;}
._18{width:1800.477600px;}
._d{width:2033.188320px;}
._16{width:2061.793920px;}
._17{width:2089.782240px;}
._1a{width:2123.939040px;}
._19{width:2145.736320px;}
.fc7{color:rgb(118,146,60);}
.fc5{color:transparent;}
.fc4{color:rgb(54,95,145);}
.fc2{color:rgb(50,146,68);}
.fc6{color:rgb(155,187,89);}
.fc1{color:rgb(111,177,77);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:43.200000px;}
.fs1{font-size:48.240000px;}
.fs4{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fsa{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.fs9{font-size:131.760000px;}
.fs3{font-size:156.240000px;}
.fs2{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y14d{bottom:3.060000px;}
.y155{bottom:3.240000px;}
.y1b4{bottom:3.600000px;}
.y1b2{bottom:3.780000px;}
.y2c{bottom:3.960000px;}
.y22{bottom:4.140000px;}
.y49{bottom:4.320000px;}
.y47{bottom:4.500000px;}
.y3f{bottom:4.680000px;}
.y3b{bottom:4.860000px;}
.y26{bottom:5.040000px;}
.y111{bottom:5.220000px;}
.y37{bottom:5.400000px;}
.y39{bottom:5.580000px;}
.y25{bottom:5.760000px;}
.y1b{bottom:6.120000px;}
.y142{bottom:6.300000px;}
.y1a{bottom:6.840000px;}
.y32{bottom:7.020000px;}
.y45{bottom:8.100000px;}
.y4e{bottom:8.460000px;}
.y57{bottom:8.820000px;}
.y5a{bottom:9.000000px;}
.y43{bottom:14.220000px;}
.yb{bottom:14.760000px;}
.y138{bottom:16.920000px;}
.y13b{bottom:17.094000px;}
.y136{bottom:17.100000px;}
.y14c{bottom:17.820000px;}
.y2b{bottom:23.040000px;}
.y5d{bottom:24.120000px;}
.y21{bottom:24.300000px;}
.y20{bottom:25.020000px;}
.y1e{bottom:28.260000px;}
.y1d{bottom:28.980000px;}
.y5f{bottom:29.160000px;}
.y59{bottom:29.205000px;}
.y14b{bottom:32.400000px;}
.y114{bottom:34.020000px;}
.y2d{bottom:41.580000px;}
.y16b{bottom:42.120000px;}
.y2a{bottom:42.300000px;}
.y5c{bottom:44.280000px;}
.y30{bottom:44.460000px;}
.y2f{bottom:45.180000px;}
.ya{bottom:46.800000px;}
.y14a{bottom:46.980000px;}
.y154{bottom:47.160000px;}
.y6{bottom:56.160000px;}
.y149{bottom:61.560000px;}
.y153{bottom:61.740000px;}
.y5{bottom:70.776000px;}
.y148{bottom:76.320000px;}
.y9{bottom:82.440000px;}
.y4{bottom:85.356000px;}
.y1a9{bottom:90.216000px;}
.y152{bottom:90.900000px;}
.y3{bottom:101.016000px;}
.y151{bottom:105.705000px;}
.y150{bottom:120.285000px;}
.y33{bottom:125.316000px;}
.y169{bottom:133.956000px;}
.y14f{bottom:134.865000px;}
.y1a4{bottom:140.796000px;}
.y31{bottom:142.056000px;}
.y1aa{bottom:143.094000px;}
.y185{bottom:145.656000px;}
.y13a{bottom:148.536000px;}
.ya0{bottom:152.490000px;}
.y168{bottom:155.550000px;}
.y115{bottom:157.890000px;}
.y1a3{bottom:162.390000px;}
.y2e{bottom:164.910000px;}
.yf3{bottom:168.870000px;}
.y9f{bottom:174.090000px;}
.y167{bottom:177.330000px;}
.y184{bottom:179.310000px;}
.yc9{bottom:181.470000px;}
.y139{bottom:182.190000px;}
.y1a2{bottom:184.170000px;}
.yf2{bottom:190.470000px;}
.y10f{bottom:197.310000px;}
.y166{bottom:198.930000px;}
.yc8{bottom:203.070000px;}
.y1a1{bottom:205.950000px;}
.y9e{bottom:207.930000px;}
.yf1{bottom:212.250000px;}
.y183{bottom:212.970000px;}
.y137{bottom:215.850000px;}
.yc7{bottom:224.850000px;}
.y29{bottom:226.110000px;}
.y1a0{bottom:227.550000px;}
.y9d{bottom:229.530000px;}
.yf0{bottom:233.850000px;}
.y165{bottom:235.650000px;}
.yc6{bottom:246.630000px;}
.y135{bottom:249.330000px;}
.y9c{bottom:251.310000px;}
.yef{bottom:256.710000px;}
.y10e{bottom:261.570000px;}
.yc5{bottom:268.230000px;}
.y16a{bottom:268.770000px;}
.y19f{bottom:270.930000px;}
.y9b{bottom:272.910000px;}
.y182{bottom:280.470000px;}
.y164{bottom:282.630000px;}
.y28{bottom:284.430000px;}
.yee{bottom:286.770000px;}
.yc4{bottom:290.010000px;}
.y19e{bottom:292.710000px;}
.y113{bottom:293.610000px;}
.y10d{bottom:293.790000px;}
.y9a{bottom:294.690000px;}
.y134{bottom:300.630000px;}
.y27{bottom:307.290000px;}
.y181{bottom:314.130000px;}
.y163{bottom:316.290000px;}
.y99{bottom:316.470000px;}
.y1a8{bottom:322.050000px;}
.y133{bottom:322.410000px;}
.yc3{bottom:323.670000px;}
.y10c{bottom:325.830000px;}
.y19d{bottom:326.370000px;}
.y24{bottom:330.150000px;}
.yed{bottom:333.930000px;}
.y98{bottom:338.115000px;}
.y132{bottom:344.235000px;}
.yc2{bottom:345.495000px;}
.y180{bottom:347.835000px;}
.y162{bottom:349.995000px;}
.y23{bottom:351.975000px;}
.yec{bottom:355.575000px;}
.y1a7{bottom:357.375000px;}
.y10b{bottom:358.095000px;}
.y97{bottom:359.895000px;}
.y19c{bottom:360.075000px;}
.y131{bottom:365.835000px;}
.yc1{bottom:367.995000px;}
.y161{bottom:371.775000px;}
.y1f{bottom:374.835000px;}
.yeb{bottom:377.355000px;}
.y10a{bottom:378.255000px;}
.y96{bottom:381.495000px;}
.y130{bottom:387.615000px;}
.y160{bottom:393.555000px;}
.y19b{bottom:393.915000px;}
.y7a{bottom:395.355000px;}
.yea{bottom:398.955000px;}
.yc0{bottom:404.715000px;}
.y12f{bottom:409.215000px;}
.y109{bottom:410.835000px;}
.y95{bottom:415.335000px;}
.y1c{bottom:415.875000px;}
.y1a6{bottom:420.195000px;}
.ye9{bottom:420.735000px;}
.ybf{bottom:426.495000px;}
.y15f{bottom:427.215000px;}
.y19a{bottom:427.575000px;}
.y79{bottom:429.015000px;}
.y12e{bottom:431.535000px;}
.y94{bottom:437.835000px;}
.ye8{bottom:442.515000px;}
.y108{bottom:444.135000px;}
.ybe{bottom:448.275000px;}
.y15e{bottom:448.815000px;}
.y17f{bottom:448.995000px;}
.y19{bottom:460.875000px;}
.y199{bottom:461.235000px;}
.y78{bottom:462.675000px;}
.ye7{bottom:464.115000px;}
.y12d{bottom:466.635000px;}
.ybd{bottom:469.875000px;}
.y15d{bottom:470.595000px;}
.y93{bottom:474.555000px;}
.y107{bottom:477.615000px;}
.y17e{bottom:482.655000px;}
.ye6{bottom:485.895000px;}
.y12c{bottom:488.415000px;}
.ybc{bottom:491.655000px;}
.y198{bottom:495.615000px;}
.y77{bottom:496.335000px;}
.y18{bottom:501.375000px;}
.y15c{bottom:504.255000px;}
.ye5{bottom:507.495000px;}
.y12b{bottom:510.015000px;}
.y106{bottom:511.995000px;}
.ybb{bottom:513.255000px;}
.y17d{bottom:516.315000px;}
.y92{bottom:518.115000px;}
.y197{bottom:518.655000px;}
.y76{bottom:525.675000px;}
.y15b{bottom:526.035000px;}
.ye4{bottom:529.275000px;}
.y12a{bottom:531.795000px;}
.yba{bottom:535.035000px;}
.y17{bottom:535.215000px;}
.y112{bottom:539.535000px;}
.y91{bottom:539.715000px;}
.y105{bottom:545.655000px;}
.y15a{bottom:547.635000px;}
.y17c{bottom:550.155000px;}
.ye3{bottom:550.875000px;}
.y1a5{bottom:551.775000px;}
.y196{bottom:553.215000px;}
.y129{bottom:554.295000px;}
.y75{bottom:554.835000px;}
.yb9{bottom:556.635000px;}
.y90{bottom:561.495000px;}
.y16{bottom:568.875000px;}
.y159{bottom:569.415000px;}
.ye2{bottom:572.655000px;}
.y141{bottom:577.875000px;}
.yb8{bottom:578.415000px;}
.y104{bottom:580.035000px;}
.y17b{bottom:583.815000px;}
.y74{bottom:583.995000px;}
.y195{bottom:586.875000px;}
.y128{bottom:589.575000px;}
.y158{bottom:593.715000px;}
.ye1{bottom:594.435000px;}
.y8f{bottom:595.155000px;}
.yb7{bottom:600.195000px;}
.y15{bottom:602.535000px;}
.y1be{bottom:602.895000px;}
.y73{bottom:613.185000px;}
.y17a{bottom:613.365000px;}
.y103{bottom:615.165000px;}
.ye0{bottom:616.065000px;}
.y8e{bottom:616.965000px;}
.y1bd{bottom:619.845000px;}
.y194{bottom:621.285000px;}
.yb6{bottom:621.825000px;}
.y127{bottom:623.265000px;}
.y14{bottom:636.225000px;}
.ydf{bottom:637.845000px;}
.y8d{bottom:638.565000px;}
.y1bc{bottom:639.825000px;}
.y157{bottom:640.725000px;}
.y72{bottom:642.525000px;}
.yb5{bottom:643.605000px;}
.y140{bottom:645.405000px;}
.y102{bottom:650.265000px;}
.y193{bottom:655.665000px;}
.y156{bottom:656.745000px;}
.y126{bottom:656.925000px;}
.yde{bottom:659.445000px;}
.y1bb{bottom:659.985000px;}
.y8c{bottom:660.345000px;}
.yb4{bottom:665.205000px;}
.y13{bottom:670.065000px;}
.y71{bottom:671.685000px;}
.y1ba{bottom:679.965000px;}
.ydd{bottom:681.225000px;}
.y8b{bottom:681.945000px;}
.y50{bottom:684.825000px;}
.y101{bottom:685.365000px;}
.yb3{bottom:686.985000px;}
.y192{bottom:689.325000px;}
.y125{bottom:690.765000px;}
.y61{bottom:698.865000px;}
.y179{bottom:699.225000px;}
.y1b9{bottom:700.125000px;}
.y70{bottom:700.845000px;}
.y4f{bottom:701.565000px;}
.ydc{bottom:703.005000px;}
.y12{bottom:703.725000px;}
.yb2{bottom:708.765000px;}
.y191{bottom:711.105000px;}
.y124{bottom:712.365000px;}
.y8a{bottom:715.785000px;}
.y1b8{bottom:720.285000px;}
.y100{bottom:720.465000px;}
.y178{bottom:721.005000px;}
.y4d{bottom:723.705000px;}
.ydb{bottom:724.605000px;}
.y6f{bottom:730.185000px;}
.yb1{bottom:730.365000px;}
.y60{bottom:732.525000px;}
.y190{bottom:732.885000px;}
.y11{bottom:737.385000px;}
.y13f{bottom:738.285000px;}
.y1b7{bottom:740.265000px;}
.y177{bottom:742.605000px;}
.y123{bottom:746.025000px;}
.yda{bottom:746.385000px;}
.y5e{bottom:749.265000px;}
.yb0{bottom:752.145000px;}
.y4c{bottom:753.405000px;}
.yff{bottom:755.565000px;}
.y6e{bottom:759.345000px;}
.y1b6{bottom:760.425000px;}
.y176{bottom:764.385000px;}
.y18f{bottom:767.085000px;}
.yd9{bottom:767.985000px;}
.y10{bottom:771.045000px;}
.yaf{bottom:773.745000px;}
.y4b{bottom:775.365000px;}
.y122{bottom:779.865000px;}
.y1b5{bottom:780.585000px;}
.y175{bottom:786.165000px;}
.y6d{bottom:788.505000px;}
.yd8{bottom:789.765000px;}
.yfe{bottom:790.665000px;}
.y89{bottom:792.825000px;}
.y5b{bottom:795.165000px;}
.yae{bottom:795.525000px;}
.y4a{bottom:796.425000px;}
.yf{bottom:796.965000px;}
.y18e{bottom:803.805000px;}
.yd7{bottom:811.545000px;}
.y121{bottom:813.525000px;}
.y88{bottom:814.605000px;}
.yad{bottom:817.305000px;}
.y48{bottom:817.485000px;}
.y6c{bottom:817.665000px;}
.y1b3{bottom:820.005000px;}
.y174{bottom:822.705000px;}
.yfd{bottom:825.765000px;}
.yd6{bottom:833.145000px;}
.y87{bottom:838.905000px;}
.y46{bottom:839.625000px;}
.y1b1{bottom:839.985000px;}
.y13e{bottom:841.605000px;}
.ye{bottom:844.485000px;}
.y6b{bottom:847.005000px;}
.y120{bottom:847.185000px;}
.y18d{bottom:847.545000px;}
.yfc{bottom:848.265000px;}
.yd5{bottom:854.925000px;}
.y58{bottom:856.185000px;}
.yac{bottom:860.685000px;}
.y44{bottom:862.305000px;}
.y173{bottom:869.685000px;}
.y110{bottom:875.850000px;}
.y6a{bottom:876.210000px;}
.yd4{bottom:876.570000px;}
.y1b0{bottom:877.830000px;}
.y11f{bottom:880.890000px;}
.yfb{bottom:881.970000px;}
.yab{bottom:882.330000px;}
.y86{bottom:884.310000px;}
.y42{bottom:890.970000px;}
.y172{bottom:891.510000px;}
.yd{bottom:892.050000px;}
.y18c{bottom:897.270000px;}
.yd3{bottom:898.350000px;}
.y56{bottom:902.130000px;}
.y11e{bottom:902.670000px;}
.yaa{bottom:904.110000px;}
.y85{bottom:904.470000px;}
.y69{bottom:905.370000px;}
.yfa{bottom:916.350000px;}
.yd2{bottom:919.950000px;}
.y18b{bottom:921.570000px;}
.y84{bottom:924.630000px;}
.y171{bottom:925.170000px;}
.ya9{bottom:925.710000px;}
.y13d{bottom:930.750000px;}
.y41{bottom:932.010000px;}
.y14e{bottom:932.370000px;}
.y68{bottom:934.530000px;}
.y11d{bottom:936.330000px;}
.yc{bottom:939.570000px;}
.yd1{bottom:941.730000px;}
.y147{bottom:944.070000px;}
.y83{bottom:944.610000px;}
.y170{bottom:946.770000px;}
.ya8{bottom:947.490000px;}
.y55{bottom:947.850000px;}
.y1af{bottom:949.110000px;}
.yf9{bottom:951.450000px;}
.y40{bottom:954.150000px;}
.yd0{bottom:963.510000px;}
.y67{bottom:963.870000px;}
.y82{bottom:964.770000px;}
.y18a{bottom:968.550000px;}
.ya7{bottom:969.270000px;}
.y11c{bottom:970.170000px;}
.y3e{bottom:976.290000px;}
.y8{bottom:978.090000px;}
.y16f{bottom:980.610000px;}
.y1ae{bottom:982.770000px;}
.y81{bottom:984.930000px;}
.ycf{bottom:985.110000px;}
.yf8{bottom:986.550000px;}
.ya6{bottom:990.870000px;}
.y11b{bottom:991.770000px;}
.y66{bottom:993.030000px;}
.y3d{bottom:998.430000px;}
.y189{bottom:1002.210000px;}
.y1ad{bottom:1004.550000px;}
.y80{bottom:1004.910000px;}
.yce{bottom:1006.890000px;}
.y54{bottom:1009.230000px;}
.ya5{bottom:1012.650000px;}
.y16e{bottom:1014.270000px;}
.y13c{bottom:1014.630000px;}
.y3c{bottom:1019.310000px;}
.yf7{bottom:1021.650000px;}
.y65{bottom:1022.190000px;}
.y7f{bottom:1025.070000px;}
.y11a{bottom:1025.430000px;}
.y1ac{bottom:1026.330000px;}
.ycd{bottom:1028.490000px;}
.ya4{bottom:1034.250000px;}
.y188{bottom:1036.050000px;}
.y3a{bottom:1041.450000px;}
.y7e{bottom:1045.230000px;}
.y146{bottom:1046.850000px;}
.y64{bottom:1047.030000px;}
.y16d{bottom:1047.930000px;}
.y53{bottom:1050.090000px;}
.ycc{bottom:1050.270000px;}
.ya3{bottom:1056.030000px;}
.y119{bottom:1059.270000px;}
.y1ab{bottom:1059.990000px;}
.y38{bottom:1063.590000px;}
.y7d{bottom:1065.390000px;}
.y187{bottom:1069.710000px;}
.y52{bottom:1071.870000px;}
.ycb{bottom:1072.050000px;}
.y145{bottom:1073.490000px;}
.yf6{bottom:1078.350000px;}
.ya2{bottom:1078.710000px;}
.y16c{bottom:1081.770000px;}
.y7c{bottom:1085.370000px;}
.y144{bottom:1085.910000px;}
.y36{bottom:1087.350000px;}
.y118{bottom:1091.310000px;}
.y51{bottom:1093.470000px;}
.yca{bottom:1093.650000px;}
.y63{bottom:1096.170000px;}
.y186{bottom:1103.370000px;}
.y7b{bottom:1105.530000px;}
.y117{bottom:1111.470000px;}
.y7{bottom:1112.370000px;}
.yf5{bottom:1113.450000px;}
.ya1{bottom:1115.430000px;}
.y143{bottom:1119.570000px;}
.y35{bottom:1129.830000px;}
.y116{bottom:1133.970000px;}
.yf4{bottom:1135.590000px;}
.y62{bottom:1137.030000px;}
.y2{bottom:1157.220000px;}
.y1{bottom:1173.420000px;}
.y34{bottom:1200.299100px;}
.h36{height:19.260000px;}
.h35{height:19.440000px;}
.h13{height:20.160000px;}
.h33{height:20.196000px;}
.h18{height:20.340000px;}
.hb{height:21.096000px;}
.h19{height:21.240000px;}
.h10{height:21.420000px;}
.h16{height:21.960000px;}
.h7{height:22.140000px;}
.h2b{height:22.320000px;}
.h11{height:23.040000px;}
.h15{height:27.936000px;}
.h1a{height:28.800000px;}
.h2a{height:32.760000px;}
.h2c{height:32.796000px;}
.h28{height:32.940000px;}
.h37{height:38.700000px;}
.ha{height:40.140000px;}
.h14{height:40.320000px;}
.he{height:42.335156px;}
.h9{height:44.280000px;}
.h1b{height:45.000000px;}
.h1c{height:45.036000px;}
.h3{height:48.143520px;}
.h26{height:50.040000px;}
.h25{height:50.076000px;}
.hc{height:57.600000px;}
.h29{height:57.636562px;}
.h8{height:57.720960px;}
.h27{height:58.026240px;}
.h2f{height:58.140000px;}
.h1d{height:60.300000px;}
.hd{height:60.480000px;}
.h24{height:61.669440px;}
.h2{height:66.107520px;}
.h20{height:68.084282px;}
.h32{height:68.956875px;}
.h12{height:70.664062px;}
.h17{height:71.856000px;}
.h22{height:72.394560px;}
.h23{height:74.953125px;}
.h21{height:80.949375px;}
.h31{height:84.071520px;}
.h2d{height:87.840000px;}
.hf{height:89.152560px;}
.h1e{height:95.245664px;}
.h1f{height:99.687656px;}
.h30{height:122.668560px;}
.h5{height:123.120000px;}
.h2e{height:146.376000px;}
.h6{height:152.334000px;}
.h34{height:159.120000px;}
.h4{height:163.566000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:45.360000px;}
.w9{width:52.200000px;}
.wa{width:86.076000px;}
.w8{width:86.940000px;}
.w15{width:120.096000px;}
.w13{width:121.896000px;}
.w12{width:124.596000px;}
.w14{width:126.360000px;}
.wb{width:136.800000px;}
.w1e{width:137.160000px;}
.wc{width:137.556000px;}
.w11{width:140.580000px;}
.w4{width:188.130000px;}
.w20{width:211.710000px;}
.wd{width:221.610000px;}
.w1f{width:286.095000px;}
.w16{width:318.450000px;}
.w17{width:318.675000px;}
.we{width:337.935000px;}
.w19{width:470.415000px;}
.w5{width:479.955000px;}
.w1a{width:534.705000px;}
.w1c{width:545.685000px;}
.w1b{width:551.085000px;}
.w7{width:566.925000px;}
.w18{width:612.465000px;}
.w3{width:636.405000px;}
.w1d{width:637.305000px;}
.w10{width:637.665000px;}
.wf{width:637.845000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:8.280000px;}
.x12{left:10.080000px;}
.x14{left:31.140000px;}
.x13{left:32.940000px;}
.x15{left:36.360000px;}
.x10{left:96.156000px;}
.x8{left:102.594000px;}
.x2{left:127.655987px;}
.x24{left:129.096000px;}
.x2c{left:138.275987px;}
.xa{left:141.875987px;}
.x1c{left:144.215987px;}
.x4{left:145.835987px;}
.xb{left:148.535987px;}
.x17{left:149.796000px;}
.x2e{left:153.030000px;}
.x1e{left:154.649987px;}
.x1d{left:160.589987px;}
.x2d{left:165.269987px;}
.x5{left:175.529987px;}
.x1f{left:181.649987px;}
.x22{left:184.530000px;}
.x23{left:187.590000px;}
.x9{left:193.539000px;}
.x7{left:198.039000px;}
.x18{left:202.710000px;}
.x20{left:208.649987px;}
.x31{left:214.590000px;}
.x32{left:219.090000px;}
.x1{left:221.249987px;}
.x30{left:231.150000px;}
.x21{left:235.649987px;}
.x33{left:266.250000px;}
.x26{left:269.670000px;}
.x19{left:289.515000px;}
.x2f{left:295.635000px;}
.xc{left:312.194987px;}
.xe{left:317.235000px;}
.x27{left:394.995000px;}
.x1a{left:427.035000px;}
.x6{left:446.474987px;}
.x28{left:517.605000px;}
.x34{left:553.065000px;}
.x1b{left:565.305000px;}
.x29{left:644.685000px;}
.xf{left:675.356415px;}
.x11{left:709.890000px;}
.x25{left:748.589987px;}
.x2a{left:750.209987px;}
.x16{left:754.529987px;}
.x3{left:756.149987px;}
.x2b{left:765.509987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2a{letter-spacing:-1.984000pt;}
.ls38{letter-spacing:-1.344000pt;}
.ls31{letter-spacing:-0.240533pt;}
.lsc{letter-spacing:-0.235733pt;}
.ls30{letter-spacing:-0.179200pt;}
.ls2b{letter-spacing:-0.171733pt;}
.ls2{letter-spacing:-0.163733pt;}
.lse{letter-spacing:-0.150933pt;}
.ls7{letter-spacing:-0.135467pt;}
.ls13{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.120533pt;}
.ls14{letter-spacing:-0.074133pt;}
.ls0{letter-spacing:-0.066667pt;}
.lsd{letter-spacing:-0.046080pt;}
.ls3f{letter-spacing:-0.040960pt;}
.ls4{letter-spacing:-0.035840pt;}
.lsf{letter-spacing:-0.017920pt;}
.ls1{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.005115pt;}
.ls29{letter-spacing:0.023040pt;}
.ls9{letter-spacing:0.071467pt;}
.ls1b{letter-spacing:0.071680pt;}
.ls3{letter-spacing:0.115200pt;}
.ls20{letter-spacing:0.120320pt;}
.lsb{letter-spacing:0.120533pt;}
.ls6{letter-spacing:0.130667pt;}
.ls3c{letter-spacing:0.134933pt;}
.ls12{letter-spacing:0.138133pt;}
.ls41{letter-spacing:0.140800pt;}
.ls37{letter-spacing:0.160000pt;}
.ls33{letter-spacing:0.168960pt;}
.ls42{letter-spacing:0.171733pt;}
.ls11{letter-spacing:0.194667pt;}
.ls3a{letter-spacing:0.232320pt;}
.ls34{letter-spacing:0.276267pt;}
.ls8{letter-spacing:0.289067pt;}
.ls15{letter-spacing:0.309867pt;}
.ls19{letter-spacing:0.317333pt;}
.ls23{letter-spacing:0.339200pt;}
.ls40{letter-spacing:0.342933pt;}
.ls39{letter-spacing:3.776000pt;}
.ls2e{letter-spacing:20.751360pt;}
.ls26{letter-spacing:22.671360pt;}
.ls32{letter-spacing:24.591360pt;}
.ls25{letter-spacing:25.231360pt;}
.ls2d{letter-spacing:25.871360pt;}
.ls2f{letter-spacing:27.151360pt;}
.ls3e{letter-spacing:29.711360pt;}
.ls3b{letter-spacing:32.635307pt;}
.ls2c{letter-spacing:34.544640pt;}
.ls36{letter-spacing:39.808000pt;}
.ls24{letter-spacing:40.955307pt;}
.ls3d{letter-spacing:41.210027pt;}
.ls28{letter-spacing:44.431360pt;}
.ls27{letter-spacing:47.984640pt;}
.ls1e{letter-spacing:50.406400pt;}
.ls35{letter-spacing:52.608000pt;}
.ls22{letter-spacing:58.235307pt;}
.ls1d{letter-spacing:62.566400pt;}
.ls21{letter-spacing:65.105067pt;}
.ls17{letter-spacing:70.865067pt;}
.ls16{letter-spacing:83.025067pt;}
.ls1a{letter-spacing:83.686400pt;}
.ls1f{letter-spacing:84.326400pt;}
.ls18{letter-spacing:95.846400pt;}
.ls1c{letter-spacing:96.486400pt;}
.ls5{letter-spacing:753.418667pt;}
.ws13{word-spacing:-58.880000pt;}
.ws1d{word-spacing:-24.229760pt;}
.ws10{word-spacing:-24.088960pt;}
.ws12{word-spacing:-19.560960pt;}
.ws19{word-spacing:-18.112000pt;}
.ws18{word-spacing:-17.984000pt;}
.ws1c{word-spacing:-17.005973pt;}
.ws14{word-spacing:-16.663040pt;}
.wsc{word-spacing:-16.640000pt;}
.ws1a{word-spacing:-16.622080pt;}
.ws1b{word-spacing:-16.483840pt;}
.wsf{word-spacing:-15.743893pt;}
.ws5{word-spacing:-15.715627pt;}
.ws17{word-spacing:-15.702827pt;}
.wsb{word-spacing:-15.564693pt;}
.ws4{word-spacing:-15.557227pt;}
.ws1{word-spacing:-15.541760pt;}
.ws11{word-spacing:-15.449600pt;}
.wsa{word-spacing:-15.431675pt;}
.ws6{word-spacing:-15.426560pt;}
.ws2{word-spacing:-15.390720pt;}
.wse{word-spacing:-15.352427pt;}
.ws7{word-spacing:-15.306027pt;}
.wsd{word-spacing:-15.291093pt;}
.ws9{word-spacing:-15.275627pt;}
.ws0{word-spacing:-15.262827pt;}
.ws15{word-spacing:-15.247360pt;}
.ws8{word-spacing:-15.190827pt;}
.ws16{word-spacing:-15.186027pt;}
.ws1e{word-spacing:-13.125333pt;}
.ws3{word-spacing:0.000000pt;}
._f{margin-left:-14.404267pt;}
._15{margin-left:-11.904000pt;}
._11{margin-left:-10.251093pt;}
._14{margin-left:-9.012907pt;}
._10{margin-left:-7.580693pt;}
._12{margin-left:-6.187307pt;}
._24{margin-left:-4.298240pt;}
._8{margin-left:-3.238400pt;}
._0{margin-left:-1.457920pt;}
._1{width:0.947413pt;}
._9{width:1.969493pt;}
._27{width:3.083733pt;}
._1c{width:4.785920pt;}
._1b{width:5.770240pt;}
._32{width:6.937600pt;}
._2d{width:8.240640pt;}
._28{width:9.414400pt;}
._2f{width:10.705920pt;}
._2c{width:11.599360pt;}
._2b{width:13.273600pt;}
._29{width:14.493867pt;}
._23{width:16.368640pt;}
._25{width:17.722880pt;}
._26{width:18.851413pt;}
._b{width:20.549120pt;}
._33{width:21.702400pt;}
._2a{width:22.609920pt;}
._21{width:23.728640pt;}
._20{width:25.480960pt;}
._22{width:26.597120pt;}
._c{width:27.850240pt;}
._6{width:30.055680pt;}
._1e{width:32.577280pt;}
._1d{width:33.797120pt;}
._1f{width:34.888533pt;}
._5{width:37.452800pt;}
._4{width:38.635520pt;}
._7{width:40.097280pt;}
._31{width:42.746880pt;}
._30{width:43.973120pt;}
._3{width:52.483840pt;}
._2{width:58.114560pt;}
._2e{width:79.710720pt;}
._34{width:84.134400pt;}
._35{width:85.335467pt;}
._a{width:120.056320pt;}
._e{width:1013.814187pt;}
._13{width:1188.881067pt;}
._18{width:1600.424533pt;}
._d{width:1807.278507pt;}
._16{width:1832.705707pt;}
._17{width:1857.584213pt;}
._1a{width:1887.945813pt;}
._19{width:1907.321173pt;}
.fs5{font-size:38.400000pt;}
.fs1{font-size:42.880000pt;}
.fs4{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fsa{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.fs9{font-size:117.120000pt;}
.fs3{font-size:138.880000pt;}
.fs2{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y14d{bottom:2.720000pt;}
.y155{bottom:2.880000pt;}
.y1b4{bottom:3.200000pt;}
.y1b2{bottom:3.360000pt;}
.y2c{bottom:3.520000pt;}
.y22{bottom:3.680000pt;}
.y49{bottom:3.840000pt;}
.y47{bottom:4.000000pt;}
.y3f{bottom:4.160000pt;}
.y3b{bottom:4.320000pt;}
.y26{bottom:4.480000pt;}
.y111{bottom:4.640000pt;}
.y37{bottom:4.800000pt;}
.y39{bottom:4.960000pt;}
.y25{bottom:5.120000pt;}
.y1b{bottom:5.440000pt;}
.y142{bottom:5.600000pt;}
.y1a{bottom:6.080000pt;}
.y32{bottom:6.240000pt;}
.y45{bottom:7.200000pt;}
.y4e{bottom:7.520000pt;}
.y57{bottom:7.840000pt;}
.y5a{bottom:8.000000pt;}
.y43{bottom:12.640000pt;}
.yb{bottom:13.120000pt;}
.y138{bottom:15.040000pt;}
.y13b{bottom:15.194667pt;}
.y136{bottom:15.200000pt;}
.y14c{bottom:15.840000pt;}
.y2b{bottom:20.480000pt;}
.y5d{bottom:21.440000pt;}
.y21{bottom:21.600000pt;}
.y20{bottom:22.240000pt;}
.y1e{bottom:25.120000pt;}
.y1d{bottom:25.760000pt;}
.y5f{bottom:25.920000pt;}
.y59{bottom:25.960000pt;}
.y14b{bottom:28.800000pt;}
.y114{bottom:30.240000pt;}
.y2d{bottom:36.960000pt;}
.y16b{bottom:37.440000pt;}
.y2a{bottom:37.600000pt;}
.y5c{bottom:39.360000pt;}
.y30{bottom:39.520000pt;}
.y2f{bottom:40.160000pt;}
.ya{bottom:41.600000pt;}
.y14a{bottom:41.760000pt;}
.y154{bottom:41.920000pt;}
.y6{bottom:49.920000pt;}
.y149{bottom:54.720000pt;}
.y153{bottom:54.880000pt;}
.y5{bottom:62.912000pt;}
.y148{bottom:67.840000pt;}
.y9{bottom:73.280000pt;}
.y4{bottom:75.872000pt;}
.y1a9{bottom:80.192000pt;}
.y152{bottom:80.800000pt;}
.y3{bottom:89.792000pt;}
.y151{bottom:93.960000pt;}
.y150{bottom:106.920000pt;}
.y33{bottom:111.392000pt;}
.y169{bottom:119.072000pt;}
.y14f{bottom:119.880000pt;}
.y1a4{bottom:125.152000pt;}
.y31{bottom:126.272000pt;}
.y1aa{bottom:127.194667pt;}
.y185{bottom:129.472000pt;}
.y13a{bottom:132.032000pt;}
.ya0{bottom:135.546667pt;}
.y168{bottom:138.266667pt;}
.y115{bottom:140.346667pt;}
.y1a3{bottom:144.346667pt;}
.y2e{bottom:146.586667pt;}
.yf3{bottom:150.106667pt;}
.y9f{bottom:154.746667pt;}
.y167{bottom:157.626667pt;}
.y184{bottom:159.386667pt;}
.yc9{bottom:161.306667pt;}
.y139{bottom:161.946667pt;}
.y1a2{bottom:163.706667pt;}
.yf2{bottom:169.306667pt;}
.y10f{bottom:175.386667pt;}
.y166{bottom:176.826667pt;}
.yc8{bottom:180.506667pt;}
.y1a1{bottom:183.066667pt;}
.y9e{bottom:184.826667pt;}
.yf1{bottom:188.666667pt;}
.y183{bottom:189.306667pt;}
.y137{bottom:191.866667pt;}
.yc7{bottom:199.866667pt;}
.y29{bottom:200.986667pt;}
.y1a0{bottom:202.266667pt;}
.y9d{bottom:204.026667pt;}
.yf0{bottom:207.866667pt;}
.y165{bottom:209.466667pt;}
.yc6{bottom:219.226667pt;}
.y135{bottom:221.626667pt;}
.y9c{bottom:223.386667pt;}
.yef{bottom:228.186667pt;}
.y10e{bottom:232.506667pt;}
.yc5{bottom:238.426667pt;}
.y16a{bottom:238.906667pt;}
.y19f{bottom:240.826667pt;}
.y9b{bottom:242.586667pt;}
.y182{bottom:249.306667pt;}
.y164{bottom:251.226667pt;}
.y28{bottom:252.826667pt;}
.yee{bottom:254.906667pt;}
.yc4{bottom:257.786667pt;}
.y19e{bottom:260.186667pt;}
.y113{bottom:260.986667pt;}
.y10d{bottom:261.146667pt;}
.y9a{bottom:261.946667pt;}
.y134{bottom:267.226667pt;}
.y27{bottom:273.146667pt;}
.y181{bottom:279.226667pt;}
.y163{bottom:281.146667pt;}
.y99{bottom:281.306667pt;}
.y1a8{bottom:286.266667pt;}
.y133{bottom:286.586667pt;}
.yc3{bottom:287.706667pt;}
.y10c{bottom:289.626667pt;}
.y19d{bottom:290.106667pt;}
.y24{bottom:293.466667pt;}
.yed{bottom:296.826667pt;}
.y98{bottom:300.546667pt;}
.y132{bottom:305.986667pt;}
.yc2{bottom:307.106667pt;}
.y180{bottom:309.186667pt;}
.y162{bottom:311.106667pt;}
.y23{bottom:312.866667pt;}
.yec{bottom:316.066667pt;}
.y1a7{bottom:317.666667pt;}
.y10b{bottom:318.306667pt;}
.y97{bottom:319.906667pt;}
.y19c{bottom:320.066667pt;}
.y131{bottom:325.186667pt;}
.yc1{bottom:327.106667pt;}
.y161{bottom:330.466667pt;}
.y1f{bottom:333.186667pt;}
.yeb{bottom:335.426667pt;}
.y10a{bottom:336.226667pt;}
.y96{bottom:339.106667pt;}
.y130{bottom:344.546667pt;}
.y160{bottom:349.826667pt;}
.y19b{bottom:350.146667pt;}
.y7a{bottom:351.426667pt;}
.yea{bottom:354.626667pt;}
.yc0{bottom:359.746667pt;}
.y12f{bottom:363.746667pt;}
.y109{bottom:365.186667pt;}
.y95{bottom:369.186667pt;}
.y1c{bottom:369.666667pt;}
.y1a6{bottom:373.506667pt;}
.ye9{bottom:373.986667pt;}
.ybf{bottom:379.106667pt;}
.y15f{bottom:379.746667pt;}
.y19a{bottom:380.066667pt;}
.y79{bottom:381.346667pt;}
.y12e{bottom:383.586667pt;}
.y94{bottom:389.186667pt;}
.ye8{bottom:393.346667pt;}
.y108{bottom:394.786667pt;}
.ybe{bottom:398.466667pt;}
.y15e{bottom:398.946667pt;}
.y17f{bottom:399.106667pt;}
.y19{bottom:409.666667pt;}
.y199{bottom:409.986667pt;}
.y78{bottom:411.266667pt;}
.ye7{bottom:412.546667pt;}
.y12d{bottom:414.786667pt;}
.ybd{bottom:417.666667pt;}
.y15d{bottom:418.306667pt;}
.y93{bottom:421.826667pt;}
.y107{bottom:424.546667pt;}
.y17e{bottom:429.026667pt;}
.ye6{bottom:431.906667pt;}
.y12c{bottom:434.146667pt;}
.ybc{bottom:437.026667pt;}
.y198{bottom:440.546667pt;}
.y77{bottom:441.186667pt;}
.y18{bottom:445.666667pt;}
.y15c{bottom:448.226667pt;}
.ye5{bottom:451.106667pt;}
.y12b{bottom:453.346667pt;}
.y106{bottom:455.106667pt;}
.ybb{bottom:456.226667pt;}
.y17d{bottom:458.946667pt;}
.y92{bottom:460.546667pt;}
.y197{bottom:461.026667pt;}
.y76{bottom:467.266667pt;}
.y15b{bottom:467.586667pt;}
.ye4{bottom:470.466667pt;}
.y12a{bottom:472.706667pt;}
.yba{bottom:475.586667pt;}
.y17{bottom:475.746667pt;}
.y112{bottom:479.586667pt;}
.y91{bottom:479.746667pt;}
.y105{bottom:485.026667pt;}
.y15a{bottom:486.786667pt;}
.y17c{bottom:489.026667pt;}
.ye3{bottom:489.666667pt;}
.y1a5{bottom:490.466667pt;}
.y196{bottom:491.746667pt;}
.y129{bottom:492.706667pt;}
.y75{bottom:493.186667pt;}
.yb9{bottom:494.786667pt;}
.y90{bottom:499.106667pt;}
.y16{bottom:505.666667pt;}
.y159{bottom:506.146667pt;}
.ye2{bottom:509.026667pt;}
.y141{bottom:513.666667pt;}
.yb8{bottom:514.146667pt;}
.y104{bottom:515.586667pt;}
.y17b{bottom:518.946667pt;}
.y74{bottom:519.106667pt;}
.y195{bottom:521.666667pt;}
.y128{bottom:524.066667pt;}
.y158{bottom:527.746667pt;}
.ye1{bottom:528.386667pt;}
.y8f{bottom:529.026667pt;}
.yb7{bottom:533.506667pt;}
.y15{bottom:535.586667pt;}
.y1be{bottom:535.906667pt;}
.y73{bottom:545.053333pt;}
.y17a{bottom:545.213333pt;}
.y103{bottom:546.813333pt;}
.ye0{bottom:547.613333pt;}
.y8e{bottom:548.413333pt;}
.y1bd{bottom:550.973333pt;}
.y194{bottom:552.253333pt;}
.yb6{bottom:552.733333pt;}
.y127{bottom:554.013333pt;}
.y14{bottom:565.533333pt;}
.ydf{bottom:566.973333pt;}
.y8d{bottom:567.613333pt;}
.y1bc{bottom:568.733333pt;}
.y157{bottom:569.533333pt;}
.y72{bottom:571.133333pt;}
.yb5{bottom:572.093333pt;}
.y140{bottom:573.693333pt;}
.y102{bottom:578.013333pt;}
.y193{bottom:582.813333pt;}
.y156{bottom:583.773333pt;}
.y126{bottom:583.933333pt;}
.yde{bottom:586.173333pt;}
.y1bb{bottom:586.653333pt;}
.y8c{bottom:586.973333pt;}
.yb4{bottom:591.293333pt;}
.y13{bottom:595.613333pt;}
.y71{bottom:597.053333pt;}
.y1ba{bottom:604.413333pt;}
.ydd{bottom:605.533333pt;}
.y8b{bottom:606.173333pt;}
.y50{bottom:608.733333pt;}
.y101{bottom:609.213333pt;}
.yb3{bottom:610.653333pt;}
.y192{bottom:612.733333pt;}
.y125{bottom:614.013333pt;}
.y61{bottom:621.213333pt;}
.y179{bottom:621.533333pt;}
.y1b9{bottom:622.333333pt;}
.y70{bottom:622.973333pt;}
.y4f{bottom:623.613333pt;}
.ydc{bottom:624.893333pt;}
.y12{bottom:625.533333pt;}
.yb2{bottom:630.013333pt;}
.y191{bottom:632.093333pt;}
.y124{bottom:633.213333pt;}
.y8a{bottom:636.253333pt;}
.y1b8{bottom:640.253333pt;}
.y100{bottom:640.413333pt;}
.y178{bottom:640.893333pt;}
.y4d{bottom:643.293333pt;}
.ydb{bottom:644.093333pt;}
.y6f{bottom:649.053333pt;}
.yb1{bottom:649.213333pt;}
.y60{bottom:651.133333pt;}
.y190{bottom:651.453333pt;}
.y11{bottom:655.453333pt;}
.y13f{bottom:656.253333pt;}
.y1b7{bottom:658.013333pt;}
.y177{bottom:660.093333pt;}
.y123{bottom:663.133333pt;}
.yda{bottom:663.453333pt;}
.y5e{bottom:666.013333pt;}
.yb0{bottom:668.573333pt;}
.y4c{bottom:669.693333pt;}
.yff{bottom:671.613333pt;}
.y6e{bottom:674.973333pt;}
.y1b6{bottom:675.933333pt;}
.y176{bottom:679.453333pt;}
.y18f{bottom:681.853333pt;}
.yd9{bottom:682.653333pt;}
.y10{bottom:685.373333pt;}
.yaf{bottom:687.773333pt;}
.y4b{bottom:689.213333pt;}
.y122{bottom:693.213333pt;}
.y1b5{bottom:693.853333pt;}
.y175{bottom:698.813333pt;}
.y6d{bottom:700.893333pt;}
.yd8{bottom:702.013333pt;}
.yfe{bottom:702.813333pt;}
.y89{bottom:704.733333pt;}
.y5b{bottom:706.813333pt;}
.yae{bottom:707.133333pt;}
.y4a{bottom:707.933333pt;}
.yf{bottom:708.413333pt;}
.y18e{bottom:714.493333pt;}
.yd7{bottom:721.373333pt;}
.y121{bottom:723.133333pt;}
.y88{bottom:724.093333pt;}
.yad{bottom:726.493333pt;}
.y48{bottom:726.653333pt;}
.y6c{bottom:726.813333pt;}
.y1b3{bottom:728.893333pt;}
.y174{bottom:731.293333pt;}
.yfd{bottom:734.013333pt;}
.yd6{bottom:740.573333pt;}
.y87{bottom:745.693333pt;}
.y46{bottom:746.333333pt;}
.y1b1{bottom:746.653333pt;}
.y13e{bottom:748.093333pt;}
.ye{bottom:750.653333pt;}
.y6b{bottom:752.893333pt;}
.y120{bottom:753.053333pt;}
.y18d{bottom:753.373333pt;}
.yfc{bottom:754.013333pt;}
.yd5{bottom:759.933333pt;}
.y58{bottom:761.053333pt;}
.yac{bottom:765.053333pt;}
.y44{bottom:766.493333pt;}
.y173{bottom:773.053333pt;}
.y110{bottom:778.533333pt;}
.y6a{bottom:778.853333pt;}
.yd4{bottom:779.173333pt;}
.y1b0{bottom:780.293333pt;}
.y11f{bottom:783.013333pt;}
.yfb{bottom:783.973333pt;}
.yab{bottom:784.293333pt;}
.y86{bottom:786.053333pt;}
.y42{bottom:791.973333pt;}
.y172{bottom:792.453333pt;}
.yd{bottom:792.933333pt;}
.y18c{bottom:797.573333pt;}
.yd3{bottom:798.533333pt;}
.y56{bottom:801.893333pt;}
.y11e{bottom:802.373333pt;}
.yaa{bottom:803.653333pt;}
.y85{bottom:803.973333pt;}
.y69{bottom:804.773333pt;}
.yfa{bottom:814.533333pt;}
.yd2{bottom:817.733333pt;}
.y18b{bottom:819.173333pt;}
.y84{bottom:821.893333pt;}
.y171{bottom:822.373333pt;}
.ya9{bottom:822.853333pt;}
.y13d{bottom:827.333333pt;}
.y41{bottom:828.453333pt;}
.y14e{bottom:828.773333pt;}
.y68{bottom:830.693333pt;}
.y11d{bottom:832.293333pt;}
.yc{bottom:835.173333pt;}
.yd1{bottom:837.093333pt;}
.y147{bottom:839.173333pt;}
.y83{bottom:839.653333pt;}
.y170{bottom:841.573333pt;}
.ya8{bottom:842.213333pt;}
.y55{bottom:842.533333pt;}
.y1af{bottom:843.653333pt;}
.yf9{bottom:845.733333pt;}
.y40{bottom:848.133333pt;}
.yd0{bottom:856.453333pt;}
.y67{bottom:856.773333pt;}
.y82{bottom:857.573333pt;}
.y18a{bottom:860.933333pt;}
.ya7{bottom:861.573333pt;}
.y11c{bottom:862.373333pt;}
.y3e{bottom:867.813333pt;}
.y8{bottom:869.413333pt;}
.y16f{bottom:871.653333pt;}
.y1ae{bottom:873.573333pt;}
.y81{bottom:875.493333pt;}
.ycf{bottom:875.653333pt;}
.yf8{bottom:876.933333pt;}
.ya6{bottom:880.773333pt;}
.y11b{bottom:881.573333pt;}
.y66{bottom:882.693333pt;}
.y3d{bottom:887.493333pt;}
.y189{bottom:890.853333pt;}
.y1ad{bottom:892.933333pt;}
.y80{bottom:893.253333pt;}
.yce{bottom:895.013333pt;}
.y54{bottom:897.093333pt;}
.ya5{bottom:900.133333pt;}
.y16e{bottom:901.573333pt;}
.y13c{bottom:901.893333pt;}
.y3c{bottom:906.053333pt;}
.yf7{bottom:908.133333pt;}
.y65{bottom:908.613333pt;}
.y7f{bottom:911.173333pt;}
.y11a{bottom:911.493333pt;}
.y1ac{bottom:912.293333pt;}
.ycd{bottom:914.213333pt;}
.ya4{bottom:919.333333pt;}
.y188{bottom:920.933333pt;}
.y3a{bottom:925.733333pt;}
.y7e{bottom:929.093333pt;}
.y146{bottom:930.533333pt;}
.y64{bottom:930.693333pt;}
.y16d{bottom:931.493333pt;}
.y53{bottom:933.413333pt;}
.ycc{bottom:933.573333pt;}
.ya3{bottom:938.693333pt;}
.y119{bottom:941.573333pt;}
.y1ab{bottom:942.213333pt;}
.y38{bottom:945.413333pt;}
.y7d{bottom:947.013333pt;}
.y187{bottom:950.853333pt;}
.y52{bottom:952.773333pt;}
.ycb{bottom:952.933333pt;}
.y145{bottom:954.213333pt;}
.yf6{bottom:958.533333pt;}
.ya2{bottom:958.853333pt;}
.y16c{bottom:961.573333pt;}
.y7c{bottom:964.773333pt;}
.y144{bottom:965.253333pt;}
.y36{bottom:966.533333pt;}
.y118{bottom:970.053333pt;}
.y51{bottom:971.973333pt;}
.yca{bottom:972.133333pt;}
.y63{bottom:974.373333pt;}
.y186{bottom:980.773333pt;}
.y7b{bottom:982.693333pt;}
.y117{bottom:987.973333pt;}
.y7{bottom:988.773333pt;}
.yf5{bottom:989.733333pt;}
.ya1{bottom:991.493333pt;}
.y143{bottom:995.173333pt;}
.y35{bottom:1004.293333pt;}
.y116{bottom:1007.973333pt;}
.yf4{bottom:1009.413333pt;}
.y62{bottom:1010.693333pt;}
.y2{bottom:1028.640000pt;}
.y1{bottom:1043.040000pt;}
.y34{bottom:1066.932533pt;}
.h36{height:17.120000pt;}
.h35{height:17.280000pt;}
.h13{height:17.920000pt;}
.h33{height:17.952000pt;}
.h18{height:18.080000pt;}
.hb{height:18.752000pt;}
.h19{height:18.880000pt;}
.h10{height:19.040000pt;}
.h16{height:19.520000pt;}
.h7{height:19.680000pt;}
.h2b{height:19.840000pt;}
.h11{height:20.480000pt;}
.h15{height:24.832000pt;}
.h1a{height:25.600000pt;}
.h2a{height:29.120000pt;}
.h2c{height:29.152000pt;}
.h28{height:29.280000pt;}
.h37{height:34.400000pt;}
.ha{height:35.680000pt;}
.h14{height:35.840000pt;}
.he{height:37.631250pt;}
.h9{height:39.360000pt;}
.h1b{height:40.000000pt;}
.h1c{height:40.032000pt;}
.h3{height:42.794240pt;}
.h26{height:44.480000pt;}
.h25{height:44.512000pt;}
.hc{height:51.200000pt;}
.h29{height:51.232500pt;}
.h8{height:51.307520pt;}
.h27{height:51.578880pt;}
.h2f{height:51.680000pt;}
.h1d{height:53.600000pt;}
.hd{height:53.760000pt;}
.h24{height:54.817280pt;}
.h2{height:58.762240pt;}
.h20{height:60.519362pt;}
.h32{height:61.295000pt;}
.h12{height:62.812500pt;}
.h17{height:63.872000pt;}
.h22{height:64.350720pt;}
.h23{height:66.625000pt;}
.h21{height:71.955000pt;}
.h31{height:74.730240pt;}
.h2d{height:78.080000pt;}
.hf{height:79.246720pt;}
.h1e{height:84.662813pt;}
.h1f{height:88.611250pt;}
.h30{height:109.038720pt;}
.h5{height:109.440000pt;}
.h2e{height:130.112000pt;}
.h6{height:135.408000pt;}
.h34{height:141.440000pt;}
.h4{height:145.392000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:40.320000pt;}
.w9{width:46.400000pt;}
.wa{width:76.512000pt;}
.w8{width:77.280000pt;}
.w15{width:106.752000pt;}
.w13{width:108.352000pt;}
.w12{width:110.752000pt;}
.w14{width:112.320000pt;}
.wb{width:121.600000pt;}
.w1e{width:121.920000pt;}
.wc{width:122.272000pt;}
.w11{width:124.960000pt;}
.w4{width:167.226667pt;}
.w20{width:188.186667pt;}
.wd{width:196.986667pt;}
.w1f{width:254.306667pt;}
.w16{width:283.066667pt;}
.w17{width:283.266667pt;}
.we{width:300.386667pt;}
.w19{width:418.146667pt;}
.w5{width:426.626667pt;}
.w1a{width:475.293333pt;}
.w1c{width:485.053333pt;}
.w1b{width:489.853333pt;}
.w7{width:503.933333pt;}
.w18{width:544.413333pt;}
.w3{width:565.693333pt;}
.w1d{width:566.493333pt;}
.w10{width:566.813333pt;}
.wf{width:566.973333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:7.360000pt;}
.x12{left:8.960000pt;}
.x14{left:27.680000pt;}
.x13{left:29.280000pt;}
.x15{left:32.320000pt;}
.x10{left:85.472000pt;}
.x8{left:91.194667pt;}
.x2{left:113.471988pt;}
.x24{left:114.752000pt;}
.x2c{left:122.911988pt;}
.xa{left:126.111988pt;}
.x1c{left:128.191988pt;}
.x4{left:129.631988pt;}
.xb{left:132.031988pt;}
.x17{left:133.152000pt;}
.x2e{left:136.026667pt;}
.x1e{left:137.466655pt;}
.x1d{left:142.746655pt;}
.x2d{left:146.906655pt;}
.x5{left:156.026655pt;}
.x1f{left:161.466655pt;}
.x22{left:164.026667pt;}
.x23{left:166.746667pt;}
.x9{left:172.034667pt;}
.x7{left:176.034667pt;}
.x18{left:180.186667pt;}
.x20{left:185.466655pt;}
.x31{left:190.746667pt;}
.x32{left:194.746667pt;}
.x1{left:196.666655pt;}
.x30{left:205.466667pt;}
.x21{left:209.466655pt;}
.x33{left:236.666667pt;}
.x26{left:239.706667pt;}
.x19{left:257.346667pt;}
.x2f{left:262.786667pt;}
.xc{left:277.506655pt;}
.xe{left:281.986667pt;}
.x27{left:351.106667pt;}
.x1a{left:379.586667pt;}
.x6{left:396.866655pt;}
.x28{left:460.093333pt;}
.x34{left:491.613333pt;}
.x1b{left:502.493333pt;}
.x29{left:573.053333pt;}
.xf{left:600.316813pt;}
.x11{left:631.013333pt;}
.x25{left:665.413322pt;}
.x2a{left:666.853322pt;}
.x16{left:670.693322pt;}
.x3{left:672.133322pt;}
.x2b{left:680.453322pt;}
}




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