
    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_07588f2598bb50ccf6a29e3d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_6ced0cbd37af6020ff5d7989.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_eea18741c87526a98c9088ed.woff')format("woff");}.ff3{font-family:ff3;line-height:0.713000;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_11c9c2f1d08a3ac4b7bfc89e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.900000;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_b8a4b0c977d820b6185c2165.woff')format("woff");}.ff5{font-family:ff5;line-height:0.890000;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_4d947e2a289b319e7601dea6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.906000;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_16b34a86d618ed3e287f3e9a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.652000;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_7e1a5b7b66a35922d2d0c732.woff')format("woff");}.ff8{font-family:ff8;line-height:0.810000;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_0925cb4f821c0d5776127022.woff')format("woff");}.ff9{font-family:ff9;line-height:0.699000;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_dd9e2065edf90a8ba8db8e78.woff')format("woff");}.ffa{font-family:ffa;line-height:0.299000;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_f0ce14419943338968e696d2.woff')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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_0925cb4f821c0d5776127022.woff')format("woff");}.ffc{font-family:ffc;line-height:0.699000;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_dd9e2065edf90a8ba8db8e78.woff')format("woff");}.ffd{font-family:ffd;line-height:0.299000;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_f0ce14419943338968e696d2.woff')format("woff");}.ffe{font-family:ffe;line-height:1.000000;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_0925cb4f821c0d5776127022.woff')format("woff");}.fff{font-family:fff;line-height:0.699000;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_dd9e2065edf90a8ba8db8e78.woff')format("woff");}.ff10{font-family:ff10;line-height:0.299000;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_aa9285b4ed0303ab663ac5bd.woff')format("woff");}.ff11{font-family:ff11;line-height:1.000000;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_0925cb4f821c0d5776127022.woff')format("woff");}.ff12{font-family:ff12;line-height:0.699000;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_dd9e2065edf90a8ba8db8e78.woff')format("woff");}.ff13{font-family:ff13;line-height:0.299000;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_910d66f757affdcf20b09fa4.woff')format("woff");}.ff14{font-family:ff14;line-height:1.000000;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_a25204a4f0d8e107e6e6fcf5.woff')format("woff");}.ff15{font-family:ff15;line-height:1.000000;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_0c2b2020652ef8333fbc155d.woff')format("woff");}.ff16{font-family:ff16;line-height:0.699000;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:ff17;src:url('chunks/assets/font_09a96bb31aeb8710a4c69b57.woff')format("woff");}.ff17{font-family:ff17;line-height:0.299000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.001863px;}
.ls6{letter-spacing:0.001886px;}
.ls5{letter-spacing:0.001924px;}
.ls7{letter-spacing:0.003346px;}
.ls9{letter-spacing:0.003362px;}
.ls4{letter-spacing:0.003455px;}
.lsa{letter-spacing:0.860771px;}
.ls1{letter-spacing:2.486671px;}
.ls0{letter-spacing:2.964877px;}
.ls2{letter-spacing:2.988780px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7e{word-spacing:-50.616388px;}
.ws99{word-spacing:-49.625902px;}
.ws9e{word-spacing:-49.014993px;}
.ws7d{word-spacing:-33.761131px;}
.ws98{word-spacing:-33.100477px;}
.wsae{word-spacing:-32.858463px;}
.ws9d{word-spacing:-32.693001px;}
.ws3{word-spacing:-14.943900px;}
.ws15{word-spacing:-14.920027px;}
.ws2e{word-spacing:-11.955150px;}
.wsb7{word-spacing:-1.195512px;}
.ws1f{word-spacing:-0.896634px;}
.ws13{word-spacing:-0.806976px;}
.ws44{word-spacing:-0.597756px;}
.ws8f{word-spacing:-0.537980px;}
.ws91{word-spacing:-0.478205px;}
.ws82{word-spacing:-0.418429px;}
.ws18{word-spacing:-0.358654px;}
.ws95{word-spacing:-0.179327px;}
.ws85{word-spacing:-0.059776px;}
.ws4{word-spacing:-0.053798px;}
.ws52{word-spacing:-0.052565px;}
.ws7a{word-spacing:-0.050616px;}
.ws96{word-spacing:-0.049626px;}
.wsad{word-spacing:-0.049263px;}
.ws9a{word-spacing:-0.049015px;}
.ws3d{word-spacing:-0.012000px;}
.ws50{word-spacing:0.000000px;}
.wsb3{word-spacing:0.047776px;}
.ws8{word-spacing:0.053798px;}
.ws43{word-spacing:0.119551px;}
.ws49{word-spacing:0.179327px;}
.wsa0{word-spacing:0.239102px;}
.ws29{word-spacing:0.298878px;}
.ws71{word-spacing:0.418429px;}
.ws75{word-spacing:0.537980px;}
.ws72{word-spacing:0.657532px;}
.ws53{word-spacing:0.896634px;}
.wsab{word-spacing:0.981014px;}
.ws87{word-spacing:1.135736px;}
.wsb6{word-spacing:1.195512px;}
.ws3a{word-spacing:1.255288px;}
.ws30{word-spacing:1.315063px;}
.wsb8{word-spacing:1.374839px;}
.wsb9{word-spacing:1.494390px;}
.wsb{word-spacing:1.667750px;}
.ws19{word-spacing:1.733492px;}
.ws1e{word-spacing:1.912819px;}
.wsaf{word-spacing:2.391024px;}
.ws64{word-spacing:2.450800px;}
.wsa1{word-spacing:2.510575px;}
.ws48{word-spacing:2.689902px;}
.ws94{word-spacing:2.749678px;}
.ws3b{word-spacing:2.929004px;}
.ws3e{word-spacing:2.988780px;}
.wsf{word-spacing:3.227904px;}
.ws46{word-spacing:3.466985px;}
.ws8a{word-spacing:3.526760px;}
.ws92{word-spacing:3.586536px;}
.ws61{word-spacing:3.646312px;}
.wscd{word-spacing:3.682186px;}
.wsd4{word-spacing:3.777827px;}
.ws62{word-spacing:4.004965px;}
.ws84{word-spacing:4.124516px;}
.ws1d{word-spacing:4.244068px;}
.ws20{word-spacing:4.363619px;}
.ws79{word-spacing:4.483170px;}
.wsd7{word-spacing:4.495136px;}
.ws4c{word-spacing:4.542946px;}
.wsd1{word-spacing:4.590778px;}
.wsa9{word-spacing:4.602721px;}
.wsc6{word-spacing:4.782060px;}
.ws4b{word-spacing:4.901599px;}
.ws4f{word-spacing:5.021150px;}
.ws6d{word-spacing:5.200477px;}
.ws2a{word-spacing:5.260253px;}
.wsbb{word-spacing:5.320028px;}
.wsc3{word-spacing:5.355907px;}
.ws31{word-spacing:5.379804px;}
.ws2f{word-spacing:5.439580px;}
.ws33{word-spacing:5.499355px;}
.ws7{word-spacing:5.541235px;}
.ws58{word-spacing:5.618906px;}
.wscb{word-spacing:5.642831px;}
.ws21{word-spacing:5.738458px;}
.ws32{word-spacing:5.798233px;}
.ws4a{word-spacing:5.858009px;}
.ws2d{word-spacing:5.917754px;}
.ws1c{word-spacing:5.917784px;}
.ws2{word-spacing:5.977560px;}
.ws4d{word-spacing:6.156887px;}
.ws45{word-spacing:6.216662px;}
.ws6{word-spacing:6.402010px;}
.ws10{word-spacing:6.455808px;}
.ws1{word-spacing:6.575340px;}
.ws70{word-spacing:6.694867px;}
.ws11{word-spacing:6.724800px;}
.ws5c{word-spacing:6.814418px;}
.wse{word-spacing:6.832397px;}
.ws2c{word-spacing:6.993745px;}
.ws76{word-spacing:7.113296px;}
.wsc0{word-spacing:7.292623px;}
.wsd0{word-spacing:7.316552px;}
.ws39{word-spacing:7.352399px;}
.wsc7{word-spacing:7.460014px;}
.ws81{word-spacing:7.531726px;}
.wsd3{word-spacing:7.555655px;}
.ws35{word-spacing:7.591501px;}
.wsb2{word-spacing:7.711052px;}
.ws4e{word-spacing:7.770828px;}
.wsd6{word-spacing:7.794758px;}
.ws42{word-spacing:7.950155px;}
.wsc2{word-spacing:8.033861px;}
.ws25{word-spacing:8.129482px;}
.ws68{word-spacing:8.189257px;}
.ws5b{word-spacing:8.249033px;}
.wsbe{word-spacing:8.368584px;}
.ws8e{word-spacing:8.547911px;}
.ws17{word-spacing:8.787013px;}
.wsce{word-spacing:8.894632px;}
.wsc{word-spacing:8.930534px;}
.ws27{word-spacing:8.966340px;}
.ws8c{word-spacing:9.085891px;}
.ws22{word-spacing:9.205442px;}
.ws6b{word-spacing:9.324994px;}
.ws73{word-spacing:9.384769px;}
.ws9f{word-spacing:9.623872px;}
.wsb4{word-spacing:9.683647px;}
.wsbd{word-spacing:9.803198px;}
.ws1a{word-spacing:10.161852px;}
.wsba{word-spacing:10.221628px;}
.ws83{word-spacing:10.341179px;}
.ws59{word-spacing:10.400954px;}
.ws24{word-spacing:10.460730px;}
.wsbf{word-spacing:10.640057px;}
.wsc8{word-spacing:10.807456px;}
.ws1b{word-spacing:10.879159px;}
.ws26{word-spacing:11.058486px;}
.ws9{word-spacing:11.082470px;}
.wsa4{word-spacing:11.417140px;}
.ws23{word-spacing:11.476915px;}
.wsc1{word-spacing:11.536691px;}
.ws3c{word-spacing:11.955120px;}
.ws16{word-spacing:12.074671px;}
.ws6e{word-spacing:12.134447px;}
.ws36{word-spacing:12.194222px;}
.ws2b{word-spacing:12.253998px;}
.ws88{word-spacing:12.373549px;}
.ws12{word-spacing:12.588826px;}
.wsb0{word-spacing:12.612652px;}
.ws54{word-spacing:12.911530px;}
.ws80{word-spacing:12.971305px;}
.wsa7{word-spacing:13.509286px;}
.ws7f{word-spacing:13.569061px;}
.wsa2{word-spacing:13.808164px;}
.ws86{word-spacing:13.867939px;}
.ws63{word-spacing:14.047266px;}
.wsdb{word-spacing:14.154898px;}
.ws5f{word-spacing:14.286368px;}
.ws0{word-spacing:14.346180px;}
.wsca{word-spacing:14.441821px;}
.ws90{word-spacing:14.465695px;}
.ws6c{word-spacing:14.585246px;}
.ws60{word-spacing:14.645022px;}
.wsb5{word-spacing:14.704798px;}
.wsd{word-spacing:14.794560px;}
.ws8b{word-spacing:14.884124px;}
.wsa8{word-spacing:15.063451px;}
.wsa6{word-spacing:15.183002px;}
.wsa{word-spacing:15.224947px;}
.wsbc{word-spacing:15.242778px;}
.ws34{word-spacing:15.362329px;}
.ws74{word-spacing:15.422105px;}
.ws6a{word-spacing:15.661207px;}
.wsd5{word-spacing:15.780798px;}
.ws78{word-spacing:15.840534px;}
.wsaa{word-spacing:15.863404px;}
.ws66{word-spacing:16.079636px;}
.ws28{word-spacing:16.139412px;}
.ws89{word-spacing:16.258963px;}
.ws57{word-spacing:16.378514px;}
.wsd8{word-spacing:16.402466px;}
.wsa5{word-spacing:16.557841px;}
.wsc5{word-spacing:16.689389px;}
.wsb1{word-spacing:17.155597px;}
.ws93{word-spacing:17.275148px;}
.wsc4{word-spacing:17.311057px;}
.ws38{word-spacing:17.334924px;}
.ws8d{word-spacing:17.394700px;}
.wscc{word-spacing:17.502340px;}
.ws47{word-spacing:17.574026px;}
.ws40{word-spacing:17.693578px;}
.ws5{word-spacing:17.699674px;}
.ws67{word-spacing:17.872904px;}
.ws14{word-spacing:17.932680px;}
.ws69{word-spacing:18.112007px;}
.wsd2{word-spacing:18.171828px;}
.ws6f{word-spacing:18.291334px;}
.wscf{word-spacing:20.754140px;}
.ws3f{word-spacing:20.861684px;}
.wsa3{word-spacing:21.698543px;}
.ws56{word-spacing:21.937645px;}
.ws77{word-spacing:21.997421px;}
.ws5d{word-spacing:22.176748px;}
.wsc9{word-spacing:22.714785px;}
.ws41{word-spacing:22.834279px;}
.ws5a{word-spacing:25.285079px;}
.ws65{word-spacing:29.828024px;}
.ws9b{word-spacing:36.938840px;}
.ws9c{word-spacing:36.943760px;}
.ws5e{word-spacing:37.120648px;}
.ws97{word-spacing:37.399235px;}
.ws55{word-spacing:37.897730px;}
.ws37{word-spacing:38.017282px;}
.wsac{word-spacing:47.342501px;}
.wsda{word-spacing:56.380487px;}
.wsd9{word-spacing:67.187943px;}
.ws7c{word-spacing:166.050296px;}
.ws7b{word-spacing:166.055377px;}
.ws51{word-spacing:687.792601px;}
._f{margin-left:-6.371994px;}
._3{margin-left:-4.782048px;}
._7{margin-left:-3.765863px;}
._1{margin-left:-2.630136px;}
._2{margin-left:-1.183561px;}
._b{width:1.417259px;}
._4{width:2.988780px;}
._e{width:4.040156px;}
._0{width:5.480570px;}
._a{width:9.982525px;}
._c{width:15.051500px;}
._8{width:16.844768px;}
._6{width:18.171782px;}
._10{width:20.275887px;}
._5{width:24.806874px;}
._d{width:27.735878px;}
._9{width:29.887800px;}
.fc1{color:rgb(20,120,199);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.795721px;}
.fs4{font-size:47.820600px;}
.fs9{font-size:49.014993px;}
.fsa{font-size:49.263063px;}
.fs8{font-size:49.625902px;}
.fs7{font-size:50.616388px;}
.fs5{font-size:52.565467px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.ydc{bottom:7.147356px;}
.yf7{bottom:7.183529px;}
.yc9{bottom:7.236438px;}
.yf9{bottom:7.319511px;}
.y96{bottom:7.380871px;}
.y5d{bottom:9.850815px;}
.y5e{bottom:21.901838px;}
.yf6{bottom:21.962240px;}
.yf8{bottom:22.098222px;}
.yd2{bottom:27.133138px;}
.yc1{bottom:27.472563px;}
.y9f{bottom:28.019619px;}
.y8c{bottom:28.020889px;}
.yfa{bottom:36.283559px;}
.yd3{bottom:40.640669px;}
.yc2{bottom:41.147203px;}
.y8d{bottom:41.968462px;}
.y5c{bottom:45.641141px;}
.y5a{bottom:51.245870px;}
.yd4{bottom:54.504891px;}
.ya0{bottom:56.285649px;}
.y8e{bottom:56.377100px;}
.y5b{bottom:58.651128px;}
.yc3{bottom:58.976163px;}
.yfb{bottom:67.011659px;}
.yff{bottom:67.352848px;}
.yd5{bottom:68.369112px;}
.ya1{bottom:70.602836px;}
.y8f{bottom:70.784468px;}
.ydd{bottom:71.553505px;}
.yca{bottom:72.445327px;}
.y97{bottom:73.891267px;}
.yc4{bottom:76.805123px;}
.yd6{bottom:82.233334px;}
.ya2{bottom:84.920023px;}
.ye2{bottom:85.123764px;}
.y90{bottom:85.191836px;}
.ycf{bottom:86.184722px;}
.y9c{bottom:87.904887px;}
.yc5{bottom:94.634083px;}
.yd7{bottom:96.097556px;}
.yfc{bottom:96.541885px;}
.ya3{bottom:99.237210px;}
.y91{bottom:99.599204px;}
.ye1{bottom:100.368012px;}
.yce{bottom:101.617725px;}
.y9b{bottom:103.647188px;}
.yd8{bottom:109.960548px;}
.yc6{bottom:112.461798px;}
.ya4{bottom:113.553127px;}
.y92{bottom:114.006572px;}
.ye0{bottom:116.297353px;}
.ycd{bottom:117.746851px;}
.y9a{bottom:120.096966px;}
.yd9{bottom:123.824770px;}
.yfd{bottom:126.072111px;}
.y101{bottom:127.401021px;}
.ya5{bottom:127.870314px;}
.y93{bottom:128.415211px;}
.yc7{bottom:130.290758px;}
.ydf{bottom:132.226695px;}
.ycc{bottom:133.874731px;}
.y99{bottom:136.546743px;}
.yda{bottom:137.688992px;}
.ya6{bottom:142.187501px;}
.y100{bottom:142.586440px;}
.y94{bottom:142.822579px;}
.yde{bottom:147.605010px;}
.yc8{bottom:148.119718px;}
.ycb{bottom:149.444717px;}
.ydb{bottom:151.553213px;}
.y98{bottom:152.427491px;}
.yfe{bottom:155.602337px;}
.ya7{bottom:156.504689px;}
.y95{bottom:157.229947px;}
.y31{bottom:188.167500px;}
.y103{bottom:193.548000px;}
.y13f{bottom:195.027000px;}
.y30{bottom:206.100000px;}
.y13e{bottom:208.477500px;}
.y102{bottom:211.480500px;}
.y13d{bottom:221.926500px;}
.y58{bottom:224.032500px;}
.y2f{bottom:230.308500px;}
.yf5{bottom:232.999500px;}
.y13c{bottom:235.375500px;}
.y8a{bottom:241.966500px;}
.y57{bottom:247.486500px;}
.y13b{bottom:248.826000px;}
.y89{bottom:259.899000px;}
.y2e{bottom:260.548500px;}
.y13a{bottom:262.275000px;}
.y139{bottom:275.724000px;}
.y56{bottom:277.482000px;}
.y88{bottom:277.831500px;}
.y2d{bottom:278.481000px;}
.y138{bottom:289.174500px;}
.y55{bottom:295.414500px;}
.y87{bottom:295.764000px;}
.y2c{bottom:296.415000px;}
.y137{bottom:302.623500px;}
.y54{bottom:313.348500px;}
.ybf{bottom:313.696500px;}
.y2b{bottom:314.347500px;}
.y136{bottom:316.074000px;}
.y86{bottom:319.009500px;}
.y135{bottom:329.523000px;}
.y53{bottom:331.281000px;}
.ybe{bottom:331.629000px;}
.y2a{bottom:332.280000px;}
.y134{bottom:342.972000px;}
.y85{bottom:348.499500px;}
.y52{bottom:349.213500px;}
.ybd{bottom:349.563000px;}
.y29{bottom:350.212500px;}
.y133{bottom:356.422500px;}
.y84{bottom:366.432000px;}
.y51{bottom:367.146000px;}
.ybc{bottom:367.495500px;}
.y28{bottom:368.145000px;}
.y132{bottom:369.871500px;}
.y131{bottom:383.320500px;}
.y83{bottom:384.364500px;}
.y50{bottom:385.078500px;}
.ybb{bottom:385.428000px;}
.y27{bottom:386.079000px;}
.y130{bottom:396.771000px;}
.y82{bottom:402.298500px;}
.y4f{bottom:403.011000px;}
.yba{bottom:403.360500px;}
.y26{bottom:404.011500px;}
.y12f{bottom:410.220000px;}
.y81{bottom:420.231000px;}
.y4e{bottom:420.945000px;}
.yb9{bottom:421.516500px;}
.y25{bottom:421.944000px;}
.y12e{bottom:423.669000px;}
.y12d{bottom:437.119500px;}
.y80{bottom:438.163500px;}
.y4d{bottom:438.877500px;}
.yb8{bottom:439.449000px;}
.y24{bottom:439.876500px;}
.yf4{bottom:441.324000px;}
.y12c{bottom:450.568500px;}
.y7f{bottom:456.096000px;}
.y4c{bottom:456.810000px;}
.y23{bottom:457.809000px;}
.yf3{bottom:459.256500px;}
.yb7{bottom:463.431000px;}
.y12b{bottom:464.019000px;}
.y7e{bottom:474.028500px;}
.y4b{bottom:474.742500px;}
.y22{bottom:475.741500px;}
.yf2{bottom:477.189000px;}
.y12a{bottom:477.468000px;}
.y129{bottom:490.917000px;}
.y7d{bottom:491.961000px;}
.y4a{bottom:492.675000px;}
.yb6{bottom:493.350000px;}
.y21{bottom:493.936500px;}
.yf1{bottom:495.123000px;}
.y128{bottom:504.367500px;}
.y7c{bottom:509.895000px;}
.y49{bottom:510.607500px;}
.yb5{bottom:511.282500px;}
.y20{bottom:511.869000px;}
.yf0{bottom:513.055500px;}
.y127{bottom:517.816500px;}
.y7b{bottom:527.827500px;}
.yb4{bottom:529.215000px;}
.y1f{bottom:529.801500px;}
.yef{bottom:530.988000px;}
.y126{bottom:531.265500px;}
.y48{bottom:534.061500px;}
.y125{bottom:544.716000px;}
.y7a{bottom:545.760000px;}
.yb3{bottom:547.149000px;}
.y1e{bottom:547.734000px;}
.yee{bottom:548.920500px;}
.y124{bottom:558.165000px;}
.y79{bottom:563.865000px;}
.y47{bottom:564.058500px;}
.yb2{bottom:565.081500px;}
.y1d{bottom:565.666500px;}
.yed{bottom:566.853000px;}
.y123{bottom:579.886500px;}
.y78{bottom:581.799000px;}
.y46{bottom:581.991000px;}
.yb1{bottom:583.014000px;}
.y1c{bottom:583.600500px;}
.yec{bottom:584.785500px;}
.y77{bottom:599.731500px;}
.y45{bottom:599.923500px;}
.yb0{bottom:600.946500px;}
.y1b{bottom:601.533000px;}
.yeb{bottom:602.719500px;}
.y122{bottom:606.897000px;}
.y76{bottom:617.664000px;}
.yaf{bottom:618.879000px;}
.y1a{bottom:619.465500px;}
.yea{bottom:620.652000px;}
.y44{bottom:623.958000px;}
.y121{bottom:624.831000px;}
.yae{bottom:636.811500px;}
.y19{bottom:637.398000px;}
.ye9{bottom:638.584500px;}
.y75{bottom:640.909500px;}
.y120{bottom:642.763500px;}
.y43{bottom:653.953500px;}
.yad{bottom:654.745500px;}
.y18{bottom:655.330500px;}
.ye8{bottom:656.517000px;}
.y11f{bottom:660.696000px;}
.y74{bottom:670.399500px;}
.y42{bottom:671.887500px;}
.yac{bottom:672.901500px;}
.y17{bottom:673.264500px;}
.ye7{bottom:674.449500px;}
.y11e{bottom:678.628500px;}
.y41{bottom:690.052500px;}
.yab{bottom:690.834000px;}
.y16{bottom:691.197000px;}
.ye6{bottom:692.382000px;}
.y73{bottom:694.077000px;}
.y11d{bottom:696.561000px;}
.y40{bottom:707.985000px;}
.yaa{bottom:708.766500px;}
.y15{bottom:709.129500px;}
.ye5{bottom:710.316000px;}
.y11c{bottom:719.202000px;}
.y72{bottom:723.567000px;}
.y3f{bottom:725.917500px;}
.ya9{bottom:726.699000px;}
.ye4{bottom:728.248500px;}
.y14{bottom:733.336500px;}
.y71{bottom:741.501000px;}
.y3e{bottom:743.850000px;}
.y11b{bottom:747.222000px;}
.y70{bottom:759.433500px;}
.y3d{bottom:761.782500px;}
.y11a{bottom:765.154500px;}
.y6f{bottom:777.366000px;}
.ya8{bottom:778.404000px;}
.y3c{bottom:779.716500px;}
.y13{bottom:782.676000px;}
.y119{bottom:783.087000px;}
.ye3{bottom:783.627000px;}
.y6e{bottom:795.298500px;}
.y3b{bottom:797.649000px;}
.y12{bottom:797.881500px;}
.y9e{bottom:799.923000px;}
.y118{bottom:801.019500px;}
.yd1{bottom:805.146000px;}
.y11{bottom:812.826000px;}
.y6d{bottom:813.231000px;}
.y3a{bottom:815.581500px;}
.y117{bottom:818.952000px;}
.y10{bottom:827.769000px;}
.y6c{bottom:831.163500px;}
.y39{bottom:833.514000px;}
.y116{bottom:836.884500px;}
.yf{bottom:842.713500px;}
.y6b{bottom:849.097500px;}
.y38{bottom:851.446500px;}
.y115{bottom:854.818500px;}
.ye{bottom:857.656500px;}
.y6a{bottom:867.030000px;}
.y37{bottom:869.611500px;}
.yd{bottom:872.601000px;}
.y114{bottom:872.751000px;}
.y69{bottom:884.962500px;}
.yc{bottom:887.545500px;}
.y113{bottom:890.683500px;}
.yb{bottom:902.488500px;}
.y68{bottom:902.895000px;}
.y36{bottom:905.478000px;}
.y112{bottom:908.616000px;}
.ya{bottom:917.433000px;}
.y67{bottom:920.827500px;}
.y35{bottom:923.410500px;}
.y111{bottom:926.548500px;}
.y9{bottom:932.377500px;}
.y66{bottom:938.760000px;}
.y34{bottom:941.343000px;}
.y110{bottom:944.481000px;}
.y8{bottom:947.320500px;}
.y65{bottom:956.694000px;}
.y33{bottom:959.275500px;}
.y7{bottom:962.265000px;}
.y10f{bottom:962.415000px;}
.y64{bottom:974.626500px;}
.y32{bottom:977.208000px;}
.y6{bottom:977.209500px;}
.y10e{bottom:980.347500px;}
.y63{bottom:992.559000px;}
.y9d{bottom:995.901000px;}
.y10d{bottom:998.280000px;}
.yd0{bottom:999.438000px;}
.y62{bottom:1010.664000px;}
.y10c{bottom:1016.212500px;}
.y8b{bottom:1017.420000px;}
.yc0{bottom:1020.958500px;}
.y61{bottom:1028.598000px;}
.y5{bottom:1029.862500px;}
.y10b{bottom:1034.145000px;}
.y60{bottom:1046.530500px;}
.y4{bottom:1048.356000px;}
.y10a{bottom:1052.077500px;}
.y3{bottom:1067.070000px;}
.y109{bottom:1070.011500px;}
.y108{bottom:1092.651000px;}
.y5f{bottom:1098.100500px;}
.y2{bottom:1114.144500px;}
.y59{bottom:1119.619500px;}
.y107{bottom:1120.671000px;}
.y106{bottom:1138.603500px;}
.y1{bottom:1155.987000px;}
.y105{bottom:1156.536000px;}
.y104{bottom:1174.468500px;}
.hc{height:21.194336px;}
.h1b{height:32.900573px;}
.h1c{height:33.134573px;}
.h1a{height:33.140573px;}
.h15{height:33.183150px;}
.h19{height:33.351094px;}
.h12{height:33.596736px;}
.he{height:34.267295px;}
.hb{height:36.165041px;}
.h16{height:36.761245px;}
.h18{height:36.947297px;}
.h13{height:37.219427px;}
.h8{height:37.336090px;}
.h7{height:37.605082px;}
.hf{height:37.962291px;}
.h9{height:40.826735px;}
.h5{height:41.125613px;}
.h6{height:44.831700px;}
.h4{height:45.238339px;}
.h3{height:45.568339px;}
.ha{height:67.403158px;}
.h2{height:98.701718px;}
.h14{height:164.020189px;}
.h11{height:166.064491px;}
.h17{height:167.644113px;}
.h10{height:169.378980px;}
.hd{height:169.602527px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w6{width:357.761374px;}
.w5{width:357.763482px;}
.w3{width:357.765829px;}
.w4{width:357.767099px;}
.w7{width:357.769667px;}
.w2{width:357.773994px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:13.707513px;}
.x19{left:25.587272px;}
.x24{left:30.877167px;}
.x18{left:31.913915px;}
.x23{left:37.003647px;}
.x17{left:38.240557px;}
.x2c{left:46.771438px;}
.x8{left:60.903000px;}
.xf{left:62.614934px;}
.x22{left:65.655799px;}
.xe{left:70.318500px;}
.x21{left:73.755000px;}
.x7{left:75.846000px;}
.x16{left:80.099785px;}
.x2d{left:99.307253px;}
.x27{left:101.394000px;}
.x28{left:117.445942px;}
.x25{left:139.237524px;}
.x1f{left:140.967960px;}
.x1a{left:143.786627px;}
.x11{left:145.212459px;}
.x13{left:157.717500px;}
.x29{left:167.147162px;}
.x5{left:173.970000px;}
.xa{left:184.773000px;}
.x12{left:188.532037px;}
.x9{left:190.885500px;}
.x10{left:204.347686px;}
.x14{left:214.983000px;}
.x1{left:229.419000px;}
.x3{left:253.899000px;}
.x26{left:259.676186px;}
.x20{left:262.912717px;}
.x1c{left:268.160204px;}
.x2a{left:271.270631px;}
.x2{left:275.199000px;}
.x2b{left:314.104788px;}
.x6{left:322.351500px;}
.xb{left:455.422500px;}
.x31{left:461.400000px;}
.x15{left:464.838000px;}
.x1d{left:467.917500px;}
.xc{left:470.367000px;}
.x33{left:482.812500px;}
.x4{left:488.044500px;}
.xd{left:515.544000px;}
.x2e{left:536.376000px;}
.x2f{left:574.855500px;}
.x1e{left:591.570000px;}
.x30{left:601.875000px;}
.x35{left:609.532500px;}
.x32{left:654.271500px;}
.x34{left:809.775000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.001656pt;}
.ls6{letter-spacing:0.001676pt;}
.ls5{letter-spacing:0.001710pt;}
.ls7{letter-spacing:0.002974pt;}
.ls9{letter-spacing:0.002989pt;}
.ls4{letter-spacing:0.003071pt;}
.lsa{letter-spacing:0.765130pt;}
.ls1{letter-spacing:2.210374pt;}
.ls0{letter-spacing:2.635446pt;}
.ls2{letter-spacing:2.656693pt;}
.ws7e{word-spacing:-44.992345pt;}
.ws99{word-spacing:-44.111913pt;}
.ws9e{word-spacing:-43.568883pt;}
.ws7d{word-spacing:-30.009894pt;}
.ws98{word-spacing:-29.422646pt;}
.wsae{word-spacing:-29.207523pt;}
.ws9d{word-spacing:-29.060445pt;}
.ws3{word-spacing:-13.283467pt;}
.ws15{word-spacing:-13.262246pt;}
.ws2e{word-spacing:-10.626800pt;}
.wsb7{word-spacing:-1.062677pt;}
.ws1f{word-spacing:-0.797008pt;}
.ws13{word-spacing:-0.717312pt;}
.ws44{word-spacing:-0.531339pt;}
.ws8f{word-spacing:-0.478205pt;}
.ws91{word-spacing:-0.425071pt;}
.ws82{word-spacing:-0.371937pt;}
.ws18{word-spacing:-0.318803pt;}
.ws95{word-spacing:-0.159402pt;}
.ws85{word-spacing:-0.053134pt;}
.ws4{word-spacing:-0.047821pt;}
.ws52{word-spacing:-0.046725pt;}
.ws7a{word-spacing:-0.044992pt;}
.ws96{word-spacing:-0.044112pt;}
.wsad{word-spacing:-0.043789pt;}
.ws9a{word-spacing:-0.043569pt;}
.ws3d{word-spacing:-0.010667pt;}
.ws50{word-spacing:0.000000pt;}
.wsb3{word-spacing:0.042467pt;}
.ws8{word-spacing:0.047821pt;}
.ws43{word-spacing:0.106268pt;}
.ws49{word-spacing:0.159402pt;}
.wsa0{word-spacing:0.212535pt;}
.ws29{word-spacing:0.265669pt;}
.ws71{word-spacing:0.371937pt;}
.ws75{word-spacing:0.478205pt;}
.ws72{word-spacing:0.584473pt;}
.ws53{word-spacing:0.797008pt;}
.wsab{word-spacing:0.872013pt;}
.ws87{word-spacing:1.009543pt;}
.wsb6{word-spacing:1.062677pt;}
.ws3a{word-spacing:1.115811pt;}
.ws30{word-spacing:1.168945pt;}
.wsb8{word-spacing:1.222079pt;}
.wsb9{word-spacing:1.328347pt;}
.wsb{word-spacing:1.482445pt;}
.ws19{word-spacing:1.540882pt;}
.ws1e{word-spacing:1.700284pt;}
.wsaf{word-spacing:2.125355pt;}
.ws64{word-spacing:2.178489pt;}
.wsa1{word-spacing:2.231622pt;}
.ws48{word-spacing:2.391024pt;}
.ws94{word-spacing:2.444158pt;}
.ws3b{word-spacing:2.603559pt;}
.ws3e{word-spacing:2.656693pt;}
.wsf{word-spacing:2.869248pt;}
.ws46{word-spacing:3.081764pt;}
.ws8a{word-spacing:3.134898pt;}
.ws92{word-spacing:3.188032pt;}
.ws61{word-spacing:3.241166pt;}
.wscd{word-spacing:3.273054pt;}
.wsd4{word-spacing:3.358069pt;}
.ws62{word-spacing:3.559969pt;}
.ws84{word-spacing:3.666237pt;}
.ws1d{word-spacing:3.772505pt;}
.ws20{word-spacing:3.878772pt;}
.ws79{word-spacing:3.985040pt;}
.wsd7{word-spacing:3.995677pt;}
.ws4c{word-spacing:4.038174pt;}
.wsd1{word-spacing:4.080691pt;}
.wsa9{word-spacing:4.091308pt;}
.wsc6{word-spacing:4.250720pt;}
.ws4b{word-spacing:4.356977pt;}
.ws4f{word-spacing:4.463245pt;}
.ws6d{word-spacing:4.622646pt;}
.ws2a{word-spacing:4.675780pt;}
.wsbb{word-spacing:4.728914pt;}
.wsc3{word-spacing:4.760806pt;}
.ws31{word-spacing:4.782048pt;}
.ws2f{word-spacing:4.835182pt;}
.ws33{word-spacing:4.888316pt;}
.ws7{word-spacing:4.925542pt;}
.ws58{word-spacing:4.994583pt;}
.wscb{word-spacing:5.015850pt;}
.ws21{word-spacing:5.100851pt;}
.ws32{word-spacing:5.153985pt;}
.ws4a{word-spacing:5.207119pt;}
.ws2d{word-spacing:5.260226pt;}
.ws1c{word-spacing:5.260253pt;}
.ws2{word-spacing:5.313387pt;}
.ws4d{word-spacing:5.472788pt;}
.ws45{word-spacing:5.525922pt;}
.ws6{word-spacing:5.690675pt;}
.ws10{word-spacing:5.738496pt;}
.ws1{word-spacing:5.844747pt;}
.ws70{word-spacing:5.950993pt;}
.ws11{word-spacing:5.977600pt;}
.ws5c{word-spacing:6.057261pt;}
.wse{word-spacing:6.073242pt;}
.ws2c{word-spacing:6.216662pt;}
.ws76{word-spacing:6.322930pt;}
.wsc0{word-spacing:6.482332pt;}
.wsd0{word-spacing:6.503602pt;}
.ws39{word-spacing:6.535466pt;}
.wsc7{word-spacing:6.631123pt;}
.ws81{word-spacing:6.694867pt;}
.wsd3{word-spacing:6.716138pt;}
.ws35{word-spacing:6.748001pt;}
.wsb2{word-spacing:6.854269pt;}
.ws4e{word-spacing:6.907403pt;}
.wsd6{word-spacing:6.928674pt;}
.ws42{word-spacing:7.066804pt;}
.wsc2{word-spacing:7.141210pt;}
.ws25{word-spacing:7.226206pt;}
.ws68{word-spacing:7.279340pt;}
.ws5b{word-spacing:7.332474pt;}
.wsbe{word-spacing:7.438741pt;}
.ws8e{word-spacing:7.598143pt;}
.ws17{word-spacing:7.810678pt;}
.wsce{word-spacing:7.906339pt;}
.wsc{word-spacing:7.938253pt;}
.ws27{word-spacing:7.970080pt;}
.ws8c{word-spacing:8.076348pt;}
.ws22{word-spacing:8.182615pt;}
.ws6b{word-spacing:8.288883pt;}
.ws73{word-spacing:8.342017pt;}
.ws9f{word-spacing:8.554553pt;}
.wsb4{word-spacing:8.607686pt;}
.wsbd{word-spacing:8.713954pt;}
.ws1a{word-spacing:9.032757pt;}
.wsba{word-spacing:9.085891pt;}
.ws83{word-spacing:9.192159pt;}
.ws59{word-spacing:9.245293pt;}
.ws24{word-spacing:9.298427pt;}
.wsbf{word-spacing:9.457828pt;}
.wsc8{word-spacing:9.606627pt;}
.ws1b{word-spacing:9.670364pt;}
.ws26{word-spacing:9.829765pt;}
.ws9{word-spacing:9.851085pt;}
.wsa4{word-spacing:10.148569pt;}
.ws23{word-spacing:10.201702pt;}
.wsc1{word-spacing:10.254836pt;}
.ws3c{word-spacing:10.626773pt;}
.ws16{word-spacing:10.733041pt;}
.ws6e{word-spacing:10.786175pt;}
.ws36{word-spacing:10.839309pt;}
.ws2b{word-spacing:10.892443pt;}
.ws88{word-spacing:10.998710pt;}
.ws12{word-spacing:11.190067pt;}
.wsb0{word-spacing:11.211246pt;}
.ws54{word-spacing:11.476915pt;}
.ws80{word-spacing:11.530049pt;}
.wsa7{word-spacing:12.008254pt;}
.ws7f{word-spacing:12.061388pt;}
.wsa2{word-spacing:12.273923pt;}
.ws86{word-spacing:12.327057pt;}
.ws63{word-spacing:12.486459pt;}
.wsdb{word-spacing:12.582131pt;}
.ws5f{word-spacing:12.698994pt;}
.ws0{word-spacing:12.752160pt;}
.wsca{word-spacing:12.837174pt;}
.ws90{word-spacing:12.858396pt;}
.ws6c{word-spacing:12.964663pt;}
.ws60{word-spacing:13.017797pt;}
.wsb5{word-spacing:13.070931pt;}
.wsd{word-spacing:13.150720pt;}
.ws8b{word-spacing:13.230333pt;}
.wsa8{word-spacing:13.389734pt;}
.wsa6{word-spacing:13.496002pt;}
.wsa{word-spacing:13.533286pt;}
.wsbc{word-spacing:13.549136pt;}
.ws34{word-spacing:13.655404pt;}
.ws74{word-spacing:13.708538pt;}
.ws6a{word-spacing:13.921073pt;}
.wsd5{word-spacing:14.027376pt;}
.ws78{word-spacing:14.080475pt;}
.wsaa{word-spacing:14.100804pt;}
.ws66{word-spacing:14.293010pt;}
.ws28{word-spacing:14.346144pt;}
.ws89{word-spacing:14.452412pt;}
.ws57{word-spacing:14.558679pt;}
.wsd8{word-spacing:14.579970pt;}
.wsa5{word-spacing:14.718081pt;}
.wsc5{word-spacing:14.835013pt;}
.wsb1{word-spacing:15.249420pt;}
.ws93{word-spacing:15.355687pt;}
.wsc4{word-spacing:15.387606pt;}
.ws38{word-spacing:15.408821pt;}
.ws8d{word-spacing:15.461955pt;}
.wscc{word-spacing:15.557635pt;}
.ws47{word-spacing:15.621357pt;}
.ws40{word-spacing:15.727625pt;}
.ws5{word-spacing:15.733043pt;}
.ws67{word-spacing:15.887026pt;}
.ws14{word-spacing:15.940160pt;}
.ws69{word-spacing:16.099562pt;}
.wsd2{word-spacing:16.152736pt;}
.ws6f{word-spacing:16.258963pt;}
.wscf{word-spacing:18.448125pt;}
.ws3f{word-spacing:18.543719pt;}
.wsa3{word-spacing:19.287594pt;}
.ws56{word-spacing:19.500129pt;}
.ws77{word-spacing:19.553263pt;}
.ws5d{word-spacing:19.712665pt;}
.wsc9{word-spacing:20.190920pt;}
.ws41{word-spacing:20.297137pt;}
.ws5a{word-spacing:22.475626pt;}
.ws65{word-spacing:26.513799pt;}
.ws9b{word-spacing:32.834524pt;}
.ws9c{word-spacing:32.838897pt;}
.ws5e{word-spacing:32.996131pt;}
.ws97{word-spacing:33.243764pt;}
.ws55{word-spacing:33.686871pt;}
.ws37{word-spacing:33.793139pt;}
.wsac{word-spacing:42.082223pt;}
.wsda{word-spacing:50.115989pt;}
.wsd9{word-spacing:59.722616pt;}
.ws7c{word-spacing:147.600264pt;}
.ws7b{word-spacing:147.604780pt;}
.ws51{word-spacing:611.371201pt;}
._f{margin-left:-5.663995pt;}
._3{margin-left:-4.250709pt;}
._7{margin-left:-3.347434pt;}
._1{margin-left:-2.337899pt;}
._2{margin-left:-1.052054pt;}
._b{width:1.259786pt;}
._4{width:2.656693pt;}
._e{width:3.591250pt;}
._0{width:4.871618pt;}
._a{width:8.873356pt;}
._c{width:13.379111pt;}
._8{width:14.973127pt;}
._6{width:16.152695pt;}
._10{width:18.023011pt;}
._5{width:22.050555pt;}
._d{width:24.654114pt;}
._9{width:26.566933pt;}
.fs6{font-size:32.707308pt;}
.fs4{font-size:42.507200pt;}
.fs9{font-size:43.568883pt;}
.fsa{font-size:43.789389pt;}
.fs8{font-size:44.111913pt;}
.fs7{font-size:44.992345pt;}
.fs5{font-size:46.724860pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.ydc{bottom:6.353205pt;}
.yf7{bottom:6.385359pt;}
.yc9{bottom:6.432390pt;}
.yf9{bottom:6.506232pt;}
.y96{bottom:6.560774pt;}
.y5d{bottom:8.756280pt;}
.y5e{bottom:19.468301pt;}
.yf6{bottom:19.521991pt;}
.yf8{bottom:19.642864pt;}
.yd2{bottom:24.118345pt;}
.yc1{bottom:24.420056pt;}
.y9f{bottom:24.906328pt;}
.y8c{bottom:24.907457pt;}
.yfa{bottom:32.252053pt;}
.yd3{bottom:36.125039pt;}
.yc2{bottom:36.575291pt;}
.y8d{bottom:37.305299pt;}
.y5c{bottom:40.569903pt;}
.y5a{bottom:45.551884pt;}
.yd4{bottom:48.448792pt;}
.ya0{bottom:50.031688pt;}
.y8e{bottom:50.112978pt;}
.y5b{bottom:52.134336pt;}
.yc3{bottom:52.423256pt;}
.yfb{bottom:59.565919pt;}
.yff{bottom:59.869199pt;}
.yd5{bottom:60.772544pt;}
.ya1{bottom:62.758076pt;}
.y8f{bottom:62.919527pt;}
.ydd{bottom:63.603115pt;}
.yca{bottom:64.395847pt;}
.y97{bottom:65.681126pt;}
.yc4{bottom:68.271220pt;}
.yd6{bottom:73.096297pt;}
.ya2{bottom:75.484465pt;}
.ye2{bottom:75.665568pt;}
.y90{bottom:75.726077pt;}
.ycf{bottom:76.608642pt;}
.y9c{bottom:78.137678pt;}
.yc5{bottom:84.119185pt;}
.yd7{bottom:85.420050pt;}
.yfc{bottom:85.815009pt;}
.ya3{bottom:88.210853pt;}
.y91{bottom:88.532626pt;}
.ye1{bottom:89.216011pt;}
.yce{bottom:90.326867pt;}
.y9b{bottom:92.130834pt;}
.yd8{bottom:97.742709pt;}
.yc6{bottom:99.966042pt;}
.ya4{bottom:100.936113pt;}
.y92{bottom:101.339176pt;}
.ye0{bottom:103.375425pt;}
.ycd{bottom:104.663867pt;}
.y9a{bottom:106.752858pt;}
.yd9{bottom:110.066462pt;}
.yfd{bottom:112.064099pt;}
.y101{bottom:113.245352pt;}
.ya5{bottom:113.662502pt;}
.y93{bottom:114.146854pt;}
.yc7{bottom:115.814007pt;}
.ydf{bottom:117.534840pt;}
.ycc{bottom:118.999761pt;}
.y99{bottom:121.374883pt;}
.yda{bottom:122.390215pt;}
.ya6{bottom:126.388890pt;}
.y100{bottom:126.743502pt;}
.y94{bottom:126.953404pt;}
.yde{bottom:131.204453pt;}
.yc8{bottom:131.661971pt;}
.ycb{bottom:132.839749pt;}
.ydb{bottom:134.713968pt;}
.y98{bottom:135.491103pt;}
.yfe{bottom:138.313188pt;}
.ya7{bottom:139.115279pt;}
.y95{bottom:139.759953pt;}
.y31{bottom:167.260000pt;}
.y103{bottom:172.042667pt;}
.y13f{bottom:173.357333pt;}
.y30{bottom:183.200000pt;}
.y13e{bottom:185.313333pt;}
.y102{bottom:187.982667pt;}
.y13d{bottom:197.268000pt;}
.y58{bottom:199.140000pt;}
.y2f{bottom:204.718667pt;}
.yf5{bottom:207.110667pt;}
.y13c{bottom:209.222667pt;}
.y8a{bottom:215.081333pt;}
.y57{bottom:219.988000pt;}
.y13b{bottom:221.178667pt;}
.y89{bottom:231.021333pt;}
.y2e{bottom:231.598667pt;}
.y13a{bottom:233.133333pt;}
.y139{bottom:245.088000pt;}
.y56{bottom:246.650667pt;}
.y88{bottom:246.961333pt;}
.y2d{bottom:247.538667pt;}
.y138{bottom:257.044000pt;}
.y55{bottom:262.590667pt;}
.y87{bottom:262.901333pt;}
.y2c{bottom:263.480000pt;}
.y137{bottom:268.998667pt;}
.y54{bottom:278.532000pt;}
.ybf{bottom:278.841333pt;}
.y2b{bottom:279.420000pt;}
.y136{bottom:280.954667pt;}
.y86{bottom:283.564000pt;}
.y135{bottom:292.909333pt;}
.y53{bottom:294.472000pt;}
.ybe{bottom:294.781333pt;}
.y2a{bottom:295.360000pt;}
.y134{bottom:304.864000pt;}
.y85{bottom:309.777333pt;}
.y52{bottom:310.412000pt;}
.ybd{bottom:310.722667pt;}
.y29{bottom:311.300000pt;}
.y133{bottom:316.820000pt;}
.y84{bottom:325.717333pt;}
.y51{bottom:326.352000pt;}
.ybc{bottom:326.662667pt;}
.y28{bottom:327.240000pt;}
.y132{bottom:328.774667pt;}
.y131{bottom:340.729333pt;}
.y83{bottom:341.657333pt;}
.y50{bottom:342.292000pt;}
.ybb{bottom:342.602667pt;}
.y27{bottom:343.181333pt;}
.y130{bottom:352.685333pt;}
.y82{bottom:357.598667pt;}
.y4f{bottom:358.232000pt;}
.yba{bottom:358.542667pt;}
.y26{bottom:359.121333pt;}
.y12f{bottom:364.640000pt;}
.y81{bottom:373.538667pt;}
.y4e{bottom:374.173333pt;}
.yb9{bottom:374.681333pt;}
.y25{bottom:375.061333pt;}
.y12e{bottom:376.594667pt;}
.y12d{bottom:388.550667pt;}
.y80{bottom:389.478667pt;}
.y4d{bottom:390.113333pt;}
.yb8{bottom:390.621333pt;}
.y24{bottom:391.001333pt;}
.yf4{bottom:392.288000pt;}
.y12c{bottom:400.505333pt;}
.y7f{bottom:405.418667pt;}
.y4c{bottom:406.053333pt;}
.y23{bottom:406.941333pt;}
.yf3{bottom:408.228000pt;}
.yb7{bottom:411.938667pt;}
.y12b{bottom:412.461333pt;}
.y7e{bottom:421.358667pt;}
.y4b{bottom:421.993333pt;}
.y22{bottom:422.881333pt;}
.yf2{bottom:424.168000pt;}
.y12a{bottom:424.416000pt;}
.y129{bottom:436.370667pt;}
.y7d{bottom:437.298667pt;}
.y4a{bottom:437.933333pt;}
.yb6{bottom:438.533333pt;}
.y21{bottom:439.054667pt;}
.yf1{bottom:440.109333pt;}
.y128{bottom:448.326667pt;}
.y7c{bottom:453.240000pt;}
.y49{bottom:453.873333pt;}
.yb5{bottom:454.473333pt;}
.y20{bottom:454.994667pt;}
.yf0{bottom:456.049333pt;}
.y127{bottom:460.281333pt;}
.y7b{bottom:469.180000pt;}
.yb4{bottom:470.413333pt;}
.y1f{bottom:470.934667pt;}
.yef{bottom:471.989333pt;}
.y126{bottom:472.236000pt;}
.y48{bottom:474.721333pt;}
.y125{bottom:484.192000pt;}
.y7a{bottom:485.120000pt;}
.yb3{bottom:486.354667pt;}
.y1e{bottom:486.874667pt;}
.yee{bottom:487.929333pt;}
.y124{bottom:496.146667pt;}
.y79{bottom:501.213333pt;}
.y47{bottom:501.385333pt;}
.yb2{bottom:502.294667pt;}
.y1d{bottom:502.814667pt;}
.yed{bottom:503.869333pt;}
.y123{bottom:515.454667pt;}
.y78{bottom:517.154667pt;}
.y46{bottom:517.325333pt;}
.yb1{bottom:518.234667pt;}
.y1c{bottom:518.756000pt;}
.yec{bottom:519.809333pt;}
.y77{bottom:533.094667pt;}
.y45{bottom:533.265333pt;}
.yb0{bottom:534.174667pt;}
.y1b{bottom:534.696000pt;}
.yeb{bottom:535.750667pt;}
.y122{bottom:539.464000pt;}
.y76{bottom:549.034667pt;}
.yaf{bottom:550.114667pt;}
.y1a{bottom:550.636000pt;}
.yea{bottom:551.690667pt;}
.y44{bottom:554.629333pt;}
.y121{bottom:555.405333pt;}
.yae{bottom:566.054667pt;}
.y19{bottom:566.576000pt;}
.ye9{bottom:567.630667pt;}
.y75{bottom:569.697333pt;}
.y120{bottom:571.345333pt;}
.y43{bottom:581.292000pt;}
.yad{bottom:581.996000pt;}
.y18{bottom:582.516000pt;}
.ye8{bottom:583.570667pt;}
.y11f{bottom:587.285333pt;}
.y74{bottom:595.910667pt;}
.y42{bottom:597.233333pt;}
.yac{bottom:598.134667pt;}
.y17{bottom:598.457333pt;}
.ye7{bottom:599.510667pt;}
.y11e{bottom:603.225333pt;}
.y41{bottom:613.380000pt;}
.yab{bottom:614.074667pt;}
.y16{bottom:614.397333pt;}
.ye6{bottom:615.450667pt;}
.y73{bottom:616.957333pt;}
.y11d{bottom:619.165333pt;}
.y40{bottom:629.320000pt;}
.yaa{bottom:630.014667pt;}
.y15{bottom:630.337333pt;}
.ye5{bottom:631.392000pt;}
.y11c{bottom:639.290667pt;}
.y72{bottom:643.170667pt;}
.y3f{bottom:645.260000pt;}
.ya9{bottom:645.954667pt;}
.ye4{bottom:647.332000pt;}
.y14{bottom:651.854667pt;}
.y71{bottom:659.112000pt;}
.y3e{bottom:661.200000pt;}
.y11b{bottom:664.197333pt;}
.y70{bottom:675.052000pt;}
.y3d{bottom:677.140000pt;}
.y11a{bottom:680.137333pt;}
.y6f{bottom:690.992000pt;}
.ya8{bottom:691.914667pt;}
.y3c{bottom:693.081333pt;}
.y13{bottom:695.712000pt;}
.y119{bottom:696.077333pt;}
.ye3{bottom:696.557333pt;}
.y6e{bottom:706.932000pt;}
.y3b{bottom:709.021333pt;}
.y12{bottom:709.228000pt;}
.y9e{bottom:711.042667pt;}
.y118{bottom:712.017333pt;}
.yd1{bottom:715.685333pt;}
.y11{bottom:722.512000pt;}
.y6d{bottom:722.872000pt;}
.y3a{bottom:724.961333pt;}
.y117{bottom:727.957333pt;}
.y10{bottom:735.794667pt;}
.y6c{bottom:738.812000pt;}
.y39{bottom:740.901333pt;}
.y116{bottom:743.897333pt;}
.yf{bottom:749.078667pt;}
.y6b{bottom:754.753333pt;}
.y38{bottom:756.841333pt;}
.y115{bottom:759.838667pt;}
.ye{bottom:762.361333pt;}
.y6a{bottom:770.693333pt;}
.y37{bottom:772.988000pt;}
.yd{bottom:775.645333pt;}
.y114{bottom:775.778667pt;}
.y69{bottom:786.633333pt;}
.yc{bottom:788.929333pt;}
.y113{bottom:791.718667pt;}
.yb{bottom:802.212000pt;}
.y68{bottom:802.573333pt;}
.y36{bottom:804.869333pt;}
.y112{bottom:807.658667pt;}
.ya{bottom:815.496000pt;}
.y67{bottom:818.513333pt;}
.y35{bottom:820.809333pt;}
.y111{bottom:823.598667pt;}
.y9{bottom:828.780000pt;}
.y66{bottom:834.453333pt;}
.y34{bottom:836.749333pt;}
.y110{bottom:839.538667pt;}
.y8{bottom:842.062667pt;}
.y65{bottom:850.394667pt;}
.y33{bottom:852.689333pt;}
.y7{bottom:855.346667pt;}
.y10f{bottom:855.480000pt;}
.y64{bottom:866.334667pt;}
.y32{bottom:868.629333pt;}
.y6{bottom:868.630667pt;}
.y10e{bottom:871.420000pt;}
.y63{bottom:882.274667pt;}
.y9d{bottom:885.245333pt;}
.y10d{bottom:887.360000pt;}
.yd0{bottom:888.389333pt;}
.y62{bottom:898.368000pt;}
.y10c{bottom:903.300000pt;}
.y8b{bottom:904.373333pt;}
.yc0{bottom:907.518667pt;}
.y61{bottom:914.309333pt;}
.y5{bottom:915.433333pt;}
.y10b{bottom:919.240000pt;}
.y60{bottom:930.249333pt;}
.y4{bottom:931.872000pt;}
.y10a{bottom:935.180000pt;}
.y3{bottom:948.506667pt;}
.y109{bottom:951.121333pt;}
.y108{bottom:971.245333pt;}
.y5f{bottom:976.089333pt;}
.y2{bottom:990.350667pt;}
.y59{bottom:995.217333pt;}
.y107{bottom:996.152000pt;}
.y106{bottom:1012.092000pt;}
.y1{bottom:1027.544000pt;}
.y105{bottom:1028.032000pt;}
.y104{bottom:1043.972000pt;}
.hc{height:18.839409pt;}
.h1b{height:29.244954pt;}
.h1c{height:29.452954pt;}
.h1a{height:29.458287pt;}
.h15{height:29.496134pt;}
.h19{height:29.645417pt;}
.h12{height:29.863765pt;}
.he{height:30.459818pt;}
.hb{height:32.146703pt;}
.h16{height:32.676662pt;}
.h18{height:32.842042pt;}
.h13{height:33.083935pt;}
.h8{height:33.187635pt;}
.h7{height:33.426739pt;}
.hf{height:33.744259pt;}
.h9{height:36.290431pt;}
.h5{height:36.556100pt;}
.h6{height:39.850400pt;}
.h4{height:40.211857pt;}
.h3{height:40.505190pt;}
.ha{height:59.913918pt;}
.h2{height:87.734861pt;}
.h14{height:145.795724pt;}
.h11{height:147.612881pt;}
.h17{height:149.016989pt;}
.h10{height:150.559093pt;}
.hd{height:150.757802pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w6{width:318.010110pt;}
.w5{width:318.011984pt;}
.w3{width:318.014070pt;}
.w4{width:318.015199pt;}
.w7{width:318.017482pt;}
.w2{width:318.021328pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:12.184456pt;}
.x19{left:22.744242pt;}
.x24{left:27.446371pt;}
.x18{left:28.367924pt;}
.x23{left:32.892131pt;}
.x17{left:33.991606pt;}
.x2c{left:41.574611pt;}
.x8{left:54.136000pt;}
.xf{left:55.657719pt;}
.x22{left:58.360710pt;}
.xe{left:62.505333pt;}
.x21{left:65.560000pt;}
.x7{left:67.418667pt;}
.x16{left:71.199809pt;}
.x2d{left:88.273114pt;}
.x27{left:90.128000pt;}
.x28{left:104.396393pt;}
.x25{left:123.766688pt;}
.x1f{left:125.304853pt;}
.x1a{left:127.810335pt;}
.x11{left:129.077741pt;}
.x13{left:140.193333pt;}
.x29{left:148.575255pt;}
.x5{left:154.640000pt;}
.xa{left:164.242667pt;}
.x12{left:167.584033pt;}
.x9{left:169.676000pt;}
.x10{left:181.642388pt;}
.x14{left:191.096000pt;}
.x1{left:203.928000pt;}
.x3{left:225.688000pt;}
.x26{left:230.823277pt;}
.x20{left:233.700193pt;}
.x1c{left:238.364626pt;}
.x2a{left:241.129450pt;}
.x2{left:244.621333pt;}
.x2b{left:279.204256pt;}
.x6{left:286.534667pt;}
.xb{left:404.820000pt;}
.x31{left:410.133333pt;}
.x15{left:413.189333pt;}
.x1d{left:415.926667pt;}
.xc{left:418.104000pt;}
.x33{left:429.166667pt;}
.x4{left:433.817333pt;}
.xd{left:458.261333pt;}
.x2e{left:476.778667pt;}
.x2f{left:510.982667pt;}
.x1e{left:525.840000pt;}
.x30{left:535.000000pt;}
.x35{left:541.806667pt;}
.x32{left:581.574667pt;}
.x34{left:719.800000pt;}
}




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