
    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_1a57ba2630c8823d34f503c9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.957031;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_e7b4765f48e24c3c96b93171.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_6db946d5051e67b896690611.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_7cf72f68e8277d6e97065a5d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.957031;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_7c6f3794cf5f22a09290829a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_bb2e21e7e760cd005ebda6e0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b5f5f25268760428994aa735.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0d18923a97db8bc80eeb7162.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.093262;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7b59876cc664a70b7e775d45.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_d50e857e80ae9968448173d4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.095703;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_b81aff5e75123e93542fe218.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.148438;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_bf02b979ab98abc3eda293eb.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.148438;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_4579bff5bdad0c7d4e6fe997.woff2')format("woff");}.fff{font-family:fff;line-height:0.740234;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_d1acf449a4d4260b005f6b0f.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.084961;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);}
.v3{vertical-align:-24.480000px;}
.ve{vertical-align:-21.600000px;}
.v5{vertical-align:-12.960000px;}
.v8{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.880000px;}
.v9{vertical-align:5.760000px;}
.vc{vertical-align:10.080000px;}
.v6{vertical-align:12.960000px;}
.vb{vertical-align:18.720000px;}
.v2{vertical-align:20.160000px;}
.v7{vertical-align:21.600000px;}
.v1{vertical-align:24.480000px;}
.vd{vertical-align:40.320000px;}
.va{vertical-align:46.080000px;}
.ls9{letter-spacing:-0.972000px;}
.ls4{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.518400px;}
.ls22{letter-spacing:-0.507000px;}
.ls5{letter-spacing:-0.498000px;}
.ls8{letter-spacing:-0.486600px;}
.lse{letter-spacing:-0.466800px;}
.ls1b{letter-spacing:-0.391800px;}
.ls1d{letter-spacing:-0.385800px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.020160px;}
.ls18{letter-spacing:0.022080px;}
.ls1e{letter-spacing:0.086400px;}
.ls24{letter-spacing:0.120000px;}
.ls23{letter-spacing:0.423360px;}
.lsd{letter-spacing:0.466560px;}
.ls0{letter-spacing:0.498240px;}
.ls2{letter-spacing:0.598800px;}
.ls6{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.731520px;}
.ls19{letter-spacing:1.188000px;}
.ls16{letter-spacing:1.512000px;}
.lsf{letter-spacing:2.160000px;}
.ls17{letter-spacing:2.628000px;}
.ls1a{letter-spacing:2.829600px;}
.ls12{letter-spacing:3.180960px;}
.ls14{letter-spacing:3.853440px;}
.ls13{letter-spacing:4.577760px;}
.ls20{letter-spacing:7.920000px;}
.ls21{letter-spacing:13.680000px;}
.ls11{letter-spacing:22.774080px;}
.ls15{letter-spacing:23.052960px;}
.ls1f{letter-spacing:46.546560px;}
.ls7{letter-spacing:46.558560px;}
.lsc{letter-spacing:68.105280px;}
.ls10{letter-spacing:71.038560px;}
.lsb{letter-spacing:71.146560px;}
.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:-16.560000px;}
.ws12{word-spacing:-15.543360px;}
.ws13{word-spacing:-15.140160px;}
.ws3{word-spacing:-15.120000px;}
.ws5{word-spacing:-14.653200px;}
.ws2{word-spacing:-14.633400px;}
.ws11{word-spacing:-14.613000px;}
.wsa{word-spacing:-13.305600px;}
.ws0{word-spacing:-13.182000px;}
.wsb{word-spacing:-12.919800px;}
.ws8{word-spacing:-12.913800px;}
.ws9{word-spacing:-12.787200px;}
.ws14{word-spacing:-9.720000px;}
.ws10{word-spacing:-9.187200px;}
.wsc{word-spacing:-2.664000px;}
.wsf{word-spacing:-0.884160px;}
.ws1{word-spacing:0.000000px;}
.wsd{word-spacing:1.995840px;}
.wse{word-spacing:3.355200px;}
.ws6{word-spacing:3.435840px;}
.ws7{word-spacing:21.169920px;}
._18{margin-left:-10.320000px;}
._1c{margin-left:-7.438560px;}
._14{margin-left:-6.410880px;}
._10{margin-left:-5.059680px;}
._f{margin-left:-4.000320px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._a{width:3.931200px;}
._8{width:5.322240px;}
._9{width:7.024320px;}
._b{width:8.106240px;}
._11{width:9.197760px;}
._12{width:10.244160px;}
._d{width:11.672640px;}
._e{width:12.761280px;}
._c{width:14.091840px;}
._17{width:16.790400px;}
._13{width:17.933760px;}
._1d{width:19.293120px;}
._1e{width:20.318400px;}
._15{width:35.975520px;}
._1b{width:140.322240px;}
._19{width:141.684000px;}
._1a{width:143.196000px;}
._16{width:297.661440px;}
._5{width:393.960000px;}
._4{width:833.340000px;}
._7{width:1303.056000px;}
._3{width:1591.176000px;}
.fc8{color:rgb(255,0,0);}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc7{color:rgb(68,84,106);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs8{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs3{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:96.480000px;}
.yb{bottom:-3.960000px;}
.ydd{bottom:-2.880000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y7a{bottom:3.240000px;}
.y118{bottom:3.270000px;}
.y126{bottom:3.285000px;}
.y2a{bottom:5.760000px;}
.ye6{bottom:6.120000px;}
.ye0{bottom:6.480000px;}
.ybb{bottom:9.720000px;}
.y78{bottom:11.880000px;}
.y113{bottom:12.240000px;}
.y13d{bottom:12.270000px;}
.y139{bottom:12.285000px;}
.y79{bottom:20.520000px;}
.y164{bottom:21.240000px;}
.y169{bottom:21.270000px;}
.y16c{bottom:21.285000px;}
.y83{bottom:21.645000px;}
.y42{bottom:23.760000px;}
.ydc{bottom:25.200000px;}
.y135{bottom:25.560000px;}
.y29{bottom:25.920000px;}
.y7d{bottom:29.160000px;}
.y88{bottom:30.240000px;}
.y8d{bottom:30.270000px;}
.y81{bottom:30.285000px;}
.ydb{bottom:35.280000px;}
.y7f{bottom:37.800000px;}
.y82{bottom:38.925000px;}
.ye{bottom:43.560000px;}
.y28{bottom:45.750000px;}
.y7e{bottom:55.080000px;}
.y41{bottom:61.560000px;}
.y27{bottom:65.550000px;}
.yc{bottom:68.400000px;}
.y26{bottom:85.350000px;}
.ya{bottom:94.716000px;}
.y40{bottom:99.360000px;}
.y25{bottom:105.150000px;}
.y16d{bottom:111.270000px;}
.y166{bottom:111.285000px;}
.y24{bottom:124.950000px;}
.yb9{bottom:130.356000px;}
.y37{bottom:131.076000px;}
.y97{bottom:134.676000px;}
.y3f{bottom:137.205000px;}
.y14e{bottom:143.676000px;}
.y23{bottom:144.750000px;}
.yb8{bottom:147.636000px;}
.y109{bottom:148.716000px;}
.y162{bottom:149.076000px;}
.y36{bottom:149.436000px;}
.y63{bottom:150.150000px;}
.y96{bottom:154.470000px;}
.y35{bottom:154.830000px;}
.y3e{bottom:157.005000px;}
.y14d{bottom:163.830000px;}
.y22{bottom:164.595000px;}
.yb7{bottom:164.910000px;}
.y108{bottom:165.990000px;}
.y34{bottom:167.790000px;}
.y161{bottom:168.870000px;}
.y62{bottom:169.950000px;}
.yb6{bottom:170.310000px;}
.y3d{bottom:177.165000px;}
.y190{bottom:179.670000px;}
.yb5{bottom:182.190000px;}
.y107{bottom:183.270000px;}
.y14c{bottom:183.630000px;}
.y131{bottom:185.070000px;}
.y33{bottom:186.150000px;}
.y106{bottom:188.670000px;}
.y61{bottom:189.750000px;}
.y32{bottom:191.550000px;}
.y95{bottom:192.270000px;}
.y18f{bottom:199.875000px;}
.y105{bottom:200.595000px;}
.y21{bottom:202.395000px;}
.y14b{bottom:203.475000px;}
.y31{bottom:204.555000px;}
.y130{bottom:204.915000px;}
.y160{bottom:208.515000px;}
.y60{bottom:209.595000px;}
.y30{bottom:209.955000px;}
.yd9{bottom:212.115000px;}
.y104{bottom:217.875000px;}
.y2f{bottom:222.915000px;}
.y12f{bottom:224.715000px;}
.y91{bottom:225.075000px;}
.y2e{bottom:228.315000px;}
.y103{bottom:235.155000px;}
.y18e{bottom:237.675000px;}
.y2d{bottom:241.275000px;}
.y94{bottom:243.075000px;}
.y15f{bottom:246.315000px;}
.y2c{bottom:246.675000px;}
.y5f{bottom:247.395000px;}
.y178{bottom:248.115000px;}
.yd8{bottom:250.275000px;}
.y102{bottom:252.435000px;}
.y18d{bottom:257.475000px;}
.y101{bottom:257.835000px;}
.y2b{bottom:258.555000px;}
.y93{bottom:261.075000px;}
.y12e{bottom:262.515000px;}
.yb4{bottom:262.875000px;}
.y15e{bottom:266.115000px;}
.y177{bottom:267.915000px;}
.y100{bottom:269.715000px;}
.yd7{bottom:270.075000px;}
.y92{bottom:279.075000px;}
.y12d{bottom:282.315000px;}
.yb3{bottom:282.675000px;}
.y5e{bottom:285.195000px;}
.y15d{bottom:285.915000px;}
.yff{bottom:286.995000px;}
.y20{bottom:287.355000px;}
.y176{bottom:287.715000px;}
.y18c{bottom:295.275000px;}
.y8c{bottom:297.075000px;}
.y12c{bottom:302.115000px;}
.yb2{bottom:302.475000px;}
.yfe{bottom:304.275000px;}
.y15c{bottom:305.715000px;}
.y175{bottom:307.515000px;}
.yd6{bottom:307.875000px;}
.yfd{bottom:309.675000px;}
.y14a{bottom:311.835000px;}
.y90{bottom:315.075000px;}
.yfc{bottom:321.195000px;}
.y12b{bottom:321.915000px;}
.y5d{bottom:322.995000px;}
.y15b{bottom:325.905000px;}
.yd5{bottom:327.705000px;}
.y8f{bottom:333.105000px;}
.y149{bottom:338.865000px;}
.yb1{bottom:340.305000px;}
.yfb{bottom:343.905000px;}
.y15a{bottom:345.705000px;}
.yd4{bottom:347.505000px;}
.y8e{bottom:351.105000px;}
.y18b{bottom:352.905000px;}
.y12a{bottom:359.745000px;}
.yb0{bottom:360.105000px;}
.y5c{bottom:360.825000px;}
.yfa{bottom:363.705000px;}
.y174{bottom:365.505000px;}
.y148{bottom:365.865000px;}
.yd3{bottom:367.305000px;}
.y87{bottom:369.105000px;}
.y18a{bottom:372.705000px;}
.yae{bottom:380.265000px;}
.y5b{bottom:380.625000px;}
.yf9{bottom:383.505000px;}
.y173{bottom:385.305000px;}
.yaf{bottom:385.665000px;}
.y8b{bottom:387.105000px;}
.y129{bottom:392.505000px;}
.y147{bottom:392.865000px;}
.y5a{bottom:400.425000px;}
.yf8{bottom:403.305000px;}
.y8a{bottom:405.105000px;}
.y128{bottom:410.505000px;}
.yad{bottom:418.065000px;}
.y146{bottom:419.865000px;}
.y59{bottom:420.585000px;}
.y89{bottom:423.105000px;}
.yd2{bottom:424.905000px;}
.y127{bottom:428.505000px;}
.y189{bottom:430.305000px;}
.yac{bottom:437.865000px;}
.y58{bottom:440.385000px;}
.y80{bottom:441.105000px;}
.yd1{bottom:444.705000px;}
.y125{bottom:446.505000px;}
.y145{bottom:446.865000px;}
.yab{bottom:457.710000px;}
.y86{bottom:459.150000px;}
.y57{bottom:460.230000px;}
.y159{bottom:460.950000px;}
.yd0{bottom:464.550000px;}
.y188{bottom:468.150000px;}
.y144{bottom:473.910000px;}
.y85{bottom:477.150000px;}
.yaa{bottom:477.510000px;}
.yf7{bottom:478.950000px;}
.y56{bottom:480.030000px;}
.y158{bottom:480.750000px;}
.y124{bottom:482.550000px;}
.ycf{bottom:484.710000px;}
.y187{bottom:488.310000px;}
.y84{bottom:495.150000px;}
.y123{bottom:500.550000px;}
.y143{bottom:500.910000px;}
.y172{bottom:502.350000px;}
.yce{bottom:504.510000px;}
.y186{bottom:508.110000px;}
.yf6{bottom:511.710000px;}
.y7c{bottom:513.150000px;}
.ya9{bottom:515.310000px;}
.y55{bottom:517.830000px;}
.y122{bottom:518.550000px;}
.y142{bottom:527.910000px;}
.yf5{bottom:536.190000px;}
.y121{bottom:536.550000px;}
.y54{bottom:537.630000px;}
.y157{bottom:538.350000px;}
.y171{bottom:540.150000px;}
.ycd{bottom:542.310000px;}
.y185{bottom:545.910000px;}
.y1f{bottom:548.070000px;}
.ya8{bottom:553.110000px;}
.y120{bottom:554.550000px;}
.y141{bottom:554.910000px;}
.y53{bottom:557.430000px;}
.y156{bottom:558.150000px;}
.yf4{bottom:560.670000px;}
.ycc{bottom:562.110000px;}
.y184{bottom:565.710000px;}
.y11f{bottom:572.550000px;}
.ya7{bottom:572.910000px;}
.y52{bottom:577.260000px;}
.y155{bottom:578.340000px;}
.ycb{bottom:581.940000px;}
.y7b{bottom:583.020000px;}
.yf3{bottom:584.820000px;}
.y183{bottom:585.540000px;}
.y1e{bottom:585.900000px;}
.y11e{bottom:590.580000px;}
.ya6{bottom:592.740000px;}
.y51{bottom:597.060000px;}
.y154{bottom:598.140000px;}
.yca{bottom:601.740000px;}
.y195{bottom:603.540000px;}
.y11d{bottom:608.580000px;}
.y140{bottom:608.940000px;}
.yf2{bottom:609.300000px;}
.ya5{bottom:612.540000px;}
.y50{bottom:616.860000px;}
.y77{bottom:617.940000px;}
.yc9{bottom:621.540000px;}
.y182{bottom:623.340000px;}
.y1d{bottom:624.780000px;}
.y11c{bottom:626.580000px;}
.yf1{bottom:633.780000px;}
.y13f{bottom:635.940000px;}
.yc8{bottom:641.340000px;}
.y181{bottom:643.140000px;}
.y11b{bottom:644.580000px;}
.y170{bottom:644.940000px;}
.ya4{bottom:650.340000px;}
.y4f{bottom:655.020000px;}
.y153{bottom:655.740000px;}
.y194{bottom:661.140000px;}
.y11a{bottom:662.580000px;}
.y13e{bottom:662.940000px;}
.y1b{bottom:665.460000px;}
.yf0{bottom:669.060000px;}
.y1c{bottom:671.580000px;}
.y4e{bottom:674.820000px;}
.y152{bottom:675.540000px;}
.y76{bottom:677.340000px;}
.yc7{bottom:679.140000px;}
.y119{bottom:680.580000px;}
.y16f{bottom:680.940000px;}
.y19{bottom:685.260000px;}
.ya3{bottom:688.500000px;}
.y13c{bottom:689.940000px;}
.y1a{bottom:691.380000px;}
.yef{bottom:693.180000px;}
.y4d{bottom:694.620000px;}
.y151{bottom:695.340000px;}
.y117{bottom:698.580000px;}
.y180{bottom:700.770000px;}
.yba{bottom:702.570000px;}
.y17{bottom:706.170000px;}
.y18{bottom:713.010000px;}
.y4c{bottom:714.450000px;}
.y75{bottom:715.170000px;}
.y115{bottom:716.610000px;}
.yc6{bottom:716.970000px;}
.yee{bottom:717.690000px;}
.y193{bottom:718.770000px;}
.ya2{bottom:726.330000px;}
.y15{bottom:729.930000px;}
.y4b{bottom:734.250000px;}
.y116{bottom:734.610000px;}
.y74{bottom:734.970000px;}
.y16{bottom:736.770000px;}
.y17f{bottom:738.570000px;}
.yed{bottom:742.170000px;}
.y13b{bottom:743.970000px;}
.y112{bottom:752.610000px;}
.y16e{bottom:752.970000px;}
.y13{bottom:753.690000px;}
.y4a{bottom:754.050000px;}
.y73{bottom:754.770000px;}
.yc5{bottom:755.130000px;}
.y14{bottom:760.530000px;}
.ya1{bottom:764.130000px;}
.yec{bottom:766.650000px;}
.y114{bottom:770.610000px;}
.y13a{bottom:770.970000px;}
.y72{bottom:774.570000px;}
.y17e{bottom:776.370000px;}
.y165{bottom:788.970000px;}
.yeb{bottom:790.770000px;}
.y49{bottom:791.850000px;}
.y150{bottom:792.570000px;}
.yc4{bottom:792.930000px;}
.y12{bottom:795.810000px;}
.y17d{bottom:796.530000px;}
.y137{bottom:797.970000px;}
.ya0{bottom:801.930000px;}
.y48{bottom:811.650000px;}
.y71{bottom:812.370000px;}
.yea{bottom:815.250000px;}
.y138{bottom:824.970000px;}
.yc3{bottom:831.135000px;}
.y47{bottom:831.495000px;}
.y70{bottom:832.215000px;}
.y14f{bottom:832.575000px;}
.y17c{bottom:834.375000px;}
.y11{bottom:837.615000px;}
.y9f{bottom:839.775000px;}
.y111{bottom:850.575000px;}
.y46{bottom:851.295000px;}
.y6f{bottom:852.015000px;}
.y192{bottom:854.175000px;}
.y16b{bottom:861.015000px;}
.ye9{bottom:863.895000px;}
.yc2{bottom:869.295000px;}
.y110{bottom:870.375000px;}
.y45{bottom:871.095000px;}
.y6e{bottom:871.815000px;}
.y17b{bottom:872.175000px;}
.y9e{bottom:877.575000px;}
.y136{bottom:879.015000px;}
.y10{bottom:879.375000px;}
.ye8{bottom:888.375000px;}
.y10f{bottom:890.175000px;}
.y44{bottom:891.255000px;}
.y6d{bottom:891.615000px;}
.y17a{bottom:891.975000px;}
.y16a{bottom:897.015000px;}
.yf{bottom:903.135000px;}
.yc1{bottom:907.455000px;}
.y6c{bottom:911.415000px;}
.ye7{bottom:912.855000px;}
.y9d{bottom:915.375000px;}
.y10e{bottom:927.975000px;}
.y43{bottom:929.055000px;}
.y134{bottom:929.775000px;}
.yc0{bottom:930.135000px;}
.y168{bottom:933.015000px;}
.ye5{bottom:937.335000px;}
.y9{bottom:941.295000px;}
.y10d{bottom:947.775000px;}
.y6b{bottom:949.575000px;}
.y9c{bottom:953.205000px;}
.y8{bottom:958.605000px;}
.ye4{bottom:961.485000px;}
.y3c{bottom:963.285000px;}
.y10c{bottom:967.605000px;}
.y167{bottom:969.045000px;}
.y191{bottom:969.405000px;}
.ybf{bottom:971.205000px;}
.y7{bottom:972.645000px;}
.yda{bottom:983.085000px;}
.ye3{bottom:985.965000px;}
.y6a{bottom:987.045000px;}
.y133{bottom:987.405000px;}
.y9b{bottom:991.005000px;}
.y163{bottom:1005.045000px;}
.y10b{bottom:1005.405000px;}
.y132{bottom:1007.205000px;}
.ybe{bottom:1009.005000px;}
.ye2{bottom:1010.445000px;}
.y69{bottom:1023.765000px;}
.y10a{bottom:1025.205000px;}
.y6{bottom:1027.365000px;}
.y9a{bottom:1028.805000px;}
.ye1{bottom:1034.565000px;}
.y68{bottom:1045.005000px;}
.ybd{bottom:1046.805000px;}
.y5{bottom:1052.205000px;}
.ydf{bottom:1059.045000px;}
.y67{bottom:1064.805000px;}
.y99{bottom:1066.965000px;}
.y4{bottom:1072.725000px;}
.y179{bottom:1082.850000px;}
.yde{bottom:1083.570000px;}
.ybc{bottom:1085.010000px;}
.y3{bottom:1094.010000px;}
.y66{bottom:1103.010000px;}
.y98{bottom:1104.810000px;}
.y2{bottom:1114.530000px;}
.y65{bottom:1122.810000px;}
.y1{bottom:1131.450000px;}
.y64{bottom:1142.610000px;}
.y3b{bottom:1166.370000px;}
.y3a{bottom:1180.410000px;}
.y39{bottom:1201.290000px;}
.y38{bottom:1227.600000px;}
.h6{height:8.640000px;}
.h8{height:15.516000px;}
.h17{height:17.280000px;}
.h18{height:17.316000px;}
.h27{height:23.400000px;}
.h28{height:23.436000px;}
.h26{height:23.760000px;}
.h24{height:23.796000px;}
.h1b{height:25.200000px;}
.h2e{height:26.280000px;}
.h30{height:26.316000px;}
.ha{height:28.818281px;}
.h1a{height:34.114922px;}
.h14{height:34.200000px;}
.h2b{height:34.209844px;}
.h12{height:34.560000px;}
.h9{height:35.222344px;}
.h2c{height:35.280000px;}
.h32{height:35.316000px;}
.h23{height:36.641953px;}
.hd{height:38.671172px;}
.h2{height:44.828437px;}
.h7{height:48.013594px;}
.h5{height:48.147188px;}
.h25{height:49.080938px;}
.h4{height:53.067656px;}
.h2a{height:53.152031px;}
.h11{height:53.215313px;}
.h2d{height:53.280000px;}
.h13{height:53.298281px;}
.h2f{height:53.316000px;}
.h3{height:53.367188px;}
.h1e{height:55.504688px;}
.h29{height:55.714922px;}
.h1f{height:57.936094px;}
.he{height:60.155156px;}
.hb{height:63.175781px;}
.h10{height:67.824844px;}
.h20{height:68.040000px;}
.h15{height:69.156000px;}
.h19{height:71.280000px;}
.h16{height:71.316000px;}
.h1d{height:72.784687px;}
.h22{height:75.542344px;}
.h1c{height:84.891094px;}
.h21{height:98.704687px;}
.hf{height:191.190000px;}
.h31{height:215.355000px;}
.hc{height:234.435000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w27{width:30.240000px;}
.w9{width:32.436000px;}
.w2a{width:35.640000px;}
.w28{width:42.516000px;}
.w25{width:42.840000px;}
.w24{width:47.916000px;}
.w26{width:50.076000px;}
.w29{width:65.556000px;}
.w12{width:85.356000px;}
.w13{width:87.156000px;}
.w14{width:87.516000px;}
.wb{width:91.116000px;}
.w18{width:92.196000px;}
.w11{width:92.556000px;}
.w1f{width:111.996000px;}
.w21{width:112.032000px;}
.w20{width:112.356000px;}
.wd{width:120.636000px;}
.wa{width:126.756000px;}
.w2b{width:127.836000px;}
.w23{width:164.190000px;}
.w1b{width:223.665000px;}
.w1d{width:225.075000px;}
.w1e{width:225.105000px;}
.w1a{width:265.785000px;}
.wc{width:305.430000px;}
.wf{width:321.270000px;}
.w10{width:330.630000px;}
.w17{width:330.990000px;}
.w8{width:339.270000px;}
.w4{width:339.990000px;}
.w3{width:340.710000px;}
.w7{width:341.430000px;}
.w1c{width:451.260000px;}
.w16{width:596.775000px;}
.w19{width:597.135000px;}
.we{width:601.770000px;}
.w22{width:675.645000px;}
.w6{width:679.965000px;}
.w15{width:684.645000px;}
.w1{width:892.500000px;}
.w5{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x45{left:4.680000px;}
.x5e{left:7.590000px;}
.x9{left:8.640000px;}
.x62{left:9.720000px;}
.x64{left:11.160000px;}
.x26{left:12.960000px;}
.x40{left:14.400000px;}
.x4d{left:16.560000px;}
.x43{left:17.640000px;}
.x2c{left:18.720000px;}
.x3b{left:19.836000px;}
.x2b{left:21.960000px;}
.x29{left:24.120000px;}
.x48{left:25.200000px;}
.x27{left:27.720000px;}
.x3e{left:28.800000px;}
.x2e{left:30.600000px;}
.x44{left:31.716000px;}
.x46{left:35.280000px;}
.x38{left:37.470000px;}
.x47{left:38.925000px;}
.x4a{left:40.365000px;}
.x4b{left:41.430000px;}
.x4c{left:42.885000px;}
.x49{left:43.950000px;}
.x59{left:46.800000px;}
.x57{left:48.240000px;}
.x3c{left:51.159000px;}
.x2f{left:52.920000px;}
.x2d{left:56.520000px;}
.x50{left:81.039000px;}
.x39{left:90.750000px;}
.x55{left:93.645000px;}
.x53{left:95.430000px;}
.x7{left:106.235987px;}
.x4f{left:108.756000px;}
.x52{left:109.830000px;}
.x1e{left:111.275987px;}
.x3a{left:112.716000px;}
.xb{left:115.235987px;}
.x34{left:121.353000px;}
.x21{left:133.271987px;}
.x24{left:140.112000px;}
.x58{left:145.871987px;}
.x33{left:148.032000px;}
.x4e{left:158.474987px;}
.x36{left:160.274987px;}
.x1f{left:180.794987px;}
.x22{left:196.994987px;}
.x35{left:212.474987px;}
.x37{left:216.075000px;}
.x5a{left:222.945000px;}
.x23{left:240.224987px;}
.x2{left:254.264987px;}
.x63{left:259.305000px;}
.x25{left:267.585000px;}
.x6{left:274.064987px;}
.x10{left:292.784987px;}
.x31{left:295.664973px;}
.x32{left:300.704987px;}
.xa{left:304.350000px;}
.x19{left:313.349987px;}
.x13{left:320.549987px;}
.x1d{left:322.349987px;}
.x16{left:324.509987px;}
.x1c{left:332.069987px;}
.x51{left:333.150000px;}
.xd{left:343.949987px;}
.x5{left:355.829987px;}
.x28{left:359.430000px;}
.x30{left:378.509987px;}
.x4{left:379.949987px;}
.x5b{left:387.870000px;}
.x3{left:398.339987px;}
.xc{left:423.539987px;}
.x5c{left:436.500000px;}
.x3d{left:443.700000px;}
.x8{left:446.579987px;}
.x20{left:447.660000px;}
.x5d{left:480.060000px;}
.x5f{left:530.850000px;}
.x3f{left:536.610000px;}
.xe{left:543.089973px;}
.xf{left:549.209987px;}
.x54{left:559.290000px;}
.x60{left:561.810000px;}
.x17{left:563.249973px;}
.x14{left:566.489973px;}
.x18{left:568.289987px;}
.x15{left:572.609987px;}
.x1a{left:574.814973px;}
.x1b{left:579.854987px;}
.x11{left:594.254973px;}
.x12{left:600.374987px;}
.x61{left:605.055000px;}
.x41{left:622.335000px;}
.x2a{left:665.565000px;}
.x56{left:672.045000px;}
.x42{left:709.845000px;}
.x1{left:786.929987px;}
@media print{
.v3{vertical-align:-21.760000pt;}
.ve{vertical-align:-19.200000pt;}
.v5{vertical-align:-11.520000pt;}
.v8{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.560000pt;}
.v9{vertical-align:5.120000pt;}
.vc{vertical-align:8.960000pt;}
.v6{vertical-align:11.520000pt;}
.vb{vertical-align:16.640000pt;}
.v2{vertical-align:17.920000pt;}
.v7{vertical-align:19.200000pt;}
.v1{vertical-align:21.760000pt;}
.vd{vertical-align:35.840000pt;}
.va{vertical-align:40.960000pt;}
.ls9{letter-spacing:-0.864000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.460800pt;}
.ls22{letter-spacing:-0.450667pt;}
.ls5{letter-spacing:-0.442667pt;}
.ls8{letter-spacing:-0.432533pt;}
.lse{letter-spacing:-0.414933pt;}
.ls1b{letter-spacing:-0.348267pt;}
.ls1d{letter-spacing:-0.342933pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.017920pt;}
.ls18{letter-spacing:0.019627pt;}
.ls1e{letter-spacing:0.076800pt;}
.ls24{letter-spacing:0.106667pt;}
.ls23{letter-spacing:0.376320pt;}
.lsd{letter-spacing:0.414720pt;}
.ls0{letter-spacing:0.442880pt;}
.ls2{letter-spacing:0.532267pt;}
.ls6{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.650240pt;}
.ls19{letter-spacing:1.056000pt;}
.ls16{letter-spacing:1.344000pt;}
.lsf{letter-spacing:1.920000pt;}
.ls17{letter-spacing:2.336000pt;}
.ls1a{letter-spacing:2.515200pt;}
.ls12{letter-spacing:2.827520pt;}
.ls14{letter-spacing:3.425280pt;}
.ls13{letter-spacing:4.069120pt;}
.ls20{letter-spacing:7.040000pt;}
.ls21{letter-spacing:12.160000pt;}
.ls11{letter-spacing:20.243627pt;}
.ls15{letter-spacing:20.491520pt;}
.ls1f{letter-spacing:41.374720pt;}
.ls7{letter-spacing:41.385387pt;}
.lsc{letter-spacing:60.538027pt;}
.ls10{letter-spacing:63.145387pt;}
.lsb{letter-spacing:63.241387pt;}
.ws4{word-spacing:-14.720000pt;}
.ws12{word-spacing:-13.816320pt;}
.ws13{word-spacing:-13.457920pt;}
.ws3{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.025067pt;}
.ws2{word-spacing:-13.007467pt;}
.ws11{word-spacing:-12.989333pt;}
.wsa{word-spacing:-11.827200pt;}
.ws0{word-spacing:-11.717333pt;}
.wsb{word-spacing:-11.484267pt;}
.ws8{word-spacing:-11.478933pt;}
.ws9{word-spacing:-11.366400pt;}
.ws14{word-spacing:-8.640000pt;}
.ws10{word-spacing:-8.166400pt;}
.wsc{word-spacing:-2.368000pt;}
.wsf{word-spacing:-0.785920pt;}
.ws1{word-spacing:0.000000pt;}
.wsd{word-spacing:1.774080pt;}
.wse{word-spacing:2.982400pt;}
.ws6{word-spacing:3.054080pt;}
.ws7{word-spacing:18.817707pt;}
._18{margin-left:-9.173333pt;}
._1c{margin-left:-6.612053pt;}
._14{margin-left:-5.698560pt;}
._10{margin-left:-4.497493pt;}
._f{margin-left:-3.555840pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._a{width:3.494400pt;}
._8{width:4.730880pt;}
._9{width:6.243840pt;}
._b{width:7.205547pt;}
._11{width:8.175787pt;}
._12{width:9.105920pt;}
._d{width:10.375680pt;}
._e{width:11.343360pt;}
._c{width:12.526080pt;}
._17{width:14.924800pt;}
._13{width:15.941120pt;}
._1d{width:17.149440pt;}
._1e{width:18.060800pt;}
._15{width:31.978240pt;}
._1b{width:124.730880pt;}
._19{width:125.941333pt;}
._1a{width:127.285333pt;}
._16{width:264.587947pt;}
._5{width:350.186667pt;}
._4{width:740.746667pt;}
._7{width:1158.272000pt;}
._3{width:1414.378667pt;}
.fs8{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs3{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:85.760000pt;}
.yb{bottom:-3.520000pt;}
.ydd{bottom:-2.560000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y7a{bottom:2.880000pt;}
.y118{bottom:2.906667pt;}
.y126{bottom:2.920000pt;}
.y2a{bottom:5.120000pt;}
.ye6{bottom:5.440000pt;}
.ye0{bottom:5.760000pt;}
.ybb{bottom:8.640000pt;}
.y78{bottom:10.560000pt;}
.y113{bottom:10.880000pt;}
.y13d{bottom:10.906667pt;}
.y139{bottom:10.920000pt;}
.y79{bottom:18.240000pt;}
.y164{bottom:18.880000pt;}
.y169{bottom:18.906667pt;}
.y16c{bottom:18.920000pt;}
.y83{bottom:19.240000pt;}
.y42{bottom:21.120000pt;}
.ydc{bottom:22.400000pt;}
.y135{bottom:22.720000pt;}
.y29{bottom:23.040000pt;}
.y7d{bottom:25.920000pt;}
.y88{bottom:26.880000pt;}
.y8d{bottom:26.906667pt;}
.y81{bottom:26.920000pt;}
.ydb{bottom:31.360000pt;}
.y7f{bottom:33.600000pt;}
.y82{bottom:34.600000pt;}
.ye{bottom:38.720000pt;}
.y28{bottom:40.666667pt;}
.y7e{bottom:48.960000pt;}
.y41{bottom:54.720000pt;}
.y27{bottom:58.266667pt;}
.yc{bottom:60.800000pt;}
.y26{bottom:75.866667pt;}
.ya{bottom:84.192000pt;}
.y40{bottom:88.320000pt;}
.y25{bottom:93.466667pt;}
.y16d{bottom:98.906667pt;}
.y166{bottom:98.920000pt;}
.y24{bottom:111.066667pt;}
.yb9{bottom:115.872000pt;}
.y37{bottom:116.512000pt;}
.y97{bottom:119.712000pt;}
.y3f{bottom:121.960000pt;}
.y14e{bottom:127.712000pt;}
.y23{bottom:128.666667pt;}
.yb8{bottom:131.232000pt;}
.y109{bottom:132.192000pt;}
.y162{bottom:132.512000pt;}
.y36{bottom:132.832000pt;}
.y63{bottom:133.466667pt;}
.y96{bottom:137.306667pt;}
.y35{bottom:137.626667pt;}
.y3e{bottom:139.560000pt;}
.y14d{bottom:145.626667pt;}
.y22{bottom:146.306667pt;}
.yb7{bottom:146.586667pt;}
.y108{bottom:147.546667pt;}
.y34{bottom:149.146667pt;}
.y161{bottom:150.106667pt;}
.y62{bottom:151.066667pt;}
.yb6{bottom:151.386667pt;}
.y3d{bottom:157.480000pt;}
.y190{bottom:159.706667pt;}
.yb5{bottom:161.946667pt;}
.y107{bottom:162.906667pt;}
.y14c{bottom:163.226667pt;}
.y131{bottom:164.506667pt;}
.y33{bottom:165.466667pt;}
.y106{bottom:167.706667pt;}
.y61{bottom:168.666667pt;}
.y32{bottom:170.266667pt;}
.y95{bottom:170.906667pt;}
.y18f{bottom:177.666667pt;}
.y105{bottom:178.306667pt;}
.y21{bottom:179.906667pt;}
.y14b{bottom:180.866667pt;}
.y31{bottom:181.826667pt;}
.y130{bottom:182.146667pt;}
.y160{bottom:185.346667pt;}
.y60{bottom:186.306667pt;}
.y30{bottom:186.626667pt;}
.yd9{bottom:188.546667pt;}
.y104{bottom:193.666667pt;}
.y2f{bottom:198.146667pt;}
.y12f{bottom:199.746667pt;}
.y91{bottom:200.066667pt;}
.y2e{bottom:202.946667pt;}
.y103{bottom:209.026667pt;}
.y18e{bottom:211.266667pt;}
.y2d{bottom:214.466667pt;}
.y94{bottom:216.066667pt;}
.y15f{bottom:218.946667pt;}
.y2c{bottom:219.266667pt;}
.y5f{bottom:219.906667pt;}
.y178{bottom:220.546667pt;}
.yd8{bottom:222.466667pt;}
.y102{bottom:224.386667pt;}
.y18d{bottom:228.866667pt;}
.y101{bottom:229.186667pt;}
.y2b{bottom:229.826667pt;}
.y93{bottom:232.066667pt;}
.y12e{bottom:233.346667pt;}
.yb4{bottom:233.666667pt;}
.y15e{bottom:236.546667pt;}
.y177{bottom:238.146667pt;}
.y100{bottom:239.746667pt;}
.yd7{bottom:240.066667pt;}
.y92{bottom:248.066667pt;}
.y12d{bottom:250.946667pt;}
.yb3{bottom:251.266667pt;}
.y5e{bottom:253.506667pt;}
.y15d{bottom:254.146667pt;}
.yff{bottom:255.106667pt;}
.y20{bottom:255.426667pt;}
.y176{bottom:255.746667pt;}
.y18c{bottom:262.466667pt;}
.y8c{bottom:264.066667pt;}
.y12c{bottom:268.546667pt;}
.yb2{bottom:268.866667pt;}
.yfe{bottom:270.466667pt;}
.y15c{bottom:271.746667pt;}
.y175{bottom:273.346667pt;}
.yd6{bottom:273.666667pt;}
.yfd{bottom:275.266667pt;}
.y14a{bottom:277.186667pt;}
.y90{bottom:280.066667pt;}
.yfc{bottom:285.506667pt;}
.y12b{bottom:286.146667pt;}
.y5d{bottom:287.106667pt;}
.y15b{bottom:289.693333pt;}
.yd5{bottom:291.293333pt;}
.y8f{bottom:296.093333pt;}
.y149{bottom:301.213333pt;}
.yb1{bottom:302.493333pt;}
.yfb{bottom:305.693333pt;}
.y15a{bottom:307.293333pt;}
.yd4{bottom:308.893333pt;}
.y8e{bottom:312.093333pt;}
.y18b{bottom:313.693333pt;}
.y12a{bottom:319.773333pt;}
.yb0{bottom:320.093333pt;}
.y5c{bottom:320.733333pt;}
.yfa{bottom:323.293333pt;}
.y174{bottom:324.893333pt;}
.y148{bottom:325.213333pt;}
.yd3{bottom:326.493333pt;}
.y87{bottom:328.093333pt;}
.y18a{bottom:331.293333pt;}
.yae{bottom:338.013333pt;}
.y5b{bottom:338.333333pt;}
.yf9{bottom:340.893333pt;}
.y173{bottom:342.493333pt;}
.yaf{bottom:342.813333pt;}
.y8b{bottom:344.093333pt;}
.y129{bottom:348.893333pt;}
.y147{bottom:349.213333pt;}
.y5a{bottom:355.933333pt;}
.yf8{bottom:358.493333pt;}
.y8a{bottom:360.093333pt;}
.y128{bottom:364.893333pt;}
.yad{bottom:371.613333pt;}
.y146{bottom:373.213333pt;}
.y59{bottom:373.853333pt;}
.y89{bottom:376.093333pt;}
.yd2{bottom:377.693333pt;}
.y127{bottom:380.893333pt;}
.y189{bottom:382.493333pt;}
.yac{bottom:389.213333pt;}
.y58{bottom:391.453333pt;}
.y80{bottom:392.093333pt;}
.yd1{bottom:395.293333pt;}
.y125{bottom:396.893333pt;}
.y145{bottom:397.213333pt;}
.yab{bottom:406.853333pt;}
.y86{bottom:408.133333pt;}
.y57{bottom:409.093333pt;}
.y159{bottom:409.733333pt;}
.yd0{bottom:412.933333pt;}
.y188{bottom:416.133333pt;}
.y144{bottom:421.253333pt;}
.y85{bottom:424.133333pt;}
.yaa{bottom:424.453333pt;}
.yf7{bottom:425.733333pt;}
.y56{bottom:426.693333pt;}
.y158{bottom:427.333333pt;}
.y124{bottom:428.933333pt;}
.ycf{bottom:430.853333pt;}
.y187{bottom:434.053333pt;}
.y84{bottom:440.133333pt;}
.y123{bottom:444.933333pt;}
.y143{bottom:445.253333pt;}
.y172{bottom:446.533333pt;}
.yce{bottom:448.453333pt;}
.y186{bottom:451.653333pt;}
.yf6{bottom:454.853333pt;}
.y7c{bottom:456.133333pt;}
.ya9{bottom:458.053333pt;}
.y55{bottom:460.293333pt;}
.y122{bottom:460.933333pt;}
.y142{bottom:469.253333pt;}
.yf5{bottom:476.613333pt;}
.y121{bottom:476.933333pt;}
.y54{bottom:477.893333pt;}
.y157{bottom:478.533333pt;}
.y171{bottom:480.133333pt;}
.ycd{bottom:482.053333pt;}
.y185{bottom:485.253333pt;}
.y1f{bottom:487.173333pt;}
.ya8{bottom:491.653333pt;}
.y120{bottom:492.933333pt;}
.y141{bottom:493.253333pt;}
.y53{bottom:495.493333pt;}
.y156{bottom:496.133333pt;}
.yf4{bottom:498.373333pt;}
.ycc{bottom:499.653333pt;}
.y184{bottom:502.853333pt;}
.y11f{bottom:508.933333pt;}
.ya7{bottom:509.253333pt;}
.y52{bottom:513.120000pt;}
.y155{bottom:514.080000pt;}
.ycb{bottom:517.280000pt;}
.y7b{bottom:518.240000pt;}
.yf3{bottom:519.840000pt;}
.y183{bottom:520.480000pt;}
.y1e{bottom:520.800000pt;}
.y11e{bottom:524.960000pt;}
.ya6{bottom:526.880000pt;}
.y51{bottom:530.720000pt;}
.y154{bottom:531.680000pt;}
.yca{bottom:534.880000pt;}
.y195{bottom:536.480000pt;}
.y11d{bottom:540.960000pt;}
.y140{bottom:541.280000pt;}
.yf2{bottom:541.600000pt;}
.ya5{bottom:544.480000pt;}
.y50{bottom:548.320000pt;}
.y77{bottom:549.280000pt;}
.yc9{bottom:552.480000pt;}
.y182{bottom:554.080000pt;}
.y1d{bottom:555.360000pt;}
.y11c{bottom:556.960000pt;}
.yf1{bottom:563.360000pt;}
.y13f{bottom:565.280000pt;}
.yc8{bottom:570.080000pt;}
.y181{bottom:571.680000pt;}
.y11b{bottom:572.960000pt;}
.y170{bottom:573.280000pt;}
.ya4{bottom:578.080000pt;}
.y4f{bottom:582.240000pt;}
.y153{bottom:582.880000pt;}
.y194{bottom:587.680000pt;}
.y11a{bottom:588.960000pt;}
.y13e{bottom:589.280000pt;}
.y1b{bottom:591.520000pt;}
.yf0{bottom:594.720000pt;}
.y1c{bottom:596.960000pt;}
.y4e{bottom:599.840000pt;}
.y152{bottom:600.480000pt;}
.y76{bottom:602.080000pt;}
.yc7{bottom:603.680000pt;}
.y119{bottom:604.960000pt;}
.y16f{bottom:605.280000pt;}
.y19{bottom:609.120000pt;}
.ya3{bottom:612.000000pt;}
.y13c{bottom:613.280000pt;}
.y1a{bottom:614.560000pt;}
.yef{bottom:616.160000pt;}
.y4d{bottom:617.440000pt;}
.y151{bottom:618.080000pt;}
.y117{bottom:620.960000pt;}
.y180{bottom:622.906667pt;}
.yba{bottom:624.506667pt;}
.y17{bottom:627.706667pt;}
.y18{bottom:633.786667pt;}
.y4c{bottom:635.066667pt;}
.y75{bottom:635.706667pt;}
.y115{bottom:636.986667pt;}
.yc6{bottom:637.306667pt;}
.yee{bottom:637.946667pt;}
.y193{bottom:638.906667pt;}
.ya2{bottom:645.626667pt;}
.y15{bottom:648.826667pt;}
.y4b{bottom:652.666667pt;}
.y116{bottom:652.986667pt;}
.y74{bottom:653.306667pt;}
.y16{bottom:654.906667pt;}
.y17f{bottom:656.506667pt;}
.yed{bottom:659.706667pt;}
.y13b{bottom:661.306667pt;}
.y112{bottom:668.986667pt;}
.y16e{bottom:669.306667pt;}
.y13{bottom:669.946667pt;}
.y4a{bottom:670.266667pt;}
.y73{bottom:670.906667pt;}
.yc5{bottom:671.226667pt;}
.y14{bottom:676.026667pt;}
.ya1{bottom:679.226667pt;}
.yec{bottom:681.466667pt;}
.y114{bottom:684.986667pt;}
.y13a{bottom:685.306667pt;}
.y72{bottom:688.506667pt;}
.y17e{bottom:690.106667pt;}
.y165{bottom:701.306667pt;}
.yeb{bottom:702.906667pt;}
.y49{bottom:703.866667pt;}
.y150{bottom:704.506667pt;}
.yc4{bottom:704.826667pt;}
.y12{bottom:707.386667pt;}
.y17d{bottom:708.026667pt;}
.y137{bottom:709.306667pt;}
.ya0{bottom:712.826667pt;}
.y48{bottom:721.466667pt;}
.y71{bottom:722.106667pt;}
.yea{bottom:724.666667pt;}
.y138{bottom:733.306667pt;}
.yc3{bottom:738.786667pt;}
.y47{bottom:739.106667pt;}
.y70{bottom:739.746667pt;}
.y14f{bottom:740.066667pt;}
.y17c{bottom:741.666667pt;}
.y11{bottom:744.546667pt;}
.y9f{bottom:746.466667pt;}
.y111{bottom:756.066667pt;}
.y46{bottom:756.706667pt;}
.y6f{bottom:757.346667pt;}
.y192{bottom:759.266667pt;}
.y16b{bottom:765.346667pt;}
.ye9{bottom:767.906667pt;}
.yc2{bottom:772.706667pt;}
.y110{bottom:773.666667pt;}
.y45{bottom:774.306667pt;}
.y6e{bottom:774.946667pt;}
.y17b{bottom:775.266667pt;}
.y9e{bottom:780.066667pt;}
.y136{bottom:781.346667pt;}
.y10{bottom:781.666667pt;}
.ye8{bottom:789.666667pt;}
.y10f{bottom:791.266667pt;}
.y44{bottom:792.226667pt;}
.y6d{bottom:792.546667pt;}
.y17a{bottom:792.866667pt;}
.y16a{bottom:797.346667pt;}
.yf{bottom:802.786667pt;}
.yc1{bottom:806.626667pt;}
.y6c{bottom:810.146667pt;}
.ye7{bottom:811.426667pt;}
.y9d{bottom:813.666667pt;}
.y10e{bottom:824.866667pt;}
.y43{bottom:825.826667pt;}
.y134{bottom:826.466667pt;}
.yc0{bottom:826.786667pt;}
.y168{bottom:829.346667pt;}
.ye5{bottom:833.186667pt;}
.y9{bottom:836.706667pt;}
.y10d{bottom:842.466667pt;}
.y6b{bottom:844.066667pt;}
.y9c{bottom:847.293333pt;}
.y8{bottom:852.093333pt;}
.ye4{bottom:854.653333pt;}
.y3c{bottom:856.253333pt;}
.y10c{bottom:860.093333pt;}
.y167{bottom:861.373333pt;}
.y191{bottom:861.693333pt;}
.ybf{bottom:863.293333pt;}
.y7{bottom:864.573333pt;}
.yda{bottom:873.853333pt;}
.ye3{bottom:876.413333pt;}
.y6a{bottom:877.373333pt;}
.y133{bottom:877.693333pt;}
.y9b{bottom:880.893333pt;}
.y163{bottom:893.373333pt;}
.y10b{bottom:893.693333pt;}
.y132{bottom:895.293333pt;}
.ybe{bottom:896.893333pt;}
.ye2{bottom:898.173333pt;}
.y69{bottom:910.013333pt;}
.y10a{bottom:911.293333pt;}
.y6{bottom:913.213333pt;}
.y9a{bottom:914.493333pt;}
.ye1{bottom:919.613333pt;}
.y68{bottom:928.893333pt;}
.ybd{bottom:930.493333pt;}
.y5{bottom:935.293333pt;}
.ydf{bottom:941.373333pt;}
.y67{bottom:946.493333pt;}
.y99{bottom:948.413333pt;}
.y4{bottom:953.533333pt;}
.y179{bottom:962.533333pt;}
.yde{bottom:963.173333pt;}
.ybc{bottom:964.453333pt;}
.y3{bottom:972.453333pt;}
.y66{bottom:980.453333pt;}
.y98{bottom:982.053333pt;}
.y2{bottom:990.693333pt;}
.y65{bottom:998.053333pt;}
.y1{bottom:1005.733333pt;}
.y64{bottom:1015.653333pt;}
.y3b{bottom:1036.773333pt;}
.y3a{bottom:1049.253333pt;}
.y39{bottom:1067.813333pt;}
.y38{bottom:1091.200000pt;}
.h6{height:7.680000pt;}
.h8{height:13.792000pt;}
.h17{height:15.360000pt;}
.h18{height:15.392000pt;}
.h27{height:20.800000pt;}
.h28{height:20.832000pt;}
.h26{height:21.120000pt;}
.h24{height:21.152000pt;}
.h1b{height:22.400000pt;}
.h2e{height:23.360000pt;}
.h30{height:23.392000pt;}
.ha{height:25.616250pt;}
.h1a{height:30.324375pt;}
.h14{height:30.400000pt;}
.h2b{height:30.408750pt;}
.h12{height:30.720000pt;}
.h9{height:31.308750pt;}
.h2c{height:31.360000pt;}
.h32{height:31.392000pt;}
.h23{height:32.570625pt;}
.hd{height:34.374375pt;}
.h2{height:39.847500pt;}
.h7{height:42.678750pt;}
.h5{height:42.797500pt;}
.h25{height:43.627500pt;}
.h4{height:47.171250pt;}
.h2a{height:47.246250pt;}
.h11{height:47.302500pt;}
.h2d{height:47.360000pt;}
.h13{height:47.376250pt;}
.h2f{height:47.392000pt;}
.h3{height:47.437500pt;}
.h1e{height:49.337500pt;}
.h29{height:49.524375pt;}
.h1f{height:51.498750pt;}
.he{height:53.471250pt;}
.hb{height:56.156250pt;}
.h10{height:60.288750pt;}
.h20{height:60.480000pt;}
.h15{height:61.472000pt;}
.h19{height:63.360000pt;}
.h16{height:63.392000pt;}
.h1d{height:64.697500pt;}
.h22{height:67.148750pt;}
.h1c{height:75.458750pt;}
.h21{height:87.737500pt;}
.hf{height:169.946667pt;}
.h31{height:191.426667pt;}
.hc{height:208.386667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w27{width:26.880000pt;}
.w9{width:28.832000pt;}
.w2a{width:31.680000pt;}
.w28{width:37.792000pt;}
.w25{width:38.080000pt;}
.w24{width:42.592000pt;}
.w26{width:44.512000pt;}
.w29{width:58.272000pt;}
.w12{width:75.872000pt;}
.w13{width:77.472000pt;}
.w14{width:77.792000pt;}
.wb{width:80.992000pt;}
.w18{width:81.952000pt;}
.w11{width:82.272000pt;}
.w1f{width:99.552000pt;}
.w21{width:99.584000pt;}
.w20{width:99.872000pt;}
.wd{width:107.232000pt;}
.wa{width:112.672000pt;}
.w2b{width:113.632000pt;}
.w23{width:145.946667pt;}
.w1b{width:198.813333pt;}
.w1d{width:200.066667pt;}
.w1e{width:200.093333pt;}
.w1a{width:236.253333pt;}
.wc{width:271.493333pt;}
.wf{width:285.573333pt;}
.w10{width:293.893333pt;}
.w17{width:294.213333pt;}
.w8{width:301.573333pt;}
.w4{width:302.213333pt;}
.w3{width:302.853333pt;}
.w7{width:303.493333pt;}
.w1c{width:401.120000pt;}
.w16{width:530.466667pt;}
.w19{width:530.786667pt;}
.we{width:534.906667pt;}
.w22{width:600.573333pt;}
.w6{width:604.413333pt;}
.w15{width:608.573333pt;}
.w1{width:793.333333pt;}
.w5{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x45{left:4.160000pt;}
.x5e{left:6.746667pt;}
.x9{left:7.680000pt;}
.x62{left:8.640000pt;}
.x64{left:9.920000pt;}
.x26{left:11.520000pt;}
.x40{left:12.800000pt;}
.x4d{left:14.720000pt;}
.x43{left:15.680000pt;}
.x2c{left:16.640000pt;}
.x3b{left:17.632000pt;}
.x2b{left:19.520000pt;}
.x29{left:21.440000pt;}
.x48{left:22.400000pt;}
.x27{left:24.640000pt;}
.x3e{left:25.600000pt;}
.x2e{left:27.200000pt;}
.x44{left:28.192000pt;}
.x46{left:31.360000pt;}
.x38{left:33.306667pt;}
.x47{left:34.600000pt;}
.x4a{left:35.880000pt;}
.x4b{left:36.826667pt;}
.x4c{left:38.120000pt;}
.x49{left:39.066667pt;}
.x59{left:41.600000pt;}
.x57{left:42.880000pt;}
.x3c{left:45.474667pt;}
.x2f{left:47.040000pt;}
.x2d{left:50.240000pt;}
.x50{left:72.034667pt;}
.x39{left:80.666667pt;}
.x55{left:83.240000pt;}
.x53{left:84.826667pt;}
.x7{left:94.431988pt;}
.x4f{left:96.672000pt;}
.x52{left:97.626667pt;}
.x1e{left:98.911988pt;}
.x3a{left:100.192000pt;}
.xb{left:102.431988pt;}
.x34{left:107.869333pt;}
.x21{left:118.463988pt;}
.x24{left:124.544000pt;}
.x58{left:129.663988pt;}
.x33{left:131.584000pt;}
.x4e{left:140.866655pt;}
.x36{left:142.466655pt;}
.x1f{left:160.706655pt;}
.x22{left:175.106655pt;}
.x35{left:188.866655pt;}
.x37{left:192.066667pt;}
.x5a{left:198.173333pt;}
.x23{left:213.533322pt;}
.x2{left:226.013322pt;}
.x63{left:230.493333pt;}
.x25{left:237.853333pt;}
.x6{left:243.613322pt;}
.x10{left:260.253322pt;}
.x31{left:262.813310pt;}
.x32{left:267.293322pt;}
.xa{left:270.533333pt;}
.x19{left:278.533322pt;}
.x13{left:284.933322pt;}
.x1d{left:286.533322pt;}
.x16{left:288.453322pt;}
.x1c{left:295.173322pt;}
.x51{left:296.133333pt;}
.xd{left:305.733322pt;}
.x5{left:316.293322pt;}
.x28{left:319.493333pt;}
.x30{left:336.453322pt;}
.x4{left:337.733322pt;}
.x5b{left:344.773333pt;}
.x3{left:354.079988pt;}
.xc{left:376.479988pt;}
.x5c{left:388.000000pt;}
.x3d{left:394.400000pt;}
.x8{left:396.959988pt;}
.x20{left:397.920000pt;}
.x5d{left:426.720000pt;}
.x5f{left:471.866667pt;}
.x3f{left:476.986667pt;}
.xe{left:482.746643pt;}
.xf{left:488.186655pt;}
.x54{left:497.146667pt;}
.x60{left:499.386667pt;}
.x17{left:500.666643pt;}
.x14{left:503.546643pt;}
.x18{left:505.146655pt;}
.x15{left:508.986655pt;}
.x1a{left:510.946643pt;}
.x1b{left:515.426655pt;}
.x11{left:528.226643pt;}
.x12{left:533.666655pt;}
.x61{left:537.826667pt;}
.x41{left:553.186667pt;}
.x2a{left:591.613333pt;}
.x56{left:597.373333pt;}
.x42{left:630.973333pt;}
.x1{left:699.493322pt;}
}




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