
    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_9fb7a63a770d08e36b8903b9.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_06841a5cc23bbeea9667ade6.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4f535be6ee71edebdbd1dd2f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9b364cc18d2d93580a67e394.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_014c7e9aad8360bf67fa4078.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_e28ea8b608fba66ac762a553.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_ae581aaa5ed50dd5056085bc.woff')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_106789cabd5cd27041a3487e.woff')format("woff");}.ffa{font-family:ffa;line-height:0.958008;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_9fdea77f23b8c50b14cf3aeb.woff')format("woff");}.ffb{font-family:ffb;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_feb048b0e49ac6df91d63939.woff')format("woff");}.ffc{font-family:ffc;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c1646b4aa48693b8193493ba.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_5ef91dea9241b81a9648b1b1.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_1807c9f391ba9e7a9fa5a573.woff')format("woff");}.fff{font-family:fff;line-height:0.921387;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_dec29334a3efdcce228b5bd8.woff')format("woff");}.ff10{font-family:ff10;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_2bbd30eb945eda2353f06f99.woff')format("woff");}.ff11{font-family:ff11;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_7020ba6970244ab9e1e29634.woff')format("woff");}.ff12{font-family:ff12;line-height:0.934082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_a4587c82b3797c5fde47679a.woff')format("woff");}.ff13{font-family:ff13;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff14{font-family:ff14;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff15{font-family:ff15;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_4638587fac5b416e381617c1.woff')format("woff");}.ff16{font-family:ff16;line-height:0.738770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_51d7697c73b3f292a1678398.woff')format("woff");}.ff17{font-family:ff17;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;}
.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);}
.v5{vertical-align:-70.320000px;}
.v9{vertical-align:-55.200000px;}
.va{vertical-align:-30.780000px;}
.v4{vertical-align:-25.980000px;}
.v6{vertical-align:-24.180000px;}
.vb{vertical-align:-21.420000px;}
.v8{vertical-align:-20.400000px;}
.v2{vertical-align:-18.000000px;}
.v3{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:16.500000px;}
.v1{vertical-align:18.000000px;}
.vd{vertical-align:25.800000px;}
.v7{vertical-align:42.720000px;}
.lsf{letter-spacing:-2.724000px;}
.ls25{letter-spacing:-1.740000px;}
.ls12{letter-spacing:-1.596000px;}
.ls19{letter-spacing:-1.482000px;}
.ls10{letter-spacing:-0.792000px;}
.ls13{letter-spacing:-0.780000px;}
.lse{letter-spacing:-0.378000px;}
.ls1b{letter-spacing:-0.075000px;}
.lsd{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.018000px;}
.ls9{letter-spacing:0.069000px;}
.ls22{letter-spacing:0.075000px;}
.ls15{letter-spacing:0.090000px;}
.ls8{letter-spacing:0.099000px;}
.ls21{letter-spacing:0.138000px;}
.ls1a{letter-spacing:0.150000px;}
.lsb{letter-spacing:0.666000px;}
.ls11{letter-spacing:0.690000px;}
.ls1d{letter-spacing:0.900000px;}
.ls1{letter-spacing:1.416000px;}
.ls5{letter-spacing:1.476000px;}
.ls6{letter-spacing:1.536000px;}
.ls7{letter-spacing:1.842000px;}
.ls2{letter-spacing:1.854000px;}
.ls4{letter-spacing:1.966500px;}
.ls3{letter-spacing:2.146500px;}
.ls18{letter-spacing:2.164500px;}
.ls20{letter-spacing:2.178000px;}
.lsa{letter-spacing:2.250000px;}
.ls24{letter-spacing:2.328000px;}
.ls23{letter-spacing:2.430000px;}
.ls1f{letter-spacing:2.688000px;}
.ls17{letter-spacing:3.375000px;}
.ls0{letter-spacing:5.796000px;}
.ls14{letter-spacing:46.887000px;}
.ls1e{letter-spacing:55.737000px;}
.lsc{letter-spacing:55.887000px;}
.ls16{letter-spacing:64.887000px;}
.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;}
}
.ws4{word-spacing:-85.650000px;}
.ws9{word-spacing:-33.345000px;}
.ws19{word-spacing:-28.162500px;}
.ws10{word-spacing:-28.125000px;}
.ws16{word-spacing:-21.412500px;}
.ws1a{word-spacing:-21.375000px;}
.wse{word-spacing:-18.037500px;}
.wsf{word-spacing:-18.000000px;}
.ws8{word-spacing:-16.875000px;}
.wsc{word-spacing:-16.789500px;}
.ws3{word-spacing:-16.146000px;}
.ws2{word-spacing:-15.354000px;}
.ws6{word-spacing:-15.063000px;}
.ws7{word-spacing:-14.625000px;}
.ws12{word-spacing:-13.500000px;}
.wsa{word-spacing:-13.221000px;}
.wsd{word-spacing:-13.143000px;}
.ws21{word-spacing:-12.885000px;}
.ws1{word-spacing:-12.531000px;}
.ws0{word-spacing:-11.826000px;}
.ws5{word-spacing:-8.136000px;}
.wsb{word-spacing:0.000000px;}
.ws11{word-spacing:86.388600px;}
.ws13{word-spacing:90.482550px;}
.ws1d{word-spacing:123.765600px;}
.ws15{word-spacing:161.078550px;}
.ws14{word-spacing:161.700000px;}
.ws1b{word-spacing:199.527600px;}
.ws1c{word-spacing:200.244000px;}
.ws18{word-spacing:224.700000px;}
.ws17{word-spacing:224.880000px;}
.ws1f{word-spacing:263.244000px;}
.ws1e{word-spacing:263.329050px;}
.ws20{word-spacing:308.304000px;}
._28{margin-left:-1834.476000px;}
._1c{margin-left:-13.362000px;}
._21{margin-left:-12.162300px;}
._7{margin-left:-10.834650px;}
._6{margin-left:-9.458100px;}
._2d{margin-left:-7.217100px;}
._14{margin-left:-5.767500px;}
._a{margin-left:-4.212000px;}
._2{margin-left:-2.808000px;}
._1{margin-left:-1.242000px;}
._0{width:1.728000px;}
._3{width:3.294000px;}
._4{width:4.404000px;}
._9{width:6.120000px;}
._d{width:7.375500px;}
._8{width:9.033000px;}
._5{width:10.950000px;}
._c{width:12.853500px;}
._15{width:15.849000px;}
._b{width:17.319000px;}
._13{width:21.118500px;}
._12{width:22.293000px;}
._f{width:24.930000px;}
._10{width:26.100000px;}
._e{width:29.362500px;}
._11{width:30.648000px;}
._17{width:34.591500px;}
._16{width:39.555000px;}
._20{width:42.948000px;}
._1a{width:44.856000px;}
._19{width:46.716000px;}
._18{width:70.146000px;}
._30{width:74.995500px;}
._2f{width:79.722000px;}
._2e{width:80.910000px;}
._2c{width:93.688200px;}
._25{width:95.565450px;}
._26{width:107.655750px;}
._24{width:119.777400px;}
._1b{width:125.082000px;}
._1f{width:141.972000px;}
._23{width:162.768000px;}
._2b{width:179.148900px;}
._27{width:180.873000px;}
._22{width:199.818000px;}
._1e{width:222.840000px;}
._1d{width:226.560000px;}
._2a{width:256.128900px;}
._29{width:258.117150px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fcb{color:rgb(0,176,80);}
.fc9{color:rgb(64,64,64);}
.fc8{color:rgb(68,84,106);}
.fc7{color:rgb(255,255,255);}
.fc6{color:rgb(33,33,33);}
.fc1{color:rgb(0,0,0);}
.fcc{color:rgb(146,208,80);}
.fca{color:rgb(255,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:40.500000px;}
.fs3{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:58.500000px;}
.fs1{font-size:67.500000px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:72.150000px;}
.fsb{font-size:81.150000px;}
.fsc{font-size:85.500000px;}
.fs5{font-size:85.650000px;}
.fsf{font-size:94.500000px;}
.fse{font-size:108.000000px;}
.fsa{font-size:112.500000px;}
.fs9{font-size:112.650000px;}
.fs10{font-size:121.650000px;}
.fsd{font-size:126.150000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.375000px;}
.y50{bottom:3.405000px;}
.y1c{bottom:4.500000px;}
.y1e{bottom:11.250000px;}
.ye{bottom:11.280000px;}
.yc{bottom:13.500000px;}
.yf9{bottom:16.455000px;}
.yad{bottom:16.845000px;}
.y4{bottom:16.875000px;}
.y11f{bottom:16.920000px;}
.ycf{bottom:17.625000px;}
.y2{bottom:19.125000px;}
.yd9{bottom:19.155000px;}
.y144{bottom:20.100000px;}
.y4a{bottom:20.250000px;}
.y4f{bottom:20.280000px;}
.ye1{bottom:26.325000px;}
.y1b{bottom:28.125000px;}
.y4d{bottom:28.155000px;}
.yb{bottom:30.405000px;}
.y49{bottom:38.280000px;}
.y4e{bottom:39.420000px;}
.y146{bottom:40.650000px;}
.y4c{bottom:42.795000px;}
.y143{bottom:44.850000px;}
.y1a{bottom:45.045000px;}
.ya{bottom:46.155000px;}
.ye0{bottom:46.620000px;}
.y97{bottom:51.225000px;}
.yf6{bottom:53.325000px;}
.yaa{bottom:53.670000px;}
.y11c{bottom:53.775000px;}
.ycc{bottom:54.495000px;}
.y48{bottom:55.155000px;}
.y5{bottom:57.412500px;}
.y19{bottom:61.920000px;}
.y86{bottom:63.225000px;}
.y145{bottom:65.400000px;}
.y96{bottom:71.475000px;}
.y47{bottom:72.030000px;}
.y9{bottom:73.200000px;}
.yed{bottom:74.445000px;}
.ya1{bottom:74.775000px;}
.y113{bottom:74.895000px;}
.yc3{bottom:75.600000px;}
.y18{bottom:77.670000px;}
.y1{bottom:81.075000px;}
.y85{bottom:83.505000px;}
.y46{bottom:90.075000px;}
.y17{bottom:91.200000px;}
.y8{bottom:93.450000px;}
.yee{bottom:103.005000px;}
.y45{bottom:106.950000px;}
.y99{bottom:107.175000px;}
.y114{bottom:107.205000px;}
.y7{bottom:110.355000px;}
.ya2{bottom:111.255000px;}
.y16{bottom:111.450000px;}
.yd7{bottom:111.480000px;}
.yc4{bottom:112.050000px;}
.yd3{bottom:121.230000px;}
.y88{bottom:123.075000px;}
.y44{bottom:123.870000px;}
.y13f{bottom:126.112500px;}
.y149{bottom:126.255000px;}
.y15{bottom:127.245000px;}
.y98{bottom:127.455000px;}
.y59{bottom:129.487500px;}
.yef{bottom:131.580000px;}
.yd6{bottom:136.245000px;}
.y14{bottom:137.370000px;}
.y115{bottom:139.575000px;}
.y43{bottom:141.855000px;}
.ybe{bottom:141.862500px;}
.yd0{bottom:142.875000px;}
.y13e{bottom:142.987500px;}
.y87{bottom:143.325000px;}
.y95{bottom:143.925000px;}
.yd2{bottom:144.900000px;}
.y58{bottom:146.362500px;}
.ya3{bottom:147.720000px;}
.yc5{bottom:148.545000px;}
.y148{bottom:149.925000px;}
.y13{bottom:151.995000px;}
.y42{bottom:158.775000px;}
.yd5{bottom:159.900000px;}
.yf0{bottom:160.155000px;}
.y13d{bottom:161.025000px;}
.ye3{bottom:161.130000px;}
.ydf{bottom:164.130000px;}
.y94{bottom:164.205000px;}
.y57{bottom:164.400000px;}
.y30{bottom:166.650000px;}
.y83{bottom:168.900000px;}
.yd1{bottom:169.695000px;}
.y12{bottom:171.150000px;}
.y116{bottom:171.900000px;}
.y147{bottom:174.675000px;}
.y41{bottom:175.650000px;}
.y13c{bottom:177.900000px;}
.y56{bottom:181.275000px;}
.ye2{bottom:181.425000px;}
.y2f{bottom:182.400000px;}
.ya4{bottom:184.200000px;}
.yde{bottom:184.380000px;}
.yd4{bottom:184.695000px;}
.yc6{bottom:185.025000px;}
.y82{bottom:186.900000px;}
.yf1{bottom:188.745000px;}
.y40{bottom:193.650000px;}
.y13b{bottom:194.775000px;}
.y11{bottom:197.025000px;}
.y55{bottom:198.150000px;}
.y2e{bottom:200.445000px;}
.y117{bottom:204.225000px;}
.y81{bottom:204.945000px;}
.ye9{bottom:206.025000px;}
.y3f{bottom:210.570000px;}
.y13a{bottom:212.820000px;}
.y110{bottom:213.630000px;}
.y54{bottom:216.195000px;}
.y2d{bottom:217.320000px;}
.ya5{bottom:220.650000px;}
.yc7{bottom:221.475000px;}
.y10{bottom:221.820000px;}
.y80{bottom:222.945000px;}
.y9c{bottom:223.080000px;}
.y8b{bottom:224.025000px;}
.y3e{bottom:227.445000px;}
.y139{bottom:229.695000px;}
.yeb{bottom:230.625000px;}
.y53{bottom:233.070000px;}
.y2c{bottom:235.305000px;}
.y118{bottom:236.580000px;}
.y7f{bottom:239.820000px;}
.y3d{bottom:245.475000px;}
.yf2{bottom:245.925000px;}
.y138{bottom:246.600000px;}
.y112{bottom:249.225000px;}
.y52{bottom:249.975000px;}
.y2b{bottom:252.225000px;}
.ya6{bottom:257.130000px;}
.yc8{bottom:257.955000px;}
.y7e{bottom:258.975000px;}
.y9b{bottom:259.755000px;}
.y8a{bottom:260.700000px;}
.y3c{bottom:262.350000px;}
.y137{bottom:264.600000px;}
.y51{bottom:267.975000px;}
.y119{bottom:268.920000px;}
.y2a{bottom:270.225000px;}
.yd8{bottom:271.320000px;}
.y111{bottom:271.830000px;}
.yec{bottom:273.195000px;}
.yf3{bottom:274.500000px;}
.y7d{bottom:275.850000px;}
.y142{bottom:277.320000px;}
.y3b{bottom:279.225000px;}
.y136{bottom:281.475000px;}
.ye5{bottom:282.420000px;}
.y4b{bottom:282.600000px;}
.y10f{bottom:284.775000px;}
.ye7{bottom:284.970000px;}
.y29{bottom:287.145000px;}
.y9a{bottom:292.425000px;}
.y89{bottom:293.370000px;}
.ya7{bottom:293.595000px;}
.y7c{bottom:293.880000px;}
.yc9{bottom:294.420000px;}
.y3a{bottom:297.270000px;}
.y135{bottom:298.395000px;}
.y14b{bottom:300.900000px;}
.y11a{bottom:301.275000px;}
.y141{bottom:302.070000px;}
.ye8{bottom:302.775000px;}
.y92{bottom:302.880000px;}
.yf4{bottom:303.075000px;}
.y28{bottom:305.145000px;}
.yea{bottom:310.095000px;}
.yc2{bottom:310.275000px;}
.y7b{bottom:311.895000px;}
.y39{bottom:314.145000px;}
.y10e{bottom:316.005000px;}
.y134{bottom:316.380000px;}
.y27{bottom:322.020000px;}
.ye4{bottom:325.050000px;}
.y14a{bottom:325.650000px;}
.y91{bottom:326.550000px;}
.y7a{bottom:328.800000px;}
.ya8{bottom:330.075000px;}
.yca{bottom:330.900000px;}
.y38{bottom:331.050000px;}
.yf5{bottom:331.650000px;}
.y9e{bottom:331.725000px;}
.y133{bottom:333.300000px;}
.y11b{bottom:333.600000px;}
.y10d{bottom:336.525000px;}
.y1f{bottom:336.675000px;}
.y90{bottom:338.925000px;}
.y9f{bottom:339.045000px;}
.y9d{bottom:339.750000px;}
.y26{bottom:340.050000px;}
.ydc{bottom:344.550000px;}
.y14d{bottom:344.955000px;}
.yc1{bottom:345.495000px;}
.y79{bottom:345.675000px;}
.y37{bottom:349.050000px;}
.y132{bottom:350.175000px;}
.y25{bottom:356.925000px;}
.ydb{bottom:358.050000px;}
.ye6{bottom:358.875000px;}
.y78{bottom:359.175000px;}
.ya0{bottom:361.800000px;}
.y84{bottom:362.250000px;}
.yf8{bottom:362.445000px;}
.y11e{bottom:364.380000px;}
.y36{bottom:365.970000px;}
.ya9{bottom:366.525000px;}
.ycb{bottom:367.350000px;}
.y131{bottom:368.205000px;}
.yc0{bottom:368.625000px;}
.y14c{bottom:369.705000px;}
.y24{bottom:373.830000px;}
.y35{bottom:382.845000px;}
.y130{bottom:385.080000px;}
.y14e{bottom:388.050000px;}
.y16f{bottom:390.705000px;}
.y23{bottom:391.830000px;}
.yf7{bottom:395.100000px;}
.y11d{bottom:397.050000px;}
.yac{bottom:397.320000px;}
.yce{bottom:398.130000px;}
.y34{bottom:400.830000px;}
.y12f{bottom:401.955000px;}
.y16e{bottom:408.705000px;}
.y22{bottom:408.750000px;}
.y33{bottom:417.750000px;}
.y12e{bottom:420.000000px;}
.y16d{bottom:425.625000px;}
.yab{bottom:429.975000px;}
.ycd{bottom:430.800000px;}
.y32{bottom:434.625000px;}
.y21{bottom:436.875000px;}
.y16c{bottom:442.500000px;}
.y10b{bottom:451.530000px;}
.y31{bottom:452.655000px;}
.y12d{bottom:453.795000px;}
.y20{bottom:454.905000px;}
.ybd{bottom:458.280000px;}
.y16b{bottom:460.545000px;}
.y10a{bottom:468.405000px;}
.y12c{bottom:471.780000px;}
.ybc{bottom:475.155000px;}
.y16a{bottom:477.420000px;}
.y109{bottom:486.420000px;}
.y12b{bottom:488.655000px;}
.ybb{bottom:494.325000px;}
.y108{bottom:505.575000px;}
.yba{bottom:511.200000px;}
.y169{bottom:512.325000px;}
.y107{bottom:523.575000px;}
.yb9{bottom:529.200000px;}
.y106{bottom:540.495000px;}
.y168{bottom:546.120000px;}
.yb8{bottom:547.245000px;}
.y12a{bottom:557.370000px;}
.y105{bottom:558.480000px;}
.y167{bottom:564.120000px;}
.yb7{bottom:565.230000px;}
.y104{bottom:575.355000px;}
.y166{bottom:581.025000px;}
.yb6{bottom:582.150000px;}
.y103{bottom:592.275000px;}
.y165{bottom:597.900000px;}
.yb5{bottom:600.150000px;}
.y129{bottom:609.150000px;}
.y102{bottom:610.275000px;}
.y164{bottom:615.900000px;}
.yb4{bottom:617.025000px;}
.y128{bottom:627.195000px;}
.y101{bottom:628.320000px;}
.y163{bottom:632.820000px;}
.yb3{bottom:635.070000px;}
.y127{bottom:644.070000px;}
.y100{bottom:645.195000px;}
.y162{bottom:649.695000px;}
.yb2{bottom:653.070000px;}
.y126{bottom:660.975000px;}
.yff{bottom:664.350000px;}
.y161{bottom:667.725000px;}
.yb1{bottom:671.100000px;}
.y125{bottom:678.975000px;}
.yfe{bottom:682.350000px;}
.y160{bottom:684.600000px;}
.y124{bottom:695.850000px;}
.y77{bottom:696.975000px;}
.y15f{bottom:701.475000px;}
.yb0{bottom:710.505000px;}
.y123{bottom:712.770000px;}
.y76{bottom:713.880000px;}
.y15e{bottom:719.520000px;}
.yfd{bottom:721.755000px;}
.y75{bottom:730.755000px;}
.yaf{bottom:734.130000px;}
.y15d{bottom:736.395000px;}
.yfc{bottom:745.425000px;}
.yae{bottom:746.550000px;}
.ybf{bottom:748.125000px;}
.y74{bottom:748.800000px;}
.y122{bottom:752.175000px;}
.y15c{bottom:753.300000px;}
.y73{bottom:765.675000px;}
.yfb{bottom:767.925000px;}
.y15b{bottom:771.300000px;}
.y121{bottom:775.800000px;}
.yfa{bottom:780.300000px;}
.y10c{bottom:781.875000px;}
.y72{bottom:782.550000px;}
.y120{bottom:788.205000px;}
.y140{bottom:788.625000px;}
.y71{bottom:800.580000px;}
.y1d{bottom:802.830000px;}
.y15a{bottom:805.080000px;}
.y70{bottom:817.455000px;}
.y159{bottom:823.080000px;}
.yf{bottom:832.125000px;}
.y8f{bottom:833.250000px;}
.y6f{bottom:834.375000px;}
.yda{bottom:840.000000px;}
.y6e{bottom:852.375000px;}
.ydd{bottom:853.875000px;}
.y8e{bottom:855.750000px;}
.y158{bottom:856.875000px;}
.y6d{bottom:871.545000px;}
.y8d{bottom:872.670000px;}
.y157{bottom:874.920000px;}
.y8c{bottom:886.170000px;}
.y93{bottom:886.500000px;}
.y6c{bottom:889.545000px;}
.y156{bottom:891.795000px;}
.y6b{bottom:906.420000px;}
.y155{bottom:908.670000px;}
.y6a{bottom:924.450000px;}
.y154{bottom:926.700000px;}
.y69{bottom:941.325000px;}
.y153{bottom:943.575000px;}
.y68{bottom:958.245000px;}
.y152{bottom:960.495000px;}
.y67{bottom:977.370000px;}
.y151{bottom:978.495000px;}
.y66{bottom:994.275000px;}
.y150{bottom:995.400000px;}
.y65{bottom:1011.150000px;}
.y14f{bottom:1012.275000px;}
.y64{bottom:1030.275000px;}
.y63{bottom:1047.195000px;}
.y62{bottom:1064.070000px;}
.yd{bottom:1068.570000px;}
.y61{bottom:1082.100000px;}
.y6{bottom:1094.475000px;}
.y60{bottom:1098.975000px;}
.y5f{bottom:1115.850000px;}
.y5e{bottom:1133.880000px;}
.y5d{bottom:1150.755000px;}
.y5c{bottom:1167.675000px;}
.y5b{bottom:1185.675000px;}
.y5a{bottom:1202.580000px;}
.hb{height:25.912500px;}
.h14{height:29.287500px;}
.h12{height:29.953125px;}
.h2{height:32.625000px;}
.h11{height:35.806641px;}
.h8{height:37.125000px;}
.h1a{height:39.832031px;}
.h1c{height:40.847168px;}
.h1b{height:41.275635px;}
.h1e{height:42.589600px;}
.hd{height:43.075195px;}
.h13{height:43.453125px;}
.ha{height:43.875000px;}
.h25{height:44.507812px;}
.h18{height:47.074219px;}
.h19{height:48.216797px;}
.h17{height:49.234131px;}
.h29{height:50.273438px;}
.h24{height:50.378174px;}
.h21{height:50.800781px;}
.h20{height:50.906616px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h1d{height:54.075000px;}
.h26{height:54.958521px;}
.h3{height:55.291992px;}
.hf{height:58.185791px;}
.h33{height:59.804443px;}
.h10{height:59.899658px;}
.h2c{height:60.325928px;}
.h2a{height:60.431763px;}
.he{height:64.237500px;}
.h31{height:65.983887px;}
.h35{height:66.878174px;}
.h5{height:69.114990px;}
.h2b{height:69.340781px;}
.h6{height:71.613281px;}
.h15{height:73.722656px;}
.h2f{height:75.410156px;}
.h36{height:76.073437px;}
.h23{height:79.376221px;}
.h22{height:79.482056px;}
.h38{height:85.832153px;}
.h2e{height:89.007202px;}
.h7{height:121.612500px;}
.hc{height:236.445000px;}
.h2d{height:312.750000px;}
.h27{height:329.625000px;}
.h1f{height:330.750000px;}
.h30{height:362.250000px;}
.h37{height:427.500000px;}
.h32{height:433.125000px;}
.h34{height:434.250000px;}
.h16{height:466.155000px;}
.h28{height:468.000000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:74.362500px;}
.w4{width:152.055000px;}
.w7{width:223.020000px;}
.w9{width:328.500000px;}
.wa{width:381.375000px;}
.wd{width:450.000000px;}
.wc{width:475.875000px;}
.w8{width:524.925000px;}
.w5{width:595.875000px;}
.wb{width:613.125000px;}
.we{width:646.875000px;}
.w1{width:674.745000px;}
.wf{width:704.250000px;}
.w6{width:747.945000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x67{left:4.537500px;}
.x8{left:7.875000px;}
.x2{left:9.037500px;}
.x33{left:10.162500px;}
.xf{left:12.375000px;}
.x32{left:19.155000px;}
.x68{left:23.662500px;}
.x69{left:30.450000px;}
.x20{left:56.775000px;}
.x65{left:63.750000px;}
.x53{left:67.275000px;}
.x1{left:72.075000px;}
.x5{left:73.237500px;}
.x4{left:81.112487px;}
.x38{left:83.362487px;}
.x4a{left:85.612487px;}
.x40{left:87.300000px;}
.x2b{left:92.025000px;}
.x55{left:93.045000px;}
.x3d{left:94.125000px;}
.x1e{left:95.505000px;}
.x22{left:96.862487px;}
.x6{left:97.987500px;}
.x2f{left:102.750000px;}
.x66{left:104.280000px;}
.x2d{left:106.470000px;}
.x16{left:108.149987px;}
.x60{left:109.274987px;}
.x29{left:112.995000px;}
.x6a{left:114.000000px;}
.x2a{left:115.245000px;}
.x1a{left:117.149987px;}
.x54{left:122.625000px;}
.x58{left:124.395000px;}
.x41{left:126.420000px;}
.x50{left:128.520000px;}
.x52{left:129.675000px;}
.x17{left:135.187487px;}
.x1f{left:136.725000px;}
.x3c{left:138.375000px;}
.x2e{left:139.500000px;}
.x2c{left:141.600000px;}
.x34{left:144.075000px;}
.x51{left:146.550000px;}
.x11{left:149.812500px;}
.xe{left:156.562500px;}
.x3a{left:162.224987px;}
.x12{left:163.312500px;}
.x48{left:171.330000px;}
.x46{left:173.595000px;}
.x1c{left:178.725000px;}
.x47{left:187.095000px;}
.x1d{left:188.850000px;}
.x3e{left:190.830000px;}
.x4e{left:192.300000px;}
.x27{left:198.120000px;}
.x26{left:203.370000px;}
.x42{left:207.000000px;}
.x4f{left:211.425000px;}
.x28{left:212.775000px;}
.x14{left:214.012500px;}
.x4d{left:220.500000px;}
.x7{left:225.300000px;}
.x5c{left:230.625000px;}
.x13{left:239.917500px;}
.x43{left:246.120000px;}
.x23{left:251.219987px;}
.x25{left:255.375000px;}
.x35{left:260.100000px;}
.x45{left:264.150000px;}
.x36{left:270.120000px;}
.x39{left:271.469987px;}
.x44{left:275.400000px;}
.x5a{left:277.275000px;}
.x1b{left:281.250000px;}
.xb{left:290.625000px;}
.x15{left:296.250000px;}
.x6b{left:311.100000px;}
.x10{left:344.662500px;}
.x9{left:345.780000px;}
.xa{left:364.950000px;}
.xd{left:373.957500px;}
.x4b{left:382.994987px;}
.x30{left:413.100000px;}
.x56{left:423.225000px;}
.x19{left:447.194987px;}
.xc{left:453.945000px;}
.x5d{left:459.750000px;}
.x63{left:479.580000px;}
.x64{left:480.720000px;}
.x31{left:516.570000px;}
.x3f{left:525.945000px;}
.x57{left:533.295000px;}
.x5b{left:541.695000px;}
.x5e{left:574.320000px;}
.x59{left:575.880000px;}
.x61{left:578.325000px;}
.x62{left:588.495000px;}
.x18{left:611.669987px;}
.x21{left:637.574987px;}
.x49{left:672.494987px;}
.x3b{left:685.994987px;}
.x3{left:746.820000px;}
.x24{left:753.599987px;}
.x37{left:754.724987px;}
.x4c{left:770.474987px;}
.x5f{left:799.754987px;}
@media print{
.v5{vertical-align:-62.506667pt;}
.v9{vertical-align:-49.066667pt;}
.va{vertical-align:-27.360000pt;}
.v4{vertical-align:-23.093333pt;}
.v6{vertical-align:-21.493333pt;}
.vb{vertical-align:-19.040000pt;}
.v8{vertical-align:-18.133333pt;}
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:14.666667pt;}
.v1{vertical-align:16.000000pt;}
.vd{vertical-align:22.933333pt;}
.v7{vertical-align:37.973333pt;}
.lsf{letter-spacing:-2.421333pt;}
.ls25{letter-spacing:-1.546667pt;}
.ls12{letter-spacing:-1.418667pt;}
.ls19{letter-spacing:-1.317333pt;}
.ls10{letter-spacing:-0.704000pt;}
.ls13{letter-spacing:-0.693333pt;}
.lse{letter-spacing:-0.336000pt;}
.ls1b{letter-spacing:-0.066667pt;}
.lsd{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.016000pt;}
.ls9{letter-spacing:0.061333pt;}
.ls22{letter-spacing:0.066667pt;}
.ls15{letter-spacing:0.080000pt;}
.ls8{letter-spacing:0.088000pt;}
.ls21{letter-spacing:0.122667pt;}
.ls1a{letter-spacing:0.133333pt;}
.lsb{letter-spacing:0.592000pt;}
.ls11{letter-spacing:0.613333pt;}
.ls1d{letter-spacing:0.800000pt;}
.ls1{letter-spacing:1.258667pt;}
.ls5{letter-spacing:1.312000pt;}
.ls6{letter-spacing:1.365333pt;}
.ls7{letter-spacing:1.637333pt;}
.ls2{letter-spacing:1.648000pt;}
.ls4{letter-spacing:1.748000pt;}
.ls3{letter-spacing:1.908000pt;}
.ls18{letter-spacing:1.924000pt;}
.ls20{letter-spacing:1.936000pt;}
.lsa{letter-spacing:2.000000pt;}
.ls24{letter-spacing:2.069333pt;}
.ls23{letter-spacing:2.160000pt;}
.ls1f{letter-spacing:2.389333pt;}
.ls17{letter-spacing:3.000000pt;}
.ls0{letter-spacing:5.152000pt;}
.ls14{letter-spacing:41.677333pt;}
.ls1e{letter-spacing:49.544000pt;}
.lsc{letter-spacing:49.677333pt;}
.ls16{letter-spacing:57.677333pt;}
.ws4{word-spacing:-76.133333pt;}
.ws9{word-spacing:-29.640000pt;}
.ws19{word-spacing:-25.033333pt;}
.ws10{word-spacing:-25.000000pt;}
.ws16{word-spacing:-19.033333pt;}
.ws1a{word-spacing:-19.000000pt;}
.wse{word-spacing:-16.033333pt;}
.wsf{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.000000pt;}
.wsc{word-spacing:-14.924000pt;}
.ws3{word-spacing:-14.352000pt;}
.ws2{word-spacing:-13.648000pt;}
.ws6{word-spacing:-13.389333pt;}
.ws7{word-spacing:-13.000000pt;}
.ws12{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.752000pt;}
.wsd{word-spacing:-11.682667pt;}
.ws21{word-spacing:-11.453333pt;}
.ws1{word-spacing:-11.138667pt;}
.ws0{word-spacing:-10.512000pt;}
.ws5{word-spacing:-7.232000pt;}
.wsb{word-spacing:0.000000pt;}
.ws11{word-spacing:76.789867pt;}
.ws13{word-spacing:80.428933pt;}
.ws1d{word-spacing:110.013867pt;}
.ws15{word-spacing:143.180933pt;}
.ws14{word-spacing:143.733333pt;}
.ws1b{word-spacing:177.357867pt;}
.ws1c{word-spacing:177.994667pt;}
.ws18{word-spacing:199.733333pt;}
.ws17{word-spacing:199.893333pt;}
.ws1f{word-spacing:233.994667pt;}
.ws1e{word-spacing:234.070267pt;}
.ws20{word-spacing:274.048000pt;}
._28{margin-left:-1630.645333pt;}
._1c{margin-left:-11.877333pt;}
._21{margin-left:-10.810933pt;}
._7{margin-left:-9.630800pt;}
._6{margin-left:-8.407200pt;}
._2d{margin-left:-6.415200pt;}
._14{margin-left:-5.126667pt;}
._a{margin-left:-3.744000pt;}
._2{margin-left:-2.496000pt;}
._1{margin-left:-1.104000pt;}
._0{width:1.536000pt;}
._3{width:2.928000pt;}
._4{width:3.914667pt;}
._9{width:5.440000pt;}
._d{width:6.556000pt;}
._8{width:8.029333pt;}
._5{width:9.733333pt;}
._c{width:11.425333pt;}
._15{width:14.088000pt;}
._b{width:15.394667pt;}
._13{width:18.772000pt;}
._12{width:19.816000pt;}
._f{width:22.160000pt;}
._10{width:23.200000pt;}
._e{width:26.100000pt;}
._11{width:27.242667pt;}
._17{width:30.748000pt;}
._16{width:35.160000pt;}
._20{width:38.176000pt;}
._1a{width:39.872000pt;}
._19{width:41.525333pt;}
._18{width:62.352000pt;}
._30{width:66.662667pt;}
._2f{width:70.864000pt;}
._2e{width:71.920000pt;}
._2c{width:83.278400pt;}
._25{width:84.947067pt;}
._26{width:95.694000pt;}
._24{width:106.468800pt;}
._1b{width:111.184000pt;}
._1f{width:126.197333pt;}
._23{width:144.682667pt;}
._2b{width:159.243467pt;}
._27{width:160.776000pt;}
._22{width:177.616000pt;}
._1e{width:198.080000pt;}
._1d{width:201.386667pt;}
._2a{width:227.670133pt;}
._29{width:229.437467pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:52.000000pt;}
.fs1{font-size:60.000000pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:64.133333pt;}
.fsb{font-size:72.133333pt;}
.fsc{font-size:76.000000pt;}
.fs5{font-size:76.133333pt;}
.fsf{font-size:84.000000pt;}
.fse{font-size:96.000000pt;}
.fsa{font-size:100.000000pt;}
.fs9{font-size:100.133333pt;}
.fs10{font-size:108.133333pt;}
.fsd{font-size:112.133333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.000000pt;}
.y50{bottom:3.026667pt;}
.y1c{bottom:4.000000pt;}
.y1e{bottom:10.000000pt;}
.ye{bottom:10.026667pt;}
.yc{bottom:12.000000pt;}
.yf9{bottom:14.626667pt;}
.yad{bottom:14.973333pt;}
.y4{bottom:15.000000pt;}
.y11f{bottom:15.040000pt;}
.ycf{bottom:15.666667pt;}
.y2{bottom:17.000000pt;}
.yd9{bottom:17.026667pt;}
.y144{bottom:17.866667pt;}
.y4a{bottom:18.000000pt;}
.y4f{bottom:18.026667pt;}
.ye1{bottom:23.400000pt;}
.y1b{bottom:25.000000pt;}
.y4d{bottom:25.026667pt;}
.yb{bottom:27.026667pt;}
.y49{bottom:34.026667pt;}
.y4e{bottom:35.040000pt;}
.y146{bottom:36.133333pt;}
.y4c{bottom:38.040000pt;}
.y143{bottom:39.866667pt;}
.y1a{bottom:40.040000pt;}
.ya{bottom:41.026667pt;}
.ye0{bottom:41.440000pt;}
.y97{bottom:45.533333pt;}
.yf6{bottom:47.400000pt;}
.yaa{bottom:47.706667pt;}
.y11c{bottom:47.800000pt;}
.ycc{bottom:48.440000pt;}
.y48{bottom:49.026667pt;}
.y5{bottom:51.033333pt;}
.y19{bottom:55.040000pt;}
.y86{bottom:56.200000pt;}
.y145{bottom:58.133333pt;}
.y96{bottom:63.533333pt;}
.y47{bottom:64.026667pt;}
.y9{bottom:65.066667pt;}
.yed{bottom:66.173333pt;}
.ya1{bottom:66.466667pt;}
.y113{bottom:66.573333pt;}
.yc3{bottom:67.200000pt;}
.y18{bottom:69.040000pt;}
.y1{bottom:72.066667pt;}
.y85{bottom:74.226667pt;}
.y46{bottom:80.066667pt;}
.y17{bottom:81.066667pt;}
.y8{bottom:83.066667pt;}
.yee{bottom:91.560000pt;}
.y45{bottom:95.066667pt;}
.y99{bottom:95.266667pt;}
.y114{bottom:95.293333pt;}
.y7{bottom:98.093333pt;}
.ya2{bottom:98.893333pt;}
.y16{bottom:99.066667pt;}
.yd7{bottom:99.093333pt;}
.yc4{bottom:99.600000pt;}
.yd3{bottom:107.760000pt;}
.y88{bottom:109.400000pt;}
.y44{bottom:110.106667pt;}
.y13f{bottom:112.100000pt;}
.y149{bottom:112.226667pt;}
.y15{bottom:113.106667pt;}
.y98{bottom:113.293333pt;}
.y59{bottom:115.100000pt;}
.yef{bottom:116.960000pt;}
.yd6{bottom:121.106667pt;}
.y14{bottom:122.106667pt;}
.y115{bottom:124.066667pt;}
.y43{bottom:126.093333pt;}
.ybe{bottom:126.100000pt;}
.yd0{bottom:127.000000pt;}
.y13e{bottom:127.100000pt;}
.y87{bottom:127.400000pt;}
.y95{bottom:127.933333pt;}
.yd2{bottom:128.800000pt;}
.y58{bottom:130.100000pt;}
.ya3{bottom:131.306667pt;}
.yc5{bottom:132.040000pt;}
.y148{bottom:133.266667pt;}
.y13{bottom:135.106667pt;}
.y42{bottom:141.133333pt;}
.yd5{bottom:142.133333pt;}
.yf0{bottom:142.360000pt;}
.y13d{bottom:143.133333pt;}
.ye3{bottom:143.226667pt;}
.ydf{bottom:145.893333pt;}
.y94{bottom:145.960000pt;}
.y57{bottom:146.133333pt;}
.y30{bottom:148.133333pt;}
.y83{bottom:150.133333pt;}
.yd1{bottom:150.840000pt;}
.y12{bottom:152.133333pt;}
.y116{bottom:152.800000pt;}
.y147{bottom:155.266667pt;}
.y41{bottom:156.133333pt;}
.y13c{bottom:158.133333pt;}
.y56{bottom:161.133333pt;}
.ye2{bottom:161.266667pt;}
.y2f{bottom:162.133333pt;}
.ya4{bottom:163.733333pt;}
.yde{bottom:163.893333pt;}
.yd4{bottom:164.173333pt;}
.yc6{bottom:164.466667pt;}
.y82{bottom:166.133333pt;}
.yf1{bottom:167.773333pt;}
.y40{bottom:172.133333pt;}
.y13b{bottom:173.133333pt;}
.y11{bottom:175.133333pt;}
.y55{bottom:176.133333pt;}
.y2e{bottom:178.173333pt;}
.y117{bottom:181.533333pt;}
.y81{bottom:182.173333pt;}
.ye9{bottom:183.133333pt;}
.y3f{bottom:187.173333pt;}
.y13a{bottom:189.173333pt;}
.y110{bottom:189.893333pt;}
.y54{bottom:192.173333pt;}
.y2d{bottom:193.173333pt;}
.ya5{bottom:196.133333pt;}
.yc7{bottom:196.866667pt;}
.y10{bottom:197.173333pt;}
.y80{bottom:198.173333pt;}
.y9c{bottom:198.293333pt;}
.y8b{bottom:199.133333pt;}
.y3e{bottom:202.173333pt;}
.y139{bottom:204.173333pt;}
.yeb{bottom:205.000000pt;}
.y53{bottom:207.173333pt;}
.y2c{bottom:209.160000pt;}
.y118{bottom:210.293333pt;}
.y7f{bottom:213.173333pt;}
.y3d{bottom:218.200000pt;}
.yf2{bottom:218.600000pt;}
.y138{bottom:219.200000pt;}
.y112{bottom:221.533333pt;}
.y52{bottom:222.200000pt;}
.y2b{bottom:224.200000pt;}
.ya6{bottom:228.560000pt;}
.yc8{bottom:229.293333pt;}
.y7e{bottom:230.200000pt;}
.y9b{bottom:230.893333pt;}
.y8a{bottom:231.733333pt;}
.y3c{bottom:233.200000pt;}
.y137{bottom:235.200000pt;}
.y51{bottom:238.200000pt;}
.y119{bottom:239.040000pt;}
.y2a{bottom:240.200000pt;}
.yd8{bottom:241.173333pt;}
.y111{bottom:241.626667pt;}
.yec{bottom:242.840000pt;}
.yf3{bottom:244.000000pt;}
.y7d{bottom:245.200000pt;}
.y142{bottom:246.506667pt;}
.y3b{bottom:248.200000pt;}
.y136{bottom:250.200000pt;}
.ye5{bottom:251.040000pt;}
.y4b{bottom:251.200000pt;}
.y10f{bottom:253.133333pt;}
.ye7{bottom:253.306667pt;}
.y29{bottom:255.240000pt;}
.y9a{bottom:259.933333pt;}
.y89{bottom:260.773333pt;}
.ya7{bottom:260.973333pt;}
.y7c{bottom:261.226667pt;}
.yc9{bottom:261.706667pt;}
.y3a{bottom:264.240000pt;}
.y135{bottom:265.240000pt;}
.y14b{bottom:267.466667pt;}
.y11a{bottom:267.800000pt;}
.y141{bottom:268.506667pt;}
.ye8{bottom:269.133333pt;}
.y92{bottom:269.226667pt;}
.yf4{bottom:269.400000pt;}
.y28{bottom:271.240000pt;}
.yea{bottom:275.640000pt;}
.yc2{bottom:275.800000pt;}
.y7b{bottom:277.240000pt;}
.y39{bottom:279.240000pt;}
.y10e{bottom:280.893333pt;}
.y134{bottom:281.226667pt;}
.y27{bottom:286.240000pt;}
.ye4{bottom:288.933333pt;}
.y14a{bottom:289.466667pt;}
.y91{bottom:290.266667pt;}
.y7a{bottom:292.266667pt;}
.ya8{bottom:293.400000pt;}
.yca{bottom:294.133333pt;}
.y38{bottom:294.266667pt;}
.yf5{bottom:294.800000pt;}
.y9e{bottom:294.866667pt;}
.y133{bottom:296.266667pt;}
.y11b{bottom:296.533333pt;}
.y10d{bottom:299.133333pt;}
.y1f{bottom:299.266667pt;}
.y90{bottom:301.266667pt;}
.y9f{bottom:301.373333pt;}
.y9d{bottom:302.000000pt;}
.y26{bottom:302.266667pt;}
.ydc{bottom:306.266667pt;}
.y14d{bottom:306.626667pt;}
.yc1{bottom:307.106667pt;}
.y79{bottom:307.266667pt;}
.y37{bottom:310.266667pt;}
.y132{bottom:311.266667pt;}
.y25{bottom:317.266667pt;}
.ydb{bottom:318.266667pt;}
.ye6{bottom:319.000000pt;}
.y78{bottom:319.266667pt;}
.ya0{bottom:321.600000pt;}
.y84{bottom:322.000000pt;}
.yf8{bottom:322.173333pt;}
.y11e{bottom:323.893333pt;}
.y36{bottom:325.306667pt;}
.ya9{bottom:325.800000pt;}
.ycb{bottom:326.533333pt;}
.y131{bottom:327.293333pt;}
.yc0{bottom:327.666667pt;}
.y14c{bottom:328.626667pt;}
.y24{bottom:332.293333pt;}
.y35{bottom:340.306667pt;}
.y130{bottom:342.293333pt;}
.y14e{bottom:344.933333pt;}
.y16f{bottom:347.293333pt;}
.y23{bottom:348.293333pt;}
.yf7{bottom:351.200000pt;}
.y11d{bottom:352.933333pt;}
.yac{bottom:353.173333pt;}
.yce{bottom:353.893333pt;}
.y34{bottom:356.293333pt;}
.y12f{bottom:357.293333pt;}
.y16e{bottom:363.293333pt;}
.y22{bottom:363.333333pt;}
.y33{bottom:371.333333pt;}
.y12e{bottom:373.333333pt;}
.y16d{bottom:378.333333pt;}
.yab{bottom:382.200000pt;}
.ycd{bottom:382.933333pt;}
.y32{bottom:386.333333pt;}
.y21{bottom:388.333333pt;}
.y16c{bottom:393.333333pt;}
.y10b{bottom:401.360000pt;}
.y31{bottom:402.360000pt;}
.y12d{bottom:403.373333pt;}
.y20{bottom:404.360000pt;}
.ybd{bottom:407.360000pt;}
.y16b{bottom:409.373333pt;}
.y10a{bottom:416.360000pt;}
.y12c{bottom:419.360000pt;}
.ybc{bottom:422.360000pt;}
.y16a{bottom:424.373333pt;}
.y109{bottom:432.373333pt;}
.y12b{bottom:434.360000pt;}
.ybb{bottom:439.400000pt;}
.y108{bottom:449.400000pt;}
.yba{bottom:454.400000pt;}
.y169{bottom:455.400000pt;}
.y107{bottom:465.400000pt;}
.yb9{bottom:470.400000pt;}
.y106{bottom:480.440000pt;}
.y168{bottom:485.440000pt;}
.yb8{bottom:486.440000pt;}
.y12a{bottom:495.440000pt;}
.y105{bottom:496.426667pt;}
.y167{bottom:501.440000pt;}
.yb7{bottom:502.426667pt;}
.y104{bottom:511.426667pt;}
.y166{bottom:516.466667pt;}
.yb6{bottom:517.466667pt;}
.y103{bottom:526.466667pt;}
.y165{bottom:531.466667pt;}
.yb5{bottom:533.466667pt;}
.y129{bottom:541.466667pt;}
.y102{bottom:542.466667pt;}
.y164{bottom:547.466667pt;}
.yb4{bottom:548.466667pt;}
.y128{bottom:557.506667pt;}
.y101{bottom:558.506667pt;}
.y163{bottom:562.506667pt;}
.yb3{bottom:564.506667pt;}
.y127{bottom:572.506667pt;}
.y100{bottom:573.506667pt;}
.y162{bottom:577.506667pt;}
.yb2{bottom:580.506667pt;}
.y126{bottom:587.533333pt;}
.yff{bottom:590.533333pt;}
.y161{bottom:593.533333pt;}
.yb1{bottom:596.533333pt;}
.y125{bottom:603.533333pt;}
.yfe{bottom:606.533333pt;}
.y160{bottom:608.533333pt;}
.y124{bottom:618.533333pt;}
.y77{bottom:619.533333pt;}
.y15f{bottom:623.533333pt;}
.yb0{bottom:631.560000pt;}
.y123{bottom:633.573333pt;}
.y76{bottom:634.560000pt;}
.y15e{bottom:639.573333pt;}
.yfd{bottom:641.560000pt;}
.y75{bottom:649.560000pt;}
.yaf{bottom:652.560000pt;}
.y15d{bottom:654.573333pt;}
.yfc{bottom:662.600000pt;}
.yae{bottom:663.600000pt;}
.ybf{bottom:665.000000pt;}
.y74{bottom:665.600000pt;}
.y122{bottom:668.600000pt;}
.y15c{bottom:669.600000pt;}
.y73{bottom:680.600000pt;}
.yfb{bottom:682.600000pt;}
.y15b{bottom:685.600000pt;}
.y121{bottom:689.600000pt;}
.yfa{bottom:693.600000pt;}
.y10c{bottom:695.000000pt;}
.y72{bottom:695.600000pt;}
.y120{bottom:700.626667pt;}
.y140{bottom:701.000000pt;}
.y71{bottom:711.626667pt;}
.y1d{bottom:713.626667pt;}
.y15a{bottom:715.626667pt;}
.y70{bottom:726.626667pt;}
.y159{bottom:731.626667pt;}
.yf{bottom:739.666667pt;}
.y8f{bottom:740.666667pt;}
.y6f{bottom:741.666667pt;}
.yda{bottom:746.666667pt;}
.y6e{bottom:757.666667pt;}
.ydd{bottom:759.000000pt;}
.y8e{bottom:760.666667pt;}
.y158{bottom:761.666667pt;}
.y6d{bottom:774.706667pt;}
.y8d{bottom:775.706667pt;}
.y157{bottom:777.706667pt;}
.y8c{bottom:787.706667pt;}
.y93{bottom:788.000000pt;}
.y6c{bottom:790.706667pt;}
.y156{bottom:792.706667pt;}
.y6b{bottom:805.706667pt;}
.y155{bottom:807.706667pt;}
.y6a{bottom:821.733333pt;}
.y154{bottom:823.733333pt;}
.y69{bottom:836.733333pt;}
.y153{bottom:838.733333pt;}
.y68{bottom:851.773333pt;}
.y152{bottom:853.773333pt;}
.y67{bottom:868.773333pt;}
.y151{bottom:869.773333pt;}
.y66{bottom:883.800000pt;}
.y150{bottom:884.800000pt;}
.y65{bottom:898.800000pt;}
.y14f{bottom:899.800000pt;}
.y64{bottom:915.800000pt;}
.y63{bottom:930.840000pt;}
.y62{bottom:945.840000pt;}
.yd{bottom:949.840000pt;}
.y61{bottom:961.866667pt;}
.y6{bottom:972.866667pt;}
.y60{bottom:976.866667pt;}
.y5f{bottom:991.866667pt;}
.y5e{bottom:1007.893333pt;}
.y5d{bottom:1022.893333pt;}
.y5c{bottom:1037.933333pt;}
.y5b{bottom:1053.933333pt;}
.y5a{bottom:1068.960000pt;}
.hb{height:23.033333pt;}
.h14{height:26.033333pt;}
.h12{height:26.625000pt;}
.h2{height:29.000000pt;}
.h11{height:31.828125pt;}
.h8{height:33.000000pt;}
.h1a{height:35.406250pt;}
.h1c{height:36.308594pt;}
.h1b{height:36.689453pt;}
.h1e{height:37.857422pt;}
.hd{height:38.289062pt;}
.h13{height:38.625000pt;}
.ha{height:39.000000pt;}
.h25{height:39.562500pt;}
.h18{height:41.843750pt;}
.h19{height:42.859375pt;}
.h17{height:43.763672pt;}
.h29{height:44.687500pt;}
.h24{height:44.780599pt;}
.h21{height:45.156250pt;}
.h20{height:45.250326pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h1d{height:48.066667pt;}
.h26{height:48.852018pt;}
.h3{height:49.148438pt;}
.hf{height:51.720703pt;}
.h33{height:53.159505pt;}
.h10{height:53.244141pt;}
.h2c{height:53.623047pt;}
.h2a{height:53.717122pt;}
.he{height:57.100000pt;}
.h31{height:58.652344pt;}
.h35{height:59.447266pt;}
.h5{height:61.435547pt;}
.h2b{height:61.636250pt;}
.h6{height:63.656250pt;}
.h15{height:65.531250pt;}
.h2f{height:67.031250pt;}
.h36{height:67.620833pt;}
.h23{height:70.556641pt;}
.h22{height:70.650716pt;}
.h38{height:76.295247pt;}
.h2e{height:79.117513pt;}
.h7{height:108.100000pt;}
.hc{height:210.173333pt;}
.h2d{height:278.000000pt;}
.h27{height:293.000000pt;}
.h1f{height:294.000000pt;}
.h30{height:322.000000pt;}
.h37{height:380.000000pt;}
.h32{height:385.000000pt;}
.h34{height:386.000000pt;}
.h16{height:414.360000pt;}
.h28{height:416.000000pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:66.100000pt;}
.w4{width:135.160000pt;}
.w7{width:198.240000pt;}
.w9{width:292.000000pt;}
.wa{width:339.000000pt;}
.wd{width:400.000000pt;}
.wc{width:423.000000pt;}
.w8{width:466.600000pt;}
.w5{width:529.666667pt;}
.wb{width:545.000000pt;}
.we{width:575.000000pt;}
.w1{width:599.773333pt;}
.wf{width:626.000000pt;}
.w6{width:664.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x67{left:4.033333pt;}
.x8{left:7.000000pt;}
.x2{left:8.033333pt;}
.x33{left:9.033333pt;}
.xf{left:11.000000pt;}
.x32{left:17.026667pt;}
.x68{left:21.033333pt;}
.x69{left:27.066667pt;}
.x20{left:50.466667pt;}
.x65{left:56.666667pt;}
.x53{left:59.800000pt;}
.x1{left:64.066667pt;}
.x5{left:65.100000pt;}
.x4{left:72.099988pt;}
.x38{left:74.099988pt;}
.x4a{left:76.099988pt;}
.x40{left:77.600000pt;}
.x2b{left:81.800000pt;}
.x55{left:82.706667pt;}
.x3d{left:83.666667pt;}
.x1e{left:84.893333pt;}
.x22{left:86.099988pt;}
.x6{left:87.100000pt;}
.x2f{left:91.333333pt;}
.x66{left:92.693333pt;}
.x2d{left:94.640000pt;}
.x16{left:96.133322pt;}
.x60{left:97.133322pt;}
.x29{left:100.440000pt;}
.x6a{left:101.333333pt;}
.x2a{left:102.440000pt;}
.x1a{left:104.133322pt;}
.x54{left:109.000000pt;}
.x58{left:110.573333pt;}
.x41{left:112.373333pt;}
.x50{left:114.240000pt;}
.x52{left:115.266667pt;}
.x17{left:120.166655pt;}
.x1f{left:121.533333pt;}
.x3c{left:123.000000pt;}
.x2e{left:124.000000pt;}
.x2c{left:125.866667pt;}
.x34{left:128.066667pt;}
.x51{left:130.266667pt;}
.x11{left:133.166667pt;}
.xe{left:139.166667pt;}
.x3a{left:144.199988pt;}
.x12{left:145.166667pt;}
.x48{left:152.293333pt;}
.x46{left:154.306667pt;}
.x1c{left:158.866667pt;}
.x47{left:166.306667pt;}
.x1d{left:167.866667pt;}
.x3e{left:169.626667pt;}
.x4e{left:170.933333pt;}
.x27{left:176.106667pt;}
.x26{left:180.773333pt;}
.x42{left:184.000000pt;}
.x4f{left:187.933333pt;}
.x28{left:189.133333pt;}
.x14{left:190.233333pt;}
.x4d{left:196.000000pt;}
.x7{left:200.266667pt;}
.x5c{left:205.000000pt;}
.x13{left:213.260000pt;}
.x43{left:218.773333pt;}
.x23{left:223.306655pt;}
.x25{left:227.000000pt;}
.x35{left:231.200000pt;}
.x45{left:234.800000pt;}
.x36{left:240.106667pt;}
.x39{left:241.306655pt;}
.x44{left:244.800000pt;}
.x5a{left:246.466667pt;}
.x1b{left:250.000000pt;}
.xb{left:258.333333pt;}
.x15{left:263.333333pt;}
.x6b{left:276.533333pt;}
.x10{left:306.366667pt;}
.x9{left:307.360000pt;}
.xa{left:324.400000pt;}
.xd{left:332.406667pt;}
.x4b{left:340.439988pt;}
.x30{left:367.200000pt;}
.x56{left:376.200000pt;}
.x19{left:397.506655pt;}
.xc{left:403.506667pt;}
.x5d{left:408.666667pt;}
.x63{left:426.293333pt;}
.x64{left:427.306667pt;}
.x31{left:459.173333pt;}
.x3f{left:467.506667pt;}
.x57{left:474.040000pt;}
.x5b{left:481.506667pt;}
.x5e{left:510.506667pt;}
.x59{left:511.893333pt;}
.x61{left:514.066667pt;}
.x62{left:523.106667pt;}
.x18{left:543.706655pt;}
.x21{left:566.733322pt;}
.x49{left:597.773322pt;}
.x3b{left:609.773322pt;}
.x3{left:663.840000pt;}
.x24{left:669.866655pt;}
.x37{left:670.866655pt;}
.x4c{left:684.866655pt;}
.x5f{left:710.893322pt;}
}




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