
    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_e43d08bf94af75a561335495.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0ccdaa95f748c4dae2c8adea.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d345c5a2f740b4ced2f6907b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.904297;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_ba2924b1186ae6c56b1a518d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895996;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_55303e280b133d4e318fb9f2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_67bc6d4cc0a3777fdcb054b7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_aa8f3cc40f384a22ea599c97.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.983398;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_58985701b4c755d552b4c977.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_321dc641c831f7d7f79761a1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b479ec26ae1a6f3b864f9241.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_755f0702d3bdb6ad337eb216.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_8efe88540edd19ade3da3c55.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b5c074ad9f301a8b48ce2670.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_193ceeab5a54a04ce40e7294.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_8ef8304d9f61228242255ef2.woff2')format("woff");}.fff{font-family:fff;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_a0b29b96a43a9f3f6d8f161e.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_d635a87604131ab659939d28.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_478ea1cf5845664f393fa7af.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.774902;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_868e51e6a85adfba6a83ed31.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_601b94b74e4f37b63f825f7e.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.967773;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_ca31a6d8108d51197cb49b47.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.967773;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls2{letter-spacing:-0.936000px;}
.ls4{letter-spacing:-0.852000px;}
.ls26{letter-spacing:-0.720000px;}
.ls25{letter-spacing:-0.414600px;}
.ls31{letter-spacing:-0.406200px;}
.ls2d{letter-spacing:-0.252000px;}
.ls30{letter-spacing:-0.216000px;}
.ls2c{letter-spacing:-0.211800px;}
.ls1{letter-spacing:-0.132600px;}
.ls28{letter-spacing:-0.106800px;}
.ls32{letter-spacing:-0.017280px;}
.ls0{letter-spacing:0.000000px;}
.ls2f{letter-spacing:0.020160px;}
.ls24{letter-spacing:0.109200px;}
.ls27{letter-spacing:0.120000px;}
.ls2e{letter-spacing:0.146880px;}
.ls2a{letter-spacing:0.210000px;}
.ls3{letter-spacing:0.256200px;}
.ls23{letter-spacing:0.305400px;}
.ls29{letter-spacing:0.331200px;}
.ls2b{letter-spacing:0.427800px;}
.ls7{letter-spacing:0.617760px;}
.ls18{letter-spacing:5.544000px;}
.ls1b{letter-spacing:5.598000px;}
.ls9{letter-spacing:5.628000px;}
.lsa{letter-spacing:5.646000px;}
.ls1d{letter-spacing:5.682240px;}
.ls17{letter-spacing:5.712000px;}
.lsb{letter-spacing:5.760000px;}
.ls1a{letter-spacing:5.790000px;}
.ls8{letter-spacing:5.850000px;}
.lsc{letter-spacing:5.892000px;}
.ls12{letter-spacing:5.892480px;}
.lsd{letter-spacing:5.904000px;}
.ls1c{letter-spacing:5.909760px;}
.ls13{letter-spacing:5.976000px;}
.ls20{letter-spacing:5.994000px;}
.ls6{letter-spacing:6.000000px;}
.ls19{letter-spacing:6.120000px;}
.lse{letter-spacing:6.180000px;}
.lsf{letter-spacing:6.187680px;}
.ls21{letter-spacing:6.300000px;}
.ls10{letter-spacing:6.480000px;}
.ls11{letter-spacing:6.540000px;}
.ls1f{letter-spacing:6.600000px;}
.ls1e{letter-spacing:8.789760px;}
.ls14{letter-spacing:20.304000px;}
.ls5{letter-spacing:26.201280px;}
.ls22{letter-spacing:59.321280px;}
.ls15{letter-spacing:66.365760px;}
.ls16{letter-spacing:66.389760px;}
.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;}
}
.ws16{word-spacing:-66.240000px;}
.ws11{word-spacing:-21.570240px;}
.ws13{word-spacing:-21.270240px;}
.ws14{word-spacing:-21.150240px;}
.wsd{word-spacing:-21.090240px;}
.ws3{word-spacing:-20.970240px;}
.ws12{word-spacing:-20.964240px;}
.ws6{word-spacing:-20.874240px;}
.ws5{word-spacing:-20.862240px;}
.wsf{word-spacing:-20.820240px;}
.wse{word-spacing:-20.760240px;}
.wsb{word-spacing:-20.682240px;}
.ws4{word-spacing:-20.616240px;}
.ws9{word-spacing:-20.598240px;}
.ws10{word-spacing:-20.568240px;}
.wsc{word-spacing:-20.514240px;}
.ws18{word-spacing:-16.865400px;}
.ws19{word-spacing:-16.669200px;}
.ws17{word-spacing:-16.560000px;}
.ws1a{word-spacing:-16.506480px;}
.wsa{word-spacing:-16.272000px;}
.ws7{word-spacing:-15.617760px;}
.ws0{word-spacing:-15.226440px;}
.ws20{word-spacing:-14.990400px;}
.ws8{word-spacing:-14.970240px;}
.ws21{word-spacing:-14.754240px;}
.ws1{word-spacing:-12.204000px;}
.ws22{word-spacing:-11.052000px;}
.ws1b{word-spacing:-9.865560px;}
.ws1c{word-spacing:-9.768960px;}
.ws15{word-spacing:-9.437760px;}
.ws24{word-spacing:-8.648640px;}
.ws23{word-spacing:-8.631360px;}
.ws1d{word-spacing:-7.044240px;}
.ws1f{word-spacing:-6.834240px;}
.ws1e{word-spacing:-6.622440px;}
.ws2{word-spacing:0.000000px;}
._e{margin-left:-2742.530293px;}
._d{margin-left:-2741.381897px;}
._c{margin-left:-2739.590245px;}
._f{margin-left:-2728.846575px;}
._5{margin-left:-2708.123950px;}
._b{margin-left:-2706.261615px;}
._10{margin-left:-939.349341px;}
._11{margin-left:-506.642959px;}
._0{margin-left:-443.640960px;}
._12{margin-left:-400.224000px;}
._25{margin-left:-13.292160px;}
._3f{margin-left:-4.469760px;}
._38{margin-left:-3.378240px;}
._6{margin-left:-2.302001px;}
._3{margin-left:-1.080960px;}
._4{width:1.259421px;}
._2{width:3.245363px;}
._1{width:4.438212px;}
._13{width:6.118080px;}
._15{width:7.136640px;}
._9{width:8.545225px;}
._a{width:9.698953px;}
._14{width:11.494908px;}
._16{width:13.089948px;}
._21{width:14.145254px;}
._24{width:15.882720px;}
._7{width:17.117959px;}
._8{width:18.142643px;}
._1e{width:19.293898px;}
._1a{width:20.344320px;}
._19{width:21.437628px;}
._17{width:22.606080px;}
._18{width:24.013308px;}
._2a{width:26.194295px;}
._1d{width:27.267708px;}
._1f{width:28.796988px;}
._32{width:30.706858px;}
._26{width:31.815360px;}
._20{width:33.286775px;}
._1b{width:35.112563px;}
._1c{width:36.228397px;}
._2b{width:37.751205px;}
._35{width:39.052585px;}
._2f{width:40.514003px;}
._29{width:41.596452px;}
._30{width:42.821495px;}
._31{width:43.828320px;}
._27{width:46.326455px;}
._28{width:48.149280px;}
._2e{width:49.941550px;}
._33{width:52.811520px;}
._34{width:54.369468px;}
._3c{width:56.280980px;}
._2d{width:65.887895px;}
._2c{width:67.229628px;}
._23{width:69.990240px;}
._22{width:71.219255px;}
._39{width:79.810800px;}
._42{width:89.883840px;}
._41{width:91.158720px;}
._40{width:97.658880px;}
._36{width:112.555895px;}
._43{width:114.815040px;}
._3b{width:189.847700px;}
._3a{width:191.102400px;}
._3e{width:208.059840px;}
._3d{width:230.933280px;}
._37{width:849.185760px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:23.760000px;}
.fs6{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs3{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y154{bottom:2.160000px;}
.y121{bottom:2.340000px;}
.y111{bottom:2.880000px;}
.yee{bottom:3.240000px;}
.yf7{bottom:3.285000px;}
.yf2{bottom:3.420000px;}
.y10c{bottom:3.600000px;}
.y124{bottom:3.780000px;}
.y145{bottom:4.500000px;}
.yf3{bottom:5.040000px;}
.yf4{bottom:6.480000px;}
.y156{bottom:6.840000px;}
.y13a{bottom:7.020000px;}
.y12f{bottom:7.200000px;}
.y113{bottom:7.380000px;}
.y127{bottom:7.560000px;}
.y11d{bottom:7.740000px;}
.y128{bottom:8.100000px;}
.y114{bottom:8.280000px;}
.y122{bottom:8.460000px;}
.y10f{bottom:9.360000px;}
.y14b{bottom:10.260000px;}
.y149{bottom:10.440000px;}
.y115{bottom:10.800000px;}
.y159{bottom:11.700000px;}
.y153{bottom:12.600000px;}
.y12b{bottom:12.780000px;}
.y123{bottom:12.960000px;}
.y120{bottom:13.320000px;}
.y11e{bottom:14.400000px;}
.y132{bottom:14.430000px;}
.y13d{bottom:14.445000px;}
.y12c{bottom:14.580000px;}
.y125{bottom:14.760000px;}
.y11b{bottom:14.805000px;}
.y110{bottom:15.660000px;}
.y14d{bottom:16.380000px;}
.y118{bottom:16.965000px;}
.y119{bottom:17.505000px;}
.yf0{bottom:17.640000px;}
.y10a{bottom:19.800000px;}
.yed{bottom:20.700000px;}
.y116{bottom:21.600000px;}
.y11a{bottom:21.645000px;}
.y144{bottom:24.660000px;}
.y10e{bottom:25.560000px;}
.y147{bottom:30.600000px;}
.yec{bottom:37.800000px;}
.y20{bottom:57.456000px;}
.y143{bottom:58.500000px;}
.y1{bottom:77.616000px;}
.y142{bottom:80.100000px;}
.y141{bottom:101.700000px;}
.y1a{bottom:113.976000px;}
.ya5{bottom:115.596000px;}
.y4f{bottom:115.776000px;}
.y140{bottom:123.480000px;}
.y39{bottom:124.776000px;}
.y6e{bottom:126.936000px;}
.y81{bottom:129.636000px;}
.y82{bottom:133.776000px;}
.ya4{bottom:144.036000px;}
.y4e{bottom:155.910000px;}
.y13e{bottom:156.990000px;}
.yc7{bottom:163.290000px;}
.y38{bottom:164.910000px;}
.y6d{bottom:167.250000px;}
.y19{bottom:169.230000px;}
.y80{bottom:169.950000px;}
.ya3{bottom:173.730000px;}
.y62{bottom:173.910000px;}
.y13c{bottom:179.310000px;}
.ye8{bottom:188.130000px;}
.yc6{bottom:191.730000px;}
.y4d{bottom:196.230000px;}
.y13b{bottom:201.675000px;}
.ya2{bottom:202.170000px;}
.y37{bottom:205.230000px;}
.y6c{bottom:207.570000px;}
.y7f{bottom:210.270000px;}
.y61{bottom:214.230000px;}
.ye7{bottom:216.570000px;}
.y108{bottom:217.155000px;}
.yc5{bottom:219.990000px;}
.y139{bottom:224.175000px;}
.y18{bottom:224.490000px;}
.ya1{bottom:230.610000px;}
.y4c{bottom:236.550000px;}
.ye6{bottom:245.010000px;}
.y36{bottom:245.550000px;}
.y138{bottom:246.495000px;}
.y6b{bottom:247.890000px;}
.yc4{bottom:249.690000px;}
.y7e{bottom:250.410000px;}
.y107{bottom:250.815000px;}
.y60{bottom:254.550000px;}
.ya0{bottom:259.050000px;}
.y17{bottom:264.810000px;}
.y137{bottom:268.815000px;}
.ye5{bottom:273.450000px;}
.y4b{bottom:276.870000px;}
.yc3{bottom:278.310000px;}
.y106{bottom:284.475000px;}
.y35{bottom:285.915000px;}
.y9f{bottom:287.535000px;}
.y6a{bottom:288.255000px;}
.y7d{bottom:290.775000px;}
.y136{bottom:291.135000px;}
.y5f{bottom:294.915000px;}
.y105{bottom:300.855000px;}
.ye4{bottom:303.195000px;}
.yc2{bottom:306.795000px;}
.y135{bottom:313.455000px;}
.y9e{bottom:315.975000px;}
.y4a{bottom:317.235000px;}
.y16{bottom:320.115000px;}
.y104{bottom:321.375000px;}
.y34{bottom:326.235000px;}
.y69{bottom:328.395000px;}
.y7c{bottom:331.095000px;}
.ye3{bottom:331.635000px;}
.yc1{bottom:335.055000px;}
.y5e{bottom:335.235000px;}
.y134{bottom:335.775000px;}
.y103{bottom:341.895000px;}
.y9d{bottom:345.675000px;}
.y49{bottom:357.375000px;}
.y133{bottom:358.275000px;}
.ye2{bottom:360.075000px;}
.y15{bottom:360.435000px;}
.y102{bottom:362.415000px;}
.y151{bottom:364.035000px;}
.yc0{bottom:364.935000px;}
.y33{bottom:366.375000px;}
.y7b{bottom:371.415000px;}
.y9c{bottom:374.115000px;}
.y5d{bottom:375.375000px;}
.y68{bottom:380.055000px;}
.y131{bottom:380.595000px;}
.y101{bottom:382.935000px;}
.ye1{bottom:389.775000px;}
.ybf{bottom:393.375000px;}
.y48{bottom:397.695000px;}
.y150{bottom:397.725000px;}
.y14{bottom:400.755000px;}
.y9b{bottom:402.555000px;}
.y130{bottom:402.945000px;}
.y100{bottom:403.485000px;}
.y32{bottom:406.695000px;}
.y7a{bottom:411.735000px;}
.y14f{bottom:413.925000px;}
.y5c{bottom:415.695000px;}
.ye0{bottom:418.215000px;}
.ybe{bottom:421.635000px;}
.y67{bottom:423.975000px;}
.yff{bottom:424.185000px;}
.y12e{bottom:425.265000px;}
.y9a{bottom:432.255000px;}
.y47{bottom:438.015000px;}
.y13{bottom:441.075000px;}
.yfe{bottom:445.425000px;}
.ydf{bottom:446.655000px;}
.y14e{bottom:446.685000px;}
.y31{bottom:447.015000px;}
.y12d{bottom:447.585000px;}
.ybd{bottom:451.335000px;}
.y79{bottom:451.875000px;}
.y5b{bottom:456.015000px;}
.y99{bottom:460.695000px;}
.yfd{bottom:466.845000px;}
.y66{bottom:467.895000px;}
.y12a{bottom:469.905000px;}
.yde{bottom:476.355000px;}
.y46{bottom:478.335000px;}
.ybc{bottom:479.955000px;}
.y12{bottom:481.395000px;}
.y30{bottom:487.335000px;}
.yfc{bottom:487.365000px;}
.y14c{bottom:487.725000px;}
.y98{bottom:489.135000px;}
.y129{bottom:492.405000px;}
.y5a{bottom:496.335000px;}
.y78{bottom:503.355000px;}
.ydd{bottom:504.795000px;}
.yfb{bottom:507.885000px;}
.ybb{bottom:508.395000px;}
.y126{bottom:514.725000px;}
.y97{bottom:517.575000px;}
.y45{bottom:518.655000px;}
.y14a{bottom:520.485000px;}
.y11{bottom:521.535000px;}
.y2f{bottom:527.655000px;}
.yfa{bottom:528.585000px;}
.ydc{bottom:533.235000px;}
.y59{bottom:536.655000px;}
.y11f{bottom:537.045000px;}
.y96{bottom:547.275000px;}
.yf9{bottom:549.105000px;}
.y146{bottom:553.065000px;}
.y77{bottom:554.115000px;}
.y44{bottom:558.795000px;}
.y11c{bottom:559.725000px;}
.ydb{bottom:561.675000px;}
.y10{bottom:561.855000px;}
.yba{bottom:566.385000px;}
.y2e{bottom:567.825000px;}
.yf8{bottom:569.625000px;}
.y95{bottom:575.745000px;}
.y58{bottom:576.825000px;}
.y117{bottom:582.045000px;}
.yf6{bottom:590.145000px;}
.yda{bottom:591.405000px;}
.y148{bottom:593.430000px;}
.y76{bottom:594.465000px;}
.yb9{bottom:595.005000px;}
.y43{bottom:599.145000px;}
.yf{bottom:602.205000px;}
.y94{bottom:605.445000px;}
.y15b{bottom:606.390000px;}
.y2d{bottom:608.145000px;}
.yf5{bottom:610.710000px;}
.y57{bottom:617.145000px;}
.yd9{bottom:619.845000px;}
.yb8{bottom:623.445000px;}
.y112{bottom:624.390000px;}
.y13f{bottom:626.190000px;}
.y15a{bottom:626.910000px;}
.yef{bottom:631.230000px;}
.y93{bottom:633.885000px;}
.y75{bottom:634.785000px;}
.y42{bottom:639.465000px;}
.ye{bottom:642.525000px;}
.y158{bottom:647.610000px;}
.y2c{bottom:648.465000px;}
.yd8{bottom:649.545000px;}
.yb7{bottom:651.705000px;}
.y10d{bottom:652.830000px;}
.yf1{bottom:656.250000px;}
.y56{bottom:657.465000px;}
.y92{bottom:662.325000px;}
.y157{bottom:668.130000px;}
.y74{bottom:675.105000px;}
.yd7{bottom:677.985000px;}
.yeb{bottom:678.390000px;}
.y41{bottom:679.785000px;}
.yb6{bottom:681.405000px;}
.yd{bottom:682.665000px;}
.y109{bottom:685.230000px;}
.y155{bottom:688.650000px;}
.y2b{bottom:688.785000px;}
.y91{bottom:692.025000px;}
.y55{bottom:697.785000px;}
.yd6{bottom:706.245000px;}
.y10b{bottom:708.450000px;}
.y152{bottom:709.170000px;}
.yb5{bottom:710.025000px;}
.y73{bottom:715.245000px;}
.y40{bottom:720.105000px;}
.y90{bottom:720.465000px;}
.yc{bottom:722.985000px;}
.y2a{bottom:729.105000px;}
.yd5{bottom:736.125000px;}
.y54{bottom:738.105000px;}
.yb4{bottom:738.285000px;}
.y8f{bottom:748.905000px;}
.yea{bottom:749.850000px;}
.y3f{bottom:760.245000px;}
.yb{bottom:763.305000px;}
.y72{bottom:764.565000px;}
.yb3{bottom:767.985000px;}
.y29{bottom:769.245000px;}
.y53{bottom:778.245000px;}
.y8e{bottom:778.605000px;}
.yd4{bottom:792.825000px;}
.yb2{bottom:796.605000px;}
.y65{bottom:800.565000px;}
.ya{bottom:803.625000px;}
.y8d{bottom:807.045000px;}
.y28{bottom:809.565000px;}
.y71{bottom:813.885000px;}
.y52{bottom:818.565000px;}
.yd3{bottom:822.525000px;}
.yb1{bottom:825.045000px;}
.y8c{bottom:835.485000px;}
.y64{bottom:840.885000px;}
.y9{bottom:843.990000px;}
.y27{bottom:849.930000px;}
.yd2{bottom:851.010000px;}
.yb0{bottom:853.530000px;}
.y51{bottom:858.930000px;}
.y8b{bottom:865.230000px;}
.y70{bottom:869.190000px;}
.yd1{bottom:880.710000px;}
.y63{bottom:881.250000px;}
.yaf{bottom:881.790000px;}
.y8{bottom:884.130000px;}
.y26{bottom:890.250000px;}
.y8a{bottom:893.490000px;}
.y50{bottom:899.250000px;}
.yd0{bottom:909.150000px;}
.y6f{bottom:909.510000px;}
.yae{bottom:911.670000px;}
.y89{bottom:923.370000px;}
.y7{bottom:924.450000px;}
.y25{bottom:930.570000px;}
.ycf{bottom:938.850000px;}
.y3e{bottom:939.570000px;}
.yad{bottom:940.110000px;}
.y88{bottom:951.630000px;}
.y6{bottom:964.770000px;}
.yce{bottom:967.290000px;}
.yac{bottom:968.550000px;}
.y24{bottom:970.710000px;}
.y3d{bottom:979.710000px;}
.y87{bottom:981.330000px;}
.ye9{bottom:995.730000px;}
.yab{bottom:996.810000px;}
.ycd{bottom:996.990000px;}
.y5{bottom:1005.090000px;}
.y86{bottom:1009.770000px;}
.y23{bottom:1011.030000px;}
.y3c{bottom:1020.030000px;}
.ycc{bottom:1025.430000px;}
.yaa{bottom:1026.690000px;}
.y85{bottom:1038.390000px;}
.y4{bottom:1045.410000px;}
.y22{bottom:1051.350000px;}
.ycb{bottom:1053.870000px;}
.ya9{bottom:1054.950000px;}
.y3b{bottom:1060.350000px;}
.y84{bottom:1066.830000px;}
.yca{bottom:1083.570000px;}
.ya8{bottom:1084.650000px;}
.y3{bottom:1085.550000px;}
.y21{bottom:1091.670000px;}
.y83{bottom:1095.090000px;}
.y3a{bottom:1100.670000px;}
.yc9{bottom:1112.010000px;}
.ya7{bottom:1113.090000px;}
.yc8{bottom:1140.480000px;}
.y2{bottom:1141.020000px;}
.ya6{bottom:1141.740000px;}
.y1c{bottom:1160.911500px;}
.y1b{bottom:1178.488500px;}
.y1f{bottom:1214.986500px;}
.y1e{bottom:1231.186500px;}
.y1d{bottom:1247.386500px;}
.h18{height:16.380000px;}
.h14{height:19.800000px;}
.h15{height:19.836000px;}
.h12{height:20.700000px;}
.h2f{height:20.880000px;}
.h1d{height:21.600000px;}
.h26{height:21.636000px;}
.h24{height:21.960000px;}
.h30{height:22.975313px;}
.h23{height:23.319141px;}
.h13{height:23.400000px;}
.h1a{height:25.560000px;}
.h25{height:27.351562px;}
.h22{height:30.077578px;}
.h1e{height:30.963516px;}
.h2c{height:31.860000px;}
.h2a{height:32.031000px;}
.h2e{height:32.040000px;}
.h21{height:35.806641px;}
.h20{height:36.861328px;}
.h5{height:38.759766px;}
.h6{height:39.208008px;}
.h16{height:39.600000px;}
.h1f{height:40.176000px;}
.h2d{height:40.320000px;}
.h2b{height:40.356000px;}
.h27{height:40.948242px;}
.h1b{height:40.985156px;}
.h1c{height:42.759141px;}
.h11{height:45.720000px;}
.h4{height:48.095156px;}
.hf{height:51.660000px;}
.ha{height:53.302500px;}
.h19{height:55.291992px;}
.h17{height:56.214844px;}
.h10{height:62.327813px;}
.hc{height:65.010937px;}
.h2{height:65.884219px;}
.h3{height:67.824844px;}
.hb{height:68.084282px;}
.h7{height:68.956875px;}
.h29{height:72.396000px;}
.h9{height:73.722656px;}
.h8{height:74.953125px;}
.h28{height:139.140000px;}
.hd{height:892.980000px;}
.he{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w43{width:24.300000px;}
.w44{width:25.380000px;}
.w41{width:26.460000px;}
.w46{width:28.080000px;}
.w49{width:28.440000px;}
.w3e{width:28.620000px;}
.w42{width:30.600000px;}
.w3d{width:31.500000px;}
.w3c{width:31.680000px;}
.w45{width:31.716000px;}
.w3f{width:32.760000px;}
.w40{width:32.976000px;}
.w2d{width:35.856000px;}
.w1d{width:37.080000px;}
.w2a{width:39.780000px;}
.w26{width:40.140000px;}
.w29{width:40.176000px;}
.w27{width:41.400000px;}
.w2b{width:43.920000px;}
.w25{width:44.100000px;}
.w28{width:46.980000px;}
.w1f{width:48.240000px;}
.w2c{width:49.680000px;}
.w2e{width:50.760000px;}
.w23{width:56.880000px;}
.w16{width:58.320000px;}
.w24{width:60.156000px;}
.w17{width:60.876000px;}
.w39{width:61.380000px;}
.w3b{width:63.720000px;}
.w3a{width:63.900000px;}
.w37{width:74.520000px;}
.w2f{width:81.720000px;}
.w20{width:83.700000px;}
.w1a{width:86.580000px;}
.w38{width:87.516000px;}
.w11{width:87.660000px;}
.w9{width:88.020000px;}
.wf{width:88.380000px;}
.w36{width:95.616000px;}
.w22{width:99.540000px;}
.w15{width:100.980000px;}
.w21{width:101.736000px;}
.w14{width:105.336000px;}
.w33{width:106.200000px;}
.w35{width:127.620000px;}
.wa{width:140.796000px;}
.w10{width:141.156000px;}
.w8{width:144.576000px;}
.we{width:144.936000px;}
.w34{width:148.896000px;}
.w31{width:159.480000px;}
.w1b{width:167.940000px;}
.w32{width:170.130000px;}
.w1c{width:170.310000px;}
.wd{width:174.990000px;}
.w1e{width:182.910000px;}
.w19{width:233.490000px;}
.wb{width:244.830000px;}
.w12{width:245.190000px;}
.w13{width:250.740000px;}
.wc{width:251.100000px;}
.w18{width:378.390000px;}
.w47{width:489.810000px;}
.w48{width:489.855000px;}
.w30{width:882.465000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w7{width:1047.390000px;}
.w6{width:1262.879981px;}
.w4{width:1262.880000px;}
.w5{width:1263.000000px;}
.x0{left:0.000000px;}
.x70{left:1.800000px;}
.x3b{left:4.860000px;}
.x3c{left:6.480000px;}
.x35{left:7.740000px;}
.x3e{left:9.900000px;}
.x4a{left:11.385000px;}
.x4e{left:12.420000px;}
.x1a{left:13.500000px;}
.x47{left:14.760000px;}
.x4f{left:16.020000px;}
.x20{left:17.280000px;}
.x4d{left:19.260000px;}
.x14{left:20.340000px;}
.x27{left:21.420000px;}
.x5b{left:23.400000px;}
.x19{left:24.525000px;}
.x51{left:25.740000px;}
.x12{left:27.180000px;}
.x2c{left:29.160000px;}
.x16{left:32.220000px;}
.x5e{left:33.300000px;}
.x4c{left:34.380000px;}
.x50{left:36.000000px;}
.x6{left:38.826000px;}
.x56{left:40.500000px;}
.x32{left:41.760000px;}
.x1b{left:44.460000px;}
.x1f{left:47.550000px;}
.x25{left:49.170000px;}
.x29{left:50.790000px;}
.x26{left:53.310000px;}
.x10{left:56.010000px;}
.x24{left:57.450000px;}
.x28{left:59.250000px;}
.x1e{left:67.365000px;}
.x36{left:71.640000px;}
.x23{left:73.305000px;}
.x9{left:75.239973px;}
.x4{left:77.515500px;}
.x39{left:79.740000px;}
.x30{left:82.440000px;}
.x3{left:83.700000px;}
.x1c{left:96.480000px;}
.x1d{left:99.360000px;}
.x7{left:100.655987px;}
.xc{left:106.199981px;}
.xd{left:107.820000px;}
.x21{left:110.160000px;}
.x22{left:113.220000px;}
.x34{left:116.640000px;}
.x5{left:118.744500px;}
.x2{left:127.656000px;}
.x2e{left:145.440000px;}
.x8{left:154.649987px;}
.x5f{left:159.329981px;}
.x60{left:168.690000px;}
.xa{left:181.649987px;}
.x33{left:189.180000px;}
.x52{left:190.290000px;}
.x61{left:201.090000px;}
.x2a{left:213.150000px;}
.x7e{left:223.920000px;}
.x62{left:233.310000px;}
.x11{left:253.110000px;}
.x63{left:262.650000px;}
.x64{left:291.990000px;}
.x2b{left:314.850000px;}
.x65{left:325.470000px;}
.x13{left:342.210000px;}
.x54{left:349.770000px;}
.x66{left:358.950000px;}
.x2d{left:373.890000px;}
.x67{left:392.430000px;}
.x68{left:426.135000px;}
.xb{left:438.194987px;}
.x53{left:441.225000px;}
.x1{left:442.335000px;}
.xf{left:448.995000px;}
.x69{left:459.615000px;}
.x15{left:483.375000px;}
.x3d{left:486.255000px;}
.x6a{left:513.975000px;}
.x55{left:519.915000px;}
.xe{left:523.695000px;}
.x3f{left:527.115000px;}
.x6b{left:545.475000px;}
.x40{left:567.975000px;}
.x6c{left:576.795000px;}
.x6d{left:608.115000px;}
.x37{left:610.095000px;}
.x57{left:626.115000px;}
.x6e{left:633.135000px;}
.x41{left:657.795000px;}
.x6f{left:665.355000px;}
.x71{left:694.695000px;}
.x42{left:698.655000px;}
.x5c{left:713.625000px;}
.x72{left:727.125000px;}
.x17{left:728.745000px;}
.x43{left:739.545000px;}
.x73{left:756.645000px;}
.x58{left:775.005000px;}
.x44{left:781.665000px;}
.x38{left:782.745000px;}
.x74{left:785.985000px;}
.x75{left:819.465000px;}
.x45{left:825.585000px;}
.x2f{left:826.665000px;}
.x5d{left:838.905000px;}
.x76{left:852.945000px;}
.x46{left:870.405000px;}
.x77{left:886.605000px;}
.x59{left:902.625000px;}
.x48{left:920.805000px;}
.x78{left:953.565000px;}
.x49{left:971.205000px;}
.x18{left:980.205000px;}
.x5a{left:998.250000px;}
.x79{left:1008.150000px;}
.x4b{left:1009.410000px;}
.x3a{left:1011.930000px;}
.x7a{left:1039.470000px;}
.x31{left:1067.010000px;}
.x7b{left:1070.790000px;}
.x7c{left:1102.110000px;}
.x7d{left:1127.130000px;}
@media print{
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls2{letter-spacing:-0.832000pt;}
.ls4{letter-spacing:-0.757333pt;}
.ls26{letter-spacing:-0.640000pt;}
.ls25{letter-spacing:-0.368533pt;}
.ls31{letter-spacing:-0.361067pt;}
.ls2d{letter-spacing:-0.224000pt;}
.ls30{letter-spacing:-0.192000pt;}
.ls2c{letter-spacing:-0.188267pt;}
.ls1{letter-spacing:-0.117867pt;}
.ls28{letter-spacing:-0.094933pt;}
.ls32{letter-spacing:-0.015360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2f{letter-spacing:0.017920pt;}
.ls24{letter-spacing:0.097067pt;}
.ls27{letter-spacing:0.106667pt;}
.ls2e{letter-spacing:0.130560pt;}
.ls2a{letter-spacing:0.186667pt;}
.ls3{letter-spacing:0.227733pt;}
.ls23{letter-spacing:0.271467pt;}
.ls29{letter-spacing:0.294400pt;}
.ls2b{letter-spacing:0.380267pt;}
.ls7{letter-spacing:0.549120pt;}
.ls18{letter-spacing:4.928000pt;}
.ls1b{letter-spacing:4.976000pt;}
.ls9{letter-spacing:5.002667pt;}
.lsa{letter-spacing:5.018667pt;}
.ls1d{letter-spacing:5.050880pt;}
.ls17{letter-spacing:5.077333pt;}
.lsb{letter-spacing:5.120000pt;}
.ls1a{letter-spacing:5.146667pt;}
.ls8{letter-spacing:5.200000pt;}
.lsc{letter-spacing:5.237333pt;}
.ls12{letter-spacing:5.237760pt;}
.lsd{letter-spacing:5.248000pt;}
.ls1c{letter-spacing:5.253120pt;}
.ls13{letter-spacing:5.312000pt;}
.ls20{letter-spacing:5.328000pt;}
.ls6{letter-spacing:5.333333pt;}
.ls19{letter-spacing:5.440000pt;}
.lse{letter-spacing:5.493333pt;}
.lsf{letter-spacing:5.500160pt;}
.ls21{letter-spacing:5.600000pt;}
.ls10{letter-spacing:5.760000pt;}
.ls11{letter-spacing:5.813333pt;}
.ls1f{letter-spacing:5.866667pt;}
.ls1e{letter-spacing:7.813120pt;}
.ls14{letter-spacing:18.048000pt;}
.ls5{letter-spacing:23.290027pt;}
.ls22{letter-spacing:52.730027pt;}
.ls15{letter-spacing:58.991787pt;}
.ls16{letter-spacing:59.013120pt;}
.ws16{word-spacing:-58.880000pt;}
.ws11{word-spacing:-19.173547pt;}
.ws13{word-spacing:-18.906880pt;}
.ws14{word-spacing:-18.800213pt;}
.wsd{word-spacing:-18.746880pt;}
.ws3{word-spacing:-18.640213pt;}
.ws12{word-spacing:-18.634880pt;}
.ws6{word-spacing:-18.554880pt;}
.ws5{word-spacing:-18.544213pt;}
.wsf{word-spacing:-18.506880pt;}
.wse{word-spacing:-18.453547pt;}
.wsb{word-spacing:-18.384213pt;}
.ws4{word-spacing:-18.325547pt;}
.ws9{word-spacing:-18.309547pt;}
.ws10{word-spacing:-18.282880pt;}
.wsc{word-spacing:-18.234880pt;}
.ws18{word-spacing:-14.991467pt;}
.ws19{word-spacing:-14.817067pt;}
.ws17{word-spacing:-14.720000pt;}
.ws1a{word-spacing:-14.672427pt;}
.wsa{word-spacing:-14.464000pt;}
.ws7{word-spacing:-13.882453pt;}
.ws0{word-spacing:-13.534613pt;}
.ws20{word-spacing:-13.324800pt;}
.ws8{word-spacing:-13.306880pt;}
.ws21{word-spacing:-13.114880pt;}
.ws1{word-spacing:-10.848000pt;}
.ws22{word-spacing:-9.824000pt;}
.ws1b{word-spacing:-8.769387pt;}
.ws1c{word-spacing:-8.683520pt;}
.ws15{word-spacing:-8.389120pt;}
.ws24{word-spacing:-7.687680pt;}
.ws23{word-spacing:-7.672320pt;}
.ws1d{word-spacing:-6.261547pt;}
.ws1f{word-spacing:-6.074880pt;}
.ws1e{word-spacing:-5.886613pt;}
.ws2{word-spacing:0.000000pt;}
._e{margin-left:-2437.804705pt;}
._d{margin-left:-2436.783909pt;}
._c{margin-left:-2435.191329pt;}
._f{margin-left:-2425.641400pt;}
._5{margin-left:-2407.221289pt;}
._b{margin-left:-2405.565880pt;}
._10{margin-left:-834.977192pt;}
._11{margin-left:-450.349297pt;}
._0{margin-left:-394.347520pt;}
._12{margin-left:-355.754667pt;}
._25{margin-left:-11.815253pt;}
._3f{margin-left:-3.973120pt;}
._38{margin-left:-3.002880pt;}
._6{margin-left:-2.046223pt;}
._3{margin-left:-0.960853pt;}
._4{width:1.119485pt;}
._2{width:2.884767pt;}
._1{width:3.945078pt;}
._13{width:5.438293pt;}
._15{width:6.343680pt;}
._9{width:7.595756pt;}
._a{width:8.621292pt;}
._14{width:10.217696pt;}
._16{width:11.635509pt;}
._21{width:12.573559pt;}
._24{width:14.117973pt;}
._7{width:15.215963pt;}
._8{width:16.126793pt;}
._1e{width:17.150131pt;}
._1a{width:18.083840pt;}
._19{width:19.055669pt;}
._17{width:20.094293pt;}
._18{width:21.345162pt;}
._2a{width:23.283818pt;}
._1d{width:24.237962pt;}
._1f{width:25.597322pt;}
._32{width:27.294985pt;}
._26{width:28.280320pt;}
._20{width:29.588244pt;}
._1b{width:31.211167pt;}
._1c{width:32.203020pt;}
._2b{width:33.556627pt;}
._35{width:34.713409pt;}
._2f{width:36.012447pt;}
._29{width:36.974624pt;}
._30{width:38.063551pt;}
._31{width:38.958507pt;}
._27{width:41.179071pt;}
._28{width:42.799360pt;}
._2e{width:44.392489pt;}
._33{width:46.943573pt;}
._34{width:48.328416pt;}
._3c{width:50.027538pt;}
._2d{width:58.567018pt;}
._2c{width:59.759669pt;}
._23{width:62.213547pt;}
._22{width:63.306004pt;}
._39{width:70.942933pt;}
._42{width:79.896747pt;}
._41{width:81.029973pt;}
._40{width:86.807893pt;}
._36{width:100.049684pt;}
._43{width:102.057813pt;}
._3b{width:168.753511pt;}
._3a{width:169.868800pt;}
._3e{width:184.942080pt;}
._3d{width:205.274027pt;}
._37{width:754.831787pt;}
.fs8{font-size:21.120000pt;}
.fs6{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y154{bottom:1.920000pt;}
.y121{bottom:2.080000pt;}
.y111{bottom:2.560000pt;}
.yee{bottom:2.880000pt;}
.yf7{bottom:2.920000pt;}
.yf2{bottom:3.040000pt;}
.y10c{bottom:3.200000pt;}
.y124{bottom:3.360000pt;}
.y145{bottom:4.000000pt;}
.yf3{bottom:4.480000pt;}
.yf4{bottom:5.760000pt;}
.y156{bottom:6.080000pt;}
.y13a{bottom:6.240000pt;}
.y12f{bottom:6.400000pt;}
.y113{bottom:6.560000pt;}
.y127{bottom:6.720000pt;}
.y11d{bottom:6.880000pt;}
.y128{bottom:7.200000pt;}
.y114{bottom:7.360000pt;}
.y122{bottom:7.520000pt;}
.y10f{bottom:8.320000pt;}
.y14b{bottom:9.120000pt;}
.y149{bottom:9.280000pt;}
.y115{bottom:9.600000pt;}
.y159{bottom:10.400000pt;}
.y153{bottom:11.200000pt;}
.y12b{bottom:11.360000pt;}
.y123{bottom:11.520000pt;}
.y120{bottom:11.840000pt;}
.y11e{bottom:12.800000pt;}
.y132{bottom:12.826667pt;}
.y13d{bottom:12.840000pt;}
.y12c{bottom:12.960000pt;}
.y125{bottom:13.120000pt;}
.y11b{bottom:13.160000pt;}
.y110{bottom:13.920000pt;}
.y14d{bottom:14.560000pt;}
.y118{bottom:15.080000pt;}
.y119{bottom:15.560000pt;}
.yf0{bottom:15.680000pt;}
.y10a{bottom:17.600000pt;}
.yed{bottom:18.400000pt;}
.y116{bottom:19.200000pt;}
.y11a{bottom:19.240000pt;}
.y144{bottom:21.920000pt;}
.y10e{bottom:22.720000pt;}
.y147{bottom:27.200000pt;}
.yec{bottom:33.600000pt;}
.y20{bottom:51.072000pt;}
.y143{bottom:52.000000pt;}
.y1{bottom:68.992000pt;}
.y142{bottom:71.200000pt;}
.y141{bottom:90.400000pt;}
.y1a{bottom:101.312000pt;}
.ya5{bottom:102.752000pt;}
.y4f{bottom:102.912000pt;}
.y140{bottom:109.760000pt;}
.y39{bottom:110.912000pt;}
.y6e{bottom:112.832000pt;}
.y81{bottom:115.232000pt;}
.y82{bottom:118.912000pt;}
.ya4{bottom:128.032000pt;}
.y4e{bottom:138.586667pt;}
.y13e{bottom:139.546667pt;}
.yc7{bottom:145.146667pt;}
.y38{bottom:146.586667pt;}
.y6d{bottom:148.666667pt;}
.y19{bottom:150.426667pt;}
.y80{bottom:151.066667pt;}
.ya3{bottom:154.426667pt;}
.y62{bottom:154.586667pt;}
.y13c{bottom:159.386667pt;}
.ye8{bottom:167.226667pt;}
.yc6{bottom:170.426667pt;}
.y4d{bottom:174.426667pt;}
.y13b{bottom:179.266667pt;}
.ya2{bottom:179.706667pt;}
.y37{bottom:182.426667pt;}
.y6c{bottom:184.506667pt;}
.y7f{bottom:186.906667pt;}
.y61{bottom:190.426667pt;}
.ye7{bottom:192.506667pt;}
.y108{bottom:193.026667pt;}
.yc5{bottom:195.546667pt;}
.y139{bottom:199.266667pt;}
.y18{bottom:199.546667pt;}
.ya1{bottom:204.986667pt;}
.y4c{bottom:210.266667pt;}
.ye6{bottom:217.786667pt;}
.y36{bottom:218.266667pt;}
.y138{bottom:219.106667pt;}
.y6b{bottom:220.346667pt;}
.yc4{bottom:221.946667pt;}
.y7e{bottom:222.586667pt;}
.y107{bottom:222.946667pt;}
.y60{bottom:226.266667pt;}
.ya0{bottom:230.266667pt;}
.y17{bottom:235.386667pt;}
.y137{bottom:238.946667pt;}
.ye5{bottom:243.066667pt;}
.y4b{bottom:246.106667pt;}
.yc3{bottom:247.386667pt;}
.y106{bottom:252.866667pt;}
.y35{bottom:254.146667pt;}
.y9f{bottom:255.586667pt;}
.y6a{bottom:256.226667pt;}
.y7d{bottom:258.466667pt;}
.y136{bottom:258.786667pt;}
.y5f{bottom:262.146667pt;}
.y105{bottom:267.426667pt;}
.ye4{bottom:269.506667pt;}
.yc2{bottom:272.706667pt;}
.y135{bottom:278.626667pt;}
.y9e{bottom:280.866667pt;}
.y4a{bottom:281.986667pt;}
.y16{bottom:284.546667pt;}
.y104{bottom:285.666667pt;}
.y34{bottom:289.986667pt;}
.y69{bottom:291.906667pt;}
.y7c{bottom:294.306667pt;}
.ye3{bottom:294.786667pt;}
.yc1{bottom:297.826667pt;}
.y5e{bottom:297.986667pt;}
.y134{bottom:298.466667pt;}
.y103{bottom:303.906667pt;}
.y9d{bottom:307.266667pt;}
.y49{bottom:317.666667pt;}
.y133{bottom:318.466667pt;}
.ye2{bottom:320.066667pt;}
.y15{bottom:320.386667pt;}
.y102{bottom:322.146667pt;}
.y151{bottom:323.586667pt;}
.yc0{bottom:324.386667pt;}
.y33{bottom:325.666667pt;}
.y7b{bottom:330.146667pt;}
.y9c{bottom:332.546667pt;}
.y5d{bottom:333.666667pt;}
.y68{bottom:337.826667pt;}
.y131{bottom:338.306667pt;}
.y101{bottom:340.386667pt;}
.ye1{bottom:346.466667pt;}
.ybf{bottom:349.666667pt;}
.y48{bottom:353.506667pt;}
.y150{bottom:353.533333pt;}
.y14{bottom:356.226667pt;}
.y9b{bottom:357.826667pt;}
.y130{bottom:358.173333pt;}
.y100{bottom:358.653333pt;}
.y32{bottom:361.506667pt;}
.y7a{bottom:365.986667pt;}
.y14f{bottom:367.933333pt;}
.y5c{bottom:369.506667pt;}
.ye0{bottom:371.746667pt;}
.ybe{bottom:374.786667pt;}
.y67{bottom:376.866667pt;}
.yff{bottom:377.053333pt;}
.y12e{bottom:378.013333pt;}
.y9a{bottom:384.226667pt;}
.y47{bottom:389.346667pt;}
.y13{bottom:392.066667pt;}
.yfe{bottom:395.933333pt;}
.ydf{bottom:397.026667pt;}
.y14e{bottom:397.053333pt;}
.y31{bottom:397.346667pt;}
.y12d{bottom:397.853333pt;}
.ybd{bottom:401.186667pt;}
.y79{bottom:401.666667pt;}
.y5b{bottom:405.346667pt;}
.y99{bottom:409.506667pt;}
.yfd{bottom:414.973333pt;}
.y66{bottom:415.906667pt;}
.y12a{bottom:417.693333pt;}
.yde{bottom:423.426667pt;}
.y46{bottom:425.186667pt;}
.ybc{bottom:426.626667pt;}
.y12{bottom:427.906667pt;}
.y30{bottom:433.186667pt;}
.yfc{bottom:433.213333pt;}
.y14c{bottom:433.533333pt;}
.y98{bottom:434.786667pt;}
.y129{bottom:437.693333pt;}
.y5a{bottom:441.186667pt;}
.y78{bottom:447.426667pt;}
.ydd{bottom:448.706667pt;}
.yfb{bottom:451.453333pt;}
.ybb{bottom:451.906667pt;}
.y126{bottom:457.533333pt;}
.y97{bottom:460.066667pt;}
.y45{bottom:461.026667pt;}
.y14a{bottom:462.653333pt;}
.y11{bottom:463.586667pt;}
.y2f{bottom:469.026667pt;}
.yfa{bottom:469.853333pt;}
.ydc{bottom:473.986667pt;}
.y59{bottom:477.026667pt;}
.y11f{bottom:477.373333pt;}
.y96{bottom:486.466667pt;}
.yf9{bottom:488.093333pt;}
.y146{bottom:491.613333pt;}
.y77{bottom:492.546667pt;}
.y44{bottom:496.706667pt;}
.y11c{bottom:497.533333pt;}
.ydb{bottom:499.266667pt;}
.y10{bottom:499.426667pt;}
.yba{bottom:503.453333pt;}
.y2e{bottom:504.733333pt;}
.yf8{bottom:506.333333pt;}
.y95{bottom:511.773333pt;}
.y58{bottom:512.733333pt;}
.y117{bottom:517.373333pt;}
.yf6{bottom:524.573333pt;}
.yda{bottom:525.693333pt;}
.y148{bottom:527.493333pt;}
.y76{bottom:528.413333pt;}
.yb9{bottom:528.893333pt;}
.y43{bottom:532.573333pt;}
.yf{bottom:535.293333pt;}
.y94{bottom:538.173333pt;}
.y15b{bottom:539.013333pt;}
.y2d{bottom:540.573333pt;}
.yf5{bottom:542.853333pt;}
.y57{bottom:548.573333pt;}
.yd9{bottom:550.973333pt;}
.yb8{bottom:554.173333pt;}
.y112{bottom:555.013333pt;}
.y13f{bottom:556.613333pt;}
.y15a{bottom:557.253333pt;}
.yef{bottom:561.093333pt;}
.y93{bottom:563.453333pt;}
.y75{bottom:564.253333pt;}
.y42{bottom:568.413333pt;}
.ye{bottom:571.133333pt;}
.y158{bottom:575.653333pt;}
.y2c{bottom:576.413333pt;}
.yd8{bottom:577.373333pt;}
.yb7{bottom:579.293333pt;}
.y10d{bottom:580.293333pt;}
.yf1{bottom:583.333333pt;}
.y56{bottom:584.413333pt;}
.y92{bottom:588.733333pt;}
.y157{bottom:593.893333pt;}
.y74{bottom:600.093333pt;}
.yd7{bottom:602.653333pt;}
.yeb{bottom:603.013333pt;}
.y41{bottom:604.253333pt;}
.yb6{bottom:605.693333pt;}
.yd{bottom:606.813333pt;}
.y109{bottom:609.093333pt;}
.y155{bottom:612.133333pt;}
.y2b{bottom:612.253333pt;}
.y91{bottom:615.133333pt;}
.y55{bottom:620.253333pt;}
.yd6{bottom:627.773333pt;}
.y10b{bottom:629.733333pt;}
.y152{bottom:630.373333pt;}
.yb5{bottom:631.133333pt;}
.y73{bottom:635.773333pt;}
.y40{bottom:640.093333pt;}
.y90{bottom:640.413333pt;}
.yc{bottom:642.653333pt;}
.y2a{bottom:648.093333pt;}
.yd5{bottom:654.333333pt;}
.y54{bottom:656.093333pt;}
.yb4{bottom:656.253333pt;}
.y8f{bottom:665.693333pt;}
.yea{bottom:666.533333pt;}
.y3f{bottom:675.773333pt;}
.yb{bottom:678.493333pt;}
.y72{bottom:679.613333pt;}
.yb3{bottom:682.653333pt;}
.y29{bottom:683.773333pt;}
.y53{bottom:691.773333pt;}
.y8e{bottom:692.093333pt;}
.yd4{bottom:704.733333pt;}
.yb2{bottom:708.093333pt;}
.y65{bottom:711.613333pt;}
.ya{bottom:714.333333pt;}
.y8d{bottom:717.373333pt;}
.y28{bottom:719.613333pt;}
.y71{bottom:723.453333pt;}
.y52{bottom:727.613333pt;}
.yd3{bottom:731.133333pt;}
.yb1{bottom:733.373333pt;}
.y8c{bottom:742.653333pt;}
.y64{bottom:747.453333pt;}
.y9{bottom:750.213333pt;}
.y27{bottom:755.493333pt;}
.yd2{bottom:756.453333pt;}
.yb0{bottom:758.693333pt;}
.y51{bottom:763.493333pt;}
.y8b{bottom:769.093333pt;}
.y70{bottom:772.613333pt;}
.yd1{bottom:782.853333pt;}
.y63{bottom:783.333333pt;}
.yaf{bottom:783.813333pt;}
.y8{bottom:785.893333pt;}
.y26{bottom:791.333333pt;}
.y8a{bottom:794.213333pt;}
.y50{bottom:799.333333pt;}
.yd0{bottom:808.133333pt;}
.y6f{bottom:808.453333pt;}
.yae{bottom:810.373333pt;}
.y89{bottom:820.773333pt;}
.y7{bottom:821.733333pt;}
.y25{bottom:827.173333pt;}
.ycf{bottom:834.533333pt;}
.y3e{bottom:835.173333pt;}
.yad{bottom:835.653333pt;}
.y88{bottom:845.893333pt;}
.y6{bottom:857.573333pt;}
.yce{bottom:859.813333pt;}
.yac{bottom:860.933333pt;}
.y24{bottom:862.853333pt;}
.y3d{bottom:870.853333pt;}
.y87{bottom:872.293333pt;}
.ye9{bottom:885.093333pt;}
.yab{bottom:886.053333pt;}
.ycd{bottom:886.213333pt;}
.y5{bottom:893.413333pt;}
.y86{bottom:897.573333pt;}
.y23{bottom:898.693333pt;}
.y3c{bottom:906.693333pt;}
.ycc{bottom:911.493333pt;}
.yaa{bottom:912.613333pt;}
.y85{bottom:923.013333pt;}
.y4{bottom:929.253333pt;}
.y22{bottom:934.533333pt;}
.ycb{bottom:936.773333pt;}
.ya9{bottom:937.733333pt;}
.y3b{bottom:942.533333pt;}
.y84{bottom:948.293333pt;}
.yca{bottom:963.173333pt;}
.ya8{bottom:964.133333pt;}
.y3{bottom:964.933333pt;}
.y21{bottom:970.373333pt;}
.y83{bottom:973.413333pt;}
.y3a{bottom:978.373333pt;}
.yc9{bottom:988.453333pt;}
.ya7{bottom:989.413333pt;}
.yc8{bottom:1013.760000pt;}
.y2{bottom:1014.240000pt;}
.ya6{bottom:1014.880000pt;}
.y1c{bottom:1031.921333pt;}
.y1b{bottom:1047.545333pt;}
.y1f{bottom:1079.988000pt;}
.y1e{bottom:1094.388000pt;}
.y1d{bottom:1108.788000pt;}
.h18{height:14.560000pt;}
.h14{height:17.600000pt;}
.h15{height:17.632000pt;}
.h12{height:18.400000pt;}
.h2f{height:18.560000pt;}
.h1d{height:19.200000pt;}
.h26{height:19.232000pt;}
.h24{height:19.520000pt;}
.h30{height:20.422500pt;}
.h23{height:20.728125pt;}
.h13{height:20.800000pt;}
.h1a{height:22.720000pt;}
.h25{height:24.312500pt;}
.h22{height:26.735625pt;}
.h1e{height:27.523125pt;}
.h2c{height:28.320000pt;}
.h2a{height:28.472000pt;}
.h2e{height:28.480000pt;}
.h21{height:31.828125pt;}
.h20{height:32.765625pt;}
.h5{height:34.453125pt;}
.h6{height:34.851562pt;}
.h16{height:35.200000pt;}
.h1f{height:35.712000pt;}
.h2d{height:35.840000pt;}
.h2b{height:35.872000pt;}
.h27{height:36.398438pt;}
.h1b{height:36.431250pt;}
.h1c{height:38.008125pt;}
.h11{height:40.640000pt;}
.h4{height:42.751250pt;}
.hf{height:45.920000pt;}
.ha{height:47.380000pt;}
.h19{height:49.148438pt;}
.h17{height:49.968750pt;}
.h10{height:55.402500pt;}
.hc{height:57.787500pt;}
.h2{height:58.563750pt;}
.h3{height:60.288750pt;}
.hb{height:60.519362pt;}
.h7{height:61.295000pt;}
.h29{height:64.352000pt;}
.h9{height:65.531250pt;}
.h8{height:66.625000pt;}
.h28{height:123.680000pt;}
.hd{height:793.760000pt;}
.he{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w43{width:21.600000pt;}
.w44{width:22.560000pt;}
.w41{width:23.520000pt;}
.w46{width:24.960000pt;}
.w49{width:25.280000pt;}
.w3e{width:25.440000pt;}
.w42{width:27.200000pt;}
.w3d{width:28.000000pt;}
.w3c{width:28.160000pt;}
.w45{width:28.192000pt;}
.w3f{width:29.120000pt;}
.w40{width:29.312000pt;}
.w2d{width:31.872000pt;}
.w1d{width:32.960000pt;}
.w2a{width:35.360000pt;}
.w26{width:35.680000pt;}
.w29{width:35.712000pt;}
.w27{width:36.800000pt;}
.w2b{width:39.040000pt;}
.w25{width:39.200000pt;}
.w28{width:41.760000pt;}
.w1f{width:42.880000pt;}
.w2c{width:44.160000pt;}
.w2e{width:45.120000pt;}
.w23{width:50.560000pt;}
.w16{width:51.840000pt;}
.w24{width:53.472000pt;}
.w17{width:54.112000pt;}
.w39{width:54.560000pt;}
.w3b{width:56.640000pt;}
.w3a{width:56.800000pt;}
.w37{width:66.240000pt;}
.w2f{width:72.640000pt;}
.w20{width:74.400000pt;}
.w1a{width:76.960000pt;}
.w38{width:77.792000pt;}
.w11{width:77.920000pt;}
.w9{width:78.240000pt;}
.wf{width:78.560000pt;}
.w36{width:84.992000pt;}
.w22{width:88.480000pt;}
.w15{width:89.760000pt;}
.w21{width:90.432000pt;}
.w14{width:93.632000pt;}
.w33{width:94.400000pt;}
.w35{width:113.440000pt;}
.wa{width:125.152000pt;}
.w10{width:125.472000pt;}
.w8{width:128.512000pt;}
.we{width:128.832000pt;}
.w34{width:132.352000pt;}
.w31{width:141.760000pt;}
.w1b{width:149.280000pt;}
.w32{width:151.226667pt;}
.w1c{width:151.386667pt;}
.wd{width:155.546667pt;}
.w1e{width:162.586667pt;}
.w19{width:207.546667pt;}
.wb{width:217.626667pt;}
.w12{width:217.946667pt;}
.w13{width:222.880000pt;}
.wc{width:223.200000pt;}
.w18{width:336.346667pt;}
.w47{width:435.386667pt;}
.w48{width:435.426667pt;}
.w30{width:784.413333pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w7{width:931.013333pt;}
.w6{width:1122.559983pt;}
.w4{width:1122.560000pt;}
.w5{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x70{left:1.600000pt;}
.x3b{left:4.320000pt;}
.x3c{left:5.760000pt;}
.x35{left:6.880000pt;}
.x3e{left:8.800000pt;}
.x4a{left:10.120000pt;}
.x4e{left:11.040000pt;}
.x1a{left:12.000000pt;}
.x47{left:13.120000pt;}
.x4f{left:14.240000pt;}
.x20{left:15.360000pt;}
.x4d{left:17.120000pt;}
.x14{left:18.080000pt;}
.x27{left:19.040000pt;}
.x5b{left:20.800000pt;}
.x19{left:21.800000pt;}
.x51{left:22.880000pt;}
.x12{left:24.160000pt;}
.x2c{left:25.920000pt;}
.x16{left:28.640000pt;}
.x5e{left:29.600000pt;}
.x4c{left:30.560000pt;}
.x50{left:32.000000pt;}
.x6{left:34.512000pt;}
.x56{left:36.000000pt;}
.x32{left:37.120000pt;}
.x1b{left:39.520000pt;}
.x1f{left:42.266667pt;}
.x25{left:43.706667pt;}
.x29{left:45.146667pt;}
.x26{left:47.386667pt;}
.x10{left:49.786667pt;}
.x24{left:51.066667pt;}
.x28{left:52.666667pt;}
.x1e{left:59.880000pt;}
.x36{left:63.680000pt;}
.x23{left:65.160000pt;}
.x9{left:66.879976pt;}
.x4{left:68.902667pt;}
.x39{left:70.880000pt;}
.x30{left:73.280000pt;}
.x3{left:74.400000pt;}
.x1c{left:85.760000pt;}
.x1d{left:88.320000pt;}
.x7{left:89.471988pt;}
.xc{left:94.399983pt;}
.xd{left:95.840000pt;}
.x21{left:97.920000pt;}
.x22{left:100.640000pt;}
.x34{left:103.680000pt;}
.x5{left:105.550667pt;}
.x2{left:113.472000pt;}
.x2e{left:129.280000pt;}
.x8{left:137.466655pt;}
.x5f{left:141.626650pt;}
.x60{left:149.946667pt;}
.xa{left:161.466655pt;}
.x33{left:168.160000pt;}
.x52{left:169.146667pt;}
.x61{left:178.746667pt;}
.x2a{left:189.466667pt;}
.x7e{left:199.040000pt;}
.x62{left:207.386667pt;}
.x11{left:224.986667pt;}
.x63{left:233.466667pt;}
.x64{left:259.546667pt;}
.x2b{left:279.866667pt;}
.x65{left:289.306667pt;}
.x13{left:304.186667pt;}
.x54{left:310.906667pt;}
.x66{left:319.066667pt;}
.x2d{left:332.346667pt;}
.x67{left:348.826667pt;}
.x68{left:378.786667pt;}
.xb{left:389.506655pt;}
.x53{left:392.200000pt;}
.x1{left:393.186667pt;}
.xf{left:399.106667pt;}
.x69{left:408.546667pt;}
.x15{left:429.666667pt;}
.x3d{left:432.226667pt;}
.x6a{left:456.866667pt;}
.x55{left:462.146667pt;}
.xe{left:465.506667pt;}
.x3f{left:468.546667pt;}
.x6b{left:484.866667pt;}
.x40{left:504.866667pt;}
.x6c{left:512.706667pt;}
.x6d{left:540.546667pt;}
.x37{left:542.306667pt;}
.x57{left:556.546667pt;}
.x6e{left:562.786667pt;}
.x41{left:584.706667pt;}
.x6f{left:591.426667pt;}
.x71{left:617.506667pt;}
.x42{left:621.026667pt;}
.x5c{left:634.333333pt;}
.x72{left:646.333333pt;}
.x17{left:647.773333pt;}
.x43{left:657.373333pt;}
.x73{left:672.573333pt;}
.x58{left:688.893333pt;}
.x44{left:694.813333pt;}
.x38{left:695.773333pt;}
.x74{left:698.653333pt;}
.x75{left:728.413333pt;}
.x45{left:733.853333pt;}
.x2f{left:734.813333pt;}
.x5d{left:745.693333pt;}
.x76{left:758.173333pt;}
.x46{left:773.693333pt;}
.x77{left:788.093333pt;}
.x59{left:802.333333pt;}
.x48{left:818.493333pt;}
.x78{left:847.613333pt;}
.x49{left:863.293333pt;}
.x18{left:871.293333pt;}
.x5a{left:887.333333pt;}
.x79{left:896.133333pt;}
.x4b{left:897.253333pt;}
.x3a{left:899.493333pt;}
.x7a{left:923.973333pt;}
.x31{left:948.453333pt;}
.x7b{left:951.813333pt;}
.x7c{left:979.653333pt;}
.x7d{left:1001.893333pt;}
}




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