
    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_3c5a6a77f2dfc63be5627d8d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_352cec77a89416aa6fd6cf87.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_810d146bbcb67b407503294a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.940918;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_f04a791144096070dc2bc122.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_13ca857f6279453b9fe4bac7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.918457;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_beb079a34f9e500722547af7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a33a7e7aa331203ce5eda686.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940918;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_5c219a15fa9571fcb520816f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958496;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_aae3e393a59fc5a1138c2dca.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_9af4f3f26271cbf7c3b058ab.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.106934;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_e4607e819c5c8b5136565d46.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_78dba1b3a75105eb5e7bbcf1.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.113281;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_0b92c5c7d52f18e06bf161b3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_95225beb8622577ccb048a56.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_0833776d1760f7e29e7f0211.woff2')format("woff");}.fff{font-family:fff;line-height:0.985610;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_0b2b4773f56d5ca7b8017cba.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls15{letter-spacing:-6.599989px;}
.ls16{letter-spacing:-0.575999px;}
.ls6{letter-spacing:-0.479999px;}
.lsf{letter-spacing:-0.431999px;}
.ls7{letter-spacing:-0.359999px;}
.ls19{letter-spacing:-0.288000px;}
.ls27{letter-spacing:-0.240000px;}
.ls5{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.007200px;}
.lsa{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.096000px;}
.ls3{letter-spacing:0.240000px;}
.ls22{letter-spacing:0.243600px;}
.ls1b{letter-spacing:0.288000px;}
.ls26{letter-spacing:0.359999px;}
.ls9{letter-spacing:0.395999px;}
.ls0{letter-spacing:0.426299px;}
.ls21{letter-spacing:0.431999px;}
.ls1{letter-spacing:0.474315px;}
.ls1c{letter-spacing:0.575999px;}
.ls12{letter-spacing:0.641999px;}
.lsb{letter-spacing:0.715516px;}
.ls4{letter-spacing:0.719999px;}
.ls10{letter-spacing:0.767999px;}
.lsd{letter-spacing:0.815999px;}
.ls1e{letter-spacing:0.851999px;}
.ls20{letter-spacing:0.905999px;}
.ls1a{letter-spacing:0.911999px;}
.ls18{letter-spacing:0.923999px;}
.ls1f{letter-spacing:0.977998px;}
.ls1d{letter-spacing:1.253998px;}
.ls13{letter-spacing:1.391998px;}
.ls8{letter-spacing:1.583997px;}
.ls11{letter-spacing:2.015997px;}
.lsc{letter-spacing:2.429996px;}
.lse{letter-spacing:2.789996px;}
.ls14{letter-spacing:15.305976px;}
.ls23{letter-spacing:36.887941px;}
.ls25{letter-spacing:42.884331px;}
.ls17{letter-spacing:80.105872px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,116,186),0 0.015em rgb(0,116,186),0.015em 0 rgb(0,116,186),0 -0.015em  rgb(0,116,186);}
.sc1{text-shadow:-0.015em 0 rgb(0,210,106),0 0.015em rgb(0,210,106),0.015em 0 rgb(0,210,106),0 -0.015em  rgb(0,210,106);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,116,186);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,210,106);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-156.833449px;}
.ws0{word-spacing:-114.466317px;}
.wsd{word-spacing:-33.359947px;}
.wse{word-spacing:-26.687957px;}
.ws12{word-spacing:-26.399958px;}
.ws11{word-spacing:-26.111958px;}
.ws13{word-spacing:-24.359961px;}
.ws4{word-spacing:-24.239961px;}
.ws3{word-spacing:-23.999962px;}
.ws14{word-spacing:-23.759962px;}
.ws2{word-spacing:-23.639962px;}
.ws1{word-spacing:-23.519962px;}
.wsf{word-spacing:-23.351963px;}
.wsb{word-spacing:-22.031965px;}
.wsc{word-spacing:-20.831967px;}
.ws9{word-spacing:-20.783967px;}
.wsa{word-spacing:-20.731484px;}
.ws10{word-spacing:-20.087968px;}
.ws7{word-spacing:-20.015968px;}
.ws8{word-spacing:-19.583969px;}
.ws5{word-spacing:0.000000px;}
._10{margin-left:-24.602091px;}
._f{margin-left:-22.155237px;}
._e{margin-left:-10.652239px;}
._12{margin-left:-9.452725px;}
._d{margin-left:-7.689415px;}
._44{margin-left:-6.462730px;}
._c{margin-left:-5.390069px;}
._2{margin-left:-3.898272px;}
._4{margin-left:-2.246561px;}
._1{margin-left:-1.077748px;}
._3{width:1.070406px;}
._8{width:2.666870px;}
._9{width:3.685340px;}
._a{width:5.316290px;}
._b{width:6.365483px;}
._46{width:7.578048px;}
._45{width:8.598091px;}
._7{width:9.806203px;}
._5{width:10.916267px;}
._2e{width:12.148082px;}
._6{width:13.297409px;}
._25{width:15.155379px;}
._26{width:16.866232px;}
._2a{width:18.817876px;}
._5d{width:19.885573px;}
._1f{width:21.134168px;}
._18{width:22.777688px;}
._2d{width:24.290181px;}
._47{width:25.598797px;}
._43{width:28.008112px;}
._39{width:29.295882px;}
._21{width:31.299677px;}
._22{width:32.500261px;}
._1e{width:33.789355px;}
._1d{width:35.532615px;}
._3a{width:36.958553px;}
._17{width:38.401390px;}
._54{width:39.552303px;}
._4c{width:40.608786px;}
._6e{width:41.733023px;}
._6f{width:43.001163px;}
._50{width:44.630922px;}
._4f{width:46.569056px;}
._77{width:48.064294px;}
._72{width:49.235885px;}
._3f{width:51.317918px;}
._2f{width:52.904278px;}
._31{width:54.478279px;}
._63{width:55.549103px;}
._5b{width:56.909534px;}
._5c{width:58.244515px;}
._3c{width:59.982642px;}
._1b{width:61.728087px;}
._48{width:64.024883px;}
._34{width:65.374354px;}
._40{width:67.481844px;}
._7c{width:68.833536px;}
._16{width:69.878766px;}
._75{width:71.543844px;}
._6a{width:75.357669px;}
._61{width:76.701673px;}
._13{width:78.145327px;}
._15{width:79.309371px;}
._69{width:81.214334px;}
._30{width:82.650628px;}
._1a{width:84.952336px;}
._20{width:86.755324px;}
._37{width:88.144494px;}
._23{width:90.144231px;}
._1c{width:92.011652px;}
._14{width:93.206796px;}
._7b{width:94.562175px;}
._76{width:95.800043px;}
._57{width:97.027461px;}
._56{width:98.225843px;}
._62{width:103.709146px;}
._5f{width:105.261182px;}
._60{width:106.849092px;}
._2c{width:108.002916px;}
._28{width:109.431893px;}
._29{width:111.730639px;}
._19{width:113.088589px;}
._3b{width:114.924207px;}
._49{width:117.979564px;}
._41{width:120.112240px;}
._42{width:121.215923px;}
._71{width:124.499801px;}
._7d{width:125.577296px;}
._6d{width:129.057633px;}
._51{width:131.140852px;}
._67{width:132.975965px;}
._7e{width:136.604408px;}
._84{width:138.030829px;}
._35{width:139.578039px;}
._24{width:147.950351px;}
._7f{width:149.872199px;}
._85{width:151.880053px;}
._5e{width:153.819450px;}
._55{width:155.728769px;}
._68{width:158.394990px;}
._4a{width:163.294798px;}
._4b{width:164.734763px;}
._7a{width:171.287559px;}
._59{width:172.707286px;}
._58{width:173.879722px;}
._78{width:176.161609px;}
._3e{width:177.486002px;}
._3d{width:178.657141px;}
._4d{width:189.910368px;}
._87{width:194.318511px;}
._52{width:195.816921px;}
._53{width:197.279419px;}
._36{width:213.125199px;}
._33{width:219.079076px;}
._2b{width:223.511642px;}
._66{width:225.126701px;}
._27{width:238.091396px;}
._74{width:242.396212px;}
._81{width:259.584658px;}
._79{width:263.229868px;}
._65{width:271.674869px;}
._73{width:275.921174px;}
._4e{width:281.293999px;}
._5a{width:299.707300px;}
._6c{width:303.836937px;}
._70{width:312.377744px;}
._38{width:315.255014px;}
._64{width:338.218162px;}
._82{width:380.040847px;}
._83{width:384.280152px;}
._32{width:410.594044px;}
._6b{width:444.298091px;}
._80{width:516.772034px;}
._0{width:837.650260px;}
._11{width:1693.548890px;}
._86{width:1694.682889px;}
.fc6{color:rgb(0,116,186);}
.fc5{color:rgb(0,210,106);}
.fc4{color:rgb(0,32,96);}
.fc3{color:transparent;}
.fc1{color:rgb(255,255,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:11.999981px;}
.fsb{font-size:47.999923px;}
.fsa{font-size:59.999904px;}
.fse{font-size:65.999894px;}
.fs8{font-size:71.999885px;}
.fsd{font-size:83.999866px;}
.fs7{font-size:87.599860px;}
.fs0{font-size:95.999846px;}
.fs5{font-size:107.999827px;}
.fs6{font-size:119.999808px;}
.fs4{font-size:167.999731px;}
.fs3{font-size:177.085536px;}
.fs2{font-size:378.149395px;}
.fs1{font-size:411.749341px;}
.fs9{font-size:564.149097px;}
.y0{bottom:0.000000px;}
.y35{bottom:0.072033px;}
.y186{bottom:8.108031px;}
.yd{bottom:13.499136px;}
.y8{bottom:21.315230px;}
.yf{bottom:33.298530px;}
.y185{bottom:44.737972px;}
.yc{bottom:55.542569px;}
.y28{bottom:58.837406px;}
.y7{bottom:67.813656px;}
.y17a{bottom:75.338279px;}
.y184{bottom:81.336414px;}
.y27{bottom:86.138262px;}
.yb{bottom:97.842501px;}
.y179{bottom:102.937335px;}
.y183{bottom:118.236355px;}
.y153{bottom:126.337298px;}
.yfe{bottom:128.137295px;}
.y39{bottom:132.637288px;}
.yab{bottom:132.938187px;}
.y6{bottom:135.642047px;}
.ybd{bottom:138.338179px;}
.ya{bottom:139.845434px;}
.y63{bottom:141.038174px;}
.y17b{bottom:147.636720px;}
.y26{bottom:148.837262px;}
.y7a{bottom:149.436361px;}
.yf9{bottom:153.931254px;}
.y4a{bottom:154.529753px;}
.y182{bottom:154.839296px;}
.y152{bottom:167.746232px;}
.yfd{bottom:169.573229px;}
.yaa{bottom:174.374721px;}
.y62{bottom:177.376216px;}
.y38{bottom:178.874714px;}
.ybc{bottom:179.774712px;}
.y134{bottom:180.976210px;}
.y25{bottom:185.476203px;}
.y93{bottom:187.874699px;}
.ye1{bottom:190.273196px;}
.y181{bottom:191.482737px;}
.yf8{bottom:195.376187px;}
.yfc{bottom:210.973162px;}
.y61{bottom:213.673158px;}
.y151{bottom:214.573157px;}
.ya9{bottom:215.774655px;}
.y167{bottom:216.076154px;}
.y49{bottom:216.674653px;}
.y24{bottom:221.174646px;}
.y92{bottom:223.874642px;}
.yd9{bottom:224.774640px;}
.y133{bottom:225.976138px;}
.y180{bottom:228.081179px;}
.y37{bottom:230.476131px;}
.ye0{bottom:231.673129px;}
.yf7{bottom:236.776121px;}
.y114{bottom:241.874613px;}
.y48{bottom:247.576104px;}
.y150{bottom:247.873103px;}
.y166{bottom:248.174603px;}
.y60{bottom:249.974600px;}
.yd8{bottom:250.573099px;}
.y79{bottom:252.373096px;}
.ya8{bottom:257.174589px;}
.y123{bottom:261.674581px;}
.y5{bottom:262.573344px;}
.y23{bottom:262.574580px;}
.y17f{bottom:264.684120px;}
.y132{bottom:267.376072px;}
.ydf{bottom:273.073063px;}
.yd7{bottom:277.573056px;}
.yf6{bottom:278.176055px;}
.y47{bottom:278.774554px;}
.y14f{bottom:281.173050px;}
.y165{bottom:281.474550px;}
.y36{bottom:282.374548px;}
.y113{bottom:283.274547px;}
.y5f{bottom:285.974542px;}
.y78{bottom:293.773030px;}
.ya7{bottom:298.574522px;}
.y17e{bottom:301.269062px;}
.y9{bottom:301.275360px;}
.y91{bottom:301.576017px;}
.y122{bottom:303.074515px;}
.y22{bottom:303.974514px;}
.yd6{bottom:306.076010px;}
.y131{bottom:308.776006px;}
.y46{bottom:309.676005px;}
.yde{bottom:314.472997px;}
.y14e{bottom:314.774496px;}
.y34{bottom:317.100960px;}
.yf5{bottom:319.575989px;}
.y5e{bottom:322.275984px;}
.y112{bottom:324.674481px;}
.yd5{bottom:334.574465px;}
.y77{bottom:335.172964px;}
.y17d{bottom:337.867503px;}
.y90{bottom:337.904459px;}
.ya6{bottom:340.005956px;}
.y45{bottom:340.905955px;}
.y121{bottom:344.505949px;}
.y21{bottom:345.419447px;}
.y164{bottom:346.319446px;}
.y14d{bottom:348.119443px;}
.y130{bottom:350.202940px;}
.ydd{bottom:355.917931px;}
.y5d{bottom:358.617926px;}
.yf4{bottom:361.002922px;}
.y143{bottom:361.304422px;}
.yd4{bottom:363.117919px;}
.y111{bottom:366.119414px;}
.y44{bottom:371.802905px;}
.y8f{bottom:373.904402px;}
.y17c{bottom:374.510945px;}
.y76{bottom:376.617897px;}
.y163{bottom:378.102895px;}
.ya5{bottom:381.405890px;}
.y20{bottom:386.819381px;}
.yd3{bottom:388.002879px;}
.y14c{bottom:391.004374px;}
.y120{bottom:391.305874px;}
.y12f{bottom:397.002865px;}
.y5c{bottom:397.317864px;}
.yf3{bottom:402.420856px;}
.y142{bottom:402.704356px;}
.y43{bottom:403.005855px;}
.y110{bottom:407.505848px;}
.y8e{bottom:410.205844px;}
.y75{bottom:418.004331px;}
.yd2{bottom:419.502829px;}
.y162{bottom:421.005826px;}
.ya4{bottom:422.819323px;}
.y11f{bottom:423.120823px;}
.y33{bottom:424.902820px;}
.y1f{bottom:428.205815px;}
.y14b{bottom:432.404308px;}
.y42{bottom:433.902806px;}
.y12e{bottom:438.402799px;}
.y5b{bottom:438.704298px;}
.yf2{bottom:443.820790px;}
.y141{bottom:444.104289px;}
.y8d{bottom:446.502786px;}
.y10f{bottom:448.905782px;}
.yd1{bottom:451.317778px;}
.ybb{bottom:454.904272px;}
.y74{bottom:459.404265px;}
.y32{bottom:460.902763px;}
.ya3{bottom:464.205757px;}
.y41{bottom:465.119256px;}
.y161{bottom:468.120751px;}
.y1e{bottom:469.619249px;}
.y14a{bottom:479.204233px;}
.y12d{bottom:479.820732px;}
.y5a{bottom:480.117732px;}
.y8c{bottom:482.817727px;}
.yd0{bottom:483.119227px;}
.yf1{bottom:485.202724px;}
.y140{bottom:485.504223px;}
.y11e{bottom:486.705721px;}
.y10e{bottom:490.319215px;}
.y40{bottom:496.002706px;}
.yba{bottom:496.317706px;}
.y73{bottom:500.817699px;}
.y160{bottom:501.402698px;}
.ya2{bottom:505.605691px;}
.y1d{bottom:511.050682px;}
.ycf{bottom:514.947676px;}
.y11d{bottom:518.250671px;}
.y8b{bottom:518.849170px;}
.y12c{bottom:521.247666px;}
.y59{bottom:521.549166px;}
.yf0{bottom:526.647657px;}
.y3f{bottom:527.250656px;}
.y10d{bottom:531.750649px;}
.y13f{bottom:532.349148px;}
.y31{bottom:533.249147px;}
.y15f{bottom:534.747644px;}
.yb9{bottom:537.749140px;}
.y72{bottom:542.249132px;}
.y149{bottom:544.049130px;}
.yce{bottom:546.749125px;}
.ya1{bottom:547.050625px;}
.ye{bottom:548.249040px;}
.y1c{bottom:552.450616px;}
.y8a{bottom:555.150612px;}
.y3e{bottom:558.147607px;}
.y12b{bottom:562.647600px;}
.y58{bottom:562.949099px;}
.y13e{bottom:563.849098px;}
.y11c{bottom:565.050596px;}
.y15e{bottom:566.549094px;}
.yef{bottom:568.047591px;}
.y10c{bottom:573.150583px;}
.y148{bottom:576.147578px;}
.ycd{bottom:578.249075px;}
.yb8{bottom:579.149073px;}
.y71{bottom:583.649066px;}
.y176{bottom:587.550560px;}
.ya0{bottom:588.450558px;}
.y3d{bottom:589.350557px;}
.y89{bottom:591.447554px;}
.y1b{bottom:593.850550px;}
.y11b{bottom:596.847545px;}
.y12a{bottom:604.047534px;}
.y57{bottom:604.349033px;}
.y30{bottom:605.847531px;}
.y13d{bottom:608.250527px;}
.y147{bottom:609.150525px;}
.yb7{bottom:609.447525px;}
.ycc{bottom:610.050524px;}
.y10b{bottom:614.550517px;}
.y3c{bottom:620.247508px;}
.y70{bottom:625.049000px;}
.y88{bottom:627.748996px;}
.y11a{bottom:628.648994px;}
.y175{bottom:628.950494px;}
.y9f{bottom:629.850492px;}
.y1a{bottom:635.250484px;}
.yb6{bottom:639.750476px;}
.y146{bottom:641.248974px;}
.ycb{bottom:641.847473px;}
.y56{bottom:645.748967px;}
.y129{bottom:650.550459px;}
.yee{bottom:650.847459px;}
.y3b{bottom:651.450458px;}
.y2f{bottom:654.447453px;}
.y10a{bottom:655.950450px;}
.y13c{bottom:656.247450px;}
.y174{bottom:660.747443px;}
.y87{bottom:663.748938px;}
.y6f{bottom:666.448934px;}
.yb5{bottom:670.350427px;}
.y9e{bottom:671.250426px;}
.yca{bottom:673.648922px;}
.y145{bottom:674.247421px;}
.y119{bottom:675.448919px;}
.y19{bottom:676.695417px;}
.y3a{bottom:682.378908px;}
.y55{bottom:687.193900px;}
.y15d{bottom:689.578897px;}
.y128{bottom:691.977393px;}
.yed{bottom:692.278892px;}
.y173{bottom:696.180386px;}
.y109{bottom:697.377384px;}
.y2e{bottom:698.880382px;}
.y86{bottom:700.095380px;}
.y13b{bottom:703.978874px;}
.yc9{bottom:705.477371px;}
.y144{bottom:706.377370px;}
.y118{bottom:706.993869px;}
.y6e{bottom:707.880367px;}
.yb4{bottom:711.480362px;}
.y9d{bottom:712.695360px;}
.y18{bottom:718.077351px;}
.y15c{bottom:722.878843px;}
.y54{bottom:728.580334px;}
.y172{bottom:729.480333px;}
.y127{bottom:733.377327px;}
.yec{bottom:733.692326px;}
.y85{bottom:736.378822px;}
.yc8{bottom:736.995321px;}
.y108{bottom:738.777318px;}
.y6d{bottom:749.280301px;}
.y13a{bottom:751.980297px;}
.yb3{bottom:752.880295px;}
.y9c{bottom:754.095293px;}
.y15b{bottom:754.693792px;}
.y17{bottom:759.477285px;}
.y171{bottom:762.780280px;}
.yc7{bottom:768.778770px;}
.y53{bottom:769.980268px;}
.y2d{bottom:771.478766px;}
.y4{bottom:772.380000px;}
.y84{bottom:772.693764px;}
.y126{bottom:774.795260px;}
.yeb{bottom:775.078760px;}
.y107{bottom:780.195252px;}
.y6c{bottom:790.693735px;}
.yb2{bottom:794.280229px;}
.y9b{bottom:795.477227px;}
.y15a{bottom:797.578724px;}
.y139{bottom:799.693720px;}
.yc6{bottom:800.580219px;}
.y16{bottom:800.877219px;}
.y170{bottom:805.692211px;}
.y83{bottom:808.693706px;}
.y52{bottom:811.380202px;}
.y125{bottom:816.195194px;}
.yea{bottom:816.492194px;}
.y106{bottom:821.577185px;}
.y2c{bottom:822.477184px;}
.y6b{bottom:832.080169px;}
.yc5{bottom:832.377168px;}
.yb1{bottom:835.693663px;}
.y9a{bottom:836.877161px;}
.y15{bottom:842.295152px;}
.y159{bottom:844.378649px;}
.y82{bottom:844.977148px;}
.y16f{bottom:847.123645px;}
.y138{bottom:847.722144px;}
.y2b{bottom:848.325143px;}
.y51{bottom:852.825135px;}
.y124{bottom:857.622128px;}
.ye9{bottom:857.923627px;}
.y105{bottom:863.022119px;}
.yc4{bottom:864.223617px;}
.y117{bottom:867.823611px;}
.y6a{bottom:873.525102px;}
.y158{bottom:876.225098px;}
.yb0{bottom:877.125097px;}
.y99{bottom:878.322095px;}
.y81{bottom:881.323590px;}
.y14{bottom:883.722086px;}
.y16e{bottom:893.923570px;}
.y50{bottom:894.225069px;}
.y2a{bottom:895.723567px;}
.ye8{bottom:899.323561px;}
.y104{bottom:904.422053px;}
.y157{bottom:909.525045px;}
.y69{bottom:914.925036px;}
.y80{bottom:917.625032px;}
.yaf{bottom:918.525030px;}
.y116{bottom:919.425029px;}
.y98{bottom:919.722028px;}
.y13{bottom:925.122020px;}
.y16d{bottom:925.725019px;}
.yc3{bottom:927.525016px;}
.y4f{bottom:935.625003px;}
.ye7{bottom:940.723495px;}
.y156{bottom:941.321994px;}
.y137{bottom:943.423491px;}
.y103{bottom:945.821987px;}
.y7f{bottom:953.624974px;}
.y68{bottom:956.324970px;}
.y16c{bottom:959.024966px;}
.yc2{bottom:959.321965px;}
.yae{bottom:959.924964px;}
.y97{bottom:961.121962px;}
.y12{bottom:966.521954px;}
.y115{bottom:971.323446px;}
.y155{bottom:974.621941px;}
.y4e{bottom:977.024937px;}
.y29{bottom:980.921931px;}
.ye6{bottom:982.123429px;}
.y102{bottom:987.221920px;}
.y7e{bottom:989.921916px;}
.y16b{bottom:990.821915px;}
.yc1{bottom:991.123414px;}
.y136{bottom:991.424914px;}
.y67{bottom:997.724904px;}
.yad{bottom:1001.324898px;}
.y96{bottom:1002.521896px;}
.y154{bottom:1006.423390px;}
.y11{bottom:1007.921887px;}
.ydc{bottom:1018.451870px;}
.yc0{bottom:1022.668364px;}
.y4d{bottom:1022.951863px;}
.ye5{bottom:1023.568362px;}
.y16a{bottom:1024.153361px;}
.y7d{bottom:1026.254858px;}
.y101{bottom:1028.666854px;}
.y178{bottom:1033.454846px;}
.y66{bottom:1034.354845px;}
.yfb{bottom:1039.169837px;}
.yac{bottom:1045.753327px;}
.y95{bottom:1046.666825px;}
.y10{bottom:1049.353321px;}
.ybf{bottom:1054.451813px;}
.y169{bottom:1057.453308px;}
.ydb{bottom:1059.869804px;}
.y7c{bottom:1062.569800px;}
.ye4{bottom:1064.954796px;}
.y100{bottom:1070.066788px;}
.y4c{bottom:1074.868280px;}
.yfa{bottom:1080.569771px;}
.y94{bottom:1084.453265px;}
.y177{bottom:1085.069764px;}
.y135{bottom:1087.153261px;}
.ybe{bottom:1088.953258px;}
.y168{bottom:1089.254757px;}
.y65{bottom:1090.154756px;}
.y3{bottom:1090.753255px;}
.yda{bottom:1091.666753px;}
.ye3{bottom:1096.751745px;}
.y7b{bottom:1098.569742px;}
.yff{bottom:1101.868237px;}
.y4b{bottom:1126.451698px;}
.ye2{bottom:1129.453193px;}
.y2{bottom:1132.166689px;}
.y64{bottom:1134.866684px;}
.y1{bottom:1186.198102px;}
.h12{height:2.700000px;}
.h11{height:7.998034px;}
.h10{height:31.992136px;}
.hf{height:39.990170px;}
.he{height:43.828055px;}
.h1d{height:43.989187px;}
.h16{height:47.988204px;}
.h18{height:52.417885px;}
.h17{height:52.593666px;}
.h1a{height:55.986239px;}
.h1b{height:61.154199px;}
.h2{height:63.984273px;}
.hb{height:69.890513px;}
.h20{height:70.124888px;}
.ha{height:72.601920px;}
.h13{height:75.304567px;}
.h1f{height:75.837769px;}
.h14{height:79.980341px;}
.h19{height:86.062362px;}
.h9{height:86.308456px;}
.h1c{height:86.671736px;}
.h1e{height:97.505703px;}
.h15{height:108.339670px;}
.h7{height:111.972477px;}
.h6{height:122.718554px;}
.hd{height:151.675539px;}
.h5{height:160.397299px;}
.h8{height:168.330960px;}
.h4{height:300.770027px;}
.h3{height:358.875360px;}
.h21{height:403.005600px;}
.hc{height:412.093286px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w5{width:2.399062px;}
.w4{width:562.651920px;}
.w2{width:662.596560px;}
.w3{width:750.225600px;}
.w6{width:828.871200px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.xf{left:-1.763573px;}
.x0{left:0.000000px;}
.x8{left:10.799835px;}
.x5{left:14.399716px;}
.x57{left:22.500000px;}
.x58{left:47.736488px;}
.x7{left:69.637536px;}
.x5b{left:79.236437px;}
.x2{left:88.236720px;}
.x1{left:108.036427px;}
.xe{left:109.800000px;}
.x4{left:117.939450px;}
.x5c{left:120.037272px;}
.x24{left:122.737304px;}
.x2c{left:123.938202px;}
.x3f{left:126.337298px;}
.x13{left:131.138190px;}
.x52{left:135.036384px;}
.x25{left:136.237282px;}
.x3e{left:147.636364px;}
.x14{left:155.731251px;}
.xd{left:160.528243px;}
.x53{left:162.031241px;}
.x23{left:164.731236px;}
.x46{left:169.528229px;}
.x5a{left:174.073185px;}
.x9{left:179.474400px;}
.x3{left:182.739346px;}
.x15{left:183.973206px;}
.x3d{left:198.976182px;}
.x1a{left:210.676163px;}
.x16{left:217.273152px;}
.x41{left:219.676149px;}
.x6{left:222.667783px;}
.x55{left:226.574637px;}
.x4b{left:229.274633px;}
.x19{left:233.473126px;}
.x50{left:235.876123px;}
.x17{left:237.973119px;}
.x47{left:239.773116px;}
.xb{left:242.176113px;}
.x28{left:247.576104px;}
.x44{left:250.276100px;}
.x30{left:252.076097px;}
.x4e{left:257.773088px;}
.x1b{left:259.874584px;}
.x51{left:262.273080px;}
.xc{left:263.474578px;}
.x33{left:264.676077px;}
.x48{left:265.873075px;}
.x36{left:270.076068px;}
.x59{left:273.419527px;}
.x4d{left:279.076053px;}
.x45{left:280.574551px;}
.x12{left:284.476045px;}
.x40{left:287.774540px;}
.x18{left:295.919527px;}
.x4a{left:298.318023px;}
.x1c{left:302.206016px;}
.x43{left:304.906012px;}
.x10{left:309.118005px;}
.x26{left:310.621003px;}
.x5d{left:317.217956px;}
.x39{left:318.405991px;}
.x1e{left:319.904488px;}
.x34{left:324.120981px;}
.x1d{left:326.217978px;}
.x42{left:330.717971px;}
.x54{left:335.204464px;}
.x49{left:343.317951px;}
.x4c{left:345.117948px;}
.x37{left:347.219444px;}
.x11{left:353.217935px;}
.x3b{left:359.220925px;}
.x56{left:389.820876px;}
.x4f{left:396.719365px;}
.x22{left:434.249305px;}
.x21{left:440.850795px;}
.xa{left:446.547786px;}
.x2d{left:454.949272px;}
.x27{left:466.649253px;}
.x29{left:475.050740px;}
.x38{left:477.147737px;}
.x31{left:487.047721px;}
.x3a{left:491.547714px;}
.x2f{left:493.050711px;}
.x2e{left:502.649196px;}
.x3c{left:506.550690px;}
.x2a{left:515.550675px;}
.x32{left:517.647672px;}
.x35{left:522.147665px;}
.x1f{left:580.980570px;}
.x20{left:600.780539px;}
.x2b{left:660.225444px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-5.866657pt;}
.ls16{letter-spacing:-0.511999pt;}
.ls6{letter-spacing:-0.426666pt;}
.lsf{letter-spacing:-0.383999pt;}
.ls7{letter-spacing:-0.319999pt;}
.ls19{letter-spacing:-0.256000pt;}
.ls27{letter-spacing:-0.213333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.006400pt;}
.lsa{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.085333pt;}
.ls3{letter-spacing:0.213333pt;}
.ls22{letter-spacing:0.216533pt;}
.ls1b{letter-spacing:0.256000pt;}
.ls26{letter-spacing:0.319999pt;}
.ls9{letter-spacing:0.351999pt;}
.ls0{letter-spacing:0.378933pt;}
.ls21{letter-spacing:0.383999pt;}
.ls1{letter-spacing:0.421614pt;}
.ls1c{letter-spacing:0.511999pt;}
.ls12{letter-spacing:0.570666pt;}
.lsb{letter-spacing:0.636014pt;}
.ls4{letter-spacing:0.639999pt;}
.ls10{letter-spacing:0.682666pt;}
.lsd{letter-spacing:0.725332pt;}
.ls1e{letter-spacing:0.757332pt;}
.ls20{letter-spacing:0.805332pt;}
.ls1a{letter-spacing:0.810665pt;}
.ls18{letter-spacing:0.821332pt;}
.ls1f{letter-spacing:0.869332pt;}
.ls1d{letter-spacing:1.114665pt;}
.ls13{letter-spacing:1.237331pt;}
.ls8{letter-spacing:1.407998pt;}
.ls11{letter-spacing:1.791997pt;}
.lsc{letter-spacing:2.159997pt;}
.lse{letter-spacing:2.479996pt;}
.ls14{letter-spacing:13.605312pt;}
.ls23{letter-spacing:32.789281pt;}
.ls25{letter-spacing:38.119406pt;}
.ls17{letter-spacing:71.205219pt;}
.ws6{word-spacing:-139.407510pt;}
.ws0{word-spacing:-101.747837pt;}
.wsd{word-spacing:-29.653286pt;}
.wse{word-spacing:-23.722629pt;}
.ws12{word-spacing:-23.466629pt;}
.ws11{word-spacing:-23.210630pt;}
.ws13{word-spacing:-21.653299pt;}
.ws4{word-spacing:-21.546632pt;}
.ws3{word-spacing:-21.333299pt;}
.ws14{word-spacing:-21.119966pt;}
.ws2{word-spacing:-21.013300pt;}
.ws1{word-spacing:-20.906633pt;}
.wsf{word-spacing:-20.757300pt;}
.wsb{word-spacing:-19.583969pt;}
.wsc{word-spacing:-18.517304pt;}
.ws9{word-spacing:-18.474637pt;}
.wsa{word-spacing:-18.427986pt;}
.ws10{word-spacing:-17.855971pt;}
.ws7{word-spacing:-17.791972pt;}
.ws8{word-spacing:-17.407972pt;}
.ws5{word-spacing:0.000000pt;}
._10{margin-left:-21.868525pt;}
._f{margin-left:-19.693544pt;}
._e{margin-left:-9.468657pt;}
._12{margin-left:-8.402422pt;}
._d{margin-left:-6.835036pt;}
._44{margin-left:-5.744649pt;}
._c{margin-left:-4.791172pt;}
._2{margin-left:-3.465131pt;}
._4{margin-left:-1.996943pt;}
._1{margin-left:-0.957998pt;}
._3{width:0.951472pt;}
._8{width:2.370551pt;}
._9{width:3.275857pt;}
._a{width:4.725591pt;}
._b{width:5.658207pt;}
._46{width:6.736043pt;}
._45{width:7.642748pt;}
._7{width:8.716625pt;}
._5{width:9.703349pt;}
._2e{width:10.798295pt;}
._6{width:11.819919pt;}
._25{width:13.471448pt;}
._26{width:14.992206pt;}
._2a{width:16.727001pt;}
._5d{width:17.676065pt;}
._1f{width:18.785927pt;}
._18{width:20.246834pt;}
._2d{width:21.591272pt;}
._47{width:22.754486pt;}
._43{width:24.896099pt;}
._39{width:26.040784pt;}
._21{width:27.821935pt;}
._22{width:28.889121pt;}
._1e{width:30.034982pt;}
._1d{width:31.584547pt;}
._3a{width:32.852047pt;}
._17{width:34.134569pt;}
._54{width:35.157603pt;}
._4c{width:36.096698pt;}
._6e{width:37.096020pt;}
._6f{width:38.223256pt;}
._50{width:39.671931pt;}
._4f{width:41.394717pt;}
._77{width:42.723817pt;}
._72{width:43.765231pt;}
._3f{width:45.615927pt;}
._2f{width:47.026025pt;}
._31{width:48.425137pt;}
._63{width:49.376981pt;}
._5b{width:50.586252pt;}
._5c{width:51.772902pt;}
._3c{width:53.317904pt;}
._1b{width:54.869410pt;}
._48{width:56.911007pt;}
._34{width:58.110537pt;}
._40{width:59.983862pt;}
._7c{width:61.185365pt;}
._16{width:62.114459pt;}
._75{width:63.594528pt;}
._6a{width:66.984594pt;}
._61{width:68.179265pt;}
._13{width:69.462513pt;}
._15{width:70.497219pt;}
._69{width:72.190519pt;}
._30{width:73.467225pt;}
._1a{width:75.513187pt;}
._20{width:77.115844pt;}
._37{width:78.350661pt;}
._23{width:80.128206pt;}
._1c{width:81.788135pt;}
._14{width:82.850486pt;}
._7b{width:84.055267pt;}
._76{width:85.155594pt;}
._57{width:86.246632pt;}
._56{width:87.311860pt;}
._62{width:92.185907pt;}
._5f{width:93.565495pt;}
._60{width:94.976971pt;}
._2c{width:96.002592pt;}
._28{width:97.272794pt;}
._29{width:99.316124pt;}
._19{width:100.523190pt;}
._3b{width:102.154851pt;}
._49{width:104.870724pt;}
._41{width:106.766436pt;}
._42{width:107.747487pt;}
._71{width:110.666490pt;}
._7d{width:111.624263pt;}
._6d{width:114.717896pt;}
._51{width:116.569646pt;}
._67{width:118.200858pt;}
._7e{width:121.426140pt;}
._84{width:122.694070pt;}
._35{width:124.069368pt;}
._24{width:131.511423pt;}
._7f{width:133.219732pt;}
._85{width:135.004492pt;}
._5e{width:136.728400pt;}
._55{width:138.425572pt;}
._68{width:140.795546pt;}
._4a{width:145.150931pt;}
._4b{width:146.430900pt;}
._7a{width:152.255608pt;}
._59{width:153.517588pt;}
._58{width:154.559753pt;}
._78{width:156.588097pt;}
._3e{width:157.765335pt;}
._3d{width:158.806347pt;}
._4d{width:168.809216pt;}
._87{width:172.727565pt;}
._52{width:174.059486pt;}
._53{width:175.359484pt;}
._36{width:189.444622pt;}
._33{width:194.736957pt;}
._2b{width:198.677015pt;}
._66{width:200.112623pt;}
._27{width:211.636797pt;}
._74{width:215.463299pt;}
._81{width:230.741918pt;}
._79{width:233.982105pt;}
._65{width:241.488772pt;}
._73{width:245.263265pt;}
._4e{width:250.039110pt;}
._5a{width:266.406489pt;}
._6c{width:270.077278pt;}
._70{width:277.669106pt;}
._38{width:280.226679pt;}
._64{width:300.638366pt;}
._82{width:337.814086pt;}
._83{width:341.582357pt;}
._32{width:364.972483pt;}
._6b{width:394.931637pt;}
._80{width:459.352919pt;}
._0{width:744.578009pt;}
._11{width:1505.376791pt;}
._86{width:1506.384790pt;}
.fsc{font-size:10.666650pt;}
.fsb{font-size:42.666598pt;}
.fsa{font-size:53.333248pt;}
.fse{font-size:58.666573pt;}
.fs8{font-size:63.999898pt;}
.fsd{font-size:74.666547pt;}
.fs7{font-size:77.866542pt;}
.fs0{font-size:85.333197pt;}
.fs5{font-size:95.999846pt;}
.fs6{font-size:106.666496pt;}
.fs4{font-size:149.333094pt;}
.fs3{font-size:157.409365pt;}
.fs2{font-size:336.132796pt;}
.fs1{font-size:365.999414pt;}
.fs9{font-size:501.465864pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:0.064029pt;}
.y186{bottom:7.207138pt;}
.yd{bottom:11.999232pt;}
.y8{bottom:18.946871pt;}
.yf{bottom:29.598693pt;}
.y185{bottom:39.767086pt;}
.yc{bottom:49.371173pt;}
.y28{bottom:52.299916pt;}
.y7{bottom:60.278805pt;}
.y17a{bottom:66.967360pt;}
.y184{bottom:72.299034pt;}
.y27{bottom:76.567344pt;}
.yb{bottom:86.971112pt;}
.y179{bottom:91.499854pt;}
.y183{bottom:105.098982pt;}
.y153{bottom:112.299820pt;}
.yfe{bottom:113.899818pt;}
.y39{bottom:117.899811pt;}
.yab{bottom:118.167278pt;}
.y6{bottom:120.570709pt;}
.ybd{bottom:122.967270pt;}
.ya{bottom:124.307053pt;}
.y63{bottom:125.367266pt;}
.y17b{bottom:131.232640pt;}
.y26{bottom:132.299788pt;}
.y7a{bottom:132.832321pt;}
.yf9{bottom:136.827781pt;}
.y4a{bottom:137.359780pt;}
.y182{bottom:137.634930pt;}
.y152{bottom:149.107761pt;}
.yfd{bottom:150.731759pt;}
.yaa{bottom:154.999752pt;}
.y62{bottom:157.667748pt;}
.y38{bottom:158.999746pt;}
.ybc{bottom:159.799744pt;}
.y134{bottom:160.867743pt;}
.y25{bottom:164.867736pt;}
.y93{bottom:166.999733pt;}
.ye1{bottom:169.131729pt;}
.y181{bottom:170.206878pt;}
.yf8{bottom:173.667722pt;}
.yfc{bottom:187.531700pt;}
.y61{bottom:189.931696pt;}
.y151{bottom:190.731695pt;}
.ya9{bottom:191.799693pt;}
.y167{bottom:192.067693pt;}
.y49{bottom:192.599692pt;}
.y24{bottom:196.599685pt;}
.y92{bottom:198.999682pt;}
.yd9{bottom:199.799680pt;}
.y133{bottom:200.867679pt;}
.y180{bottom:202.738826pt;}
.y37{bottom:204.867672pt;}
.ye0{bottom:205.931671pt;}
.yf7{bottom:210.467663pt;}
.y114{bottom:214.999656pt;}
.y48{bottom:220.067648pt;}
.y150{bottom:220.331647pt;}
.y166{bottom:220.599647pt;}
.y60{bottom:222.199644pt;}
.yd8{bottom:222.731644pt;}
.y79{bottom:224.331641pt;}
.ya8{bottom:228.599634pt;}
.y123{bottom:232.599628pt;}
.y5{bottom:233.398528pt;}
.y23{bottom:233.399627pt;}
.y17f{bottom:235.274774pt;}
.y132{bottom:237.667620pt;}
.ydf{bottom:242.731612pt;}
.yd7{bottom:246.731605pt;}
.yf6{bottom:247.267604pt;}
.y47{bottom:247.799604pt;}
.y14f{bottom:249.931600pt;}
.y165{bottom:250.199600pt;}
.y36{bottom:250.999598pt;}
.y113{bottom:251.799597pt;}
.y5f{bottom:254.199593pt;}
.y78{bottom:261.131582pt;}
.ya7{bottom:265.399575pt;}
.y17e{bottom:267.794722pt;}
.y9{bottom:267.800320pt;}
.y91{bottom:268.067571pt;}
.y122{bottom:269.399569pt;}
.y22{bottom:270.199568pt;}
.yd6{bottom:272.067565pt;}
.y131{bottom:274.467561pt;}
.y46{bottom:275.267560pt;}
.yde{bottom:279.531553pt;}
.y14e{bottom:279.799552pt;}
.y34{bottom:281.867520pt;}
.yf5{bottom:284.067545pt;}
.y5e{bottom:286.467542pt;}
.y112{bottom:288.599538pt;}
.yd5{bottom:297.399524pt;}
.y77{bottom:297.931523pt;}
.y17d{bottom:300.326670pt;}
.y90{bottom:300.359519pt;}
.ya6{bottom:302.227516pt;}
.y45{bottom:303.027515pt;}
.y121{bottom:306.227510pt;}
.y21{bottom:307.039509pt;}
.y164{bottom:307.839507pt;}
.y14d{bottom:309.439505pt;}
.y130{bottom:311.291502pt;}
.ydd{bottom:316.371494pt;}
.y5d{bottom:318.771490pt;}
.yf4{bottom:320.891487pt;}
.y143{bottom:321.159486pt;}
.yd4{bottom:322.771484pt;}
.y111{bottom:325.439479pt;}
.y44{bottom:330.491471pt;}
.y8f{bottom:332.359468pt;}
.y17c{bottom:332.898617pt;}
.y76{bottom:334.771464pt;}
.y163{bottom:336.091462pt;}
.ya5{bottom:339.027458pt;}
.y20{bottom:343.839450pt;}
.yd3{bottom:344.891448pt;}
.y14c{bottom:347.559444pt;}
.y120{bottom:347.827443pt;}
.y12f{bottom:352.891435pt;}
.y5c{bottom:353.171435pt;}
.yf3{bottom:357.707428pt;}
.y142{bottom:357.959427pt;}
.y43{bottom:358.227427pt;}
.y110{bottom:362.227420pt;}
.y8e{bottom:364.627417pt;}
.y75{bottom:371.559406pt;}
.yd2{bottom:372.891403pt;}
.y162{bottom:374.227401pt;}
.ya4{bottom:375.839399pt;}
.y11f{bottom:376.107398pt;}
.y33{bottom:377.691396pt;}
.y1f{bottom:380.627391pt;}
.y14b{bottom:384.359385pt;}
.y42{bottom:385.691383pt;}
.y12e{bottom:389.691376pt;}
.y5b{bottom:389.959376pt;}
.yf2{bottom:394.507369pt;}
.y141{bottom:394.759368pt;}
.y8d{bottom:396.891365pt;}
.y10f{bottom:399.027362pt;}
.yd1{bottom:401.171358pt;}
.ybb{bottom:404.359353pt;}
.y74{bottom:408.359347pt;}
.y32{bottom:409.691344pt;}
.ya3{bottom:412.627340pt;}
.y41{bottom:413.439338pt;}
.y161{bottom:416.107334pt;}
.y1e{bottom:417.439332pt;}
.y14a{bottom:425.959318pt;}
.y12d{bottom:426.507318pt;}
.y5a{bottom:426.771317pt;}
.y8c{bottom:429.171313pt;}
.yd0{bottom:429.439313pt;}
.yf1{bottom:431.291310pt;}
.y140{bottom:431.559310pt;}
.y11e{bottom:432.627308pt;}
.y10e{bottom:435.839303pt;}
.y40{bottom:440.891295pt;}
.yba{bottom:441.171294pt;}
.y73{bottom:445.171288pt;}
.y160{bottom:445.691287pt;}
.ya2{bottom:449.427281pt;}
.y1d{bottom:454.267273pt;}
.ycf{bottom:457.731268pt;}
.y11d{bottom:460.667263pt;}
.y8b{bottom:461.199262pt;}
.y12c{bottom:463.331259pt;}
.y59{bottom:463.599258pt;}
.yf0{bottom:468.131251pt;}
.y3f{bottom:468.667250pt;}
.y10d{bottom:472.667244pt;}
.y13f{bottom:473.199243pt;}
.y31{bottom:473.999242pt;}
.y15f{bottom:475.331239pt;}
.yb9{bottom:477.999235pt;}
.y72{bottom:481.999229pt;}
.y149{bottom:483.599226pt;}
.yce{bottom:485.999222pt;}
.ya1{bottom:486.267222pt;}
.ye{bottom:487.332480pt;}
.y1c{bottom:491.067214pt;}
.y8a{bottom:493.467210pt;}
.y3e{bottom:496.131206pt;}
.y12b{bottom:500.131200pt;}
.y58{bottom:500.399199pt;}
.y13e{bottom:501.199198pt;}
.y11c{bottom:502.267196pt;}
.y15e{bottom:503.599194pt;}
.yef{bottom:504.931192pt;}
.y10c{bottom:509.467185pt;}
.y148{bottom:512.131181pt;}
.ycd{bottom:513.999178pt;}
.yb8{bottom:514.799176pt;}
.y71{bottom:518.799170pt;}
.y176{bottom:522.267164pt;}
.ya0{bottom:523.067163pt;}
.y3d{bottom:523.867162pt;}
.y89{bottom:525.731159pt;}
.y1b{bottom:527.867155pt;}
.y11b{bottom:530.531151pt;}
.y12a{bottom:536.931141pt;}
.y57{bottom:537.199140pt;}
.y30{bottom:538.531138pt;}
.y13d{bottom:540.667135pt;}
.y147{bottom:541.467134pt;}
.yb7{bottom:541.731133pt;}
.ycc{bottom:542.267132pt;}
.y10b{bottom:546.267126pt;}
.y3c{bottom:551.331118pt;}
.y70{bottom:555.599111pt;}
.y88{bottom:557.999107pt;}
.y11a{bottom:558.799106pt;}
.y175{bottom:559.067105pt;}
.y9f{bottom:559.867104pt;}
.y1a{bottom:564.667097pt;}
.yb6{bottom:568.667090pt;}
.y146{bottom:569.999088pt;}
.ycb{bottom:570.531087pt;}
.y56{bottom:573.999082pt;}
.y129{bottom:578.267075pt;}
.yee{bottom:578.531074pt;}
.y3b{bottom:579.067073pt;}
.y2f{bottom:581.731069pt;}
.y10a{bottom:583.067067pt;}
.y13c{bottom:583.331067pt;}
.y174{bottom:587.331060pt;}
.y87{bottom:589.999056pt;}
.y6f{bottom:592.399052pt;}
.yb5{bottom:595.867047pt;}
.y9e{bottom:596.667045pt;}
.yca{bottom:598.799042pt;}
.y145{bottom:599.331041pt;}
.y119{bottom:600.399039pt;}
.y19{bottom:601.507038pt;}
.y3a{bottom:606.559030pt;}
.y55{bottom:610.839023pt;}
.y15d{bottom:612.959019pt;}
.y128{bottom:615.091016pt;}
.yed{bottom:615.359015pt;}
.y173{bottom:618.827010pt;}
.y109{bottom:619.891008pt;}
.y2e{bottom:621.227006pt;}
.y86{bottom:622.307004pt;}
.y13b{bottom:625.758999pt;}
.yc9{bottom:627.090997pt;}
.y144{bottom:627.890995pt;}
.y118{bottom:628.438994pt;}
.y6e{bottom:629.226993pt;}
.yb4{bottom:632.426988pt;}
.y9d{bottom:633.506986pt;}
.y18{bottom:638.290979pt;}
.y15c{bottom:642.558972pt;}
.y54{bottom:647.626964pt;}
.y172{bottom:648.426963pt;}
.y127{bottom:651.890957pt;}
.yec{bottom:652.170957pt;}
.y85{bottom:654.558953pt;}
.yc8{bottom:655.106952pt;}
.y108{bottom:656.690949pt;}
.y6d{bottom:666.026934pt;}
.y13a{bottom:668.426931pt;}
.yb3{bottom:669.226929pt;}
.y9c{bottom:670.306928pt;}
.y15b{bottom:670.838927pt;}
.y17{bottom:675.090920pt;}
.y171{bottom:678.026915pt;}
.yc7{bottom:683.358907pt;}
.y53{bottom:684.426905pt;}
.y2d{bottom:685.758903pt;}
.y4{bottom:686.560000pt;}
.y84{bottom:686.838901pt;}
.y126{bottom:688.706898pt;}
.yeb{bottom:688.958898pt;}
.y107{bottom:693.506890pt;}
.y6c{bottom:702.838875pt;}
.yb2{bottom:706.026870pt;}
.y9b{bottom:707.090869pt;}
.y15a{bottom:708.958866pt;}
.y139{bottom:710.838863pt;}
.yc6{bottom:711.626861pt;}
.y16{bottom:711.890861pt;}
.y170{bottom:716.170854pt;}
.y83{bottom:718.838850pt;}
.y52{bottom:721.226846pt;}
.y125{bottom:725.506839pt;}
.yea{bottom:725.770839pt;}
.y106{bottom:730.290832pt;}
.y2c{bottom:731.090830pt;}
.y6b{bottom:739.626817pt;}
.yc5{bottom:739.890816pt;}
.yb1{bottom:742.838811pt;}
.y9a{bottom:743.890810pt;}
.y15{bottom:748.706802pt;}
.y159{bottom:750.558799pt;}
.y82{bottom:751.090798pt;}
.y16f{bottom:752.998795pt;}
.y138{bottom:753.530794pt;}
.y2b{bottom:754.066793pt;}
.y51{bottom:758.066787pt;}
.y124{bottom:762.330780pt;}
.ye9{bottom:762.598780pt;}
.y105{bottom:767.130773pt;}
.yc4{bottom:768.198771pt;}
.y117{bottom:771.398766pt;}
.y6a{bottom:776.466758pt;}
.y158{bottom:778.866754pt;}
.yb0{bottom:779.666753pt;}
.y99{bottom:780.730751pt;}
.y81{bottom:783.398747pt;}
.y14{bottom:785.530743pt;}
.y16e{bottom:794.598729pt;}
.y50{bottom:794.866728pt;}
.y2a{bottom:796.198726pt;}
.ye8{bottom:799.398721pt;}
.y104{bottom:803.930714pt;}
.y157{bottom:808.466706pt;}
.y69{bottom:813.266699pt;}
.y80{bottom:815.666695pt;}
.yaf{bottom:816.466694pt;}
.y116{bottom:817.266692pt;}
.y98{bottom:817.530692pt;}
.y13{bottom:822.330684pt;}
.y16d{bottom:822.866683pt;}
.yc3{bottom:824.466681pt;}
.y4f{bottom:831.666669pt;}
.ye7{bottom:836.198662pt;}
.y156{bottom:836.730661pt;}
.y137{bottom:838.598658pt;}
.y103{bottom:840.730655pt;}
.y7f{bottom:847.666644pt;}
.y68{bottom:850.066640pt;}
.y16c{bottom:852.466636pt;}
.yc2{bottom:852.730636pt;}
.yae{bottom:853.266635pt;}
.y97{bottom:854.330633pt;}
.y12{bottom:859.130625pt;}
.y115{bottom:863.398619pt;}
.y155{bottom:866.330614pt;}
.y4e{bottom:868.466610pt;}
.y29{bottom:871.930605pt;}
.ye6{bottom:872.998603pt;}
.y102{bottom:877.530596pt;}
.y7e{bottom:879.930592pt;}
.y16b{bottom:880.730591pt;}
.yc1{bottom:880.998590pt;}
.y136{bottom:881.266590pt;}
.y67{bottom:886.866581pt;}
.yad{bottom:890.066576pt;}
.y96{bottom:891.130574pt;}
.y154{bottom:894.598569pt;}
.y11{bottom:895.930567pt;}
.ydc{bottom:905.290552pt;}
.yc0{bottom:909.038546pt;}
.y4d{bottom:909.290545pt;}
.ye5{bottom:909.838544pt;}
.y16a{bottom:910.358543pt;}
.y7d{bottom:912.226540pt;}
.y101{bottom:914.370537pt;}
.y178{bottom:918.626530pt;}
.y66{bottom:919.426529pt;}
.yfb{bottom:923.706522pt;}
.yac{bottom:929.558513pt;}
.y95{bottom:930.370511pt;}
.y10{bottom:932.758508pt;}
.ybf{bottom:937.290500pt;}
.y169{bottom:939.958496pt;}
.ydb{bottom:942.106493pt;}
.y7c{bottom:944.506489pt;}
.ye4{bottom:946.626485pt;}
.y100{bottom:951.170478pt;}
.y4c{bottom:955.438471pt;}
.yfa{bottom:960.506463pt;}
.y94{bottom:963.958458pt;}
.y177{bottom:964.506457pt;}
.y135{bottom:966.358454pt;}
.ybe{bottom:967.958451pt;}
.y168{bottom:968.226451pt;}
.y65{bottom:969.026450pt;}
.y3{bottom:969.558449pt;}
.yda{bottom:970.370447pt;}
.ye3{bottom:974.890440pt;}
.y7b{bottom:976.506438pt;}
.yff{bottom:979.438433pt;}
.y4b{bottom:1001.290398pt;}
.ye2{bottom:1003.958394pt;}
.y2{bottom:1006.370390pt;}
.y64{bottom:1008.770386pt;}
.y1{bottom:1054.398313pt;}
.h12{height:2.400000pt;}
.h11{height:7.109364pt;}
.h10{height:28.437455pt;}
.hf{height:35.546818pt;}
.he{height:38.958271pt;}
.h1d{height:39.101500pt;}
.h16{height:42.656182pt;}
.h18{height:46.593675pt;}
.h17{height:46.749925pt;}
.h1a{height:49.765545pt;}
.h1b{height:54.359288pt;}
.h2{height:56.874909pt;}
.hb{height:62.124901pt;}
.h20{height:62.333234pt;}
.ha{height:64.535040pt;}
.h13{height:66.937393pt;}
.h1f{height:67.411350pt;}
.h14{height:71.093636pt;}
.h19{height:76.499878pt;}
.h9{height:76.718627pt;}
.h1c{height:77.041543pt;}
.h1e{height:86.671736pt;}
.h15{height:96.301929pt;}
.h7{height:99.531091pt;}
.h6{height:109.083159pt;}
.hd{height:134.822701pt;}
.h5{height:142.575377pt;}
.h8{height:149.627520pt;}
.h4{height:267.351135pt;}
.h3{height:319.000320pt;}
.h21{height:358.227200pt;}
.hc{height:366.305143pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w5{width:2.132499pt;}
.w4{width:500.135040pt;}
.w2{width:588.974720pt;}
.w3{width:666.867200pt;}
.w6{width:736.774400pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.xf{left:-1.567620pt;}
.x0{left:0.000000pt;}
.x8{left:9.599854pt;}
.x5{left:12.799747pt;}
.x57{left:20.000000pt;}
.x58{left:42.432433pt;}
.x7{left:61.900032pt;}
.x5b{left:70.432389pt;}
.x2{left:78.432640pt;}
.x1{left:96.032380pt;}
.xe{left:97.600000pt;}
.x4{left:104.835067pt;}
.x5c{left:106.699797pt;}
.x24{left:109.099825pt;}
.x2c{left:110.167290pt;}
.x3f{left:112.299820pt;}
.x13{left:116.567280pt;}
.x52{left:120.032341pt;}
.x25{left:121.099806pt;}
.x3e{left:131.232323pt;}
.x14{left:138.427779pt;}
.xd{left:142.691772pt;}
.x53{left:144.027770pt;}
.x23{left:146.427766pt;}
.x46{left:150.691759pt;}
.x5a{left:154.731720pt;}
.x9{left:159.532800pt;}
.x3{left:162.434975pt;}
.x15{left:163.531738pt;}
.x3d{left:176.867717pt;}
.x1a{left:187.267700pt;}
.x16{left:193.131691pt;}
.x41{left:195.267688pt;}
.x6{left:197.926918pt;}
.x55{left:201.399678pt;}
.x4b{left:203.799674pt;}
.x19{left:207.531668pt;}
.x50{left:209.667665pt;}
.x17{left:211.531662pt;}
.x47{left:213.131659pt;}
.xb{left:215.267656pt;}
.x28{left:220.067648pt;}
.x44{left:222.467644pt;}
.x30{left:224.067641pt;}
.x4e{left:229.131633pt;}
.x1b{left:230.999630pt;}
.x51{left:233.131627pt;}
.xc{left:234.199625pt;}
.x33{left:235.267624pt;}
.x48{left:236.331622pt;}
.x36{left:240.067616pt;}
.x59{left:243.039579pt;}
.x4d{left:248.067603pt;}
.x45{left:249.399601pt;}
.x12{left:252.867595pt;}
.x40{left:255.799591pt;}
.x18{left:263.039579pt;}
.x4a{left:265.171576pt;}
.x1c{left:268.627570pt;}
.x43{left:271.027566pt;}
.x10{left:274.771560pt;}
.x26{left:276.107558pt;}
.x5d{left:281.971517pt;}
.x39{left:283.027547pt;}
.x1e{left:284.359545pt;}
.x34{left:288.107539pt;}
.x1d{left:289.971536pt;}
.x42{left:293.971530pt;}
.x54{left:297.959523pt;}
.x49{left:305.171512pt;}
.x4c{left:306.771509pt;}
.x37{left:308.639506pt;}
.x11{left:313.971498pt;}
.x3b{left:319.307489pt;}
.x56{left:346.507446pt;}
.x4f{left:352.639436pt;}
.x22{left:385.999382pt;}
.x21{left:391.867373pt;}
.xa{left:396.931365pt;}
.x2d{left:404.399353pt;}
.x27{left:414.799336pt;}
.x29{left:422.267324pt;}
.x38{left:424.131321pt;}
.x31{left:432.931307pt;}
.x3a{left:436.931301pt;}
.x2f{left:438.267299pt;}
.x2e{left:446.799285pt;}
.x3c{left:450.267280pt;}
.x2a{left:458.267267pt;}
.x32{left:460.131264pt;}
.x35{left:464.131257pt;}
.x1f{left:516.427174pt;}
.x20{left:534.027146pt;}
.x2b{left:586.867061pt;}
}




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