
    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_ba62dbc5f0f833944264ebc8.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2672cede3d9e3974be3bc979.woff')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3cd7183b8bed1ad32b07a810.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b9e2057db70c9086c6bbc483.woff')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_16e667fb806b98b4887fa525.woff')format("woff");}.ff6{font-family:ff6;line-height:1.097168;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2a96d9fa562575ba7b800f88.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_25552f2f8db2d645b7b08091.woff')format("woff");}.ff9{font-family:ff9;line-height:0.751953;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_1da87f17f384990797f6a4c6.woff')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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_169de82b808e01b97f694956.woff')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_583e26298419e724ee08392b.woff')format("woff");}.ffc{font-family:ffc;line-height:0.817383;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_e2c4cf0b43da7c557d41ebb1.woff')format("woff");}.ffd{font-family:ffd;line-height:1.401855;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_b64f2e252aa6f2a4b5006455.woff')format("woff");}.ffe{font-family:ffe;line-height:0.682617;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_264da8e425e7ff34fd6ef52e.woff')format("woff");}.fff{font-family:fff;line-height:0.783691;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.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);}
.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);}
.v1{vertical-align:-96.480000px;}
.v0{vertical-align:0.000000px;}
.ls5b{letter-spacing:-0.996000px;}
.ls58{letter-spacing:-0.900000px;}
.ls30{letter-spacing:-0.882000px;}
.ls4e{letter-spacing:-0.864000px;}
.ls3f{letter-spacing:-0.720000px;}
.ls54{letter-spacing:-0.696000px;}
.ls18{letter-spacing:-0.684000px;}
.ls1d{letter-spacing:-0.428400px;}
.ls2f{letter-spacing:-0.398400px;}
.lsc{letter-spacing:-0.378600px;}
.ls3e{letter-spacing:-0.360000px;}
.ls5a{letter-spacing:-0.350400px;}
.ls59{letter-spacing:-0.341400px;}
.ls4f{letter-spacing:-0.305400px;}
.ls38{letter-spacing:-0.288000px;}
.ls57{letter-spacing:-0.276000px;}
.ls36{letter-spacing:-0.238200px;}
.ls37{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.161400px;}
.ls49{letter-spacing:-0.145200px;}
.ls3d{letter-spacing:-0.144000px;}
.ls56{letter-spacing:-0.093000px;}
.lsb{letter-spacing:-0.018720px;}
.ls5{letter-spacing:0.000000px;}
.ls44{letter-spacing:0.008640px;}
.ls22{letter-spacing:0.021600px;}
.lsf{letter-spacing:0.028080px;}
.ls8{letter-spacing:0.099600px;}
.ls46{letter-spacing:0.138000px;}
.ls3a{letter-spacing:0.144000px;}
.ls1b{letter-spacing:0.148080px;}
.ls15{letter-spacing:0.180000px;}
.ls4a{letter-spacing:0.243360px;}
.ls1f{letter-spacing:0.252720px;}
.ls16{letter-spacing:0.259920px;}
.ls4b{letter-spacing:0.288000px;}
.ls17{letter-spacing:0.291600px;}
.ls2e{letter-spacing:0.321600px;}
.ls9{letter-spacing:0.341400px;}
.ls6{letter-spacing:0.360000px;}
.ls43{letter-spacing:0.421200px;}
.ls41{letter-spacing:0.540000px;}
.ls48{letter-spacing:1.260000px;}
.ls23{letter-spacing:2.106720px;}
.ls52{letter-spacing:3.420000px;}
.ls39{letter-spacing:4.140000px;}
.ls25{letter-spacing:4.860000px;}
.ls40{letter-spacing:5.580000px;}
.ls2{letter-spacing:8.460000px;}
.ls2b{letter-spacing:9.180000px;}
.ls4d{letter-spacing:9.900000px;}
.ls12{letter-spacing:11.340000px;}
.ls13{letter-spacing:12.060000px;}
.lsd{letter-spacing:12.780000px;}
.ls45{letter-spacing:12.906720px;}
.ls14{letter-spacing:14.220000px;}
.ls20{letter-spacing:14.940000px;}
.ls26{letter-spacing:15.660000px;}
.ls1{letter-spacing:16.380000px;}
.ls21{letter-spacing:18.540000px;}
.ls1e{letter-spacing:19.260000px;}
.ls32{letter-spacing:20.700000px;}
.lse{letter-spacing:21.420000px;}
.ls55{letter-spacing:22.140000px;}
.ls3{letter-spacing:23.580000px;}
.ls11{letter-spacing:24.300000px;}
.ls2d{letter-spacing:25.020000px;}
.ls19{letter-spacing:25.740000px;}
.ls10{letter-spacing:30.780000px;}
.ls4{letter-spacing:31.500000px;}
.ls53{letter-spacing:32.220000px;}
.ls5c{letter-spacing:35.100000px;}
.ls28{letter-spacing:35.820000px;}
.ls31{letter-spacing:36.540000px;}
.ls47{letter-spacing:36.666720px;}
.ls27{letter-spacing:37.980000px;}
.ls29{letter-spacing:40.860000px;}
.ls2a{letter-spacing:40.980000px;}
.ls0{letter-spacing:41.580000px;}
.ls4c{letter-spacing:45.180000px;}
.ls2c{letter-spacing:46.620000px;}
.ls51{letter-spacing:54.540000px;}
.ls50{letter-spacing:55.260000px;}
.ls1a{letter-spacing:58.860000px;}
.ls42{letter-spacing:68.400000px;}
.ls3c{letter-spacing:69.066720px;}
.ls24{letter-spacing:73.260000px;}
.ls34{letter-spacing:82.746720px;}
.ls3b{letter-spacing:84.186720px;}
.ls35{letter-spacing:85.626720px;}
.ls1c{letter-spacing:101.520000px;}
.ls33{letter-spacing:191.340000px;}
.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;}
}
.ws10{word-spacing:-84.240000px;}
.wsf{word-spacing:-59.760000px;}
.ws0{word-spacing:-24.300000px;}
.ws1f{word-spacing:-21.420000px;}
.ws3{word-spacing:-21.401400px;}
.wsc{word-spacing:-21.381600px;}
.ws8{word-spacing:-21.351600px;}
.ws2{word-spacing:-21.159600px;}
.ws22{word-spacing:-21.088080px;}
.ws1c{word-spacing:-21.081600px;}
.ws1{word-spacing:-21.060000px;}
.ws5{word-spacing:-21.041280px;}
.ws20{word-spacing:-20.967000px;}
.ws18{word-spacing:-20.914800px;}
.ws4{word-spacing:-20.898600px;}
.ws11{word-spacing:-20.821800px;}
.ws21{word-spacing:-20.784000px;}
.ws23{word-spacing:-20.718600px;}
.ws1e{word-spacing:-20.700000px;}
.ws6{word-spacing:-20.681400px;}
.wsd{word-spacing:-20.661600px;}
.wsb{word-spacing:-20.631600px;}
.ws9{word-spacing:-20.376000px;}
.ws1d{word-spacing:-20.364000px;}
.ws19{word-spacing:-20.196000px;}
.wse{word-spacing:-20.178000px;}
.ws24{word-spacing:-20.064000px;}
.ws12{word-spacing:-18.000000px;}
.ws15{word-spacing:-17.856000px;}
.ws13{word-spacing:-17.784000px;}
.ws14{word-spacing:-17.712000px;}
.ws1a{word-spacing:-16.560000px;}
.ws1b{word-spacing:-16.254600px;}
.ws16{word-spacing:-15.300000px;}
.ws17{word-spacing:-15.078000px;}
.wsa{word-spacing:-14.940000px;}
.ws7{word-spacing:0.000000px;}
._32{margin-left:-169.920000px;}
._24{margin-left:-5.849040px;}
._10{margin-left:-4.822320px;}
._2f{margin-left:-3.822240px;}
._12{margin-left:-2.779920px;}
._1{margin-left:-1.158720px;}
._2{width:1.038720px;}
._0{width:2.208000px;}
._1b{width:3.389040px;}
._2a{width:4.918800px;}
._23{width:6.676080px;}
._4{width:7.808400px;}
._15{width:8.993040px;}
._c{width:10.108800px;}
._19{width:11.626320px;}
._11{width:12.646560px;}
._a{width:14.300160px;}
._7{width:15.500160px;}
._1a{width:16.679520px;}
._e{width:17.811360px;}
._b{width:19.796400px;}
._3f{width:20.924880px;}
._d{width:22.570320px;}
._8{width:24.324720px;}
._1c{width:25.333920px;}
._1d{width:26.389680px;}
._3d{width:27.990000px;}
._25{width:29.147040px;}
._13{width:30.269520px;}
._3{width:31.337280px;}
._9{width:33.310080px;}
._57{width:34.320720px;}
._31{width:35.380800px;}
._27{width:37.234080px;}
._45{width:38.526720px;}
._28{width:39.572160px;}
._5{width:41.530320px;}
._6{width:42.893760px;}
._16{width:44.057520px;}
._17{width:45.300480px;}
._18{width:47.289840px;}
._42{width:49.248000px;}
._38{width:50.256000px;}
._30{width:51.639120px;}
._1f{width:52.902720px;}
._20{width:54.097200px;}
._1e{width:55.177200px;}
._48{width:56.494800px;}
._f{width:57.535920px;}
._29{width:58.968000px;}
._14{width:60.670560px;}
._26{width:61.768800px;}
._34{width:63.057120px;}
._52{width:64.829280px;}
._59{width:66.424320px;}
._44{width:67.896000px;}
._3c{width:69.561600px;}
._3b{width:70.572480px;}
._4d{width:71.660400px;}
._2e{width:72.822240px;}
._46{width:75.960000px;}
._47{width:77.916000px;}
._56{width:79.923120px;}
._4c{width:82.271040px;}
._2b{width:83.990640px;}
._49{width:86.006880px;}
._36{width:88.032000px;}
._58{width:89.382480px;}
._22{width:90.899760px;}
._21{width:92.896080px;}
._4a{width:99.201600px;}
._2c{width:101.266080px;}
._4f{width:117.226320px;}
._39{width:122.376000px;}
._3a{width:126.648000px;}
._37{width:148.104000px;}
._43{width:157.536000px;}
._3e{width:159.552000px;}
._55{width:173.304000px;}
._4b{width:207.463920px;}
._54{width:211.286880px;}
._2d{width:217.596000px;}
._4e{width:225.175680px;}
._33{width:241.752000px;}
._50{width:246.211200px;}
._53{width:249.438240px;}
._41{width:257.040000px;}
._35{width:271.728000px;}
._51{width:275.561280px;}
._40{width:369.144000px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:38.880000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y6{bottom:-6.480000px;}
.y0{bottom:0.000000px;}
.y118{bottom:2.520000px;}
.yb9{bottom:3.240000px;}
.y11b{bottom:3.600000px;}
.y127{bottom:3.780000px;}
.y3{bottom:3.960000px;}
.ya{bottom:5.220000px;}
.y119{bottom:5.760000px;}
.y142{bottom:5.940000px;}
.y7b{bottom:6.300000px;}
.yb0{bottom:7.020000px;}
.ye6{bottom:7.050000px;}
.ya5{bottom:7.065000px;}
.yac{bottom:7.200000px;}
.y9{bottom:7.380000px;}
.y117{bottom:8.280000px;}
.y115{bottom:10.800000px;}
.y11d{bottom:13.140000px;}
.y88{bottom:14.220000px;}
.y8a{bottom:14.400000px;}
.y93{bottom:14.430000px;}
.y4{bottom:16.020000px;}
.yb{bottom:16.380000px;}
.ycd{bottom:20.340000px;}
.yc3{bottom:20.520000px;}
.y136{bottom:22.494000px;}
.y11c{bottom:22.500000px;}
.y122{bottom:22.680000px;}
.y2{bottom:24.660000px;}
.y82{bottom:24.705000px;}
.y13e{bottom:25.560000px;}
.y7a{bottom:27.030000px;}
.y114{bottom:29.700000px;}
.yb3{bottom:30.780000px;}
.yb7{bottom:30.825000px;}
.yab{bottom:30.960000px;}
.y13c{bottom:35.640000px;}
.ycb{bottom:37.620000px;}
.yc2{bottom:37.800000px;}
.y132{bottom:41.580000px;}
.y128{bottom:41.760000px;}
.y8{bottom:44.640000px;}
.y72{bottom:45.360000px;}
.y92{bottom:45.390000px;}
.y81{bottom:45.405000px;}
.y13a{bottom:45.540000px;}
.y79{bottom:47.730000px;}
.yb6{bottom:54.585000px;}
.yaa{bottom:54.720000px;}
.yca{bottom:54.900000px;}
.yc1{bottom:55.080000px;}
.y13b{bottom:55.440000px;}
.y131{bottom:60.480000px;}
.y13d{bottom:65.340000px;}
.y71{bottom:66.060000px;}
.y80{bottom:66.105000px;}
.y78{bottom:68.430000px;}
.yc9{bottom:72.180000px;}
.yc0{bottom:72.360000px;}
.y9a{bottom:76.314000px;}
.y8c{bottom:76.320000px;}
.y95{bottom:76.500000px;}
.y91{bottom:76.530000px;}
.ya9{bottom:78.480000px;}
.yaf{bottom:78.510000px;}
.yb5{bottom:78.525000px;}
.y130{bottom:79.560000px;}
.y13f{bottom:85.140000px;}
.y70{bottom:86.760000px;}
.y7f{bottom:86.805000px;}
.y4a{bottom:88.236000px;}
.y77{bottom:89.130000px;}
.yc8{bottom:89.460000px;}
.ybf{bottom:89.640000px;}
.y98{bottom:89.856000px;}
.y137{bottom:91.116000px;}
.y112{bottom:92.376000px;}
.y49{bottom:93.456000px;}
.y31{bottom:95.256000px;}
.y6a{bottom:97.236000px;}
.ya2{bottom:98.856000px;}
.yb2{bottom:102.240000px;}
.ya8{bottom:102.420000px;}
.y56{bottom:105.336000px;}
.ybe{bottom:106.740000px;}
.y48{bottom:106.776000px;}
.yc7{bottom:106.785000px;}
.y99{bottom:107.454000px;}
.y7d{bottom:107.460000px;}
.y90{bottom:107.490000px;}
.y6f{bottom:107.505000px;}
.y76{bottom:109.830000px;}
.y55{bottom:110.556000px;}
.y111{bottom:120.096000px;}
.y69{bottom:121.356000px;}
.y30{bottom:122.976000px;}
.y54{bottom:123.876000px;}
.ybd{bottom:124.020000px;}
.yc6{bottom:124.065000px;}
.ya7{bottom:126.180000px;}
.ya1{bottom:126.576000px;}
.y6e{bottom:128.205000px;}
.y135{bottom:129.816000px;}
.y75{bottom:130.530000px;}
.ye1{bottom:131.616000px;}
.yf8{bottom:136.296000px;}
.y86{bottom:138.456000px;}
.y8f{bottom:138.630000px;}
.yc5{bottom:141.165000px;}
.ybc{bottom:141.300000px;}
.y68{bottom:145.476000px;}
.y110{bottom:147.816000px;}
.y6d{bottom:148.905000px;}
.y2f{bottom:150.870000px;}
.y74{bottom:151.230000px;}
.y53{bottom:151.950000px;}
.ya0{bottom:154.290000px;}
.y16a{bottom:154.470000px;}
.ye0{bottom:159.330000px;}
.yf7{bottom:164.010000px;}
.y85{bottom:166.170000px;}
.y134{bottom:168.510000px;}
.y67{bottom:169.590000px;}
.y10f{bottom:175.530000px;}
.y52{bottom:176.070000px;}
.y2e{bottom:178.590000px;}
.y9f{bottom:182.010000px;}
.y169{bottom:182.190000px;}
.ydf{bottom:187.230000px;}
.yf6{bottom:191.910000px;}
.y84{bottom:193.890000px;}
.y66{bottom:194.430000px;}
.y51{bottom:200.370000px;}
.y10e{bottom:203.430000px;}
.y2d{bottom:206.310000px;}
.y133{bottom:207.210000px;}
.y9e{bottom:209.910000px;}
.y97{bottom:214.770000px;}
.yde{bottom:214.950000px;}
.yf5{bottom:219.630000px;}
.y65{bottom:221.610000px;}
.y50{bottom:224.490000px;}
.y10d{bottom:231.150000px;}
.y2c{bottom:234.030000px;}
.y9d{bottom:237.630000px;}
.y83{bottom:242.130000px;}
.ydd{bottom:242.670000px;}
.y64{bottom:245.910000px;}
.yf4{bottom:247.350000px;}
.y4f{bottom:248.610000px;}
.y10c{bottom:258.870000px;}
.y2b{bottom:261.930000px;}
.y9c{bottom:265.350000px;}
.y168{bottom:265.530000px;}
.ydc{bottom:270.390000px;}
.y63{bottom:270.750000px;}
.y4e{bottom:272.730000px;}
.yf3{bottom:275.250000px;}
.y10b{bottom:286.770000px;}
.y2a{bottom:289.650000px;}
.y9b{bottom:293.070000px;}
.y167{bottom:293.250000px;}
.y4d{bottom:296.850000px;}
.y47{bottom:297.210000px;}
.y62{bottom:297.930000px;}
.ydb{bottom:298.290000px;}
.yf2{bottom:302.970000px;}
.y155{bottom:304.590000px;}
.yb4{bottom:313.590000px;}
.y10a{bottom:314.490000px;}
.y29{bottom:317.370000px;}
.y4c{bottom:320.970000px;}
.y61{bottom:322.050000px;}
.y154{bottom:325.290000px;}
.y7e{bottom:325.650000px;}
.yda{bottom:326.010000px;}
.yf1{bottom:330.690000px;}
.y96{bottom:339.735000px;}
.y12f{bottom:341.535000px;}
.y109{bottom:342.255000px;}
.y28{bottom:345.135000px;}
.y153{bottom:345.855000px;}
.y60{bottom:346.935000px;}
.y166{bottom:348.915000px;}
.yd9{bottom:353.775000px;}
.yf0{bottom:358.455000px;}
.y152{bottom:366.375000px;}
.y108{bottom:369.975000px;}
.y27{bottom:373.035000px;}
.y5f{bottom:374.115000px;}
.y165{bottom:376.635000px;}
.yef{bottom:378.975000px;}
.y12e{bottom:380.235000px;}
.yd8{bottom:381.675000px;}
.y151{bottom:387.075000px;}
.y107{bottom:397.875000px;}
.y5e{bottom:398.415000px;}
.y12d{bottom:399.855000px;}
.y26{bottom:400.755000px;}
.yee{bottom:403.455000px;}
.y164{bottom:404.355000px;}
.y150{bottom:407.595000px;}
.yd7{bottom:409.395000px;}
.yb1{bottom:409.575000px;}
.y5d{bottom:422.535000px;}
.y106{bottom:425.595000px;}
.yed{bottom:427.935000px;}
.y14f{bottom:428.295000px;}
.y25{bottom:428.475000px;}
.y163{bottom:432.075000px;}
.y4b{bottom:436.035000px;}
.yd6{bottom:437.115000px;}
.y12c{bottom:438.555000px;}
.y5c{bottom:446.655000px;}
.y14e{bottom:448.815000px;}
.yec{bottom:452.595000px;}
.y105{bottom:453.315000px;}
.y24{bottom:456.375000px;}
.y162{bottom:459.975000px;}
.y94{bottom:464.655000px;}
.yd5{bottom:464.835000px;}
.y14d{bottom:469.335000px;}
.y5b{bottom:470.775000px;}
.y7c{bottom:471.315000px;}
.yeb{bottom:477.075000px;}
.y12b{bottom:477.255000px;}
.y104{bottom:481.035000px;}
.y23{bottom:484.095000px;}
.y161{bottom:487.695000px;}
.y14c{bottom:490.035000px;}
.yd4{bottom:492.735000px;}
.y5a{bottom:494.895000px;}
.y12a{bottom:497.055000px;}
.yea{bottom:501.735000px;}
.y103{bottom:508.935000px;}
.y14b{bottom:510.555000px;}
.y22{bottom:511.815000px;}
.y160{bottom:515.415000px;}
.y129{bottom:516.675000px;}
.y59{bottom:519.015000px;}
.yd3{bottom:520.455000px;}
.ye9{bottom:526.215000px;}
.yae{bottom:529.275000px;}
.y14a{bottom:531.075000px;}
.y102{bottom:536.655000px;}
.y21{bottom:539.535000px;}
.y58{bottom:543.315000px;}
.yd2{bottom:548.175000px;}
.ye8{bottom:550.695000px;}
.y149{bottom:551.775000px;}
.y126{bottom:555.375000px;}
.y101{bottom:564.375000px;}
.y20{bottom:567.435000px;}
.y15f{bottom:571.035000px;}
.y148{bottom:572.295000px;}
.ye7{bottom:575.355000px;}
.yd1{bottom:576.075000px;}
.y8e{bottom:589.575000px;}
.y46{bottom:591.555000px;}
.y100{bottom:592.275000px;}
.y147{bottom:592.815000px;}
.y1f{bottom:595.155000px;}
.y73{bottom:596.235000px;}
.y15e{bottom:598.755000px;}
.ye5{bottom:599.835000px;}
.yd0{bottom:603.825000px;}
.y125{bottom:613.185000px;}
.y146{bottom:613.545000px;}
.y45{bottom:615.705000px;}
.yff{bottom:620.025000px;}
.y1e{bottom:622.905000px;}
.ye4{bottom:624.525000px;}
.yad{bottom:625.245000px;}
.y15d{bottom:626.505000px;}
.ycf{bottom:631.545000px;}
.y145{bottom:634.065000px;}
.y44{bottom:639.825000px;}
.yfe{bottom:647.745000px;}
.ye3{bottom:649.005000px;}
.y1d{bottom:650.805000px;}
.y124{bottom:651.885000px;}
.y15c{bottom:654.405000px;}
.y144{bottom:654.765000px;}
.yce{bottom:659.265000px;}
.y43{bottom:663.945000px;}
.yfd{bottom:668.085000px;}
.ye2{bottom:673.485000px;}
.y143{bottom:675.285000px;}
.y1c{bottom:678.525000px;}
.ycc{bottom:679.785000px;}
.y15b{bottom:682.125000px;}
.y42{bottom:688.065000px;}
.y123{bottom:690.585000px;}
.y141{bottom:695.805000px;}
.y1b{bottom:706.245000px;}
.y15a{bottom:709.845000px;}
.y41{bottom:712.365000px;}
.y140{bottom:716.505000px;}
.ya6{bottom:721.185000px;}
.y121{bottom:729.285000px;}
.yfc{bottom:730.905000px;}
.y1a{bottom:733.965000px;}
.y40{bottom:736.485000px;}
.y139{bottom:737.025000px;}
.y159{bottom:737.745000px;}
.y8d{bottom:745.665000px;}
.y3f{bottom:760.605000px;}
.y19{bottom:761.865000px;}
.y6c{bottom:764.925000px;}
.y158{bottom:765.465000px;}
.yc4{bottom:766.725000px;}
.y120{bottom:767.985000px;}
.y3e{bottom:784.725000px;}
.y18{bottom:789.585000px;}
.y157{bottom:793.185000px;}
.yfb{bottom:793.905000px;}
.y11f{bottom:806.685000px;}
.y3d{bottom:808.845000px;}
.y17{bottom:817.305000px;}
.y156{bottom:820.905000px;}
.y3c{bottom:832.965000px;}
.y16{bottom:845.025000px;}
.y11e{bottom:845.385000px;}
.y138{bottom:852.585000px;}
.yfa{bottom:856.725000px;}
.y3b{bottom:857.265000px;}
.ya4{bottom:864.825000px;}
.y8b{bottom:870.630000px;}
.y15{bottom:872.970000px;}
.y3a{bottom:881.430000px;}
.y11a{bottom:884.130000px;}
.ya3{bottom:889.350000px;}
.yf9{bottom:898.890000px;}
.y14{bottom:900.690000px;}
.y39{bottom:905.550000px;}
.ybb{bottom:922.650000px;}
.y113{bottom:922.830000px;}
.y13{bottom:928.410000px;}
.y38{bottom:929.670000px;}
.y6b{bottom:931.290000px;}
.y116{bottom:946.770000px;}
.y37{bottom:953.790000px;}
.y12{bottom:956.310000px;}
.y36{bottom:977.910000px;}
.y11{bottom:984.030000px;}
.y89{bottom:995.550000px;}
.y35{bottom:1002.210000px;}
.y10{bottom:1011.750000px;}
.y34{bottom:1026.330000px;}
.y87{bottom:1027.410000px;}
.yf{bottom:1039.470000px;}
.y33{bottom:1050.450000px;}
.ye{bottom:1067.370000px;}
.y32{bottom:1074.570000px;}
.yba{bottom:1078.710000px;}
.yd{bottom:1095.090000px;}
.yb8{bottom:1096.710000px;}
.y57{bottom:1098.690000px;}
.yc{bottom:1122.810000px;}
.y7{bottom:1146.240000px;}
.y5{bottom:1161.540000px;}
.y1{bottom:1178.820000px;}
.h5{height:6.480000px;}
.h22{height:17.280000px;}
.h3a{height:18.900000px;}
.h3b{height:19.080000px;}
.h3e{height:19.800000px;}
.h41{height:19.836000px;}
.h3f{height:19.980000px;}
.h40{height:20.016000px;}
.h1c{height:20.700000px;}
.h34{height:23.040000px;}
.h2c{height:23.760000px;}
.h1d{height:23.796000px;}
.h2b{height:23.940000px;}
.h7{height:27.576000px;}
.h31{height:28.260000px;}
.h18{height:30.960000px;}
.h19{height:31.140000px;}
.h35{height:37.800000px;}
.h37{height:37.836000px;}
.h38{height:37.980000px;}
.hf{height:38.158594px;}
.h2{height:41.400000px;}
.h2d{height:41.436000px;}
.h28{height:51.677227px;}
.h2f{height:52.200000px;}
.h25{height:52.669336px;}
.he{height:52.998047px;}
.h4{height:53.709961px;}
.h39{height:57.096000px;}
.h30{height:57.280781px;}
.h10{height:58.651172px;}
.h23{height:60.226875px;}
.h26{height:61.423863px;}
.h2e{height:62.100000px;}
.h11{height:62.261719px;}
.h13{height:63.457031px;}
.h36{height:65.010937px;}
.h32{height:66.757492px;}
.h33{height:66.757494px;}
.h6{height:66.757500px;}
.h8{height:70.664062px;}
.h3{height:72.562500px;}
.hc{height:72.846211px;}
.hd{height:74.244727px;}
.h17{height:82.620000px;}
.h2a{height:82.635820px;}
.ha{height:82.676953px;}
.hb{height:84.898125px;}
.h29{height:86.220000px;}
.h42{height:86.585445px;}
.h3c{height:94.896000px;}
.h1f{height:95.220000px;}
.h20{height:95.256000px;}
.h9{height:96.508125px;}
.h3d{height:99.180000px;}
.h21{height:118.980000px;}
.h15{height:124.200000px;}
.h1b{height:124.236000px;}
.h1e{height:142.920000px;}
.h16{height:144.936000px;}
.h27{height:155.190000px;}
.h24{height:155.340000px;}
.h1a{height:155.370000px;}
.h12{height:165.630000px;}
.h14{height:167.970000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:33.516000px;}
.w15{width:33.696000px;}
.w12{width:34.056000px;}
.w1e{width:34.596000px;}
.w8{width:41.436000px;}
.w22{width:46.800000px;}
.w25{width:47.520000px;}
.w26{width:53.496000px;}
.w24{width:53.820000px;}
.w23{width:55.080000px;}
.w27{width:57.960000px;}
.w28{width:62.460000px;}
.w2b{width:62.640000px;}
.w6{width:63.756000px;}
.w3{width:68.616000px;}
.w32{width:74.160000px;}
.w2d{width:74.520000px;}
.w1b{width:76.176000px;}
.w18{width:80.640000px;}
.w34{width:81.720000px;}
.w2f{width:82.080000px;}
.w20{width:84.096000px;}
.w2a{width:84.456000px;}
.w36{width:93.240000px;}
.w31{width:93.600000px;}
.w35{width:95.796000px;}
.w30{width:96.156000px;}
.w16{width:110.340000px;}
.w33{width:116.136000px;}
.w2e{width:116.496000px;}
.w2c{width:130.536000px;}
.w1f{width:141.120000px;}
.w29{width:141.480000px;}
.w13{width:143.820000px;}
.w9{width:158.790000px;}
.w1c{width:178.050000px;}
.w1a{width:190.830000px;}
.w14{width:191.550000px;}
.w17{width:204.870000px;}
.wf{width:233.130000px;}
.wd{width:241.050000px;}
.w21{width:340.815000px;}
.w11{width:350.355000px;}
.w10{width:370.875000px;}
.w19{width:375.015000px;}
.we{width:445.935000px;}
.w1d{width:466.635000px;}
.wa{width:520.275000px;}
.wb{width:721.950000px;}
.w2{width:760.830000px;}
.w5{width:765.690000px;}
.w7{width:892.979973px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.640000px;}
.x24{left:10.296000px;}
.xa{left:19.800000px;}
.x36{left:23.400000px;}
.x8{left:25.380000px;}
.x1{left:31.860000px;}
.x37{left:42.840000px;}
.x2{left:44.460000px;}
.x28{left:50.256000px;}
.x5{left:59.970000px;}
.x31{left:69.840000px;}
.x7{left:84.959987px;}
.xb{left:93.995987px;}
.x32{left:105.156000px;}
.x21{left:106.235973px;}
.x22{left:111.095987px;}
.x41{left:117.396000px;}
.x26{left:120.096000px;}
.x2d{left:122.616000px;}
.x13{left:127.475987px;}
.xf{left:154.649987px;}
.x30{left:162.210000px;}
.x23{left:172.469973px;}
.x18{left:179.669987px;}
.x2e{left:203.970000px;}
.x33{left:246.990000px;}
.xc{left:261.389987px;}
.x2a{left:264.630000px;}
.x14{left:278.174987px;}
.xe{left:283.394987px;}
.x25{left:287.535000px;}
.x20{left:301.034987px;}
.x19{left:302.294987px;}
.x11{left:304.634987px;}
.x15{left:306.254987px;}
.x42{left:311.295000px;}
.x10{left:313.454987px;}
.x17{left:320.294987px;}
.x16{left:322.634987px;}
.x34{left:331.455000px;}
.x1d{left:338.654987px;}
.x1b{left:341.534987px;}
.x1c{left:349.274987px;}
.x27{left:361.875000px;}
.x12{left:375.914987px;}
.x1a{left:384.374987px;}
.x3a{left:385.635000px;}
.x3b{left:433.515000px;}
.xd{left:446.474987px;}
.x29{left:456.915000px;}
.x3c{left:487.365000px;}
.x2b{left:491.325000px;}
.x43{left:503.025000px;}
.x3f{left:514.904973px;}
.x40{left:521.744987px;}
.x3{left:530.205000px;}
.x3d{left:545.685000px;}
.x2f{left:579.705000px;}
.x44{left:585.645000px;}
.x2c{left:602.385000px;}
.x3e{left:608.505000px;}
.x35{left:672.990000px;}
.x45{left:682.170000px;}
.x1e{left:702.869973px;}
.x1f{left:709.709987px;}
.x38{left:720.690000px;}
.x39{left:776.490000px;}
.x4{left:792.690000px;}
.x9{left:797.550000px;}
@media print{
.v1{vertical-align:-85.760000pt;}
.v0{vertical-align:0.000000pt;}
.ls5b{letter-spacing:-0.885333pt;}
.ls58{letter-spacing:-0.800000pt;}
.ls30{letter-spacing:-0.784000pt;}
.ls4e{letter-spacing:-0.768000pt;}
.ls3f{letter-spacing:-0.640000pt;}
.ls54{letter-spacing:-0.618667pt;}
.ls18{letter-spacing:-0.608000pt;}
.ls1d{letter-spacing:-0.380800pt;}
.ls2f{letter-spacing:-0.354133pt;}
.lsc{letter-spacing:-0.336533pt;}
.ls3e{letter-spacing:-0.320000pt;}
.ls5a{letter-spacing:-0.311467pt;}
.ls59{letter-spacing:-0.303467pt;}
.ls4f{letter-spacing:-0.271467pt;}
.ls38{letter-spacing:-0.256000pt;}
.ls57{letter-spacing:-0.245333pt;}
.ls36{letter-spacing:-0.211733pt;}
.ls37{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.143467pt;}
.ls49{letter-spacing:-0.129067pt;}
.ls3d{letter-spacing:-0.128000pt;}
.ls56{letter-spacing:-0.082667pt;}
.lsb{letter-spacing:-0.016640pt;}
.ls5{letter-spacing:0.000000pt;}
.ls44{letter-spacing:0.007680pt;}
.ls22{letter-spacing:0.019200pt;}
.lsf{letter-spacing:0.024960pt;}
.ls8{letter-spacing:0.088533pt;}
.ls46{letter-spacing:0.122667pt;}
.ls3a{letter-spacing:0.128000pt;}
.ls1b{letter-spacing:0.131627pt;}
.ls15{letter-spacing:0.160000pt;}
.ls4a{letter-spacing:0.216320pt;}
.ls1f{letter-spacing:0.224640pt;}
.ls16{letter-spacing:0.231040pt;}
.ls4b{letter-spacing:0.256000pt;}
.ls17{letter-spacing:0.259200pt;}
.ls2e{letter-spacing:0.285867pt;}
.ls9{letter-spacing:0.303467pt;}
.ls6{letter-spacing:0.320000pt;}
.ls43{letter-spacing:0.374400pt;}
.ls41{letter-spacing:0.480000pt;}
.ls48{letter-spacing:1.120000pt;}
.ls23{letter-spacing:1.872640pt;}
.ls52{letter-spacing:3.040000pt;}
.ls39{letter-spacing:3.680000pt;}
.ls25{letter-spacing:4.320000pt;}
.ls40{letter-spacing:4.960000pt;}
.ls2{letter-spacing:7.520000pt;}
.ls2b{letter-spacing:8.160000pt;}
.ls4d{letter-spacing:8.800000pt;}
.ls12{letter-spacing:10.080000pt;}
.ls13{letter-spacing:10.720000pt;}
.lsd{letter-spacing:11.360000pt;}
.ls45{letter-spacing:11.472640pt;}
.ls14{letter-spacing:12.640000pt;}
.ls20{letter-spacing:13.280000pt;}
.ls26{letter-spacing:13.920000pt;}
.ls1{letter-spacing:14.560000pt;}
.ls21{letter-spacing:16.480000pt;}
.ls1e{letter-spacing:17.120000pt;}
.ls32{letter-spacing:18.400000pt;}
.lse{letter-spacing:19.040000pt;}
.ls55{letter-spacing:19.680000pt;}
.ls3{letter-spacing:20.960000pt;}
.ls11{letter-spacing:21.600000pt;}
.ls2d{letter-spacing:22.240000pt;}
.ls19{letter-spacing:22.880000pt;}
.ls10{letter-spacing:27.360000pt;}
.ls4{letter-spacing:28.000000pt;}
.ls53{letter-spacing:28.640000pt;}
.ls5c{letter-spacing:31.200000pt;}
.ls28{letter-spacing:31.840000pt;}
.ls31{letter-spacing:32.480000pt;}
.ls47{letter-spacing:32.592640pt;}
.ls27{letter-spacing:33.760000pt;}
.ls29{letter-spacing:36.320000pt;}
.ls2a{letter-spacing:36.426667pt;}
.ls0{letter-spacing:36.960000pt;}
.ls4c{letter-spacing:40.160000pt;}
.ls2c{letter-spacing:41.440000pt;}
.ls51{letter-spacing:48.480000pt;}
.ls50{letter-spacing:49.120000pt;}
.ls1a{letter-spacing:52.320000pt;}
.ls42{letter-spacing:60.800000pt;}
.ls3c{letter-spacing:61.392640pt;}
.ls24{letter-spacing:65.120000pt;}
.ls34{letter-spacing:73.552640pt;}
.ls3b{letter-spacing:74.832640pt;}
.ls35{letter-spacing:76.112640pt;}
.ls1c{letter-spacing:90.240000pt;}
.ls33{letter-spacing:170.080000pt;}
.ws10{word-spacing:-74.880000pt;}
.wsf{word-spacing:-53.120000pt;}
.ws0{word-spacing:-21.600000pt;}
.ws1f{word-spacing:-19.040000pt;}
.ws3{word-spacing:-19.023467pt;}
.wsc{word-spacing:-19.005867pt;}
.ws8{word-spacing:-18.979200pt;}
.ws2{word-spacing:-18.808533pt;}
.ws22{word-spacing:-18.744960pt;}
.ws1c{word-spacing:-18.739200pt;}
.ws1{word-spacing:-18.720000pt;}
.ws5{word-spacing:-18.703360pt;}
.ws20{word-spacing:-18.637333pt;}
.ws18{word-spacing:-18.590933pt;}
.ws4{word-spacing:-18.576533pt;}
.ws11{word-spacing:-18.508267pt;}
.ws21{word-spacing:-18.474667pt;}
.ws23{word-spacing:-18.416533pt;}
.ws1e{word-spacing:-18.400000pt;}
.ws6{word-spacing:-18.383467pt;}
.wsd{word-spacing:-18.365867pt;}
.wsb{word-spacing:-18.339200pt;}
.ws9{word-spacing:-18.112000pt;}
.ws1d{word-spacing:-18.101333pt;}
.ws19{word-spacing:-17.952000pt;}
.wse{word-spacing:-17.936000pt;}
.ws24{word-spacing:-17.834667pt;}
.ws12{word-spacing:-16.000000pt;}
.ws15{word-spacing:-15.872000pt;}
.ws13{word-spacing:-15.808000pt;}
.ws14{word-spacing:-15.744000pt;}
.ws1a{word-spacing:-14.720000pt;}
.ws1b{word-spacing:-14.448533pt;}
.ws16{word-spacing:-13.600000pt;}
.ws17{word-spacing:-13.402667pt;}
.wsa{word-spacing:-13.280000pt;}
.ws7{word-spacing:0.000000pt;}
._32{margin-left:-151.040000pt;}
._24{margin-left:-5.199147pt;}
._10{margin-left:-4.286507pt;}
._2f{margin-left:-3.397547pt;}
._12{margin-left:-2.471040pt;}
._1{margin-left:-1.029973pt;}
._2{width:0.923307pt;}
._0{width:1.962667pt;}
._1b{width:3.012480pt;}
._2a{width:4.372267pt;}
._23{width:5.934293pt;}
._4{width:6.940800pt;}
._15{width:7.993813pt;}
._c{width:8.985600pt;}
._19{width:10.334507pt;}
._11{width:11.241387pt;}
._a{width:12.711253pt;}
._7{width:13.777920pt;}
._1a{width:14.826240pt;}
._e{width:15.832320pt;}
._b{width:17.596800pt;}
._3f{width:18.599893pt;}
._d{width:20.062507pt;}
._8{width:21.621973pt;}
._1c{width:22.519040pt;}
._1d{width:23.457493pt;}
._3d{width:24.880000pt;}
._25{width:25.908480pt;}
._13{width:26.906240pt;}
._3{width:27.855360pt;}
._9{width:29.608960pt;}
._57{width:30.507307pt;}
._31{width:31.449600pt;}
._27{width:33.096960pt;}
._45{width:34.245973pt;}
._28{width:35.175253pt;}
._5{width:36.915840pt;}
._6{width:38.127787pt;}
._16{width:39.162240pt;}
._17{width:40.267093pt;}
._18{width:42.035413pt;}
._42{width:43.776000pt;}
._38{width:44.672000pt;}
._30{width:45.901440pt;}
._1f{width:47.024640pt;}
._20{width:48.086400pt;}
._1e{width:49.046400pt;}
._48{width:50.217600pt;}
._f{width:51.143040pt;}
._29{width:52.416000pt;}
._14{width:53.929387pt;}
._26{width:54.905600pt;}
._34{width:56.050773pt;}
._52{width:57.626027pt;}
._59{width:59.043840pt;}
._44{width:60.352000pt;}
._3c{width:61.832533pt;}
._3b{width:62.731093pt;}
._4d{width:63.698133pt;}
._2e{width:64.730880pt;}
._46{width:67.520000pt;}
._47{width:69.258667pt;}
._56{width:71.042773pt;}
._4c{width:73.129813pt;}
._2b{width:74.658347pt;}
._49{width:76.450560pt;}
._36{width:78.250667pt;}
._58{width:79.451093pt;}
._22{width:80.799787pt;}
._21{width:82.574293pt;}
._4a{width:88.179200pt;}
._2c{width:90.014293pt;}
._4f{width:104.201173pt;}
._39{width:108.778667pt;}
._3a{width:112.576000pt;}
._37{width:131.648000pt;}
._43{width:140.032000pt;}
._3e{width:141.824000pt;}
._55{width:154.048000pt;}
._4b{width:184.412373pt;}
._54{width:187.810560pt;}
._2d{width:193.418667pt;}
._4e{width:200.156160pt;}
._33{width:214.890667pt;}
._50{width:218.854400pt;}
._53{width:221.722880pt;}
._41{width:228.480000pt;}
._35{width:241.536000pt;}
._51{width:244.943360pt;}
._40{width:328.128000pt;}
.fs5{font-size:34.560000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y6{bottom:-5.760000pt;}
.y0{bottom:0.000000pt;}
.y118{bottom:2.240000pt;}
.yb9{bottom:2.880000pt;}
.y11b{bottom:3.200000pt;}
.y127{bottom:3.360000pt;}
.y3{bottom:3.520000pt;}
.ya{bottom:4.640000pt;}
.y119{bottom:5.120000pt;}
.y142{bottom:5.280000pt;}
.y7b{bottom:5.600000pt;}
.yb0{bottom:6.240000pt;}
.ye6{bottom:6.266667pt;}
.ya5{bottom:6.280000pt;}
.yac{bottom:6.400000pt;}
.y9{bottom:6.560000pt;}
.y117{bottom:7.360000pt;}
.y115{bottom:9.600000pt;}
.y11d{bottom:11.680000pt;}
.y88{bottom:12.640000pt;}
.y8a{bottom:12.800000pt;}
.y93{bottom:12.826667pt;}
.y4{bottom:14.240000pt;}
.yb{bottom:14.560000pt;}
.ycd{bottom:18.080000pt;}
.yc3{bottom:18.240000pt;}
.y136{bottom:19.994667pt;}
.y11c{bottom:20.000000pt;}
.y122{bottom:20.160000pt;}
.y2{bottom:21.920000pt;}
.y82{bottom:21.960000pt;}
.y13e{bottom:22.720000pt;}
.y7a{bottom:24.026667pt;}
.y114{bottom:26.400000pt;}
.yb3{bottom:27.360000pt;}
.yb7{bottom:27.400000pt;}
.yab{bottom:27.520000pt;}
.y13c{bottom:31.680000pt;}
.ycb{bottom:33.440000pt;}
.yc2{bottom:33.600000pt;}
.y132{bottom:36.960000pt;}
.y128{bottom:37.120000pt;}
.y8{bottom:39.680000pt;}
.y72{bottom:40.320000pt;}
.y92{bottom:40.346667pt;}
.y81{bottom:40.360000pt;}
.y13a{bottom:40.480000pt;}
.y79{bottom:42.426667pt;}
.yb6{bottom:48.520000pt;}
.yaa{bottom:48.640000pt;}
.yca{bottom:48.800000pt;}
.yc1{bottom:48.960000pt;}
.y13b{bottom:49.280000pt;}
.y131{bottom:53.760000pt;}
.y13d{bottom:58.080000pt;}
.y71{bottom:58.720000pt;}
.y80{bottom:58.760000pt;}
.y78{bottom:60.826667pt;}
.yc9{bottom:64.160000pt;}
.yc0{bottom:64.320000pt;}
.y9a{bottom:67.834667pt;}
.y8c{bottom:67.840000pt;}
.y95{bottom:68.000000pt;}
.y91{bottom:68.026667pt;}
.ya9{bottom:69.760000pt;}
.yaf{bottom:69.786667pt;}
.yb5{bottom:69.800000pt;}
.y130{bottom:70.720000pt;}
.y13f{bottom:75.680000pt;}
.y70{bottom:77.120000pt;}
.y7f{bottom:77.160000pt;}
.y4a{bottom:78.432000pt;}
.y77{bottom:79.226667pt;}
.yc8{bottom:79.520000pt;}
.ybf{bottom:79.680000pt;}
.y98{bottom:79.872000pt;}
.y137{bottom:80.992000pt;}
.y112{bottom:82.112000pt;}
.y49{bottom:83.072000pt;}
.y31{bottom:84.672000pt;}
.y6a{bottom:86.432000pt;}
.ya2{bottom:87.872000pt;}
.yb2{bottom:90.880000pt;}
.ya8{bottom:91.040000pt;}
.y56{bottom:93.632000pt;}
.ybe{bottom:94.880000pt;}
.y48{bottom:94.912000pt;}
.yc7{bottom:94.920000pt;}
.y99{bottom:95.514667pt;}
.y7d{bottom:95.520000pt;}
.y90{bottom:95.546667pt;}
.y6f{bottom:95.560000pt;}
.y76{bottom:97.626667pt;}
.y55{bottom:98.272000pt;}
.y111{bottom:106.752000pt;}
.y69{bottom:107.872000pt;}
.y30{bottom:109.312000pt;}
.y54{bottom:110.112000pt;}
.ybd{bottom:110.240000pt;}
.yc6{bottom:110.280000pt;}
.ya7{bottom:112.160000pt;}
.ya1{bottom:112.512000pt;}
.y6e{bottom:113.960000pt;}
.y135{bottom:115.392000pt;}
.y75{bottom:116.026667pt;}
.ye1{bottom:116.992000pt;}
.yf8{bottom:121.152000pt;}
.y86{bottom:123.072000pt;}
.y8f{bottom:123.226667pt;}
.yc5{bottom:125.480000pt;}
.ybc{bottom:125.600000pt;}
.y68{bottom:129.312000pt;}
.y110{bottom:131.392000pt;}
.y6d{bottom:132.360000pt;}
.y2f{bottom:134.106667pt;}
.y74{bottom:134.426667pt;}
.y53{bottom:135.066667pt;}
.ya0{bottom:137.146667pt;}
.y16a{bottom:137.306667pt;}
.ye0{bottom:141.626667pt;}
.yf7{bottom:145.786667pt;}
.y85{bottom:147.706667pt;}
.y134{bottom:149.786667pt;}
.y67{bottom:150.746667pt;}
.y10f{bottom:156.026667pt;}
.y52{bottom:156.506667pt;}
.y2e{bottom:158.746667pt;}
.y9f{bottom:161.786667pt;}
.y169{bottom:161.946667pt;}
.ydf{bottom:166.426667pt;}
.yf6{bottom:170.586667pt;}
.y84{bottom:172.346667pt;}
.y66{bottom:172.826667pt;}
.y51{bottom:178.106667pt;}
.y10e{bottom:180.826667pt;}
.y2d{bottom:183.386667pt;}
.y133{bottom:184.186667pt;}
.y9e{bottom:186.586667pt;}
.y97{bottom:190.906667pt;}
.yde{bottom:191.066667pt;}
.yf5{bottom:195.226667pt;}
.y65{bottom:196.986667pt;}
.y50{bottom:199.546667pt;}
.y10d{bottom:205.466667pt;}
.y2c{bottom:208.026667pt;}
.y9d{bottom:211.226667pt;}
.y83{bottom:215.226667pt;}
.ydd{bottom:215.706667pt;}
.y64{bottom:218.586667pt;}
.yf4{bottom:219.866667pt;}
.y4f{bottom:220.986667pt;}
.y10c{bottom:230.106667pt;}
.y2b{bottom:232.826667pt;}
.y9c{bottom:235.866667pt;}
.y168{bottom:236.026667pt;}
.ydc{bottom:240.346667pt;}
.y63{bottom:240.666667pt;}
.y4e{bottom:242.426667pt;}
.yf3{bottom:244.666667pt;}
.y10b{bottom:254.906667pt;}
.y2a{bottom:257.466667pt;}
.y9b{bottom:260.506667pt;}
.y167{bottom:260.666667pt;}
.y4d{bottom:263.866667pt;}
.y47{bottom:264.186667pt;}
.y62{bottom:264.826667pt;}
.ydb{bottom:265.146667pt;}
.yf2{bottom:269.306667pt;}
.y155{bottom:270.746667pt;}
.yb4{bottom:278.746667pt;}
.y10a{bottom:279.546667pt;}
.y29{bottom:282.106667pt;}
.y4c{bottom:285.306667pt;}
.y61{bottom:286.266667pt;}
.y154{bottom:289.146667pt;}
.y7e{bottom:289.466667pt;}
.yda{bottom:289.786667pt;}
.yf1{bottom:293.946667pt;}
.y96{bottom:301.986667pt;}
.y12f{bottom:303.586667pt;}
.y109{bottom:304.226667pt;}
.y28{bottom:306.786667pt;}
.y153{bottom:307.426667pt;}
.y60{bottom:308.386667pt;}
.y166{bottom:310.146667pt;}
.yd9{bottom:314.466667pt;}
.yf0{bottom:318.626667pt;}
.y152{bottom:325.666667pt;}
.y108{bottom:328.866667pt;}
.y27{bottom:331.586667pt;}
.y5f{bottom:332.546667pt;}
.y165{bottom:334.786667pt;}
.yef{bottom:336.866667pt;}
.y12e{bottom:337.986667pt;}
.yd8{bottom:339.266667pt;}
.y151{bottom:344.066667pt;}
.y107{bottom:353.666667pt;}
.y5e{bottom:354.146667pt;}
.y12d{bottom:355.426667pt;}
.y26{bottom:356.226667pt;}
.yee{bottom:358.626667pt;}
.y164{bottom:359.426667pt;}
.y150{bottom:362.306667pt;}
.yd7{bottom:363.906667pt;}
.yb1{bottom:364.066667pt;}
.y5d{bottom:375.586667pt;}
.y106{bottom:378.306667pt;}
.yed{bottom:380.386667pt;}
.y14f{bottom:380.706667pt;}
.y25{bottom:380.866667pt;}
.y163{bottom:384.066667pt;}
.y4b{bottom:387.586667pt;}
.yd6{bottom:388.546667pt;}
.y12c{bottom:389.826667pt;}
.y5c{bottom:397.026667pt;}
.y14e{bottom:398.946667pt;}
.yec{bottom:402.306667pt;}
.y105{bottom:402.946667pt;}
.y24{bottom:405.666667pt;}
.y162{bottom:408.866667pt;}
.y94{bottom:413.026667pt;}
.yd5{bottom:413.186667pt;}
.y14d{bottom:417.186667pt;}
.y5b{bottom:418.466667pt;}
.y7c{bottom:418.946667pt;}
.yeb{bottom:424.066667pt;}
.y12b{bottom:424.226667pt;}
.y104{bottom:427.586667pt;}
.y23{bottom:430.306667pt;}
.y161{bottom:433.506667pt;}
.y14c{bottom:435.586667pt;}
.yd4{bottom:437.986667pt;}
.y5a{bottom:439.906667pt;}
.y12a{bottom:441.826667pt;}
.yea{bottom:445.986667pt;}
.y103{bottom:452.386667pt;}
.y14b{bottom:453.826667pt;}
.y22{bottom:454.946667pt;}
.y160{bottom:458.146667pt;}
.y129{bottom:459.266667pt;}
.y59{bottom:461.346667pt;}
.yd3{bottom:462.626667pt;}
.ye9{bottom:467.746667pt;}
.yae{bottom:470.466667pt;}
.y14a{bottom:472.066667pt;}
.y102{bottom:477.026667pt;}
.y21{bottom:479.586667pt;}
.y58{bottom:482.946667pt;}
.yd2{bottom:487.266667pt;}
.ye8{bottom:489.506667pt;}
.y149{bottom:490.466667pt;}
.y126{bottom:493.666667pt;}
.y101{bottom:501.666667pt;}
.y20{bottom:504.386667pt;}
.y15f{bottom:507.586667pt;}
.y148{bottom:508.706667pt;}
.ye7{bottom:511.426667pt;}
.yd1{bottom:512.066667pt;}
.y8e{bottom:524.066667pt;}
.y46{bottom:525.826667pt;}
.y100{bottom:526.466667pt;}
.y147{bottom:526.946667pt;}
.y1f{bottom:529.026667pt;}
.y73{bottom:529.986667pt;}
.y15e{bottom:532.226667pt;}
.ye5{bottom:533.186667pt;}
.yd0{bottom:536.733333pt;}
.y125{bottom:545.053333pt;}
.y146{bottom:545.373333pt;}
.y45{bottom:547.293333pt;}
.yff{bottom:551.133333pt;}
.y1e{bottom:553.693333pt;}
.ye4{bottom:555.133333pt;}
.yad{bottom:555.773333pt;}
.y15d{bottom:556.893333pt;}
.ycf{bottom:561.373333pt;}
.y145{bottom:563.613333pt;}
.y44{bottom:568.733333pt;}
.yfe{bottom:575.773333pt;}
.ye3{bottom:576.893333pt;}
.y1d{bottom:578.493333pt;}
.y124{bottom:579.453333pt;}
.y15c{bottom:581.693333pt;}
.y144{bottom:582.013333pt;}
.yce{bottom:586.013333pt;}
.y43{bottom:590.173333pt;}
.yfd{bottom:593.853333pt;}
.ye2{bottom:598.653333pt;}
.y143{bottom:600.253333pt;}
.y1c{bottom:603.133333pt;}
.ycc{bottom:604.253333pt;}
.y15b{bottom:606.333333pt;}
.y42{bottom:611.613333pt;}
.y123{bottom:613.853333pt;}
.y141{bottom:618.493333pt;}
.y1b{bottom:627.773333pt;}
.y15a{bottom:630.973333pt;}
.y41{bottom:633.213333pt;}
.y140{bottom:636.893333pt;}
.ya6{bottom:641.053333pt;}
.y121{bottom:648.253333pt;}
.yfc{bottom:649.693333pt;}
.y1a{bottom:652.413333pt;}
.y40{bottom:654.653333pt;}
.y139{bottom:655.133333pt;}
.y159{bottom:655.773333pt;}
.y8d{bottom:662.813333pt;}
.y3f{bottom:676.093333pt;}
.y19{bottom:677.213333pt;}
.y6c{bottom:679.933333pt;}
.y158{bottom:680.413333pt;}
.yc4{bottom:681.533333pt;}
.y120{bottom:682.653333pt;}
.y3e{bottom:697.533333pt;}
.y18{bottom:701.853333pt;}
.y157{bottom:705.053333pt;}
.yfb{bottom:705.693333pt;}
.y11f{bottom:717.053333pt;}
.y3d{bottom:718.973333pt;}
.y17{bottom:726.493333pt;}
.y156{bottom:729.693333pt;}
.y3c{bottom:740.413333pt;}
.y16{bottom:751.133333pt;}
.y11e{bottom:751.453333pt;}
.y138{bottom:757.853333pt;}
.yfa{bottom:761.533333pt;}
.y3b{bottom:762.013333pt;}
.ya4{bottom:768.733333pt;}
.y8b{bottom:773.893333pt;}
.y15{bottom:775.973333pt;}
.y3a{bottom:783.493333pt;}
.y11a{bottom:785.893333pt;}
.ya3{bottom:790.533333pt;}
.yf9{bottom:799.013333pt;}
.y14{bottom:800.613333pt;}
.y39{bottom:804.933333pt;}
.ybb{bottom:820.133333pt;}
.y113{bottom:820.293333pt;}
.y13{bottom:825.253333pt;}
.y38{bottom:826.373333pt;}
.y6b{bottom:827.813333pt;}
.y116{bottom:841.573333pt;}
.y37{bottom:847.813333pt;}
.y12{bottom:850.053333pt;}
.y36{bottom:869.253333pt;}
.y11{bottom:874.693333pt;}
.y89{bottom:884.933333pt;}
.y35{bottom:890.853333pt;}
.y10{bottom:899.333333pt;}
.y34{bottom:912.293333pt;}
.y87{bottom:913.253333pt;}
.yf{bottom:923.973333pt;}
.y33{bottom:933.733333pt;}
.ye{bottom:948.773333pt;}
.y32{bottom:955.173333pt;}
.yba{bottom:958.853333pt;}
.yd{bottom:973.413333pt;}
.yb8{bottom:974.853333pt;}
.y57{bottom:976.613333pt;}
.yc{bottom:998.053333pt;}
.y7{bottom:1018.880000pt;}
.y5{bottom:1032.480000pt;}
.y1{bottom:1047.840000pt;}
.h5{height:5.760000pt;}
.h22{height:15.360000pt;}
.h3a{height:16.800000pt;}
.h3b{height:16.960000pt;}
.h3e{height:17.600000pt;}
.h41{height:17.632000pt;}
.h3f{height:17.760000pt;}
.h40{height:17.792000pt;}
.h1c{height:18.400000pt;}
.h34{height:20.480000pt;}
.h2c{height:21.120000pt;}
.h1d{height:21.152000pt;}
.h2b{height:21.280000pt;}
.h7{height:24.512000pt;}
.h31{height:25.120000pt;}
.h18{height:27.520000pt;}
.h19{height:27.680000pt;}
.h35{height:33.600000pt;}
.h37{height:33.632000pt;}
.h38{height:33.760000pt;}
.hf{height:33.918750pt;}
.h2{height:36.800000pt;}
.h2d{height:36.832000pt;}
.h28{height:45.935313pt;}
.h2f{height:46.400000pt;}
.h25{height:46.817187pt;}
.he{height:47.109375pt;}
.h4{height:47.742188pt;}
.h39{height:50.752000pt;}
.h30{height:50.916250pt;}
.h10{height:52.134375pt;}
.h23{height:53.535000pt;}
.h26{height:54.598989pt;}
.h2e{height:55.200000pt;}
.h11{height:55.343750pt;}
.h13{height:56.406250pt;}
.h36{height:57.787500pt;}
.h32{height:59.339993pt;}
.h33{height:59.339995pt;}
.h6{height:59.340000pt;}
.h8{height:62.812500pt;}
.h3{height:64.500000pt;}
.hc{height:64.752187pt;}
.hd{height:65.995312pt;}
.h17{height:73.440000pt;}
.h2a{height:73.454062pt;}
.ha{height:73.490625pt;}
.hb{height:75.465000pt;}
.h29{height:76.640000pt;}
.h42{height:76.964840pt;}
.h3c{height:84.352000pt;}
.h1f{height:84.640000pt;}
.h20{height:84.672000pt;}
.h9{height:85.785000pt;}
.h3d{height:88.160000pt;}
.h21{height:105.760000pt;}
.h15{height:110.400000pt;}
.h1b{height:110.432000pt;}
.h1e{height:127.040000pt;}
.h16{height:128.832000pt;}
.h27{height:137.946667pt;}
.h24{height:138.080000pt;}
.h1a{height:138.106667pt;}
.h12{height:147.226667pt;}
.h14{height:149.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:29.792000pt;}
.w15{width:29.952000pt;}
.w12{width:30.272000pt;}
.w1e{width:30.752000pt;}
.w8{width:36.832000pt;}
.w22{width:41.600000pt;}
.w25{width:42.240000pt;}
.w26{width:47.552000pt;}
.w24{width:47.840000pt;}
.w23{width:48.960000pt;}
.w27{width:51.520000pt;}
.w28{width:55.520000pt;}
.w2b{width:55.680000pt;}
.w6{width:56.672000pt;}
.w3{width:60.992000pt;}
.w32{width:65.920000pt;}
.w2d{width:66.240000pt;}
.w1b{width:67.712000pt;}
.w18{width:71.680000pt;}
.w34{width:72.640000pt;}
.w2f{width:72.960000pt;}
.w20{width:74.752000pt;}
.w2a{width:75.072000pt;}
.w36{width:82.880000pt;}
.w31{width:83.200000pt;}
.w35{width:85.152000pt;}
.w30{width:85.472000pt;}
.w16{width:98.080000pt;}
.w33{width:103.232000pt;}
.w2e{width:103.552000pt;}
.w2c{width:116.032000pt;}
.w1f{width:125.440000pt;}
.w29{width:125.760000pt;}
.w13{width:127.840000pt;}
.w9{width:141.146667pt;}
.w1c{width:158.266667pt;}
.w1a{width:169.626667pt;}
.w14{width:170.266667pt;}
.w17{width:182.106667pt;}
.wf{width:207.226667pt;}
.wd{width:214.266667pt;}
.w21{width:302.946667pt;}
.w11{width:311.426667pt;}
.w10{width:329.666667pt;}
.w19{width:333.346667pt;}
.we{width:396.386667pt;}
.w1d{width:414.786667pt;}
.wa{width:462.466667pt;}
.wb{width:641.733333pt;}
.w2{width:676.293333pt;}
.w5{width:680.613333pt;}
.w7{width:793.759976pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.680000pt;}
.x24{left:9.152000pt;}
.xa{left:17.600000pt;}
.x36{left:20.800000pt;}
.x8{left:22.560000pt;}
.x1{left:28.320000pt;}
.x37{left:38.080000pt;}
.x2{left:39.520000pt;}
.x28{left:44.672000pt;}
.x5{left:53.306667pt;}
.x31{left:62.080000pt;}
.x7{left:75.519988pt;}
.xb{left:83.551988pt;}
.x32{left:93.472000pt;}
.x21{left:94.431976pt;}
.x22{left:98.751988pt;}
.x41{left:104.352000pt;}
.x26{left:106.752000pt;}
.x2d{left:108.992000pt;}
.x13{left:113.311988pt;}
.xf{left:137.466655pt;}
.x30{left:144.186667pt;}
.x23{left:153.306643pt;}
.x18{left:159.706655pt;}
.x2e{left:181.306667pt;}
.x33{left:219.546667pt;}
.xc{left:232.346655pt;}
.x2a{left:235.226667pt;}
.x14{left:247.266655pt;}
.xe{left:251.906655pt;}
.x25{left:255.586667pt;}
.x20{left:267.586655pt;}
.x19{left:268.706655pt;}
.x11{left:270.786655pt;}
.x15{left:272.226655pt;}
.x42{left:276.706667pt;}
.x10{left:278.626655pt;}
.x17{left:284.706655pt;}
.x16{left:286.786655pt;}
.x34{left:294.626667pt;}
.x1d{left:301.026655pt;}
.x1b{left:303.586655pt;}
.x1c{left:310.466655pt;}
.x27{left:321.666667pt;}
.x12{left:334.146655pt;}
.x1a{left:341.666655pt;}
.x3a{left:342.786667pt;}
.x3b{left:385.346667pt;}
.xd{left:396.866655pt;}
.x29{left:406.146667pt;}
.x3c{left:433.213333pt;}
.x2b{left:436.733333pt;}
.x43{left:447.133333pt;}
.x3f{left:457.693310pt;}
.x40{left:463.773322pt;}
.x3{left:471.293333pt;}
.x3d{left:485.053333pt;}
.x2f{left:515.293333pt;}
.x44{left:520.573333pt;}
.x2c{left:535.453333pt;}
.x3e{left:540.893333pt;}
.x35{left:598.213333pt;}
.x45{left:606.373333pt;}
.x1e{left:624.773310pt;}
.x1f{left:630.853322pt;}
.x38{left:640.613333pt;}
.x39{left:690.213333pt;}
.x4{left:704.613333pt;}
.x9{left:708.933333pt;}
}




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