
    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_d42f0684455f4debef30d0c4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_9bc6d5f9a69291cb9b9d48b0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_cb05f68413b86fe76b624ab2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.953125;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_f0fe24103f54ac8472c805c0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.031738;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_823f944e74efe3a772fda4da.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.032715;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_5e4bc6a965d2994097c10037.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.026855;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_69bd7b244a180734153dab73.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.011230;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_e00b1a2b496a3f68a307b02a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.041992;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_9714a3fa787c81819a322b02.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.976118;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_f7c2dab4696ba4e8b1661554.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_17595d1cb6c2cd09eaf2b84a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.953125;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_82039469700d419892537daa.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.716334;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_d0e31b8a1eaaddd8e44b1b07.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.953125;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_664af649cbcfc3a8a77ac430.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.973633;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,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);}
.v4{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.984000px;}
.v5{vertical-align:18.000000px;}
.v3{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.lsc{letter-spacing:-1.140000px;}
.ls16{letter-spacing:-0.960000px;}
.ls5{letter-spacing:-0.918000px;}
.lsb{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.691200px;}
.ls11{letter-spacing:-0.600000px;}
.ls3{letter-spacing:-0.408000px;}
.ls6{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.300000px;}
.ls9{letter-spacing:-0.180000px;}
.ls14{letter-spacing:-0.120000px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.027000px;}
.ls10{letter-spacing:0.032400px;}
.lsf{letter-spacing:0.054600px;}
.ls7{letter-spacing:0.076800px;}
.lsa{letter-spacing:0.300000px;}
.ls18{letter-spacing:0.600000px;}
.ls17{letter-spacing:0.720000px;}
.ls0{letter-spacing:43.181364px;}
.ls1{letter-spacing:43.181964px;}
.ls12{letter-spacing:168.144000px;}
.ls13{letter-spacing:242.112000px;}
.lsd{letter-spacing:844.320000px;}
.lse{letter-spacing:864.336000px;}
.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;}
}
.ws26{word-spacing:-60.000000px;}
.ws8{word-spacing:-17.928000px;}
.ws7c{word-spacing:-16.434000px;}
.ws7{word-spacing:-14.940000px;}
.ws2a{word-spacing:-14.880000px;}
.ws18{word-spacing:-14.700000px;}
.ws23{word-spacing:-14.580000px;}
.ws39{word-spacing:-13.446000px;}
.ws7d{word-spacing:-13.392000px;}
.ws43{word-spacing:-13.230000px;}
.ws9{word-spacing:-12.366000px;}
.wsc{word-spacing:-12.150000px;}
.wsa{word-spacing:-11.448000px;}
.wsb{word-spacing:-11.232000px;}
.wsd{word-spacing:-10.992000px;}
.ws17{word-spacing:-10.800000px;}
.ws6{word-spacing:-9.892800px;}
.ws4{word-spacing:-9.618000px;}
.ws3{word-spacing:-9.542544px;}
.ws27{word-spacing:-8.675040px;}
.ws32{word-spacing:-7.807536px;}
.ws5{word-spacing:-6.352368px;}
.ws82{word-spacing:-3.024000px;}
.ws78{word-spacing:-2.520000px;}
.ws2d{word-spacing:-2.100000px;}
.ws8c{word-spacing:-1.998000px;}
.ws88{word-spacing:-1.944000px;}
.ws84{word-spacing:-1.836000px;}
.ws6d{word-spacing:-1.740000px;}
.ws3c{word-spacing:-1.404000px;}
.ws76{word-spacing:-1.260000px;}
.ws10{word-spacing:-1.254000px;}
.ws7f{word-spacing:-1.026000px;}
.ws1e{word-spacing:-0.900000px;}
.ws91{word-spacing:-0.720000px;}
.ws1c{word-spacing:-0.660000px;}
.ws3e{word-spacing:-0.600000px;}
.ws1f{word-spacing:-0.540000px;}
.ws8f{word-spacing:-0.486000px;}
.ws14{word-spacing:-0.432000px;}
.ws3b{word-spacing:-0.378000px;}
.ws2f{word-spacing:-0.300000px;}
.ws11{word-spacing:-0.216000px;}
.wse{word-spacing:0.000000px;}
.ws7a{word-spacing:0.060000px;}
.ws83{word-spacing:0.108000px;}
.ws6f{word-spacing:0.120000px;}
.ws28{word-spacing:0.180000px;}
.ws6b{word-spacing:0.240000px;}
.ws79{word-spacing:0.300000px;}
.ws24{word-spacing:0.360000px;}
.wsf{word-spacing:0.408000px;}
.ws69{word-spacing:0.480000px;}
.ws90{word-spacing:0.486000px;}
.ws47{word-spacing:0.600000px;}
.ws81{word-spacing:0.648000px;}
.ws12{word-spacing:0.691200px;}
.ws2c{word-spacing:0.720000px;}
.ws80{word-spacing:0.756000px;}
.ws45{word-spacing:0.810000px;}
.ws16{word-spacing:0.918000px;}
.ws7b{word-spacing:0.960000px;}
.ws2e{word-spacing:1.140000px;}
.ws44{word-spacing:1.188000px;}
.ws72{word-spacing:1.296000px;}
.ws3d{word-spacing:1.320000px;}
.ws1d{word-spacing:1.380000px;}
.ws77{word-spacing:1.560000px;}
.ws30{word-spacing:1.620000px;}
.ws8d{word-spacing:1.674000px;}
.ws73{word-spacing:1.680000px;}
.ws89{word-spacing:1.782000px;}
.ws75{word-spacing:1.800000px;}
.ws70{word-spacing:1.860000px;}
.ws46{word-spacing:1.920000px;}
.ws29{word-spacing:2.340000px;}
.ws64{word-spacing:2.538000px;}
.ws22{word-spacing:2.700000px;}
.ws1b{word-spacing:2.820000px;}
.ws87{word-spacing:2.916000px;}
.ws71{word-spacing:2.940000px;}
.ws2b{word-spacing:3.240000px;}
.ws1a{word-spacing:3.540000px;}
.ws68{word-spacing:3.960000px;}
.ws31{word-spacing:4.320000px;}
.ws20{word-spacing:4.800000px;}
.ws8b{word-spacing:4.860000px;}
.ws6c{word-spacing:4.980000px;}
.ws3a{word-spacing:5.022000px;}
.ws62{word-spacing:5.220000px;}
.ws63{word-spacing:5.292000px;}
.ws21{word-spacing:5.400000px;}
.ws19{word-spacing:5.580000px;}
.ws8a{word-spacing:5.724000px;}
.ws74{word-spacing:6.000000px;}
.ws25{word-spacing:6.300000px;}
.ws6e{word-spacing:6.480000px;}
.ws13{word-spacing:7.074000px;}
.ws6a{word-spacing:7.380000px;}
.ws15{word-spacing:9.342000px;}
.ws8e{word-spacing:10.422000px;}
.ws85{word-spacing:11.286000px;}
.ws86{word-spacing:11.988000px;}
.ws7e{word-spacing:12.312000px;}
.ws0{word-spacing:33.650535px;}
.ws1{word-spacing:33.651135px;}
.ws2{word-spacing:33.662850px;}
.ws55{word-spacing:68.976000px;}
.ws4e{word-spacing:82.416000px;}
.ws4c{word-spacing:95.952000px;}
.ws50{word-spacing:109.440000px;}
.ws52{word-spacing:113.846400px;}
.ws4d{word-spacing:129.264000px;}
.ws58{word-spacing:142.752000px;}
.ws49{word-spacing:156.144000px;}
.ws4b{word-spacing:156.192000px;}
.ws4a{word-spacing:156.240000px;}
.ws5a{word-spacing:246.782400px;}
.ws51{word-spacing:272.433600px;}
.ws41{word-spacing:276.192000px;}
.ws61{word-spacing:279.792000px;}
.ws42{word-spacing:289.728000px;}
.ws5c{word-spacing:294.278400px;}
.ws56{word-spacing:297.230400px;}
.ws54{word-spacing:302.001600px;}
.ws5e{word-spacing:305.164800px;}
.ws5f{word-spacing:305.212800px;}
.ws59{word-spacing:311.702400px;}
.ws3f{word-spacing:320.361600px;}
.ws48{word-spacing:335.913600px;}
.ws53{word-spacing:343.502400px;}
.ws60{word-spacing:344.928000px;}
.ws4f{word-spacing:349.008000px;}
.ws5d{word-spacing:366.144000px;}
.ws5b{word-spacing:373.382400px;}
.ws40{word-spacing:380.592000px;}
.ws57{word-spacing:381.945600px;}
.ws35{word-spacing:393.744000px;}
.ws37{word-spacing:407.184000px;}
.ws33{word-spacing:434.160000px;}
.ws66{word-spacing:586.176000px;}
.ws36{word-spacing:618.432000px;}
.ws38{word-spacing:700.752000px;}
.ws34{word-spacing:724.800000px;}
.ws65{word-spacing:831.936000px;}
.ws67{word-spacing:854.673600px;}
._10{margin-left:-11.573400px;}
._4d{margin-left:-9.478902px;}
._1e{margin-left:-7.669317px;}
._e{margin-left:-6.329361px;}
._f{margin-left:-5.324400px;}
._2{margin-left:-4.263600px;}
._5{margin-left:-3.196800px;}
._3{margin-left:-2.154039px;}
._0{margin-left:-1.050600px;}
._1{width:1.723800px;}
._8{width:2.826039px;}
._9{width:4.083561px;}
._a{width:5.162751px;}
._6{width:7.095600px;}
._7{width:8.785800px;}
._b{width:9.862839px;}
._d{width:11.860839px;}
._c{width:12.978000px;}
._4c{width:15.168600px;}
._45{width:16.386000px;}
._4e{width:17.610000px;}
._49{width:19.278000px;}
._4a{width:20.328039px;}
._4f{width:22.572000px;}
._50{width:23.868000px;}
._51{width:25.288200px;}
._4b{width:29.278800px;}
._1d{width:32.087961px;}
._1c{width:33.222039px;}
._4{width:36.369600px;}
._15{width:41.160000px;}
._48{width:42.969639px;}
._46{width:44.062239px;}
._47{width:45.123000px;}
._11{width:46.560000px;}
._19{width:47.760000px;}
._13{width:50.100000px;}
._18{width:57.300000px;}
._17{width:79.080000px;}
._12{width:80.280000px;}
._16{width:82.380000px;}
._14{width:84.480000px;}
._1b{width:85.500000px;}
._1a{width:89.760000px;}
._40{width:93.465600px;}
._42{width:95.057439px;}
._3f{width:107.006400px;}
._41{width:108.456000px;}
._3b{width:134.880000px;}
._3d{width:141.120000px;}
._3e{width:154.656000px;}
._38{width:177.936000px;}
._39{width:179.376000px;}
._37{width:181.632000px;}
._36{width:185.376000px;}
._23{width:214.938039px;}
._43{width:274.512000px;}
._27{width:281.808000px;}
._2a{width:288.096000px;}
._25{width:294.000000px;}
._24{width:315.456000px;}
._29{width:321.792000px;}
._34{width:322.986600px;}
._2d{width:335.280000px;}
._35{width:348.042600px;}
._33{width:351.125400px;}
._26{width:355.332639px;}
._1f{width:361.632000px;}
._31{width:362.784000px;}
._3a{width:364.896000px;}
._3c{width:369.312000px;}
._2e{width:378.570600px;}
._30{width:380.154600px;}
._2f{width:408.898800px;}
._32{width:417.066600px;}
._22{width:433.866600px;}
._2c{width:495.930600px;}
._28{width:511.536000px;}
._2b{width:534.912000px;}
._21{width:618.576000px;}
._44{width:791.712000px;}
._20{width:848.784000px;}
.fc4{color:rgb(38,64,138);}
.fc2{color:rgb(75,119,196);}
.fc1{color:rgb(65,102,168);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:27.984000px;}
.fsb{font-size:31.482000px;}
.fsa{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs6{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs9{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y3e{bottom:71.212050px;}
.y3f{bottom:75.040050px;}
.y13e{bottom:112.790850px;}
.y158{bottom:112.922850px;}
.y6e{bottom:113.078700px;}
.y9a{bottom:113.078850px;}
.ye6{bottom:117.132750px;}
.y12{bottom:117.205050px;}
.y2c{bottom:117.212700px;}
.yaa{bottom:120.500700px;}
.y11{bottom:131.601450px;}
.y13d{bottom:133.796850px;}
.y157{bottom:133.928850px;}
.y10e{bottom:134.000700px;}
.y6d{bottom:134.078700px;}
.y99{bottom:134.078850px;}
.ye5{bottom:138.036750px;}
.y2b{bottom:138.212700px;}
.y10{bottom:145.997850px;}
.y13c{bottom:154.802850px;}
.y156{bottom:154.934850px;}
.y10d{bottom:155.006700px;}
.y6c{bottom:155.078700px;}
.y98{bottom:155.078850px;}
.ye4{bottom:158.940750px;}
.y2a{bottom:159.212700px;}
.yf{bottom:160.397850px;}
.yec{bottom:160.937100px;}
.y13b{bottom:175.808850px;}
.y155{bottom:175.940850px;}
.y10c{bottom:176.012700px;}
.y6b{bottom:176.078700px;}
.y97{bottom:176.078850px;}
.ye3{bottom:179.844750px;}
.y29{bottom:180.212700px;}
.ycb{bottom:190.440900px;}
.ya9{bottom:190.441050px;}
.y13a{bottom:196.814850px;}
.y154{bottom:196.946850px;}
.y10b{bottom:197.018700px;}
.y6a{bottom:197.078700px;}
.yb0{bottom:197.078850px;}
.ye2{bottom:200.748750px;}
.y3b{bottom:203.458800px;}
.y96{bottom:211.441050px;}
.y28{bottom:216.352350px;}
.y139{bottom:217.820850px;}
.y153{bottom:217.952850px;}
.y10a{bottom:218.024700px;}
.ya0{bottom:218.078700px;}
.yaf{bottom:218.078850px;}
.y3a{bottom:221.454300px;}
.ye1{bottom:221.652750px;}
.y69{bottom:231.513450px;}
.y138{bottom:238.826850px;}
.y152{bottom:238.958850px;}
.y109{bottom:239.030700px;}
.y9f{bottom:239.078700px;}
.ya8{bottom:239.078850px;}
.y39{bottom:239.449800px;}
.ye0{bottom:242.556750px;}
.y38{bottom:257.445300px;}
.y137{bottom:259.832850px;}
.y151{bottom:259.964850px;}
.y108{bottom:260.036700px;}
.y9e{bottom:260.078700px;}
.y95{bottom:260.078850px;}
.ydf{bottom:263.460750px;}
.y68{bottom:263.811000px;}
.y37{bottom:275.440800px;}
.y136{bottom:280.838850px;}
.y150{bottom:280.970850px;}
.y107{bottom:281.042700px;}
.y9d{bottom:281.078700px;}
.y94{bottom:281.078850px;}
.yde{bottom:284.364750px;}
.y27{bottom:292.623450px;}
.y36{bottom:293.436300px;}
.y135{bottom:301.844850px;}
.y14f{bottom:301.976850px;}
.ybd{bottom:301.994550px;}
.y106{bottom:302.048700px;}
.y9c{bottom:302.078700px;}
.y93{bottom:302.078850px;}
.ydd{bottom:305.268750px;}
.y35{bottom:311.431800px;}
.y26{bottom:312.427950px;}
.ybc{bottom:321.799050px;}
.y134{bottom:322.850850px;}
.y14e{bottom:322.982850px;}
.y105{bottom:323.054700px;}
.y67{bottom:323.078700px;}
.y92{bottom:323.078850px;}
.ydc{bottom:326.172750px;}
.y34{bottom:329.427300px;}
.y133{bottom:343.856850px;}
.y14d{bottom:343.988850px;}
.y104{bottom:344.060700px;}
.y66{bottom:344.078700px;}
.y91{bottom:344.078850px;}
.ydb{bottom:347.076750px;}
.y25{bottom:353.415900px;}
.yeb{bottom:358.441050px;}
.y33{bottom:364.432800px;}
.y132{bottom:364.862850px;}
.y14c{bottom:364.994850px;}
.y177{bottom:365.018850px;}
.y103{bottom:365.066700px;}
.y65{bottom:365.078700px;}
.y90{bottom:365.078850px;}
.yda{bottom:367.980750px;}
.y24{bottom:373.220400px;}
.y32{bottom:382.428300px;}
.y131{bottom:385.868850px;}
.y14b{bottom:386.000850px;}
.y176{bottom:386.024850px;}
.y102{bottom:386.072700px;}
.y64{bottom:386.078700px;}
.y8f{bottom:386.078850px;}
.yd9{bottom:388.884750px;}
.y23{bottom:393.024900px;}
.y31{bottom:400.423800px;}
.y130{bottom:406.874850px;}
.y14a{bottom:407.006850px;}
.y175{bottom:407.030850px;}
.y63{bottom:407.078700px;}
.y8e{bottom:407.078850px;}
.yd8{bottom:409.788750px;}
.y22{bottom:412.829400px;}
.y12f{bottom:427.880850px;}
.y149{bottom:428.012850px;}
.y174{bottom:428.036850px;}
.y62{bottom:428.078700px;}
.y8d{bottom:428.078850px;}
.yd7{bottom:430.692750px;}
.y21{bottom:432.633900px;}
.y30{bottom:435.429300px;}
.y101{bottom:442.440900px;}
.y12e{bottom:448.886850px;}
.y148{bottom:449.018850px;}
.y173{bottom:449.042850px;}
.y61{bottom:449.078700px;}
.y8c{bottom:449.078850px;}
.yd6{bottom:451.596750px;}
.y20{bottom:452.438400px;}
.y2f{bottom:453.429300px;}
.y12d{bottom:469.892850px;}
.y147{bottom:470.024850px;}
.y172{bottom:470.048850px;}
.y60{bottom:470.078700px;}
.y8b{bottom:470.078850px;}
.y2e{bottom:471.429300px;}
.y1f{bottom:472.242900px;}
.yd5{bottom:472.500750px;}
.y2d{bottom:489.429300px;}
.y12c{bottom:490.898850px;}
.y146{bottom:491.030850px;}
.y171{bottom:491.054850px;}
.y100{bottom:491.072700px;}
.y5f{bottom:491.078700px;}
.y8a{bottom:491.078850px;}
.y1e{bottom:492.047400px;}
.yd4{bottom:493.404750px;}
.yae{bottom:505.441050px;}
.yc6{bottom:511.405350px;}
.y1d{bottom:511.851900px;}
.y12b{bottom:511.904850px;}
.y145{bottom:512.036850px;}
.y170{bottom:512.060850px;}
.y5e{bottom:512.078700px;}
.ya7{bottom:512.078850px;}
.yd3{bottom:514.308750px;}
.y1c{bottom:531.656400px;}
.yc5{bottom:532.309350px;}
.y12a{bottom:532.910850px;}
.y144{bottom:533.042850px;}
.y16f{bottom:533.066850px;}
.y5d{bottom:533.078700px;}
.y89{bottom:533.078850px;}
.yff{bottom:538.529250px;}
.yd2{bottom:544.781550px;}
.y1b{bottom:551.460900px;}
.yc4{bottom:553.213350px;}
.y129{bottom:553.916850px;}
.y143{bottom:554.048850px;}
.y16e{bottom:554.072850px;}
.y5c{bottom:554.078700px;}
.y88{bottom:554.078850px;}
.yd1{bottom:564.586050px;}
.y1a{bottom:571.265400px;}
.yc3{bottom:574.117350px;}
.y128{bottom:574.922850px;}
.y142{bottom:575.054850px;}
.yfe{bottom:575.072700px;}
.y5b{bottom:575.078700px;}
.ya6{bottom:575.078850px;}
.yd0{bottom:584.390550px;}
.y87{bottom:589.441050px;}
.y19{bottom:591.069900px;}
.yc2{bottom:595.021350px;}
.y127{bottom:595.928850px;}
.y141{bottom:596.060850px;}
.yfd{bottom:596.072700px;}
.y5a{bottom:596.078700px;}
.ya5{bottom:596.078850px;}
.y16d{bottom:609.513600px;}
.y18{bottom:610.874400px;}
.yc1{bottom:615.925350px;}
.y126{bottom:616.934850px;}
.y140{bottom:617.066850px;}
.yfc{bottom:617.072700px;}
.y59{bottom:617.078700px;}
.ya4{bottom:617.078850px;}
.y17{bottom:630.678900px;}
.yad{bottom:631.441050px;}
.y125{bottom:637.940850px;}
.yfb{bottom:638.072700px;}
.y13f{bottom:638.072850px;}
.y58{bottom:638.078700px;}
.y86{bottom:638.078850px;}
.y16c{bottom:641.811150px;}
.yc0{bottom:646.398300px;}
.y16{bottom:650.483400px;}
.y124{bottom:658.946850px;}
.yfa{bottom:659.072700px;}
.y57{bottom:659.078700px;}
.y85{bottom:659.078850px;}
.ybf{bottom:666.202800px;}
.y15{bottom:670.287900px;}
.y123{bottom:679.952850px;}
.yf9{bottom:680.072700px;}
.y56{bottom:680.078700px;}
.y84{bottom:680.078850px;}
.ybe{bottom:686.007300px;}
.y122{bottom:700.958850px;}
.y16b{bottom:700.976850px;}
.y55{bottom:701.078700px;}
.y83{bottom:701.078850px;}
.y14{bottom:701.385300px;}
.y121{bottom:721.964850px;}
.y16a{bottom:721.982850px;}
.y54{bottom:722.078700px;}
.y82{bottom:722.078850px;}
.yf8{bottom:727.529250px;}
.yca{bottom:740.807400px;}
.y120{bottom:742.970850px;}
.y169{bottom:742.988850px;}
.y53{bottom:743.078700px;}
.y81{bottom:743.078850px;}
.yc9{bottom:760.611900px;}
.y11f{bottom:763.976850px;}
.y168{bottom:763.994850px;}
.yf7{bottom:764.036700px;}
.y52{bottom:764.078700px;}
.y80{bottom:764.078850px;}
.yc8{bottom:780.416400px;}
.ye{bottom:780.666900px;}
.y11e{bottom:784.982850px;}
.y167{bottom:785.000850px;}
.yf6{bottom:785.042700px;}
.y51{bottom:785.078700px;}
.y7f{bottom:785.078850px;}
.yd{bottom:798.666900px;}
.yac{bottom:799.441050px;}
.yc7{bottom:800.220900px;}
.y11d{bottom:805.988850px;}
.y166{bottom:806.006850px;}
.yf5{bottom:806.048700px;}
.y50{bottom:806.078700px;}
.y7e{bottom:806.078850px;}
.yc{bottom:816.666900px;}
.ya3{bottom:820.441050px;}
.y11c{bottom:826.994850px;}
.y165{bottom:827.012850px;}
.yf4{bottom:827.054700px;}
.y4f{bottom:827.078700px;}
.y7d{bottom:827.078850px;}
.yb{bottom:834.666900px;}
.y11b{bottom:848.000850px;}
.y164{bottom:848.018850px;}
.yf3{bottom:848.060700px;}
.y4e{bottom:848.078700px;}
.y7c{bottom:848.078850px;}
.ya{bottom:852.666900px;}
.ye7{bottom:862.440900px;}
.y11a{bottom:869.006850px;}
.y163{bottom:869.024850px;}
.yf2{bottom:869.066700px;}
.y4d{bottom:869.078700px;}
.y7b{bottom:869.078850px;}
.y9{bottom:870.666900px;}
.y8{bottom:888.666900px;}
.y119{bottom:890.012850px;}
.y162{bottom:890.030850px;}
.yf1{bottom:890.072700px;}
.y4c{bottom:890.078700px;}
.y7a{bottom:890.078850px;}
.ybb{bottom:903.473100px;}
.y7{bottom:906.666900px;}
.y118{bottom:911.018850px;}
.y161{bottom:911.036850px;}
.y4b{bottom:911.078700px;}
.y79{bottom:911.078850px;}
.yba{bottom:924.377100px;}
.y6{bottom:924.666900px;}
.y117{bottom:932.024850px;}
.y160{bottom:932.042850px;}
.y4a{bottom:932.078700px;}
.y78{bottom:932.078850px;}
.yf0{bottom:937.529250px;}
.yb9{bottom:945.281100px;}
.y116{bottom:953.030850px;}
.y15f{bottom:953.048850px;}
.y49{bottom:953.078700px;}
.y77{bottom:953.078850px;}
.y5{bottom:959.674800px;}
.yb8{bottom:966.185100px;}
.y115{bottom:974.036850px;}
.y15e{bottom:974.054850px;}
.y48{bottom:974.078700px;}
.y76{bottom:974.078850px;}
.y4{bottom:979.474800px;}
.ycf{bottom:987.065100px;}
.yb7{bottom:987.089100px;}
.ya2{bottom:987.513600px;}
.y114{bottom:995.042850px;}
.y15d{bottom:995.060850px;}
.y47{bottom:995.078700px;}
.y75{bottom:995.078850px;}
.yef{bottom:1000.529250px;}
.yea{bottom:1006.289100px;}
.yce{bottom:1007.549100px;}
.yb6{bottom:1007.993100px;}
.y9b{bottom:1009.440900px;}
.yab{bottom:1009.441050px;}
.y113{bottom:1016.048850px;}
.y15c{bottom:1016.066850px;}
.y46{bottom:1016.078700px;}
.y74{bottom:1016.078850px;}
.y3{bottom:1016.285550px;}
.ya1{bottom:1019.811000px;}
.ye9{bottom:1027.193100px;}
.ycd{bottom:1028.033100px;}
.yb5{bottom:1028.897100px;}
.y112{bottom:1037.054850px;}
.y15b{bottom:1037.072850px;}
.y45{bottom:1037.078700px;}
.y73{bottom:1037.078850px;}
.ye8{bottom:1048.097100px;}
.ycc{bottom:1048.517100px;}
.y2{bottom:1049.282550px;}
.yb4{bottom:1049.801100px;}
.y111{bottom:1058.060850px;}
.y44{bottom:1058.078700px;}
.y72{bottom:1058.078850px;}
.yee{bottom:1063.529250px;}
.yb3{bottom:1069.001100px;}
.y110{bottom:1079.066850px;}
.y43{bottom:1079.078700px;}
.y71{bottom:1079.078850px;}
.y15a{bottom:1089.903300px;}
.yb2{bottom:1099.478400px;}
.y10f{bottom:1100.072850px;}
.y42{bottom:1100.078700px;}
.y70{bottom:1100.078850px;}
.y13{bottom:1109.815500px;}
.yb1{bottom:1119.282900px;}
.y41{bottom:1121.078700px;}
.y6f{bottom:1121.078850px;}
.y159{bottom:1122.200850px;}
.yed{bottom:1125.451800px;}
.y3d{bottom:1159.189500px;}
.y3c{bottom:1178.689500px;}
.y40{bottom:1178.692050px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.h15{height:36.000000px;}
.h13{height:38.226562px;}
.hf{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h14{height:39.000000px;}
.h8{height:43.004883px;}
.he{height:43.057617px;}
.hd{height:43.321289px;}
.ha{height:43.875000px;}
.h12{height:43.893000px;}
.h17{height:43.899000px;}
.h18{height:44.403000px;}
.h19{height:45.615234px;}
.h9{height:47.343750px;}
.hc{height:48.750000px;}
.h16{height:50.176758px;}
.h10{height:52.078125px;}
.h4{height:52.948242px;}
.h11{height:53.625000px;}
.h1a{height:54.738281px;}
.hb{height:56.812500px;}
.h3{height:81.231445px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xa{left:107.063850px;}
.xc{left:108.289650px;}
.x5{left:119.878950px;}
.x6{left:122.032500px;}
.x7{left:124.102950px;}
.x4{left:300.189000px;}
.xf{left:304.434600px;}
.xb{left:317.199000px;}
.x11{left:353.211450px;}
.x13{left:362.332200px;}
.x10{left:373.939800px;}
.x3{left:396.050700px;}
.x12{left:444.567450px;}
.xe{left:522.258600px;}
.xd{left:620.562600px;}
.x9{left:648.907800px;}
.x8{left:669.715800px;}
.x1{left:801.157500px;}
@media print{
.v4{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.208000pt;}
.v5{vertical-align:16.000000pt;}
.v3{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.lsc{letter-spacing:-1.013333pt;}
.ls16{letter-spacing:-0.853333pt;}
.ls5{letter-spacing:-0.816000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.614400pt;}
.ls11{letter-spacing:-0.533333pt;}
.ls3{letter-spacing:-0.362667pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.266667pt;}
.ls9{letter-spacing:-0.160000pt;}
.ls14{letter-spacing:-0.106667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.024000pt;}
.ls10{letter-spacing:0.028800pt;}
.lsf{letter-spacing:0.048533pt;}
.ls7{letter-spacing:0.068267pt;}
.lsa{letter-spacing:0.266667pt;}
.ls18{letter-spacing:0.533333pt;}
.ls17{letter-spacing:0.640000pt;}
.ls0{letter-spacing:38.383435pt;}
.ls1{letter-spacing:38.383968pt;}
.ls12{letter-spacing:149.461333pt;}
.ls13{letter-spacing:215.210667pt;}
.lsd{letter-spacing:750.506667pt;}
.lse{letter-spacing:768.298667pt;}
.ws26{word-spacing:-53.333333pt;}
.ws8{word-spacing:-15.936000pt;}
.ws7c{word-spacing:-14.608000pt;}
.ws7{word-spacing:-13.280000pt;}
.ws2a{word-spacing:-13.226667pt;}
.ws18{word-spacing:-13.066667pt;}
.ws23{word-spacing:-12.960000pt;}
.ws39{word-spacing:-11.952000pt;}
.ws7d{word-spacing:-11.904000pt;}
.ws43{word-spacing:-11.760000pt;}
.ws9{word-spacing:-10.992000pt;}
.wsc{word-spacing:-10.800000pt;}
.wsa{word-spacing:-10.176000pt;}
.wsb{word-spacing:-9.984000pt;}
.wsd{word-spacing:-9.770667pt;}
.ws17{word-spacing:-9.600000pt;}
.ws6{word-spacing:-8.793600pt;}
.ws4{word-spacing:-8.549333pt;}
.ws3{word-spacing:-8.482261pt;}
.ws27{word-spacing:-7.711147pt;}
.ws32{word-spacing:-6.940032pt;}
.ws5{word-spacing:-5.646549pt;}
.ws82{word-spacing:-2.688000pt;}
.ws78{word-spacing:-2.240000pt;}
.ws2d{word-spacing:-1.866667pt;}
.ws8c{word-spacing:-1.776000pt;}
.ws88{word-spacing:-1.728000pt;}
.ws84{word-spacing:-1.632000pt;}
.ws6d{word-spacing:-1.546667pt;}
.ws3c{word-spacing:-1.248000pt;}
.ws76{word-spacing:-1.120000pt;}
.ws10{word-spacing:-1.114667pt;}
.ws7f{word-spacing:-0.912000pt;}
.ws1e{word-spacing:-0.800000pt;}
.ws91{word-spacing:-0.640000pt;}
.ws1c{word-spacing:-0.586667pt;}
.ws3e{word-spacing:-0.533333pt;}
.ws1f{word-spacing:-0.480000pt;}
.ws8f{word-spacing:-0.432000pt;}
.ws14{word-spacing:-0.384000pt;}
.ws3b{word-spacing:-0.336000pt;}
.ws2f{word-spacing:-0.266667pt;}
.ws11{word-spacing:-0.192000pt;}
.wse{word-spacing:0.000000pt;}
.ws7a{word-spacing:0.053333pt;}
.ws83{word-spacing:0.096000pt;}
.ws6f{word-spacing:0.106667pt;}
.ws28{word-spacing:0.160000pt;}
.ws6b{word-spacing:0.213333pt;}
.ws79{word-spacing:0.266667pt;}
.ws24{word-spacing:0.320000pt;}
.wsf{word-spacing:0.362667pt;}
.ws69{word-spacing:0.426667pt;}
.ws90{word-spacing:0.432000pt;}
.ws47{word-spacing:0.533333pt;}
.ws81{word-spacing:0.576000pt;}
.ws12{word-spacing:0.614400pt;}
.ws2c{word-spacing:0.640000pt;}
.ws80{word-spacing:0.672000pt;}
.ws45{word-spacing:0.720000pt;}
.ws16{word-spacing:0.816000pt;}
.ws7b{word-spacing:0.853333pt;}
.ws2e{word-spacing:1.013333pt;}
.ws44{word-spacing:1.056000pt;}
.ws72{word-spacing:1.152000pt;}
.ws3d{word-spacing:1.173333pt;}
.ws1d{word-spacing:1.226667pt;}
.ws77{word-spacing:1.386667pt;}
.ws30{word-spacing:1.440000pt;}
.ws8d{word-spacing:1.488000pt;}
.ws73{word-spacing:1.493333pt;}
.ws89{word-spacing:1.584000pt;}
.ws75{word-spacing:1.600000pt;}
.ws70{word-spacing:1.653333pt;}
.ws46{word-spacing:1.706667pt;}
.ws29{word-spacing:2.080000pt;}
.ws64{word-spacing:2.256000pt;}
.ws22{word-spacing:2.400000pt;}
.ws1b{word-spacing:2.506667pt;}
.ws87{word-spacing:2.592000pt;}
.ws71{word-spacing:2.613333pt;}
.ws2b{word-spacing:2.880000pt;}
.ws1a{word-spacing:3.146667pt;}
.ws68{word-spacing:3.520000pt;}
.ws31{word-spacing:3.840000pt;}
.ws20{word-spacing:4.266667pt;}
.ws8b{word-spacing:4.320000pt;}
.ws6c{word-spacing:4.426667pt;}
.ws3a{word-spacing:4.464000pt;}
.ws62{word-spacing:4.640000pt;}
.ws63{word-spacing:4.704000pt;}
.ws21{word-spacing:4.800000pt;}
.ws19{word-spacing:4.960000pt;}
.ws8a{word-spacing:5.088000pt;}
.ws74{word-spacing:5.333333pt;}
.ws25{word-spacing:5.600000pt;}
.ws6e{word-spacing:5.760000pt;}
.ws13{word-spacing:6.288000pt;}
.ws6a{word-spacing:6.560000pt;}
.ws15{word-spacing:8.304000pt;}
.ws8e{word-spacing:9.264000pt;}
.ws85{word-spacing:10.032000pt;}
.ws86{word-spacing:10.656000pt;}
.ws7e{word-spacing:10.944000pt;}
.ws0{word-spacing:29.911587pt;}
.ws1{word-spacing:29.912120pt;}
.ws2{word-spacing:29.922533pt;}
.ws55{word-spacing:61.312000pt;}
.ws4e{word-spacing:73.258667pt;}
.ws4c{word-spacing:85.290667pt;}
.ws50{word-spacing:97.280000pt;}
.ws52{word-spacing:101.196800pt;}
.ws4d{word-spacing:114.901333pt;}
.ws58{word-spacing:126.890667pt;}
.ws49{word-spacing:138.794667pt;}
.ws4b{word-spacing:138.837333pt;}
.ws4a{word-spacing:138.880000pt;}
.ws5a{word-spacing:219.362133pt;}
.ws51{word-spacing:242.163200pt;}
.ws41{word-spacing:245.504000pt;}
.ws61{word-spacing:248.704000pt;}
.ws42{word-spacing:257.536000pt;}
.ws5c{word-spacing:261.580800pt;}
.ws56{word-spacing:264.204800pt;}
.ws54{word-spacing:268.445867pt;}
.ws5e{word-spacing:271.257600pt;}
.ws5f{word-spacing:271.300267pt;}
.ws59{word-spacing:277.068800pt;}
.ws3f{word-spacing:284.765867pt;}
.ws48{word-spacing:298.589867pt;}
.ws53{word-spacing:305.335467pt;}
.ws60{word-spacing:306.602667pt;}
.ws4f{word-spacing:310.229333pt;}
.ws5d{word-spacing:325.461333pt;}
.ws5b{word-spacing:331.895467pt;}
.ws40{word-spacing:338.304000pt;}
.ws57{word-spacing:339.507200pt;}
.ws35{word-spacing:349.994667pt;}
.ws37{word-spacing:361.941333pt;}
.ws33{word-spacing:385.920000pt;}
.ws66{word-spacing:521.045333pt;}
.ws36{word-spacing:549.717333pt;}
.ws38{word-spacing:622.890667pt;}
.ws34{word-spacing:644.266667pt;}
.ws65{word-spacing:739.498667pt;}
.ws67{word-spacing:759.709867pt;}
._10{margin-left:-10.287467pt;}
._4d{margin-left:-8.425691pt;}
._1e{margin-left:-6.817171pt;}
._e{margin-left:-5.626099pt;}
._f{margin-left:-4.732800pt;}
._2{margin-left:-3.789867pt;}
._5{margin-left:-2.841600pt;}
._3{margin-left:-1.914701pt;}
._0{margin-left:-0.933867pt;}
._1{width:1.532267pt;}
._8{width:2.512035pt;}
._9{width:3.629832pt;}
._a{width:4.589112pt;}
._6{width:6.307200pt;}
._7{width:7.809600pt;}
._b{width:8.766968pt;}
._d{width:10.542968pt;}
._c{width:11.536000pt;}
._4c{width:13.483200pt;}
._45{width:14.565333pt;}
._4e{width:15.653333pt;}
._49{width:17.136000pt;}
._4a{width:18.069368pt;}
._4f{width:20.064000pt;}
._50{width:21.216000pt;}
._51{width:22.478400pt;}
._4b{width:26.025600pt;}
._1d{width:28.522632pt;}
._1c{width:29.530701pt;}
._4{width:32.328533pt;}
._15{width:36.586667pt;}
._48{width:38.195235pt;}
._46{width:39.166435pt;}
._47{width:40.109333pt;}
._11{width:41.386667pt;}
._19{width:42.453333pt;}
._13{width:44.533333pt;}
._18{width:50.933333pt;}
._17{width:70.293333pt;}
._12{width:71.360000pt;}
._16{width:73.226667pt;}
._14{width:75.093333pt;}
._1b{width:76.000000pt;}
._1a{width:79.786667pt;}
._40{width:83.080533pt;}
._42{width:84.495501pt;}
._3f{width:95.116800pt;}
._41{width:96.405333pt;}
._3b{width:119.893333pt;}
._3d{width:125.440000pt;}
._3e{width:137.472000pt;}
._38{width:158.165333pt;}
._39{width:159.445333pt;}
._37{width:161.450667pt;}
._36{width:164.778667pt;}
._23{width:191.056035pt;}
._43{width:244.010667pt;}
._27{width:250.496000pt;}
._2a{width:256.085333pt;}
._25{width:261.333333pt;}
._24{width:280.405333pt;}
._29{width:286.037333pt;}
._34{width:287.099200pt;}
._2d{width:298.026667pt;}
._35{width:309.371200pt;}
._33{width:312.111467pt;}
._26{width:315.851235pt;}
._1f{width:321.450667pt;}
._31{width:322.474667pt;}
._3a{width:324.352000pt;}
._3c{width:328.277333pt;}
._2e{width:336.507200pt;}
._30{width:337.915200pt;}
._2f{width:363.465600pt;}
._32{width:370.725867pt;}
._22{width:385.659200pt;}
._2c{width:440.827200pt;}
._28{width:454.698667pt;}
._2b{width:475.477333pt;}
._21{width:549.845333pt;}
._44{width:703.744000pt;}
._20{width:754.474667pt;}
.fs5{font-size:24.874667pt;}
.fsb{font-size:27.984000pt;}
.fsa{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs6{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs9{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y3e{bottom:63.299600pt;}
.y3f{bottom:66.702267pt;}
.y13e{bottom:100.258533pt;}
.y158{bottom:100.375867pt;}
.y6e{bottom:100.514400pt;}
.y9a{bottom:100.514533pt;}
.ye6{bottom:104.118000pt;}
.y12{bottom:104.182267pt;}
.y2c{bottom:104.189067pt;}
.yaa{bottom:107.111733pt;}
.y11{bottom:116.979067pt;}
.y13d{bottom:118.930533pt;}
.y157{bottom:119.047867pt;}
.y10e{bottom:119.111733pt;}
.y6d{bottom:119.181067pt;}
.y99{bottom:119.181200pt;}
.ye5{bottom:122.699333pt;}
.y2b{bottom:122.855733pt;}
.y10{bottom:129.775867pt;}
.y13c{bottom:137.602533pt;}
.y156{bottom:137.719867pt;}
.y10d{bottom:137.783733pt;}
.y6c{bottom:137.847733pt;}
.y98{bottom:137.847867pt;}
.ye4{bottom:141.280667pt;}
.y2a{bottom:141.522400pt;}
.yf{bottom:142.575867pt;}
.yec{bottom:143.055200pt;}
.y13b{bottom:156.274533pt;}
.y155{bottom:156.391867pt;}
.y10c{bottom:156.455733pt;}
.y6b{bottom:156.514400pt;}
.y97{bottom:156.514533pt;}
.ye3{bottom:159.862000pt;}
.y29{bottom:160.189067pt;}
.ycb{bottom:169.280800pt;}
.ya9{bottom:169.280933pt;}
.y13a{bottom:174.946533pt;}
.y154{bottom:175.063867pt;}
.y10b{bottom:175.127733pt;}
.y6a{bottom:175.181067pt;}
.yb0{bottom:175.181200pt;}
.ye2{bottom:178.443333pt;}
.y3b{bottom:180.852267pt;}
.y96{bottom:187.947600pt;}
.y28{bottom:192.313200pt;}
.y139{bottom:193.618533pt;}
.y153{bottom:193.735867pt;}
.y10a{bottom:193.799733pt;}
.ya0{bottom:193.847733pt;}
.yaf{bottom:193.847867pt;}
.y3a{bottom:196.848267pt;}
.ye1{bottom:197.024667pt;}
.y69{bottom:205.789733pt;}
.y138{bottom:212.290533pt;}
.y152{bottom:212.407867pt;}
.y109{bottom:212.471733pt;}
.y9f{bottom:212.514400pt;}
.ya8{bottom:212.514533pt;}
.y39{bottom:212.844267pt;}
.ye0{bottom:215.606000pt;}
.y38{bottom:228.840267pt;}
.y137{bottom:230.962533pt;}
.y151{bottom:231.079867pt;}
.y108{bottom:231.143733pt;}
.y9e{bottom:231.181067pt;}
.y95{bottom:231.181200pt;}
.ydf{bottom:234.187333pt;}
.y68{bottom:234.498667pt;}
.y37{bottom:244.836267pt;}
.y136{bottom:249.634533pt;}
.y150{bottom:249.751867pt;}
.y107{bottom:249.815733pt;}
.y9d{bottom:249.847733pt;}
.y94{bottom:249.847867pt;}
.yde{bottom:252.768667pt;}
.y27{bottom:260.109733pt;}
.y36{bottom:260.832267pt;}
.y135{bottom:268.306533pt;}
.y14f{bottom:268.423867pt;}
.ybd{bottom:268.439600pt;}
.y106{bottom:268.487733pt;}
.y9c{bottom:268.514400pt;}
.y93{bottom:268.514533pt;}
.ydd{bottom:271.350000pt;}
.y35{bottom:276.828267pt;}
.y26{bottom:277.713733pt;}
.ybc{bottom:286.043600pt;}
.y134{bottom:286.978533pt;}
.y14e{bottom:287.095867pt;}
.y105{bottom:287.159733pt;}
.y67{bottom:287.181067pt;}
.y92{bottom:287.181200pt;}
.ydc{bottom:289.931333pt;}
.y34{bottom:292.824267pt;}
.y133{bottom:305.650533pt;}
.y14d{bottom:305.767867pt;}
.y104{bottom:305.831733pt;}
.y66{bottom:305.847733pt;}
.y91{bottom:305.847867pt;}
.ydb{bottom:308.512667pt;}
.y25{bottom:314.147467pt;}
.yeb{bottom:318.614267pt;}
.y33{bottom:323.940267pt;}
.y132{bottom:324.322533pt;}
.y14c{bottom:324.439867pt;}
.y177{bottom:324.461200pt;}
.y103{bottom:324.503733pt;}
.y65{bottom:324.514400pt;}
.y90{bottom:324.514533pt;}
.yda{bottom:327.094000pt;}
.y24{bottom:331.751467pt;}
.y32{bottom:339.936267pt;}
.y131{bottom:342.994533pt;}
.y14b{bottom:343.111867pt;}
.y176{bottom:343.133200pt;}
.y102{bottom:343.175733pt;}
.y64{bottom:343.181067pt;}
.y8f{bottom:343.181200pt;}
.yd9{bottom:345.675333pt;}
.y23{bottom:349.355467pt;}
.y31{bottom:355.932267pt;}
.y130{bottom:361.666533pt;}
.y14a{bottom:361.783867pt;}
.y175{bottom:361.805200pt;}
.y63{bottom:361.847733pt;}
.y8e{bottom:361.847867pt;}
.yd8{bottom:364.256667pt;}
.y22{bottom:366.959467pt;}
.y12f{bottom:380.338533pt;}
.y149{bottom:380.455867pt;}
.y174{bottom:380.477200pt;}
.y62{bottom:380.514400pt;}
.y8d{bottom:380.514533pt;}
.yd7{bottom:382.838000pt;}
.y21{bottom:384.563467pt;}
.y30{bottom:387.048267pt;}
.y101{bottom:393.280800pt;}
.y12e{bottom:399.010533pt;}
.y148{bottom:399.127867pt;}
.y173{bottom:399.149200pt;}
.y61{bottom:399.181067pt;}
.y8c{bottom:399.181200pt;}
.yd6{bottom:401.419333pt;}
.y20{bottom:402.167467pt;}
.y2f{bottom:403.048267pt;}
.y12d{bottom:417.682533pt;}
.y147{bottom:417.799867pt;}
.y172{bottom:417.821200pt;}
.y60{bottom:417.847733pt;}
.y8b{bottom:417.847867pt;}
.y2e{bottom:419.048267pt;}
.y1f{bottom:419.771467pt;}
.yd5{bottom:420.000667pt;}
.y2d{bottom:435.048267pt;}
.y12c{bottom:436.354533pt;}
.y146{bottom:436.471867pt;}
.y171{bottom:436.493200pt;}
.y100{bottom:436.509067pt;}
.y5f{bottom:436.514400pt;}
.y8a{bottom:436.514533pt;}
.y1e{bottom:437.375467pt;}
.yd4{bottom:438.582000pt;}
.yae{bottom:449.280933pt;}
.yc6{bottom:454.582533pt;}
.y1d{bottom:454.979467pt;}
.y12b{bottom:455.026533pt;}
.y145{bottom:455.143867pt;}
.y170{bottom:455.165200pt;}
.y5e{bottom:455.181067pt;}
.ya7{bottom:455.181200pt;}
.yd3{bottom:457.163333pt;}
.y1c{bottom:472.583467pt;}
.yc5{bottom:473.163867pt;}
.y12a{bottom:473.698533pt;}
.y144{bottom:473.815867pt;}
.y16f{bottom:473.837200pt;}
.y5d{bottom:473.847733pt;}
.y89{bottom:473.847867pt;}
.yff{bottom:478.692667pt;}
.yd2{bottom:484.250267pt;}
.y1b{bottom:490.187467pt;}
.yc4{bottom:491.745200pt;}
.y129{bottom:492.370533pt;}
.y143{bottom:492.487867pt;}
.y16e{bottom:492.509200pt;}
.y5c{bottom:492.514400pt;}
.y88{bottom:492.514533pt;}
.yd1{bottom:501.854267pt;}
.y1a{bottom:507.791467pt;}
.yc3{bottom:510.326533pt;}
.y128{bottom:511.042533pt;}
.y142{bottom:511.159867pt;}
.yfe{bottom:511.175733pt;}
.y5b{bottom:511.181067pt;}
.ya6{bottom:511.181200pt;}
.yd0{bottom:519.458267pt;}
.y87{bottom:523.947600pt;}
.y19{bottom:525.395467pt;}
.yc2{bottom:528.907867pt;}
.y127{bottom:529.714533pt;}
.y141{bottom:529.831867pt;}
.yfd{bottom:529.842400pt;}
.y5a{bottom:529.847733pt;}
.ya5{bottom:529.847867pt;}
.y16d{bottom:541.789867pt;}
.y18{bottom:542.999467pt;}
.yc1{bottom:547.489200pt;}
.y126{bottom:548.386533pt;}
.y140{bottom:548.503867pt;}
.yfc{bottom:548.509067pt;}
.y59{bottom:548.514400pt;}
.ya4{bottom:548.514533pt;}
.y17{bottom:560.603467pt;}
.yad{bottom:561.280933pt;}
.y125{bottom:567.058533pt;}
.yfb{bottom:567.175733pt;}
.y13f{bottom:567.175867pt;}
.y58{bottom:567.181067pt;}
.y86{bottom:567.181200pt;}
.y16c{bottom:570.498800pt;}
.yc0{bottom:574.576267pt;}
.y16{bottom:578.207467pt;}
.y124{bottom:585.730533pt;}
.yfa{bottom:585.842400pt;}
.y57{bottom:585.847733pt;}
.y85{bottom:585.847867pt;}
.ybf{bottom:592.180267pt;}
.y15{bottom:595.811467pt;}
.y123{bottom:604.402533pt;}
.yf9{bottom:604.509067pt;}
.y56{bottom:604.514400pt;}
.y84{bottom:604.514533pt;}
.ybe{bottom:609.784267pt;}
.y122{bottom:623.074533pt;}
.y16b{bottom:623.090533pt;}
.y55{bottom:623.181067pt;}
.y83{bottom:623.181200pt;}
.y14{bottom:623.453600pt;}
.y121{bottom:641.746533pt;}
.y16a{bottom:641.762533pt;}
.y54{bottom:641.847733pt;}
.y82{bottom:641.847867pt;}
.yf8{bottom:646.692667pt;}
.yca{bottom:658.495467pt;}
.y120{bottom:660.418533pt;}
.y169{bottom:660.434533pt;}
.y53{bottom:660.514400pt;}
.y81{bottom:660.514533pt;}
.yc9{bottom:676.099467pt;}
.y11f{bottom:679.090533pt;}
.y168{bottom:679.106533pt;}
.yf7{bottom:679.143733pt;}
.y52{bottom:679.181067pt;}
.y80{bottom:679.181200pt;}
.yc8{bottom:693.703467pt;}
.ye{bottom:693.926133pt;}
.y11e{bottom:697.762533pt;}
.y167{bottom:697.778533pt;}
.yf6{bottom:697.815733pt;}
.y51{bottom:697.847733pt;}
.y7f{bottom:697.847867pt;}
.yd{bottom:709.926133pt;}
.yac{bottom:710.614267pt;}
.yc7{bottom:711.307467pt;}
.y11d{bottom:716.434533pt;}
.y166{bottom:716.450533pt;}
.yf5{bottom:716.487733pt;}
.y50{bottom:716.514400pt;}
.y7e{bottom:716.514533pt;}
.yc{bottom:725.926133pt;}
.ya3{bottom:729.280933pt;}
.y11c{bottom:735.106533pt;}
.y165{bottom:735.122533pt;}
.yf4{bottom:735.159733pt;}
.y4f{bottom:735.181067pt;}
.y7d{bottom:735.181200pt;}
.yb{bottom:741.926133pt;}
.y11b{bottom:753.778533pt;}
.y164{bottom:753.794533pt;}
.yf3{bottom:753.831733pt;}
.y4e{bottom:753.847733pt;}
.y7c{bottom:753.847867pt;}
.ya{bottom:757.926133pt;}
.ye7{bottom:766.614133pt;}
.y11a{bottom:772.450533pt;}
.y163{bottom:772.466533pt;}
.yf2{bottom:772.503733pt;}
.y4d{bottom:772.514400pt;}
.y7b{bottom:772.514533pt;}
.y9{bottom:773.926133pt;}
.y8{bottom:789.926133pt;}
.y119{bottom:791.122533pt;}
.y162{bottom:791.138533pt;}
.yf1{bottom:791.175733pt;}
.y4c{bottom:791.181067pt;}
.y7a{bottom:791.181200pt;}
.ybb{bottom:803.087200pt;}
.y7{bottom:805.926133pt;}
.y118{bottom:809.794533pt;}
.y161{bottom:809.810533pt;}
.y4b{bottom:809.847733pt;}
.y79{bottom:809.847867pt;}
.yba{bottom:821.668533pt;}
.y6{bottom:821.926133pt;}
.y117{bottom:828.466533pt;}
.y160{bottom:828.482533pt;}
.y4a{bottom:828.514400pt;}
.y78{bottom:828.514533pt;}
.yf0{bottom:833.359333pt;}
.yb9{bottom:840.249867pt;}
.y116{bottom:847.138533pt;}
.y15f{bottom:847.154533pt;}
.y49{bottom:847.181067pt;}
.y77{bottom:847.181200pt;}
.y5{bottom:853.044267pt;}
.yb8{bottom:858.831200pt;}
.y115{bottom:865.810533pt;}
.y15e{bottom:865.826533pt;}
.y48{bottom:865.847733pt;}
.y76{bottom:865.847867pt;}
.y4{bottom:870.644267pt;}
.ycf{bottom:877.391200pt;}
.yb7{bottom:877.412533pt;}
.ya2{bottom:877.789867pt;}
.y114{bottom:884.482533pt;}
.y15d{bottom:884.498533pt;}
.y47{bottom:884.514400pt;}
.y75{bottom:884.514533pt;}
.yef{bottom:889.359333pt;}
.yea{bottom:894.479200pt;}
.yce{bottom:895.599200pt;}
.yb6{bottom:895.993867pt;}
.y9b{bottom:897.280800pt;}
.yab{bottom:897.280933pt;}
.y113{bottom:903.154533pt;}
.y15c{bottom:903.170533pt;}
.y46{bottom:903.181067pt;}
.y74{bottom:903.181200pt;}
.y3{bottom:903.364933pt;}
.ya1{bottom:906.498667pt;}
.ye9{bottom:913.060533pt;}
.ycd{bottom:913.807200pt;}
.yb5{bottom:914.575200pt;}
.y112{bottom:921.826533pt;}
.y15b{bottom:921.842533pt;}
.y45{bottom:921.847733pt;}
.y73{bottom:921.847867pt;}
.ye8{bottom:931.641867pt;}
.ycc{bottom:932.015200pt;}
.y2{bottom:932.695600pt;}
.yb4{bottom:933.156533pt;}
.y111{bottom:940.498533pt;}
.y44{bottom:940.514400pt;}
.y72{bottom:940.514533pt;}
.yee{bottom:945.359333pt;}
.yb3{bottom:950.223200pt;}
.y110{bottom:959.170533pt;}
.y43{bottom:959.181067pt;}
.y71{bottom:959.181200pt;}
.y15a{bottom:968.802933pt;}
.yb2{bottom:977.314133pt;}
.y10f{bottom:977.842533pt;}
.y42{bottom:977.847733pt;}
.y70{bottom:977.847867pt;}
.y13{bottom:986.502667pt;}
.yb1{bottom:994.918133pt;}
.y41{bottom:996.514400pt;}
.y6f{bottom:996.514533pt;}
.y159{bottom:997.511867pt;}
.yed{bottom:1000.401600pt;}
.y3d{bottom:1030.390667pt;}
.y3c{bottom:1047.724000pt;}
.y40{bottom:1047.726267pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.h15{height:32.000000pt;}
.h13{height:33.979167pt;}
.hf{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h14{height:34.666667pt;}
.h8{height:38.226562pt;}
.he{height:38.273438pt;}
.hd{height:38.507812pt;}
.ha{height:39.000000pt;}
.h12{height:39.016000pt;}
.h17{height:39.021333pt;}
.h18{height:39.469333pt;}
.h19{height:40.546875pt;}
.h9{height:42.083333pt;}
.hc{height:43.333333pt;}
.h16{height:44.601562pt;}
.h10{height:46.291667pt;}
.h4{height:47.065104pt;}
.h11{height:47.666667pt;}
.h1a{height:48.656250pt;}
.hb{height:50.500000pt;}
.h3{height:72.205729pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xa{left:95.167867pt;}
.xc{left:96.257467pt;}
.x5{left:106.559067pt;}
.x6{left:108.473333pt;}
.x7{left:110.313733pt;}
.x4{left:266.834667pt;}
.xf{left:270.608533pt;}
.xb{left:281.954667pt;}
.x11{left:313.965733pt;}
.x13{left:322.073067pt;}
.x10{left:332.390933pt;}
.x3{left:352.045067pt;}
.x12{left:395.171067pt;}
.xe{left:464.229867pt;}
.xd{left:551.611200pt;}
.x9{left:576.806933pt;}
.x8{left:595.302933pt;}
.x1{left:712.140000pt;}
}




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