
    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_740844cda2ba79ed9d198f67.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_9658a6f8a782d88145df3684.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_ea9bce07da83c11f4e97da9e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958000;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_2567fdebc51c1c1b7e0d6c24.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958000;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_b58657e8e3c546eccfbe9610.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_344e76bd7b03548244ea1b55.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.731000;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_2eccde31eaeeb1444362d912.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958000;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_ab44345aec48df3db1f6354d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c385263bc1ae43c06e21e219.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.080000;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_5c5f7ce1174a3181b229bdfb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_2b84b45ba50a654d1a222a6c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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_ec22f2ebda58e346ce5091a6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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_575f5ba2802aaaf3eb449702.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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_6960ae5cb41c65d2b0e49f9d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_c298a7af644553d08d2a6849.woff2')format("woff");}.fff{font-family:fff;line-height:0.893555;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_8cece0a004816b7bf27c2b97.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;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_c508e493b92f0ec8bd6dbb59.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_e392ed0b715ec7bea794e071.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_bf89436efd071e800c7b1fc5.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_03ae619c4b5272040c25aee0.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.910645;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:ff15;src:url('chunks/assets/font_adc020e46df18c242b9048eb.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_96567012307a24b55b088b02.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);-ms-transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);-webkit-transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);}
.m3{transform:matrix(0.241439,0.000000,-0.080443,0.236704,0,0);-ms-transform:matrix(0.241439,0.000000,-0.080443,0.236704,0,0);-webkit-transform:matrix(0.241439,0.000000,-0.080443,0.236704,0,0);}
.m4{transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249988,0.000000,0.000000,0.250000,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);}
.m5{transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls11{letter-spacing:-1.023251px;}
.ls29{letter-spacing:-0.459648px;}
.ls26{letter-spacing:-0.417312px;}
.ls24{letter-spacing:-0.399168px;}
.ls2a{letter-spacing:-0.381024px;}
.ls1e{letter-spacing:-0.338688px;}
.lse{letter-spacing:-0.326592px;}
.ls1f{letter-spacing:-0.320544px;}
.ls20{letter-spacing:-0.302400px;}
.ls5{letter-spacing:-0.284256px;}
.ls2{letter-spacing:-0.278208px;}
.ls6{letter-spacing:-0.266112px;}
.ls4{letter-spacing:-0.260064px;}
.ls15{letter-spacing:-0.254016px;}
.lsb{letter-spacing:-0.247968px;}
.ls23{letter-spacing:-0.241920px;}
.lsd{letter-spacing:-0.235872px;}
.ls3{letter-spacing:-0.223776px;}
.ls9{letter-spacing:-0.217728px;}
.ls16{letter-spacing:-0.175392px;}
.ls22{letter-spacing:-0.157248px;}
.ls25{letter-spacing:-0.145152px;}
.lsc{letter-spacing:-0.139104px;}
.ls8{letter-spacing:-0.127008px;}
.ls21{letter-spacing:-0.120960px;}
.lsa{letter-spacing:-0.114912px;}
.ls7{letter-spacing:-0.096768px;}
.ls13{letter-spacing:-0.014400px;}
.ls1b{letter-spacing:-0.008685px;}
.ls1d{letter-spacing:-0.007791px;}
.ls0{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.007791px;}
.ls1a{letter-spacing:0.008685px;}
.ls14{letter-spacing:0.014400px;}
.ls27{letter-spacing:0.027216px;}
.ls28{letter-spacing:0.058320px;}
.ls10{letter-spacing:0.264634px;}
.ls12{letter-spacing:0.335203px;}
.lsf{letter-spacing:1.153976px;}
.ls1{letter-spacing:1.411765px;}
.ls19{letter-spacing:1.491063px;}
.ls17{letter-spacing:6.139152px;}
.ls18{letter-spacing:54.866736px;}
.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;}
}
.ws10{word-spacing:-19.160156px;}
.ws0{word-spacing:-18.984000px;}
.wsb{word-spacing:-18.141177px;}
.wsd{word-spacing:-18.014400px;}
.wse{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.985600px;}
.ws15{word-spacing:-15.120000px;}
.ws21{word-spacing:-14.974848px;}
.ws1d{word-spacing:-14.962752px;}
.ws1c{word-spacing:-14.944608px;}
.ws1a{word-spacing:-14.896224px;}
.ws17{word-spacing:-14.878080px;}
.ws1f{word-spacing:-14.859936px;}
.ws1b{word-spacing:-14.817600px;}
.ws16{word-spacing:-14.799456px;}
.ws19{word-spacing:-14.781312px;}
.ws18{word-spacing:-14.720832px;}
.ws3{word-spacing:-14.333760px;}
.ws8{word-spacing:-14.194656px;}
.ws6{word-spacing:-14.116032px;}
.ws5{word-spacing:-14.109984px;}
.ws9{word-spacing:-14.097888px;}
.ws7{word-spacing:-14.085792px;}
.ws4{word-spacing:-14.067648px;}
.ws2{word-spacing:-14.049504px;}
.wsa{word-spacing:-14.007168px;}
.ws12{word-spacing:-10.865393px;}
.ws11{word-spacing:-10.848022px;}
.ws14{word-spacing:-9.746728px;}
.ws13{word-spacing:-9.731146px;}
.ws20{word-spacing:-0.097200px;}
.wsf{word-spacing:-0.072000px;}
.ws1e{word-spacing:-0.066096px;}
.ws1{word-spacing:0.000000px;}
._2{margin-left:-7.353600px;}
._17{margin-left:-5.323392px;}
._3{margin-left:-4.284000px;}
._12{margin-left:-3.259200px;}
._1{margin-left:-1.996800px;}
._4{width:1.088640px;}
._5{width:2.257079px;}
._e{width:4.171680px;}
._0{width:5.587200px;}
._c{width:6.588000px;}
._8{width:8.280000px;}
._b{width:9.468000px;}
._13{width:10.821600px;}
._6{width:12.351888px;}
._16{width:13.726512px;}
._11{width:15.256800px;}
._7{width:16.639200px;}
._15{width:19.036800px;}
._9{width:20.044800px;}
._14{width:21.772800px;}
._19{width:23.093568px;}
._a{width:25.048800px;}
._18{width:26.354304px;}
._1f{width:27.550080px;}
._1c{width:28.569600px;}
._d{width:29.736000px;}
._f{width:33.415200px;}
._1b{width:41.428800px;}
._1d{width:65.022624px;}
._20{width:70.405344px;}
._1e{width:73.489824px;}
._1a{width:87.303456px;}
._10{width:90.387936px;}
.fc3{color:rgb(128,128,128);}
.fc2{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs11{font-size:38.880000px;}
.fsf{font-size:38.955749px;}
.fse{font-size:43.426829px;}
.fs10{font-size:53.564155px;}
.fsd{font-size:59.711890px;}
.fs3{font-size:60.480000px;}
.fsa{font-size:63.877126px;}
.fs2{font-size:66.000000px;}
.fsb{font-size:66.240000px;}
.fs8{font-size:70.588238px;}
.fs6{font-size:72.000000px;}
.fsc{font-size:74.553137px;}
.fs9{font-size:81.882360px;}
.fs1{font-size:84.000000px;}
.fs7{font-size:88.211268px;}
.fs4{font-size:94.588229px;}
.fs0{font-size:96.000000px;}
.fs5{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y11b{bottom:3.043335px;}
.y11d{bottom:3.043363px;}
.y135{bottom:3.043369px;}
.y139{bottom:3.043393px;}
.y125{bottom:3.043403px;}
.y127{bottom:3.043431px;}
.y13f{bottom:3.043437px;}
.y144{bottom:3.043453px;}
.y12b{bottom:3.043455px;}
.y12d{bottom:3.043484px;}
.yee{bottom:3.392743px;}
.y10f{bottom:3.392758px;}
.yf8{bottom:3.392759px;}
.yf2{bottom:3.392764px;}
.y102{bottom:3.392767px;}
.y115{bottom:3.392791px;}
.yec{bottom:3.392827px;}
.y104{bottom:3.392833px;}
.y119{bottom:4.260706px;}
.y11f{bottom:4.260759px;}
.y137{bottom:4.260765px;}
.y14a{bottom:4.260789px;}
.y129{bottom:4.260827px;}
.yf0{bottom:4.749898px;}
.y100{bottom:4.749901px;}
.y10a{bottom:4.749917px;}
.y14c{bottom:4.869469px;}
.y116{bottom:5.428354px;}
.yc{bottom:8.040000px;}
.y124{bottom:13.999707px;}
.y143{bottom:13.999757px;}
.y134{bottom:15.217041px;}
.y149{bottom:15.217093px;}
.y13e{bottom:15.217109px;}
.y114{bottom:15.606587px;}
.y10e{bottom:16.963642px;}
.yf7{bottom:16.963643px;}
.yff{bottom:16.963697px;}
.y109{bottom:16.963712px;}
.y123{bottom:24.956011px;}
.y133{bottom:26.173345px;}
.y148{bottom:26.173397px;}
.y13d{bottom:26.173413px;}
.y142{bottom:26.173428px;}
.y113{bottom:27.820382px;}
.y10d{bottom:29.177437px;}
.yf6{bottom:29.177438px;}
.yfe{bottom:29.177492px;}
.y108{bottom:29.177508px;}
.y132{bottom:37.129649px;}
.y122{bottom:37.129683px;}
.y147{bottom:37.129702px;}
.y13c{bottom:37.129717px;}
.y141{bottom:37.129733px;}
.y112{bottom:40.034178px;}
.y10c{bottom:41.391233px;}
.yf5{bottom:41.391234px;}
.yfd{bottom:41.391288px;}
.y107{bottom:41.391304px;}
.y131{bottom:48.085954px;}
.y121{bottom:48.085987px;}
.y146{bottom:48.086006px;}
.y13b{bottom:48.086022px;}
.yf4{bottom:53.605030px;}
.y111{bottom:53.605062px;}
.yfc{bottom:53.605084px;}
.y106{bottom:53.605099px;}
.y130{bottom:59.042258px;}
.yfb{bottom:67.175968px;}
.y12f{bottom:71.215929px;}
.y7b{bottom:76.440000px;}
.y1f{bottom:77.880000px;}
.yfa{bottom:79.389763px;}
.y1e{bottom:92.640000px;}
.yc5{bottom:93.000000px;}
.ye8{bottom:97.320000px;}
.y13{bottom:99.795000px;}
.y9a{bottom:102.000000px;}
.y1c0{bottom:104.160000px;}
.y14b{bottom:104.678055px;}
.y117{bottom:104.880000px;}
.y7a{bottom:105.240000px;}
.y1d{bottom:107.040000px;}
.y8c{bottom:107.760000px;}
.y18d{bottom:113.160000px;}
.y17{bottom:113.670000px;}
.yc4{bottom:113.880000px;}
.ye7{bottom:117.840000px;}
.yd5{bottom:119.640000px;}
.y1bf{bottom:121.440000px;}
.y1c{bottom:121.800000px;}
.y145{bottom:122.329875px;}
.y99{bottom:122.880000px;}
.y79{bottom:125.760000px;}
.y8b{bottom:128.640000px;}
.y18c{bottom:130.440000px;}
.yc3{bottom:134.400000px;}
.y16{bottom:135.750000px;}
.y1b{bottom:136.200000px;}
.ye6{bottom:138.720000px;}
.yd4{bottom:140.520000px;}
.y98{bottom:143.400000px;}
.y78{bottom:146.640000px;}
.y18b{bottom:147.720000px;}
.y8a{bottom:149.160000px;}
.y14{bottom:154.950000px;}
.yc2{bottom:155.280000px;}
.y1be{bottom:156.000000px;}
.yf{bottom:156.015000px;}
.y15{bottom:157.830000px;}
.ye5{bottom:159.240000px;}
.yd3{bottom:161.040000px;}
.y97{bottom:164.280000px;}
.y18a{bottom:165.000000px;}
.y77{bottom:167.160000px;}
.y89{bottom:170.040000px;}
.y1a{bottom:171.480000px;}
.y1bd{bottom:173.280000px;}
.yc1{bottom:175.800000px;}
.y140{bottom:179.546100px;}
.ye4{bottom:180.120000px;}
.yd2{bottom:181.920000px;}
.y189{bottom:182.280000px;}
.y76{bottom:188.040000px;}
.y88{bottom:190.560000px;}
.y96{bottom:193.704600px;}
.yc0{bottom:196.680000px;}
.y188{bottom:199.200000px;}
.y48{bottom:200.280000px;}
.ye3{bottom:200.640000px;}
.yd1{bottom:202.440000px;}
.y1bc{bottom:207.840000px;}
.y75{bottom:208.560000px;}
.y87{bottom:211.440000px;}
.y187{bottom:216.480000px;}
.ybf{bottom:217.200000px;}
.y47{bottom:220.800000px;}
.ye2{bottom:221.520000px;}
.yd0{bottom:223.320000px;}
.y13a{bottom:224.588700px;}
.y1bb{bottom:225.120000px;}
.y74{bottom:229.440000px;}
.y95{bottom:231.864600px;}
.y86{bottom:231.960000px;}
.y186{bottom:233.760000px;}
.ybe{bottom:238.080000px;}
.y46{bottom:241.680000px;}
.ye1{bottom:242.040000px;}
.ycf{bottom:243.840000px;}
.y73{bottom:249.960000px;}
.y185{bottom:251.040000px;}
.y85{bottom:252.480000px;}
.ybd{bottom:258.600000px;}
.y1ba{bottom:259.320000px;}
.y45{bottom:262.200000px;}
.ye0{bottom:262.920000px;}
.yce{bottom:264.720000px;}
.y184{bottom:268.320000px;}
.y72{bottom:270.840000px;}
.y84{bottom:273.360000px;}
.y1b9{bottom:276.600000px;}
.ybc{bottom:279.480000px;}
.y138{bottom:281.805000px;}
.ydf{bottom:283.440000px;}
.ycd{bottom:285.240000px;}
.y183{bottom:285.600000px;}
.y71{bottom:291.360000px;}
.y136{bottom:292.761300px;}
.y83{bottom:293.880000px;}
.ybb{bottom:300.000000px;}
.ye9{bottom:300.154200px;}
.yde{bottom:300.360000px;}
.y182{bottom:302.880000px;}
.y44{bottom:303.504600px;}
.y12e{bottom:304.935000px;}
.ycc{bottom:306.120000px;}
.y1b8{bottom:311.160000px;}
.y70{bottom:312.240000px;}
.y82{bottom:314.760000px;}
.y181{bottom:320.160000px;}
.yba{bottom:320.880000px;}
.y110{bottom:321.189000px;}
.ycb{bottom:326.640000px;}
.y1b7{bottom:328.440000px;}
.y6f{bottom:332.760000px;}
.y81{bottom:335.280000px;}
.y180{bottom:337.440000px;}
.yb9{bottom:341.400000px;}
.y43{bottom:342.773040px;}
.ya{bottom:344.680500px;}
.y1b6{bottom:345.720000px;}
.yca{bottom:347.520000px;}
.y6e{bottom:353.640000px;}
.y17f{bottom:354.720000px;}
.y80{bottom:356.160000px;}
.yb8{bottom:362.280000px;}
.y42{bottom:362.933040px;}
.y1b5{bottom:363.000000px;}
.yc9{bottom:368.040000px;}
.y17e{bottom:372.000000px;}
.y6d{bottom:374.160000px;}
.y7f{bottom:376.680000px;}
.y15a{bottom:376.944600px;}
.y1b4{bottom:380.280000px;}
.y41{bottom:383.064600px;}
.y10b{bottom:383.615100px;}
.y12c{bottom:384.063750px;}
.yd{bottom:386.490000px;}
.yc8{bottom:388.920000px;}
.yb7{bottom:391.344600px;}
.y6c{bottom:395.040000px;}
.y9{bottom:395.689500px;}
.y12a{bottom:396.237450px;}
.y7e{bottom:397.560000px;}
.y40{bottom:400.440000px;}
.y17d{bottom:406.200000px;}
.y128{bottom:407.193750px;}
.yc7{bottom:409.440000px;}
.y1b3{bottom:414.840000px;}
.y6b{bottom:415.560000px;}
.y7d{bottom:418.080000px;}
.y126{bottom:419.367450px;}
.y3f{bottom:421.320000px;}
.y3e{bottom:421.584600px;}
.y17c{bottom:423.480000px;}
.yb6{bottom:430.320000px;}
.y120{bottom:431.541150px;}
.yea{bottom:431.554111px;}
.y1b2{bottom:431.760000px;}
.y105{bottom:433.827300px;}
.yb{bottom:434.850000px;}
.y6a{bottom:436.440000px;}
.y159{bottom:438.960000px;}
.y17b{bottom:440.760000px;}
.y3d{bottom:441.480000px;}
.y8{bottom:446.698500px;}
.y1b1{bottom:449.040000px;}
.yb5{bottom:450.840000px;}
.y69{bottom:456.960000px;}
.y17a{bottom:458.040000px;}
.y3c{bottom:459.120000px;}
.y158{bottom:459.480000px;}
.y7c{bottom:459.744600px;}
.y1b0{bottom:466.320000px;}
.yb4{bottom:471.720000px;}
.y179{bottom:475.320000px;}
.y68{bottom:477.840000px;}
.y3b{bottom:480.000000px;}
.yc6{bottom:480.264600px;}
.y157{bottom:480.360000px;}
.y1af{bottom:483.600000px;}
.y11e{bottom:487.540050px;}
.y10{bottom:488.055000px;}
.yb3{bottom:492.240000px;}
.y178{bottom:492.600000px;}
.y103{bottom:497.610450px;}
.y7{bottom:497.707500px;}
.y67{bottom:498.360000px;}
.y11c{bottom:499.713750px;}
.y3a{bottom:500.520000px;}
.y156{bottom:500.880000px;}
.y177{bottom:509.880000px;}
.y101{bottom:511.181400px;}
.y11a{bottom:511.887450px;}
.yb2{bottom:513.120000px;}
.y1ae{bottom:518.160000px;}
.y66{bottom:519.240000px;}
.y39{bottom:521.400000px;}
.y155{bottom:521.760000px;}
.y118{bottom:522.843750px;}
.yf9{bottom:523.395150px;}
.y176{bottom:527.160000px;}
.yb1{bottom:533.640000px;}
.y1ad{bottom:535.440000px;}
.y11{bottom:538.230000px;}
.y65{bottom:539.760000px;}
.y38{bottom:541.920000px;}
.y154{bottom:542.280000px;}
.y175{bottom:544.440000px;}
.y6{bottom:548.716500px;}
.y1ac{bottom:552.720000px;}
.yb0{bottom:554.520000px;}
.y64{bottom:560.640000px;}
.y174{bottom:561.720000px;}
.y37{bottom:562.800000px;}
.y153{bottom:563.160000px;}
.y1ab{bottom:570.000000px;}
.yaf{bottom:575.040000px;}
.y173{bottom:579.000000px;}
.y63{bottom:581.160000px;}
.y36{bottom:583.320000px;}
.y152{bottom:583.680000px;}
.y1aa{bottom:587.280000px;}
.y18{bottom:589.605000px;}
.yae{bottom:595.920000px;}
.y5{bottom:599.725500px;}
.y62{bottom:601.680000px;}
.y94{bottom:602.040000px;}
.y35{bottom:604.200000px;}
.y151{bottom:604.560000px;}
.yf3{bottom:611.605950px;}
.y172{bottom:613.200000px;}
.yad{bottom:616.440000px;}
.y1a9{bottom:621.480000px;}
.y61{bottom:622.560000px;}
.y34{bottom:624.720000px;}
.y150{bottom:625.080000px;}
.y171{bottom:630.480000px;}
.ye{bottom:631.920000px;}
.yac{bottom:637.320000px;}
.y1a8{bottom:638.760000px;}
.y60{bottom:643.080000px;}
.y93{bottom:644.520000px;}
.y33{bottom:645.600000px;}
.y14f{bottom:645.960000px;}
.y170{bottom:647.760000px;}
.y1a7{bottom:656.040000px;}
.yab{bottom:657.840000px;}
.y5f{bottom:663.960000px;}
.y92{bottom:665.040000px;}
.y32{bottom:666.120000px;}
.y14e{bottom:666.480000px;}
.y1a6{bottom:673.320000px;}
.yf1{bottom:675.389100px;}
.yaa{bottom:678.720000px;}
.y16f{bottom:682.320000px;}
.y5e{bottom:684.480000px;}
.y31{bottom:687.000000px;}
.y91{bottom:687.360000px;}
.yef{bottom:687.602850px;}
.y1a5{bottom:690.600000px;}
.ya9{bottom:699.240000px;}
.y16e{bottom:699.600000px;}
.yed{bottom:701.173800px;}
.y5d{bottom:705.360000px;}
.y90{bottom:707.880000px;}
.yeb{bottom:714.744600px;}
.y16d{bottom:716.880000px;}
.ya8{bottom:720.120000px;}
.y1a4{bottom:725.160000px;}
.y5c{bottom:725.880000px;}
.y30{bottom:728.304708px;}
.y8f{bottom:728.760000px;}
.y16c{bottom:734.160000px;}
.ya7{bottom:740.640000px;}
.y1a3{bottom:742.440000px;}
.y5b{bottom:746.760000px;}
.y8e{bottom:749.280000px;}
.y16b{bottom:751.440000px;}
.y1a2{bottom:759.720000px;}
.ya6{bottom:761.520000px;}
.y2f{bottom:766.920000px;}
.y5a{bottom:767.280000px;}
.y16a{bottom:768.720000px;}
.ydd{bottom:770.160000px;}
.y1a1{bottom:777.000000px;}
.y4{bottom:778.225500px;}
.ya5{bottom:782.040000px;}
.y169{bottom:785.640000px;}
.y2e{bottom:787.800000px;}
.y59{bottom:788.160000px;}
.y8d{bottom:790.584708px;}
.ydc{bottom:790.680000px;}
.y1a0{bottom:794.280000px;}
.ya4{bottom:802.920000px;}
.y2d{bottom:808.320000px;}
.y58{bottom:808.680000px;}
.ydb{bottom:811.560000px;}
.y12{bottom:815.670000px;}
.y168{bottom:820.200000px;}
.ya3{bottom:823.440000px;}
.y19f{bottom:828.480000px;}
.y2c{bottom:829.200000px;}
.y57{bottom:829.560000px;}
.y14d{bottom:831.984708px;}
.yda{bottom:832.080000px;}
.y167{bottom:837.480000px;}
.ya2{bottom:844.320000px;}
.y19e{bottom:845.760000px;}
.y2b{bottom:849.360000px;}
.y56{bottom:850.080000px;}
.yd9{bottom:852.960000px;}
.y166{bottom:854.760000px;}
.y19d{bottom:863.040000px;}
.ya1{bottom:864.840000px;}
.y2a{bottom:869.880000px;}
.y55{bottom:870.960000px;}
.y165{bottom:872.040000px;}
.yd8{bottom:873.480000px;}
.y19c{bottom:880.320000px;}
.ya0{bottom:885.720000px;}
.y164{bottom:889.320000px;}
.y29{bottom:890.400000px;}
.y54{bottom:891.480000px;}
.yd7{bottom:894.360000px;}
.y19b{bottom:897.600000px;}
.y3{bottom:905.716500px;}
.y9f{bottom:906.240000px;}
.y163{bottom:906.600000px;}
.y28{bottom:910.920000px;}
.y53{bottom:912.360000px;}
.y19a{bottom:914.880000px;}
.y162{bottom:923.880000px;}
.y9e{bottom:927.120000px;}
.y27{bottom:931.080000px;}
.y199{bottom:932.160000px;}
.y52{bottom:932.880000px;}
.yd6{bottom:935.664704px;}
.y9d{bottom:947.640000px;}
.y198{bottom:949.440000px;}
.y26{bottom:951.960000px;}
.y51{bottom:953.760000px;}
.y161{bottom:962.304704px;}
.y2{bottom:964.228500px;}
.y197{bottom:966.720000px;}
.y9c{bottom:968.520000px;}
.y25{bottom:972.120000px;}
.y50{bottom:974.280000px;}
.y160{bottom:979.944708px;}
.y196{bottom:984.000000px;}
.y1{bottom:989.716500px;}
.y24{bottom:993.000000px;}
.y4f{bottom:995.160000px;}
.y9b{bottom:997.584708px;}
.y195{bottom:1001.280000px;}
.y23{bottom:1013.520000px;}
.y4e{bottom:1015.680000px;}
.y194{bottom:1018.200000px;}
.y15f{bottom:1018.920000px;}
.y22{bottom:1034.760000px;}
.y193{bottom:1035.480000px;}
.y4d{bottom:1036.560000px;}
.y15e{bottom:1039.440000px;}
.y192{bottom:1052.760000px;}
.y4c{bottom:1057.080000px;}
.y21{bottom:1058.484720px;}
.y15d{bottom:1060.320000px;}
.y191{bottom:1070.040000px;}
.y4b{bottom:1077.960000px;}
.y15c{bottom:1080.840000px;}
.y190{bottom:1087.320000px;}
.y4a{bottom:1098.480000px;}
.y20{bottom:1099.524720px;}
.y18f{bottom:1104.600000px;}
.y49{bottom:1119.360000px;}
.y18e{bottom:1121.880000px;}
.y15b{bottom:1122.144708px;}
.y19{bottom:1166.160000px;}
.h20{height:10.956304px;}
.h1e{height:12.173672px;}
.h17{height:12.213795px;}
.h19{height:13.570884px;}
.h11{height:22.681414px;}
.h21{height:26.401650px;}
.h1f{height:27.048376px;}
.h1a{height:29.431855px;}
.h18{height:30.152808px;}
.h4{height:33.000000px;}
.h26{height:35.700718px;}
.h16{height:39.798208px;}
.h29{height:41.993438px;}
.h27{height:42.022969px;}
.h13{height:44.149219px;}
.h9{height:44.452800px;}
.h24{height:45.042585px;}
.h12{height:46.949687px;}
.h28{height:48.595781px;}
.hf{height:49.992188px;}
.hc{height:50.027344px;}
.h1d{height:50.212275px;}
.he{height:51.882355px;}
.h10{height:52.920000px;}
.h14{height:54.796556px;}
.h22{height:55.998885px;}
.h3{height:58.406250px;}
.h1b{height:62.426070px;}
.hd{height:63.688536px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.ha{height:69.522348px;}
.hb{height:70.912800px;}
.h23{height:79.128870px;}
.h1c{height:88.210740px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h25{height:430.948050px;}
.h15{height:445.125000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w11{width:31.211490px;}
.we{width:32.568510px;}
.wf{width:35.282550px;}
.w1a{width:35.304420px;}
.w12{width:36.639570px;}
.w10{width:39.353610px;}
.w13{width:40.710645px;}
.w18{width:41.391390px;}
.w17{width:43.826175px;}
.w14{width:44.781705px;}
.w19{width:47.478345px;}
.wc{width:141.130215px;}
.wb{width:146.558295px;}
.w15{width:149.739420px;}
.wd{width:160.128450px;}
.w16{width:169.217700px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w1b{width:572.175000px;}
.w4{width:597.405000px;}
.wa{width:637.800000px;}
.w7{width:651.810000px;}
.w9{width:892.500000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.x11{left:6.106589px;}
.x15{left:7.463652px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.xe{left:154.440000px;}
.xa{left:161.489844px;}
.x21{left:169.965072px;}
.x5{left:174.105000px;}
.xf{left:181.439928px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.xb{left:208.654524px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x1b{left:254.792700px;}
.xc{left:337.450572px;}
.x20{left:365.952384px;}
.x1f{left:369.102564px;}
.xd{left:370.212156px;}
.x13{left:403.728900px;}
.x14{left:439.011450px;}
.x1c{left:448.358400px;}
.x16{left:479.722200px;}
.x1d{left:489.749700px;}
.x12{left:512.290650px;}
.x1e{left:538.445400px;}
.x17{left:550.287300px;}
.x18{left:590.997900px;}
.x19{left:635.779650px;}
.x1a{left:699.480000px;}
.x10{left:765.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls11{letter-spacing:-0.909556pt;}
.ls29{letter-spacing:-0.408576pt;}
.ls26{letter-spacing:-0.370944pt;}
.ls24{letter-spacing:-0.354816pt;}
.ls2a{letter-spacing:-0.338688pt;}
.ls1e{letter-spacing:-0.301056pt;}
.lse{letter-spacing:-0.290304pt;}
.ls1f{letter-spacing:-0.284928pt;}
.ls20{letter-spacing:-0.268800pt;}
.ls5{letter-spacing:-0.252672pt;}
.ls2{letter-spacing:-0.247296pt;}
.ls6{letter-spacing:-0.236544pt;}
.ls4{letter-spacing:-0.231168pt;}
.ls15{letter-spacing:-0.225792pt;}
.lsb{letter-spacing:-0.220416pt;}
.ls23{letter-spacing:-0.215040pt;}
.lsd{letter-spacing:-0.209664pt;}
.ls3{letter-spacing:-0.198912pt;}
.ls9{letter-spacing:-0.193536pt;}
.ls16{letter-spacing:-0.155904pt;}
.ls22{letter-spacing:-0.139776pt;}
.ls25{letter-spacing:-0.129024pt;}
.lsc{letter-spacing:-0.123648pt;}
.ls8{letter-spacing:-0.112896pt;}
.ls21{letter-spacing:-0.107520pt;}
.lsa{letter-spacing:-0.102144pt;}
.ls7{letter-spacing:-0.086016pt;}
.ls13{letter-spacing:-0.012800pt;}
.ls1b{letter-spacing:-0.007720pt;}
.ls1d{letter-spacing:-0.006925pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.006925pt;}
.ls1a{letter-spacing:0.007720pt;}
.ls14{letter-spacing:0.012800pt;}
.ls27{letter-spacing:0.024192pt;}
.ls28{letter-spacing:0.051840pt;}
.ls10{letter-spacing:0.235230pt;}
.ls12{letter-spacing:0.297958pt;}
.lsf{letter-spacing:1.025757pt;}
.ls1{letter-spacing:1.254902pt;}
.ls19{letter-spacing:1.325389pt;}
.ls17{letter-spacing:5.457024pt;}
.ls18{letter-spacing:48.770432pt;}
.ws10{word-spacing:-17.031250pt;}
.ws0{word-spacing:-16.874667pt;}
.wsb{word-spacing:-16.125491pt;}
.wsd{word-spacing:-16.012800pt;}
.wse{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.987200pt;}
.ws15{word-spacing:-13.440000pt;}
.ws21{word-spacing:-13.310976pt;}
.ws1d{word-spacing:-13.300224pt;}
.ws1c{word-spacing:-13.284096pt;}
.ws1a{word-spacing:-13.241088pt;}
.ws17{word-spacing:-13.224960pt;}
.ws1f{word-spacing:-13.208832pt;}
.ws1b{word-spacing:-13.171200pt;}
.ws16{word-spacing:-13.155072pt;}
.ws19{word-spacing:-13.138944pt;}
.ws18{word-spacing:-13.085184pt;}
.ws3{word-spacing:-12.741120pt;}
.ws8{word-spacing:-12.617472pt;}
.ws6{word-spacing:-12.547584pt;}
.ws5{word-spacing:-12.542208pt;}
.ws9{word-spacing:-12.531456pt;}
.ws7{word-spacing:-12.520704pt;}
.ws4{word-spacing:-12.504576pt;}
.ws2{word-spacing:-12.488448pt;}
.wsa{word-spacing:-12.450816pt;}
.ws12{word-spacing:-9.658127pt;}
.ws11{word-spacing:-9.642686pt;}
.ws14{word-spacing:-8.663759pt;}
.ws13{word-spacing:-8.649908pt;}
.ws20{word-spacing:-0.086400pt;}
.wsf{word-spacing:-0.064000pt;}
.ws1e{word-spacing:-0.058752pt;}
.ws1{word-spacing:0.000000pt;}
._2{margin-left:-6.536533pt;}
._17{margin-left:-4.731904pt;}
._3{margin-left:-3.808000pt;}
._12{margin-left:-2.897067pt;}
._1{margin-left:-1.774933pt;}
._4{width:0.967680pt;}
._5{width:2.006292pt;}
._e{width:3.708160pt;}
._0{width:4.966400pt;}
._c{width:5.856000pt;}
._8{width:7.360000pt;}
._b{width:8.416000pt;}
._13{width:9.619200pt;}
._6{width:10.979456pt;}
._16{width:12.201344pt;}
._11{width:13.561600pt;}
._7{width:14.790400pt;}
._15{width:16.921600pt;}
._9{width:17.817600pt;}
._14{width:19.353600pt;}
._19{width:20.527616pt;}
._a{width:22.265600pt;}
._18{width:23.426048pt;}
._1f{width:24.488960pt;}
._1c{width:25.395200pt;}
._d{width:26.432000pt;}
._f{width:29.702400pt;}
._1b{width:36.825600pt;}
._1d{width:57.797888pt;}
._20{width:62.582528pt;}
._1e{width:65.324288pt;}
._1a{width:77.603072pt;}
._10{width:80.344832pt;}
.fs11{font-size:34.560000pt;}
.fsf{font-size:34.627332pt;}
.fse{font-size:38.601626pt;}
.fs10{font-size:47.612582pt;}
.fsd{font-size:53.077235pt;}
.fs3{font-size:53.760000pt;}
.fsa{font-size:56.779667pt;}
.fs2{font-size:58.666667pt;}
.fsb{font-size:58.880000pt;}
.fs8{font-size:62.745101pt;}
.fs6{font-size:64.000000pt;}
.fsc{font-size:66.269455pt;}
.fs9{font-size:72.784320pt;}
.fs1{font-size:74.666667pt;}
.fs7{font-size:78.410016pt;}
.fs4{font-size:84.078426pt;}
.fs0{font-size:85.333333pt;}
.fs5{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y11b{bottom:2.705186pt;}
.y11d{bottom:2.705212pt;}
.y135{bottom:2.705217pt;}
.y139{bottom:2.705238pt;}
.y125{bottom:2.705247pt;}
.y127{bottom:2.705272pt;}
.y13f{bottom:2.705277pt;}
.y144{bottom:2.705291pt;}
.y12b{bottom:2.705294pt;}
.y12d{bottom:2.705319pt;}
.yee{bottom:3.015772pt;}
.y10f{bottom:3.015785pt;}
.yf8{bottom:3.015786pt;}
.yf2{bottom:3.015790pt;}
.y102{bottom:3.015793pt;}
.y115{bottom:3.015814pt;}
.yec{bottom:3.015846pt;}
.y104{bottom:3.015852pt;}
.y119{bottom:3.787294pt;}
.y11f{bottom:3.787341pt;}
.y137{bottom:3.787346pt;}
.y14a{bottom:3.787368pt;}
.y129{bottom:3.787402pt;}
.yf0{bottom:4.222131pt;}
.y100{bottom:4.222134pt;}
.y10a{bottom:4.222148pt;}
.y14c{bottom:4.328417pt;}
.y116{bottom:4.825203pt;}
.yc{bottom:7.146667pt;}
.y124{bottom:12.444184pt;}
.y143{bottom:12.444228pt;}
.y134{bottom:13.526258pt;}
.y149{bottom:13.526305pt;}
.y13e{bottom:13.526319pt;}
.y114{bottom:13.872522pt;}
.y10e{bottom:15.078793pt;}
.yf7{bottom:15.078794pt;}
.yff{bottom:15.078842pt;}
.y109{bottom:15.078855pt;}
.y123{bottom:22.183121pt;}
.y133{bottom:23.265195pt;}
.y148{bottom:23.265242pt;}
.y13d{bottom:23.265256pt;}
.y142{bottom:23.265270pt;}
.y113{bottom:24.729229pt;}
.y10d{bottom:25.935500pt;}
.yf6{bottom:25.935501pt;}
.yfe{bottom:25.935549pt;}
.y108{bottom:25.935563pt;}
.y132{bottom:33.004133pt;}
.y122{bottom:33.004163pt;}
.y147{bottom:33.004179pt;}
.y13c{bottom:33.004193pt;}
.y141{bottom:33.004207pt;}
.y112{bottom:35.585936pt;}
.y10c{bottom:36.792207pt;}
.yf5{bottom:36.792208pt;}
.yfd{bottom:36.792256pt;}
.y107{bottom:36.792270pt;}
.y131{bottom:42.743070pt;}
.y121{bottom:42.743100pt;}
.y146{bottom:42.743117pt;}
.y13b{bottom:42.743130pt;}
.yf4{bottom:47.648915pt;}
.y111{bottom:47.648944pt;}
.yfc{bottom:47.648963pt;}
.y106{bottom:47.648977pt;}
.y130{bottom:52.482007pt;}
.yfb{bottom:59.711971pt;}
.y12f{bottom:63.303048pt;}
.y7b{bottom:67.946667pt;}
.y1f{bottom:69.226667pt;}
.yfa{bottom:70.568678pt;}
.y1e{bottom:82.346667pt;}
.yc5{bottom:82.666667pt;}
.ye8{bottom:86.506667pt;}
.y13{bottom:88.706667pt;}
.y9a{bottom:90.666667pt;}
.y1c0{bottom:92.586667pt;}
.y14b{bottom:93.047160pt;}
.y117{bottom:93.226667pt;}
.y7a{bottom:93.546667pt;}
.y1d{bottom:95.146667pt;}
.y8c{bottom:95.786667pt;}
.y18d{bottom:100.586667pt;}
.y17{bottom:101.040000pt;}
.yc4{bottom:101.226667pt;}
.ye7{bottom:104.746667pt;}
.yd5{bottom:106.346667pt;}
.y1bf{bottom:107.946667pt;}
.y1c{bottom:108.266667pt;}
.y145{bottom:108.737667pt;}
.y99{bottom:109.226667pt;}
.y79{bottom:111.786667pt;}
.y8b{bottom:114.346667pt;}
.y18c{bottom:115.946667pt;}
.yc3{bottom:119.466667pt;}
.y16{bottom:120.666667pt;}
.y1b{bottom:121.066667pt;}
.ye6{bottom:123.306667pt;}
.yd4{bottom:124.906667pt;}
.y98{bottom:127.466667pt;}
.y78{bottom:130.346667pt;}
.y18b{bottom:131.306667pt;}
.y8a{bottom:132.586667pt;}
.y14{bottom:137.733333pt;}
.yc2{bottom:138.026667pt;}
.y1be{bottom:138.666667pt;}
.yf{bottom:138.680000pt;}
.y15{bottom:140.293333pt;}
.ye5{bottom:141.546667pt;}
.yd3{bottom:143.146667pt;}
.y97{bottom:146.026667pt;}
.y18a{bottom:146.666667pt;}
.y77{bottom:148.586667pt;}
.y89{bottom:151.146667pt;}
.y1a{bottom:152.426667pt;}
.y1bd{bottom:154.026667pt;}
.yc1{bottom:156.266667pt;}
.y140{bottom:159.596533pt;}
.ye4{bottom:160.106667pt;}
.yd2{bottom:161.706667pt;}
.y189{bottom:162.026667pt;}
.y76{bottom:167.146667pt;}
.y88{bottom:169.386667pt;}
.y96{bottom:172.181867pt;}
.yc0{bottom:174.826667pt;}
.y188{bottom:177.066667pt;}
.y48{bottom:178.026667pt;}
.ye3{bottom:178.346667pt;}
.yd1{bottom:179.946667pt;}
.y1bc{bottom:184.746667pt;}
.y75{bottom:185.386667pt;}
.y87{bottom:187.946667pt;}
.y187{bottom:192.426667pt;}
.ybf{bottom:193.066667pt;}
.y47{bottom:196.266667pt;}
.ye2{bottom:196.906667pt;}
.yd0{bottom:198.506667pt;}
.y13a{bottom:199.634400pt;}
.y1bb{bottom:200.106667pt;}
.y74{bottom:203.946667pt;}
.y95{bottom:206.101867pt;}
.y86{bottom:206.186667pt;}
.y186{bottom:207.786667pt;}
.ybe{bottom:211.626667pt;}
.y46{bottom:214.826667pt;}
.ye1{bottom:215.146667pt;}
.ycf{bottom:216.746667pt;}
.y73{bottom:222.186667pt;}
.y185{bottom:223.146667pt;}
.y85{bottom:224.426667pt;}
.ybd{bottom:229.866667pt;}
.y1ba{bottom:230.506667pt;}
.y45{bottom:233.066667pt;}
.ye0{bottom:233.706667pt;}
.yce{bottom:235.306667pt;}
.y184{bottom:238.506667pt;}
.y72{bottom:240.746667pt;}
.y84{bottom:242.986667pt;}
.y1b9{bottom:245.866667pt;}
.ybc{bottom:248.426667pt;}
.y138{bottom:250.493333pt;}
.ydf{bottom:251.946667pt;}
.ycd{bottom:253.546667pt;}
.y183{bottom:253.866667pt;}
.y71{bottom:258.986667pt;}
.y136{bottom:260.232267pt;}
.y83{bottom:261.226667pt;}
.ybb{bottom:266.666667pt;}
.ye9{bottom:266.803733pt;}
.yde{bottom:266.986667pt;}
.y182{bottom:269.226667pt;}
.y44{bottom:269.781867pt;}
.y12e{bottom:271.053333pt;}
.ycc{bottom:272.106667pt;}
.y1b8{bottom:276.586667pt;}
.y70{bottom:277.546667pt;}
.y82{bottom:279.786667pt;}
.y181{bottom:284.586667pt;}
.yba{bottom:285.226667pt;}
.y110{bottom:285.501333pt;}
.ycb{bottom:290.346667pt;}
.y1b7{bottom:291.946667pt;}
.y6f{bottom:295.786667pt;}
.y81{bottom:298.026667pt;}
.y180{bottom:299.946667pt;}
.yb9{bottom:303.466667pt;}
.y43{bottom:304.687147pt;}
.ya{bottom:306.382667pt;}
.y1b6{bottom:307.306667pt;}
.yca{bottom:308.906667pt;}
.y6e{bottom:314.346667pt;}
.y17f{bottom:315.306667pt;}
.y80{bottom:316.586667pt;}
.yb8{bottom:322.026667pt;}
.y42{bottom:322.607147pt;}
.y1b5{bottom:322.666667pt;}
.yc9{bottom:327.146667pt;}
.y17e{bottom:330.666667pt;}
.y6d{bottom:332.586667pt;}
.y7f{bottom:334.826667pt;}
.y15a{bottom:335.061867pt;}
.y1b4{bottom:338.026667pt;}
.y41{bottom:340.501867pt;}
.y10b{bottom:340.991200pt;}
.y12c{bottom:341.390000pt;}
.yd{bottom:343.546667pt;}
.yc8{bottom:345.706667pt;}
.yb7{bottom:347.861867pt;}
.y6c{bottom:351.146667pt;}
.y9{bottom:351.724000pt;}
.y12a{bottom:352.211067pt;}
.y7e{bottom:353.386667pt;}
.y40{bottom:355.946667pt;}
.y17d{bottom:361.066667pt;}
.y128{bottom:361.950000pt;}
.yc7{bottom:363.946667pt;}
.y1b3{bottom:368.746667pt;}
.y6b{bottom:369.386667pt;}
.y7d{bottom:371.626667pt;}
.y126{bottom:372.771067pt;}
.y3f{bottom:374.506667pt;}
.y3e{bottom:374.741867pt;}
.y17c{bottom:376.426667pt;}
.yb6{bottom:382.506667pt;}
.y120{bottom:383.592133pt;}
.yea{bottom:383.603654pt;}
.y1b2{bottom:383.786667pt;}
.y105{bottom:385.624267pt;}
.yb{bottom:386.533333pt;}
.y6a{bottom:387.946667pt;}
.y159{bottom:390.186667pt;}
.y17b{bottom:391.786667pt;}
.y3d{bottom:392.426667pt;}
.y8{bottom:397.065333pt;}
.y1b1{bottom:399.146667pt;}
.yb5{bottom:400.746667pt;}
.y69{bottom:406.186667pt;}
.y17a{bottom:407.146667pt;}
.y3c{bottom:408.106667pt;}
.y158{bottom:408.426667pt;}
.y7c{bottom:408.661867pt;}
.y1b0{bottom:414.506667pt;}
.yb4{bottom:419.306667pt;}
.y179{bottom:422.506667pt;}
.y68{bottom:424.746667pt;}
.y3b{bottom:426.666667pt;}
.yc6{bottom:426.901867pt;}
.y157{bottom:426.986667pt;}
.y1af{bottom:429.866667pt;}
.y11e{bottom:433.368933pt;}
.y10{bottom:433.826667pt;}
.yb3{bottom:437.546667pt;}
.y178{bottom:437.866667pt;}
.y103{bottom:442.320400pt;}
.y7{bottom:442.406667pt;}
.y67{bottom:442.986667pt;}
.y11c{bottom:444.190000pt;}
.y3a{bottom:444.906667pt;}
.y156{bottom:445.226667pt;}
.y177{bottom:453.226667pt;}
.y101{bottom:454.383467pt;}
.y11a{bottom:455.011067pt;}
.yb2{bottom:456.106667pt;}
.y1ae{bottom:460.586667pt;}
.y66{bottom:461.546667pt;}
.y39{bottom:463.466667pt;}
.y155{bottom:463.786667pt;}
.y118{bottom:464.750000pt;}
.yf9{bottom:465.240133pt;}
.y176{bottom:468.586667pt;}
.yb1{bottom:474.346667pt;}
.y1ad{bottom:475.946667pt;}
.y11{bottom:478.426667pt;}
.y65{bottom:479.786667pt;}
.y38{bottom:481.706667pt;}
.y154{bottom:482.026667pt;}
.y175{bottom:483.946667pt;}
.y6{bottom:487.748000pt;}
.y1ac{bottom:491.306667pt;}
.yb0{bottom:492.906667pt;}
.y64{bottom:498.346667pt;}
.y174{bottom:499.306667pt;}
.y37{bottom:500.266667pt;}
.y153{bottom:500.586667pt;}
.y1ab{bottom:506.666667pt;}
.yaf{bottom:511.146667pt;}
.y173{bottom:514.666667pt;}
.y63{bottom:516.586667pt;}
.y36{bottom:518.506667pt;}
.y152{bottom:518.826667pt;}
.y1aa{bottom:522.026667pt;}
.y18{bottom:524.093333pt;}
.yae{bottom:529.706667pt;}
.y5{bottom:533.089333pt;}
.y62{bottom:534.826667pt;}
.y94{bottom:535.146667pt;}
.y35{bottom:537.066667pt;}
.y151{bottom:537.386667pt;}
.yf3{bottom:543.649733pt;}
.y172{bottom:545.066667pt;}
.yad{bottom:547.946667pt;}
.y1a9{bottom:552.426667pt;}
.y61{bottom:553.386667pt;}
.y34{bottom:555.306667pt;}
.y150{bottom:555.626667pt;}
.y171{bottom:560.426667pt;}
.ye{bottom:561.706667pt;}
.yac{bottom:566.506667pt;}
.y1a8{bottom:567.786667pt;}
.y60{bottom:571.626667pt;}
.y93{bottom:572.906667pt;}
.y33{bottom:573.866667pt;}
.y14f{bottom:574.186667pt;}
.y170{bottom:575.786667pt;}
.y1a7{bottom:583.146667pt;}
.yab{bottom:584.746667pt;}
.y5f{bottom:590.186667pt;}
.y92{bottom:591.146667pt;}
.y32{bottom:592.106667pt;}
.y14e{bottom:592.426667pt;}
.y1a6{bottom:598.506667pt;}
.yf1{bottom:600.345867pt;}
.yaa{bottom:603.306667pt;}
.y16f{bottom:606.506667pt;}
.y5e{bottom:608.426667pt;}
.y31{bottom:610.666667pt;}
.y91{bottom:610.986667pt;}
.yef{bottom:611.202533pt;}
.y1a5{bottom:613.866667pt;}
.ya9{bottom:621.546667pt;}
.y16e{bottom:621.866667pt;}
.yed{bottom:623.265600pt;}
.y5d{bottom:626.986667pt;}
.y90{bottom:629.226667pt;}
.yeb{bottom:635.328533pt;}
.y16d{bottom:637.226667pt;}
.ya8{bottom:640.106667pt;}
.y1a4{bottom:644.586667pt;}
.y5c{bottom:645.226667pt;}
.y30{bottom:647.381963pt;}
.y8f{bottom:647.786667pt;}
.y16c{bottom:652.586667pt;}
.ya7{bottom:658.346667pt;}
.y1a3{bottom:659.946667pt;}
.y5b{bottom:663.786667pt;}
.y8e{bottom:666.026667pt;}
.y16b{bottom:667.946667pt;}
.y1a2{bottom:675.306667pt;}
.ya6{bottom:676.906667pt;}
.y2f{bottom:681.706667pt;}
.y5a{bottom:682.026667pt;}
.y16a{bottom:683.306667pt;}
.ydd{bottom:684.586667pt;}
.y1a1{bottom:690.666667pt;}
.y4{bottom:691.756000pt;}
.ya5{bottom:695.146667pt;}
.y169{bottom:698.346667pt;}
.y2e{bottom:700.266667pt;}
.y59{bottom:700.586667pt;}
.y8d{bottom:702.741963pt;}
.ydc{bottom:702.826667pt;}
.y1a0{bottom:706.026667pt;}
.ya4{bottom:713.706667pt;}
.y2d{bottom:718.506667pt;}
.y58{bottom:718.826667pt;}
.ydb{bottom:721.386667pt;}
.y12{bottom:725.040000pt;}
.y168{bottom:729.066667pt;}
.ya3{bottom:731.946667pt;}
.y19f{bottom:736.426667pt;}
.y2c{bottom:737.066667pt;}
.y57{bottom:737.386667pt;}
.y14d{bottom:739.541963pt;}
.yda{bottom:739.626667pt;}
.y167{bottom:744.426667pt;}
.ya2{bottom:750.506667pt;}
.y19e{bottom:751.786667pt;}
.y2b{bottom:754.986667pt;}
.y56{bottom:755.626667pt;}
.yd9{bottom:758.186667pt;}
.y166{bottom:759.786667pt;}
.y19d{bottom:767.146667pt;}
.ya1{bottom:768.746667pt;}
.y2a{bottom:773.226667pt;}
.y55{bottom:774.186667pt;}
.y165{bottom:775.146667pt;}
.yd8{bottom:776.426667pt;}
.y19c{bottom:782.506667pt;}
.ya0{bottom:787.306667pt;}
.y164{bottom:790.506667pt;}
.y29{bottom:791.466667pt;}
.y54{bottom:792.426667pt;}
.yd7{bottom:794.986667pt;}
.y19b{bottom:797.866667pt;}
.y3{bottom:805.081333pt;}
.y9f{bottom:805.546667pt;}
.y163{bottom:805.866667pt;}
.y28{bottom:809.706667pt;}
.y53{bottom:810.986667pt;}
.y19a{bottom:813.226667pt;}
.y162{bottom:821.226667pt;}
.y9e{bottom:824.106667pt;}
.y27{bottom:827.626667pt;}
.y199{bottom:828.586667pt;}
.y52{bottom:829.226667pt;}
.yd6{bottom:831.701959pt;}
.y9d{bottom:842.346667pt;}
.y198{bottom:843.946667pt;}
.y26{bottom:846.186667pt;}
.y51{bottom:847.786667pt;}
.y161{bottom:855.381959pt;}
.y2{bottom:857.092000pt;}
.y197{bottom:859.306667pt;}
.y9c{bottom:860.906667pt;}
.y25{bottom:864.106667pt;}
.y50{bottom:866.026667pt;}
.y160{bottom:871.061963pt;}
.y196{bottom:874.666667pt;}
.y1{bottom:879.748000pt;}
.y24{bottom:882.666667pt;}
.y4f{bottom:884.586667pt;}
.y9b{bottom:886.741963pt;}
.y195{bottom:890.026667pt;}
.y23{bottom:900.906667pt;}
.y4e{bottom:902.826667pt;}
.y194{bottom:905.066667pt;}
.y15f{bottom:905.706667pt;}
.y22{bottom:919.786667pt;}
.y193{bottom:920.426667pt;}
.y4d{bottom:921.386667pt;}
.y15e{bottom:923.946667pt;}
.y192{bottom:935.786667pt;}
.y4c{bottom:939.626667pt;}
.y21{bottom:940.875307pt;}
.y15d{bottom:942.506667pt;}
.y191{bottom:951.146667pt;}
.y4b{bottom:958.186667pt;}
.y15c{bottom:960.746667pt;}
.y190{bottom:966.506667pt;}
.y4a{bottom:976.426667pt;}
.y20{bottom:977.355307pt;}
.y18f{bottom:981.866667pt;}
.y49{bottom:994.986667pt;}
.y18e{bottom:997.226667pt;}
.y15b{bottom:997.461963pt;}
.y19{bottom:1036.586667pt;}
.h20{height:9.738937pt;}
.h1e{height:10.821041pt;}
.h17{height:10.856707pt;}
.h19{height:12.063008pt;}
.h11{height:20.161257pt;}
.h21{height:23.468133pt;}
.h1f{height:24.043001pt;}
.h1a{height:26.161649pt;}
.h18{height:26.802496pt;}
.h4{height:29.333333pt;}
.h26{height:31.733972pt;}
.h16{height:35.376185pt;}
.h29{height:37.327500pt;}
.h27{height:37.353750pt;}
.h13{height:39.243750pt;}
.h9{height:39.513600pt;}
.h24{height:40.037853pt;}
.h12{height:41.733055pt;}
.h28{height:43.196250pt;}
.hf{height:44.437500pt;}
.hc{height:44.468750pt;}
.h1d{height:44.633133pt;}
.he{height:46.117649pt;}
.h10{height:47.040000pt;}
.h14{height:48.708050pt;}
.h22{height:49.776787pt;}
.h3{height:51.916667pt;}
.h1b{height:55.489840pt;}
.hd{height:56.612032pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.ha{height:61.797643pt;}
.hb{height:63.033600pt;}
.h23{height:70.336773pt;}
.h1c{height:78.409547pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h25{height:383.064933pt;}
.h15{height:395.666667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w11{width:27.743547pt;}
.we{width:28.949787pt;}
.wf{width:31.362267pt;}
.w1a{width:31.381707pt;}
.w12{width:32.568507pt;}
.w10{width:34.980987pt;}
.w13{width:36.187240pt;}
.w18{width:36.792347pt;}
.w17{width:38.956600pt;}
.w14{width:39.805960pt;}
.w19{width:42.202973pt;}
.wc{width:125.449080pt;}
.wb{width:130.274040pt;}
.w15{width:133.101707pt;}
.wd{width:142.336400pt;}
.w16{width:150.415733pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w1b{width:508.600000pt;}
.w4{width:531.026667pt;}
.wa{width:566.933333pt;}
.w7{width:579.386667pt;}
.w9{width:793.333333pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.x11{left:5.428079pt;}
.x15{left:6.634357pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.xe{left:137.280000pt;}
.xa{left:143.546528pt;}
.x21{left:151.080064pt;}
.x5{left:154.760000pt;}
.xf{left:161.279936pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.xb{left:185.470688pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x1b{left:226.482400pt;}
.xc{left:299.956064pt;}
.x20{left:325.291008pt;}
.x1f{left:328.091168pt;}
.xd{left:329.077472pt;}
.x13{left:358.870133pt;}
.x14{left:390.232400pt;}
.x1c{left:398.540800pt;}
.x16{left:426.419733pt;}
.x1d{left:435.333067pt;}
.x12{left:455.369467pt;}
.x1e{left:478.618133pt;}
.x17{left:489.144267pt;}
.x18{left:525.331467pt;}
.x19{left:565.137467pt;}
.x1a{left:621.760000pt;}
.x10{left:680.000000pt;}
}




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