
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_dc56a2f6fb6c0b18f73e3320.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_edb55769d7116a4ded1c5211.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_111b258aaeb325ade55a652d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_919a5b08bcc4721e7b847bea.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_6bba6ad4c5bae4cec2b7a379.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_634c0f959f382d76dd5fc4aa.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.088379;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_dfa59d8a84a77dd4f7b0e8b2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls3d{letter-spacing:-0.451200px;}
.ls45{letter-spacing:-0.444000px;}
.ls1e{letter-spacing:-0.267600px;}
.ls13{letter-spacing:-0.186600px;}
.ls3e{letter-spacing:-0.178800px;}
.ls34{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.135000px;}
.ls17{letter-spacing:-0.124200px;}
.lsb{letter-spacing:-0.121200px;}
.ls16{letter-spacing:-0.120600px;}
.ls37{letter-spacing:-0.093000px;}
.ls2f{letter-spacing:-0.091200px;}
.ls7{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls29{letter-spacing:-0.084000px;}
.ls42{letter-spacing:-0.068400px;}
.ls9{letter-spacing:-0.063600px;}
.ls1b{letter-spacing:-0.049680px;}
.ls32{letter-spacing:-0.044640px;}
.ls38{letter-spacing:-0.037800px;}
.ls33{letter-spacing:-0.018360px;}
.ls35{letter-spacing:-0.014760px;}
.lsd{letter-spacing:-0.007800px;}
.ls18{letter-spacing:-0.006120px;}
.ls5{letter-spacing:0.000000px;}
.ls46{letter-spacing:0.028920px;}
.ls10{letter-spacing:0.045360px;}
.ls14{letter-spacing:0.047520px;}
.ls11{letter-spacing:0.048960px;}
.ls19{letter-spacing:0.053280px;}
.ls2e{letter-spacing:0.056880px;}
.lsc{letter-spacing:0.060600px;}
.ls1c{letter-spacing:0.061200px;}
.lse{letter-spacing:0.074160px;}
.ls1d{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.lsf{letter-spacing:0.092160px;}
.ls43{letter-spacing:0.092400px;}
.ls1{letter-spacing:0.093600px;}
.ls4{letter-spacing:0.097560px;}
.ls41{letter-spacing:0.097800px;}
.ls15{letter-spacing:0.108600px;}
.ls27{letter-spacing:0.115800px;}
.ls39{letter-spacing:0.116400px;}
.ls24{letter-spacing:0.120240px;}
.ls28{letter-spacing:0.121800px;}
.ls6{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.173400px;}
.ls2d{letter-spacing:0.173520px;}
.ls21{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.180600px;}
.ls26{letter-spacing:0.181200px;}
.ls2a{letter-spacing:0.199200px;}
.ls30{letter-spacing:0.213600px;}
.ls2b{letter-spacing:0.268920px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls3f{letter-spacing:1.893600px;}
.ls2c{letter-spacing:2.613600px;}
.ls3b{letter-spacing:4.773600px;}
.ls40{letter-spacing:14.246640px;}
.ls44{letter-spacing:22.413600px;}
.ls20{letter-spacing:28.893600px;}
.ls3a{letter-spacing:30.333600px;}
.ls31{letter-spacing:36.453600px;}
.ls23{letter-spacing:37.893600px;}
.ls3c{letter-spacing:40.053600px;}
.ls25{letter-spacing:46.533600px;}
.ls22{letter-spacing:47.726640px;}
.ls36{letter-spacing:58.053600px;}
.ls1f{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-14.493600px;}
.wsc{word-spacing:-14.372400px;}
.ws18{word-spacing:-13.425600px;}
.ws15{word-spacing:-13.407600px;}
.wsa{word-spacing:-13.399800px;}
.ws17{word-spacing:-13.348200px;}
.ws1f{word-spacing:-13.342800px;}
.ws16{word-spacing:-13.342200px;}
.wsf{word-spacing:-13.335000px;}
.ws22{word-spacing:-13.324200px;}
.ws14{word-spacing:-13.300800px;}
.ws13{word-spacing:-13.287600px;}
.ws20{word-spacing:-13.287000px;}
.ws19{word-spacing:-13.283280px;}
.ws11{word-spacing:-13.279680px;}
.wsd{word-spacing:-13.275360px;}
.wse{word-spacing:-13.273920px;}
.ws3{word-spacing:-13.226400px;}
.ws10{word-spacing:-13.220280px;}
.ws8{word-spacing:-13.218600px;}
.ws1d{word-spacing:-13.211640px;}
.ws1b{word-spacing:-13.208040px;}
.ws1a{word-spacing:-13.181760px;}
.ws12{word-spacing:-13.176720px;}
.ws2{word-spacing:-13.162800px;}
.ws23{word-spacing:-13.158000px;}
.ws1e{word-spacing:-13.133400px;}
.ws1c{word-spacing:-13.072800px;}
.ws21{word-spacing:-13.047600px;}
.wsb{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:-8.614200px;}
.ws7{word-spacing:-8.553600px;}
.ws9{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._c{margin-left:-3.607200px;}
._3{margin-left:-2.284800px;}
._0{margin-left:-1.110000px;}
._1{width:1.174236px;}
._2{width:2.264928px;}
._7{width:3.386472px;}
._4{width:4.689600px;}
._6{width:5.952000px;}
._a{width:7.237726px;}
._8{width:8.296800px;}
._9{width:9.317999px;}
._5{width:11.182200px;}
._33{width:12.224161px;}
._1a{width:14.916600px;}
._29{width:16.165440px;}
._b{width:17.494920px;}
._d{width:18.544800px;}
._21{width:19.831200px;}
._30{width:20.889480px;}
._17{width:22.064040px;}
._2e{width:23.498400px;}
._19{width:25.490880px;}
._31{width:26.573040px;}
._12{width:27.917160px;}
._15{width:29.759400px;}
._1e{width:31.786560px;}
._32{width:33.514680px;}
._11{width:34.629120px;}
._e{width:35.891640px;}
._2c{width:36.927720px;}
._2b{width:38.051520px;}
._2a{width:39.078000px;}
._35{width:40.701240px;}
._36{width:41.792760px;}
._18{width:43.166160px;}
._37{width:44.636880px;}
._2d{width:45.871560px;}
._2f{width:46.890768px;}
._1d{width:48.035880px;}
._39{width:49.582080px;}
._38{width:50.621040px;}
._34{width:57.835440px;}
._10{width:61.576560px;}
._23{width:63.747720px;}
._1f{width:72.324360px;}
._14{width:75.811320px;}
._f{width:77.981040px;}
._1c{width:88.737120px;}
._16{width:93.366360px;}
._13{width:96.793200px;}
._24{width:109.598760px;}
._1b{width:123.606720px;}
._22{width:160.881120px;}
._20{width:173.866200px;}
._27{width:181.682640px;}
._25{width:183.098880px;}
._28{width:207.327240px;}
._26{width:295.309440px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y97{bottom:3.330000px;}
.y76{bottom:7.830000px;}
.yf7{bottom:7.920000px;}
.y96{bottom:20.880000px;}
.y75{bottom:25.380000px;}
.yf6{bottom:25.470000px;}
.yc6{bottom:37.260000px;}
.y95{bottom:38.520000px;}
.y74{bottom:43.020000px;}
.yf5{bottom:43.110000px;}
.yae{bottom:47.070000px;}
.yc5{bottom:54.810000px;}
.y94{bottom:56.070000px;}
.y73{bottom:60.570000px;}
.yad{bottom:64.710000px;}
.yf4{bottom:65.160000px;}
.ye0{bottom:70.920000px;}
.y2{bottom:73.380000px;}
.y93{bottom:73.710000px;}
.y2a{bottom:74.190000px;}
.y6e{bottom:74.460000px;}
.yc4{bottom:76.950000px;}
.y72{bottom:78.150000px;}
.yac{bottom:82.260000px;}
.yf3{bottom:87.240000px;}
.ydf{bottom:88.500000px;}
.y92{bottom:91.260000px;}
.y77{bottom:93.720000px;}
.yc3{bottom:94.500000px;}
.yab{bottom:99.810000px;}
.y1{bottom:101.640000px;}
.yf2{bottom:104.880000px;}
.yde{bottom:106.140000px;}
.y91{bottom:108.810000px;}
.yc2{bottom:112.140000px;}
.y1e6{bottom:116.580000px;}
.yaa{bottom:117.450000px;}
.y57{bottom:119.460000px;}
.y15d{bottom:121.800000px;}
.ydd{bottom:123.690000px;}
.y90{bottom:126.450000px;}
.yf1{bottom:126.930000px;}
.yc1{bottom:129.690000px;}
.y1e5{bottom:134.130000px;}
.y15c{bottom:139.350000px;}
.ya9{bottom:139.500000px;}
.y28{bottom:140.250000px;}
.ydc{bottom:141.240000px;}
.y187{bottom:142.680000px;}
.y1d2{bottom:143.130000px;}
.y8f{bottom:144.000000px;}
.y126{bottom:147.900000px;}
.yf0{bottom:149.070000px;}
.yc0{bottom:151.740000px;}
.y56{bottom:155.100000px;}
.ya8{bottom:157.140000px;}
.y27{bottom:157.800000px;}
.ydb{bottom:158.880000px;}
.y186{bottom:160.320000px;}
.y1ad{bottom:160.680000px;}
.y8e{bottom:161.640000px;}
.y14b{bottom:162.120000px;}
.y125{bottom:165.450000px;}
.y15b{bottom:166.260000px;}
.yef{bottom:166.620000px;}
.y1e1{bottom:169.320000px;}
.y1cd{bottom:169.680000px;}
.ybf{bottom:173.880000px;}
.ya7{bottom:174.690000px;}
.y26{bottom:175.350000px;}
.yda{bottom:176.430000px;}
.y185{bottom:177.870000px;}
.y1ac{bottom:178.320000px;}
.y8d{bottom:179.190000px;}
.y14a{bottom:179.670000px;}
.y124{bottom:183.000000px;}
.y1e0{bottom:186.870000px;}
.y1cc{bottom:187.320000px;}
.yee{bottom:188.670000px;}
.y55{bottom:190.650000px;}
.ybe{bottom:191.430000px;}
.ya6{bottom:192.240000px;}
.y25{bottom:192.990000px;}
.yd9{bottom:194.070000px;}
.y1ab{bottom:195.870000px;}
.y8c{bottom:196.740000px;}
.y149{bottom:197.310000px;}
.y123{bottom:200.640000px;}
.y184{bottom:204.510000px;}
.y1b3{bottom:204.870000px;}
.y54{bottom:208.200000px;}
.ybd{bottom:208.980000px;}
.ya1{bottom:209.880000px;}
.y24{bottom:210.540000px;}
.yed{bottom:210.810000px;}
.yd8{bottom:211.620000px;}
.y1cb{bottom:213.870000px;}
.y8b{bottom:214.380000px;}
.y15a{bottom:214.590000px;}
.y148{bottom:214.860000px;}
.y122{bottom:218.190000px;}
.y183{bottom:222.060000px;}
.y1aa{bottom:222.510000px;}
.y53{bottom:225.840000px;}
.ybc{bottom:226.620000px;}
.ya0{bottom:227.430000px;}
.y23{bottom:228.090000px;}
.yec{bottom:228.360000px;}
.yd7{bottom:229.170000px;}
.y1df{bottom:231.060000px;}
.y1ca{bottom:231.510000px;}
.y8a{bottom:231.930000px;}
.y147{bottom:232.500000px;}
.y121{bottom:235.830000px;}
.y182{bottom:239.610000px;}
.y1a9{bottom:240.060000px;}
.y159{bottom:241.500000px;}
.y9f{bottom:244.980000px;}
.y22{bottom:245.730000px;}
.yd6{bottom:246.810000px;}
.y1de{bottom:248.610000px;}
.ybb{bottom:248.670000px;}
.y89{bottom:249.480000px;}
.y146{bottom:250.050000px;}
.yeb{bottom:250.500000px;}
.y52{bottom:252.390000px;}
.y120{bottom:253.380000px;}
.y1a8{bottom:257.610000px;}
.y1c9{bottom:258.060000px;}
.y9e{bottom:262.620000px;}
.y21{bottom:263.280000px;}
.yd5{bottom:264.360000px;}
.y181{bottom:266.250000px;}
.y1b2{bottom:266.610000px;}
.y88{bottom:267.120000px;}
.y145{bottom:267.600000px;}
.yba{bottom:270.810000px;}
.yea{bottom:272.550000px;}
.y1c8{bottom:275.610000px;}
.y158{bottom:278.490000px;}
.y9d{bottom:280.170000px;}
.y20{bottom:280.920000px;}
.yd4{bottom:282.000000px;}
.y180{bottom:283.800000px;}
.y1a7{bottom:284.250000px;}
.y87{bottom:284.670000px;}
.y144{bottom:285.240000px;}
.y51{bottom:287.940000px;}
.yb9{bottom:288.360000px;}
.y11f{bottom:288.930000px;}
.yf8{bottom:291.270000px;}
.y1dd{bottom:292.800000px;}
.y1c7{bottom:293.250000px;}
.ye9{bottom:294.600000px;}
.y157{bottom:296.040000px;}
.y9c{bottom:297.840000px;}
.y1f{bottom:298.470000px;}
.yd3{bottom:299.550000px;}
.y17f{bottom:301.440000px;}
.y1a6{bottom:301.800000px;}
.y86{bottom:302.340000px;}
.y143{bottom:302.790000px;}
.yc7{bottom:304.590000px;}
.y50{bottom:305.580000px;}
.y11e{bottom:306.570000px;}
.yb8{bottom:310.440000px;}
.y1e4{bottom:310.800000px;}
.ye8{bottom:312.240000px;}
.y9b{bottom:315.390000px;}
.y1e{bottom:316.020000px;}
.yd2{bottom:317.100000px;}
.y1c6{bottom:319.800000px;}
.y85{bottom:319.890000px;}
.y142{bottom:320.430000px;}
.y156{bottom:322.950000px;}
.y4f{bottom:323.130000px;}
.y11d{bottom:324.120000px;}
.y17e{bottom:327.990000px;}
.yb7{bottom:328.080000px;}
.y1a5{bottom:328.440000px;}
.y9a{bottom:332.940000px;}
.y1d{bottom:333.660000px;}
.ye7{bottom:334.290000px;}
.yd1{bottom:334.740000px;}
.y1dc{bottom:336.990000px;}
.y84{bottom:337.440000px;}
.y141{bottom:337.980000px;}
.y4e{bottom:340.770000px;}
.y11c{bottom:341.760000px;}
.y17d{bottom:345.540000px;}
.y1a4{bottom:345.990000px;}
.yb6{bottom:350.130000px;}
.y98{bottom:350.580000px;}
.ye6{bottom:351.930000px;}
.yd0{bottom:352.290000px;}
.y1db{bottom:354.540000px;}
.y1c5{bottom:354.990000px;}
.y83{bottom:355.080000px;}
.y140{bottom:355.530000px;}
.y4d{bottom:358.320000px;}
.y155{bottom:360.300000px;}
.y1c{bottom:360.570000px;}
.y17c{bottom:363.180000px;}
.y1a3{bottom:363.540000px;}
.y6c{bottom:366.060000px;}
.y99{bottom:368.130000px;}
.y11b{bottom:368.670000px;}
.ycf{bottom:369.930000px;}
.yb5{bottom:372.270000px;}
.y1e3{bottom:372.540000px;}
.y82{bottom:372.630000px;}
.y13f{bottom:373.170000px;}
.ye5{bottom:373.980000px;}
.y4c{bottom:375.870000px;}
.y1da{bottom:381.180000px;}
.y1c4{bottom:381.540000px;}
.y6b{bottom:383.610000px;}
.ya5{bottom:385.770000px;}
.yce{bottom:387.480000px;}
.y17b{bottom:389.730000px;}
.y1a2{bottom:390.180000px;}
.y81{bottom:390.270000px;}
.y13e{bottom:390.720000px;}
.ye4{bottom:391.530000px;}
.yb4{bottom:394.320000px;}
.y1d9{bottom:398.730000px;}
.y1c3{bottom:399.180000px;}
.y6a{bottom:401.160000px;}
.y4b{bottom:402.510000px;}
.ya4{bottom:403.320000px;}
.ycd{bottom:405.030000px;}
.y154{bottom:405.210000px;}
.y17a{bottom:407.370000px;}
.y1a1{bottom:407.730000px;}
.y80{bottom:407.820000px;}
.y13d{bottom:408.360000px;}
.y1b{bottom:409.170000px;}
.yb3{bottom:411.870000px;}
.ye3{bottom:413.670000px;}
.y1d8{bottom:416.370000px;}
.y1c2{bottom:416.730000px;}
.y11a{bottom:416.910000px;}
.y69{bottom:418.800000px;}
.ya3{bottom:420.870000px;}
.ycc{bottom:422.670000px;}
.y7f{bottom:425.370000px;}
.ye2{bottom:431.250000px;}
.y179{bottom:433.920000px;}
.yb2{bottom:434.010000px;}
.y1e2{bottom:434.370000px;}
.y119{bottom:434.460000px;}
.y68{bottom:436.350000px;}
.y4a{bottom:438.060000px;}
.ya2{bottom:438.510000px;}
.ycb{bottom:440.250000px;}
.y1d7{bottom:442.920000px;}
.y7e{bottom:443.010000px;}
.y1c1{bottom:443.370000px;}
.y13c{bottom:443.910000px;}
.y1a{bottom:446.160000px;}
.y178{bottom:451.470000px;}
.yb1{bottom:451.560000px;}
.y1a0{bottom:451.920000px;}
.y118{bottom:452.100000px;}
.ye1{bottom:453.300000px;}
.y67{bottom:453.990000px;}
.yaf{bottom:456.060000px;}
.yca{bottom:457.800000px;}
.y1d6{bottom:460.470000px;}
.y7d{bottom:460.560000px;}
.y1c0{bottom:460.920000px;}
.y13b{bottom:461.460000px;}
.y19{bottom:463.800000px;}
.y49{bottom:464.700000px;}
.y19f{bottom:469.470000px;}
.y117{bottom:469.650000px;}
.yb0{bottom:473.700000px;}
.yc9{bottom:475.440000px;}
.y177{bottom:478.140000px;}
.y7c{bottom:478.200000px;}
.y1bf{bottom:478.500000px;}
.y13a{bottom:479.130000px;}
.y1d1{bottom:487.140000px;}
.y116{bottom:487.230000px;}
.y66{bottom:489.570000px;}
.yc8{bottom:492.990000px;}
.y176{bottom:495.690000px;}
.y7b{bottom:495.750000px;}
.y19e{bottom:496.140000px;}
.y139{bottom:496.680000px;}
.y18{bottom:499.380000px;}
.y48{bottom:500.280000px;}
.y1d5{bottom:504.690000px;}
.y115{bottom:504.870000px;}
.y1be{bottom:505.140000px;}
.y65{bottom:507.120000px;}
.y7a{bottom:513.300000px;}
.y19d{bottom:513.690000px;}
.y138{bottom:514.230000px;}
.y17{bottom:516.930000px;}
.y47{bottom:517.830000px;}
.y175{bottom:522.330000px;}
.y114{bottom:522.420000px;}
.y1bd{bottom:522.690000px;}
.y64{bottom:524.760000px;}
.y79{bottom:530.940000px;}
.y19c{bottom:531.330000px;}
.y137{bottom:531.870000px;}
.y16{bottom:534.570000px;}
.y174{bottom:539.880000px;}
.y113{bottom:540.060000px;}
.y1bc{bottom:540.330000px;}
.y63{bottom:542.310000px;}
.y46{bottom:544.470000px;}
.y78{bottom:548.490000px;}
.y1d0{bottom:548.880000px;}
.y136{bottom:549.420000px;}
.y15{bottom:552.120000px;}
.y173{bottom:557.430000px;}
.y112{bottom:557.610000px;}
.y19b{bottom:557.880000px;}
.y62{bottom:559.950000px;}
.y1d4{bottom:566.430000px;}
.y1bb{bottom:566.880000px;}
.y14{bottom:569.670000px;}
.y19a{bottom:575.430000px;}
.y135{bottom:576.330000px;}
.y45{bottom:580.020000px;}
.y172{bottom:584.070000px;}
.y1ba{bottom:584.430000px;}
.y111{bottom:584.520000px;}
.y61{bottom:586.770000px;}
.y13{bottom:587.310000px;}
.y199{bottom:593.070000px;}
.y44{bottom:597.660000px;}
.y1b1{bottom:602.070000px;}
.y12{bottom:604.860000px;}
.y171{bottom:610.620000px;}
.y43{bottom:615.210000px;}
.y198{bottom:619.620000px;}
.y11{bottom:622.500000px;}
.y134{bottom:624.660000px;}
.y170{bottom:628.260000px;}
.y1b9{bottom:628.620000px;}
.y110{bottom:632.760000px;}
.y60{bottom:635.100000px;}
.y197{bottom:637.260000px;}
.y10{bottom:640.050000px;}
.y42{bottom:641.760000px;}
.y133{bottom:642.210000px;}
.y153{bottom:642.660000px;}
.y16f{bottom:645.810000px;}
.y1b0{bottom:646.260000px;}
.y10f{bottom:650.400000px;}
.y1cf{bottom:654.810000px;}
.yf{bottom:657.600000px;}
.y132{bottom:659.760000px;}
.y152{bottom:660.210000px;}
.y71{bottom:661.740000px;}
.y196{bottom:663.810000px;}
.y5f{bottom:667.320000px;}
.y10e{bottom:667.950000px;}
.y16e{bottom:672.360000px;}
.y1b8{bottom:672.810000px;}
.ye{bottom:675.240000px;}
.y41{bottom:677.400000px;}
.y151{bottom:677.760000px;}
.y195{bottom:681.360000px;}
.y10d{bottom:685.590000px;}
.y16d{bottom:690.000000px;}
.y1b7{bottom:690.360000px;}
.yd{bottom:692.790000px;}
.y40{bottom:694.950000px;}
.y150{bottom:695.400000px;}
.y194{bottom:699.000000px;}
.y10c{bottom:703.140000px;}
.y1af{bottom:708.000000px;}
.yc{bottom:710.430000px;}
.y3f{bottom:712.590000px;}
.y14f{bottom:712.950000px;}
.y16c{bottom:716.550000px;}
.y1b6{bottom:717.000000px;}
.y193{bottom:725.550000px;}
.yb{bottom:727.980000px;}
.y10b{bottom:729.690000px;}
.y3e{bottom:730.140000px;}
.y14e{bottom:730.590000px;}
.y16b{bottom:734.190000px;}
.y1b5{bottom:734.550000px;}
.y192{bottom:743.190000px;}
.y131{bottom:747.690000px;}
.y14d{bottom:748.140000px;}
.y16a{bottom:751.740000px;}
.y1b4{bottom:752.190000px;}
.ya{bottom:754.890000px;}
.y3d{bottom:757.050000px;}
.y1ce{bottom:760.740000px;}
.y10a{bottom:765.330000px;}
.y14c{bottom:765.690000px;}
.y191{bottom:769.740000px;}
.y169{bottom:778.290000px;}
.y70{bottom:780.750000px;}
.y109{bottom:782.880000px;}
.y130{bottom:783.330000px;}
.y190{bottom:787.290000px;}
.y168{bottom:795.930000px;}
.y6f{bottom:798.390000px;}
.y108{bottom:800.520000px;}
.y12f{bottom:800.880000px;}
.y9{bottom:803.130000px;}
.y18f{bottom:804.930000px;}
.y3c{bottom:805.290000px;}
.y1ae{bottom:813.930000px;}
.y107{bottom:818.070000px;}
.y12e{bottom:818.520000px;}
.y167{bottom:822.480000px;}
.y3b{bottom:822.930000px;}
.y6d{bottom:824.940000px;}
.y18e{bottom:831.480000px;}
.y106{bottom:835.620000px;}
.y12d{bottom:836.070000px;}
.y8{bottom:838.950000px;}
.y166{bottom:840.030000px;}
.y3a{bottom:840.480000px;}
.y18d{bottom:849.030000px;}
.y12c{bottom:853.620000px;}
.y1d3{bottom:858.030000px;}
.y105{bottom:862.260000px;}
.y165{bottom:866.670000px;}
.y12b{bottom:871.260000px;}
.y7{bottom:874.950000px;}
.y18c{bottom:875.670000px;}
.y39{bottom:876.030000px;}
.y164{bottom:884.220000px;}
.y18b{bottom:893.220000px;}
.y38{bottom:893.670000px;}
.y104{bottom:897.810000px;}
.y12a{bottom:898.170000px;}
.y163{bottom:910.860000px;}
.y6{bottom:910.950000px;}
.y37{bottom:911.220000px;}
.y103{bottom:915.450000px;}
.y18a{bottom:919.860000px;}
.y162{bottom:928.410000px;}
.y36{bottom:928.860000px;}
.y102{bottom:933.000000px;}
.y189{bottom:937.410000px;}
.y35{bottom:946.410000px;}
.y5{bottom:947.040000px;}
.y101{bottom:950.550000px;}
.y161{bottom:954.960000px;}
.y34{bottom:963.960000px;}
.y100{bottom:968.190000px;}
.y160{bottom:972.600000px;}
.y5e{bottom:981.150000px;}
.y33{bottom:981.600000px;}
.y4{bottom:985.380000px;}
.yff{bottom:985.740000px;}
.y15f{bottom:990.150000px;}
.y5d{bottom:998.790000px;}
.y32{bottom:999.150000px;}
.yfe{bottom:1003.290000px;}
.y3{bottom:1010.070000px;}
.y5c{bottom:1016.370000px;}
.y31{bottom:1016.820000px;}
.yfd{bottom:1020.960000px;}
.y30{bottom:1034.370000px;}
.y5b{bottom:1042.920000px;}
.y188{bottom:1043.370000px;}
.yfc{bottom:1047.510000px;}
.y2f{bottom:1051.920000px;}
.y15e{bottom:1060.920000px;}
.y2e{bottom:1069.560000px;}
.y129{bottom:1069.920000px;}
.y5a{bottom:1078.560000px;}
.yfb{bottom:1083.150000px;}
.y2d{bottom:1087.110000px;}
.y128{bottom:1087.560000px;}
.y59{bottom:1096.110000px;}
.yfa{bottom:1100.700000px;}
.y127{bottom:1105.110000px;}
.y58{bottom:1113.750000px;}
.y2c{bottom:1122.750000px;}
.yf9{bottom:1127.610000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h10{height:55.503491px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h11{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.hd{height:96.870000px;}
.hf{height:507.210000px;}
.he{height:567.210000px;}
.hb{height:893.160000px;}
.hc{height:893.250000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w9{width:48.060000px;}
.w14{width:54.540000px;}
.wf{width:60.240000px;}
.wd{width:60.750000px;}
.wb{width:63.540000px;}
.wc{width:68.580000px;}
.w6{width:71.280000px;}
.w7{width:71.910000px;}
.wa{width:74.880000px;}
.w11{width:76.500000px;}
.we{width:90.000000px;}
.w13{width:92.610000px;}
.w8{width:99.090000px;}
.w10{width:108.450000px;}
.w12{width:142.920000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.w4{width:1262.250000px;}
.w5{width:1262.519981px;}
.w3{width:1262.520000px;}
.x0{left:0.000000px;}
.x9{left:3.510000px;}
.x1{left:68.040000px;}
.x8{left:107.999981px;}
.x19{left:111.239987px;}
.x17{left:134.999981px;}
.xa{left:180.720000px;}
.x2{left:202.799987px;}
.xb{left:253.380000px;}
.x5{left:296.309987px;}
.x16{left:346.710000px;}
.xc{left:353.190000px;}
.x6{left:387.389981px;}
.xd{left:402.060000px;}
.xe{left:477.660000px;}
.xf{left:542.010000px;}
.x10{left:611.400000px;}
.x11{left:672.870000px;}
.x12{left:763.590000px;}
.x18{left:767.309987px;}
.x3{left:792.059987px;}
.x13{left:824.550000px;}
.x4{left:830.849987px;}
.x14{left:933.720000px;}
.x15{left:1010.940000px;}
.x7{left:1121.369981px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls3d{letter-spacing:-0.401067pt;}
.ls45{letter-spacing:-0.394667pt;}
.ls1e{letter-spacing:-0.237867pt;}
.ls13{letter-spacing:-0.165867pt;}
.ls3e{letter-spacing:-0.158933pt;}
.ls34{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.120000pt;}
.ls17{letter-spacing:-0.110400pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls16{letter-spacing:-0.107200pt;}
.ls37{letter-spacing:-0.082667pt;}
.ls2f{letter-spacing:-0.081067pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls29{letter-spacing:-0.074667pt;}
.ls42{letter-spacing:-0.060800pt;}
.ls9{letter-spacing:-0.056533pt;}
.ls1b{letter-spacing:-0.044160pt;}
.ls32{letter-spacing:-0.039680pt;}
.ls38{letter-spacing:-0.033600pt;}
.ls33{letter-spacing:-0.016320pt;}
.ls35{letter-spacing:-0.013120pt;}
.lsd{letter-spacing:-0.006933pt;}
.ls18{letter-spacing:-0.005440pt;}
.ls5{letter-spacing:0.000000pt;}
.ls46{letter-spacing:0.025707pt;}
.ls10{letter-spacing:0.040320pt;}
.ls14{letter-spacing:0.042240pt;}
.ls11{letter-spacing:0.043520pt;}
.ls19{letter-spacing:0.047360pt;}
.ls2e{letter-spacing:0.050560pt;}
.lsc{letter-spacing:0.053867pt;}
.ls1c{letter-spacing:0.054400pt;}
.lse{letter-spacing:0.065920pt;}
.ls1d{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.lsf{letter-spacing:0.081920pt;}
.ls43{letter-spacing:0.082133pt;}
.ls1{letter-spacing:0.083200pt;}
.ls4{letter-spacing:0.086720pt;}
.ls41{letter-spacing:0.086933pt;}
.ls15{letter-spacing:0.096533pt;}
.ls27{letter-spacing:0.102933pt;}
.ls39{letter-spacing:0.103467pt;}
.ls24{letter-spacing:0.106880pt;}
.ls28{letter-spacing:0.108267pt;}
.ls6{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.154133pt;}
.ls2d{letter-spacing:0.154240pt;}
.ls21{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.160533pt;}
.ls26{letter-spacing:0.161067pt;}
.ls2a{letter-spacing:0.177067pt;}
.ls30{letter-spacing:0.189867pt;}
.ls2b{letter-spacing:0.239040pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls3f{letter-spacing:1.683200pt;}
.ls2c{letter-spacing:2.323200pt;}
.ls3b{letter-spacing:4.243200pt;}
.ls40{letter-spacing:12.663680pt;}
.ls44{letter-spacing:19.923200pt;}
.ls20{letter-spacing:25.683200pt;}
.ls3a{letter-spacing:26.963200pt;}
.ls31{letter-spacing:32.403200pt;}
.ls23{letter-spacing:33.683200pt;}
.ls3c{letter-spacing:35.603200pt;}
.ls25{letter-spacing:41.363200pt;}
.ls22{letter-spacing:42.423680pt;}
.ls36{letter-spacing:51.603200pt;}
.ls1f{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.wsc{word-spacing:-12.775467pt;}
.ws18{word-spacing:-11.933867pt;}
.ws15{word-spacing:-11.917867pt;}
.wsa{word-spacing:-11.910933pt;}
.ws17{word-spacing:-11.865067pt;}
.ws1f{word-spacing:-11.860267pt;}
.ws16{word-spacing:-11.859733pt;}
.wsf{word-spacing:-11.853333pt;}
.ws22{word-spacing:-11.843733pt;}
.ws14{word-spacing:-11.822933pt;}
.ws13{word-spacing:-11.811200pt;}
.ws20{word-spacing:-11.810667pt;}
.ws19{word-spacing:-11.807360pt;}
.ws11{word-spacing:-11.804160pt;}
.wsd{word-spacing:-11.800320pt;}
.wse{word-spacing:-11.799040pt;}
.ws3{word-spacing:-11.756800pt;}
.ws10{word-spacing:-11.751360pt;}
.ws8{word-spacing:-11.749867pt;}
.ws1d{word-spacing:-11.743680pt;}
.ws1b{word-spacing:-11.740480pt;}
.ws1a{word-spacing:-11.717120pt;}
.ws12{word-spacing:-11.712640pt;}
.ws2{word-spacing:-11.700267pt;}
.ws23{word-spacing:-11.696000pt;}
.ws1e{word-spacing:-11.674133pt;}
.ws1c{word-spacing:-11.620267pt;}
.ws21{word-spacing:-11.597867pt;}
.wsb{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:-7.657067pt;}
.ws7{word-spacing:-7.603200pt;}
.ws9{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._c{margin-left:-3.206400pt;}
._3{margin-left:-2.030934pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.043765pt;}
._2{width:2.013269pt;}
._7{width:3.010198pt;}
._4{width:4.168534pt;}
._6{width:5.290667pt;}
._a{width:6.433535pt;}
._8{width:7.374934pt;}
._9{width:8.282666pt;}
._5{width:9.939733pt;}
._33{width:10.865921pt;}
._1a{width:13.259200pt;}
._29{width:14.369280pt;}
._b{width:15.551040pt;}
._d{width:16.484267pt;}
._21{width:17.627733pt;}
._30{width:18.568427pt;}
._17{width:19.612480pt;}
._2e{width:20.887467pt;}
._19{width:22.658560pt;}
._31{width:23.620480pt;}
._12{width:24.815253pt;}
._15{width:26.452800pt;}
._1e{width:28.254720pt;}
._32{width:29.790827pt;}
._11{width:30.781440pt;}
._e{width:31.903680pt;}
._2c{width:32.824640pt;}
._2b{width:33.823573pt;}
._2a{width:34.736000pt;}
._35{width:36.178880pt;}
._36{width:37.149120pt;}
._18{width:38.369920pt;}
._37{width:39.677227pt;}
._2d{width:40.774720pt;}
._2f{width:41.680682pt;}
._1d{width:42.698560pt;}
._39{width:44.072960pt;}
._38{width:44.996480pt;}
._34{width:51.409280pt;}
._10{width:54.734720pt;}
._23{width:56.664640pt;}
._1f{width:64.288320pt;}
._14{width:67.387840pt;}
._f{width:69.316480pt;}
._1c{width:78.877440pt;}
._16{width:82.992320pt;}
._13{width:86.038400pt;}
._24{width:97.421120pt;}
._1b{width:109.872640pt;}
._22{width:143.005440pt;}
._20{width:154.547733pt;}
._27{width:161.495680pt;}
._25{width:162.754560pt;}
._28{width:184.290880pt;}
._26{width:262.497280pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y97{bottom:2.960000pt;}
.y76{bottom:6.960000pt;}
.yf7{bottom:7.040000pt;}
.y96{bottom:18.560000pt;}
.y75{bottom:22.560000pt;}
.yf6{bottom:22.640000pt;}
.yc6{bottom:33.120000pt;}
.y95{bottom:34.240000pt;}
.y74{bottom:38.240000pt;}
.yf5{bottom:38.320000pt;}
.yae{bottom:41.840000pt;}
.yc5{bottom:48.720000pt;}
.y94{bottom:49.840000pt;}
.y73{bottom:53.840000pt;}
.yad{bottom:57.520000pt;}
.yf4{bottom:57.920000pt;}
.ye0{bottom:63.040000pt;}
.y2{bottom:65.226667pt;}
.y93{bottom:65.520000pt;}
.y2a{bottom:65.946667pt;}
.y6e{bottom:66.186667pt;}
.yc4{bottom:68.400000pt;}
.y72{bottom:69.466667pt;}
.yac{bottom:73.120000pt;}
.yf3{bottom:77.546667pt;}
.ydf{bottom:78.666667pt;}
.y92{bottom:81.120000pt;}
.y77{bottom:83.306667pt;}
.yc3{bottom:84.000000pt;}
.yab{bottom:88.720000pt;}
.y1{bottom:90.346667pt;}
.yf2{bottom:93.226667pt;}
.yde{bottom:94.346667pt;}
.y91{bottom:96.720000pt;}
.yc2{bottom:99.680000pt;}
.y1e6{bottom:103.626667pt;}
.yaa{bottom:104.400000pt;}
.y57{bottom:106.186667pt;}
.y15d{bottom:108.266667pt;}
.ydd{bottom:109.946667pt;}
.y90{bottom:112.400000pt;}
.yf1{bottom:112.826667pt;}
.yc1{bottom:115.280000pt;}
.y1e5{bottom:119.226667pt;}
.y15c{bottom:123.866667pt;}
.ya9{bottom:124.000000pt;}
.y28{bottom:124.666667pt;}
.ydc{bottom:125.546667pt;}
.y187{bottom:126.826667pt;}
.y1d2{bottom:127.226667pt;}
.y8f{bottom:128.000000pt;}
.y126{bottom:131.466667pt;}
.yf0{bottom:132.506667pt;}
.yc0{bottom:134.880000pt;}
.y56{bottom:137.866667pt;}
.ya8{bottom:139.680000pt;}
.y27{bottom:140.266667pt;}
.ydb{bottom:141.226667pt;}
.y186{bottom:142.506667pt;}
.y1ad{bottom:142.826667pt;}
.y8e{bottom:143.680000pt;}
.y14b{bottom:144.106667pt;}
.y125{bottom:147.066667pt;}
.y15b{bottom:147.786667pt;}
.yef{bottom:148.106667pt;}
.y1e1{bottom:150.506667pt;}
.y1cd{bottom:150.826667pt;}
.ybf{bottom:154.560000pt;}
.ya7{bottom:155.280000pt;}
.y26{bottom:155.866667pt;}
.yda{bottom:156.826667pt;}
.y185{bottom:158.106667pt;}
.y1ac{bottom:158.506667pt;}
.y8d{bottom:159.280000pt;}
.y14a{bottom:159.706667pt;}
.y124{bottom:162.666667pt;}
.y1e0{bottom:166.106667pt;}
.y1cc{bottom:166.506667pt;}
.yee{bottom:167.706667pt;}
.y55{bottom:169.466667pt;}
.ybe{bottom:170.160000pt;}
.ya6{bottom:170.880000pt;}
.y25{bottom:171.546667pt;}
.yd9{bottom:172.506667pt;}
.y1ab{bottom:174.106667pt;}
.y8c{bottom:174.880000pt;}
.y149{bottom:175.386667pt;}
.y123{bottom:178.346667pt;}
.y184{bottom:181.786667pt;}
.y1b3{bottom:182.106667pt;}
.y54{bottom:185.066667pt;}
.ybd{bottom:185.760000pt;}
.ya1{bottom:186.560000pt;}
.y24{bottom:187.146667pt;}
.yed{bottom:187.386667pt;}
.yd8{bottom:188.106667pt;}
.y1cb{bottom:190.106667pt;}
.y8b{bottom:190.560000pt;}
.y15a{bottom:190.746667pt;}
.y148{bottom:190.986667pt;}
.y122{bottom:193.946667pt;}
.y183{bottom:197.386667pt;}
.y1aa{bottom:197.786667pt;}
.y53{bottom:200.746667pt;}
.ybc{bottom:201.440000pt;}
.ya0{bottom:202.160000pt;}
.y23{bottom:202.746667pt;}
.yec{bottom:202.986667pt;}
.yd7{bottom:203.706667pt;}
.y1df{bottom:205.386667pt;}
.y1ca{bottom:205.786667pt;}
.y8a{bottom:206.160000pt;}
.y147{bottom:206.666667pt;}
.y121{bottom:209.626667pt;}
.y182{bottom:212.986667pt;}
.y1a9{bottom:213.386667pt;}
.y159{bottom:214.666667pt;}
.y9f{bottom:217.760000pt;}
.y22{bottom:218.426667pt;}
.yd6{bottom:219.386667pt;}
.y1de{bottom:220.986667pt;}
.ybb{bottom:221.040000pt;}
.y89{bottom:221.760000pt;}
.y146{bottom:222.266667pt;}
.yeb{bottom:222.666667pt;}
.y52{bottom:224.346667pt;}
.y120{bottom:225.226667pt;}
.y1a8{bottom:228.986667pt;}
.y1c9{bottom:229.386667pt;}
.y9e{bottom:233.440000pt;}
.y21{bottom:234.026667pt;}
.yd5{bottom:234.986667pt;}
.y181{bottom:236.666667pt;}
.y1b2{bottom:236.986667pt;}
.y88{bottom:237.440000pt;}
.y145{bottom:237.866667pt;}
.yba{bottom:240.720000pt;}
.yea{bottom:242.266667pt;}
.y1c8{bottom:244.986667pt;}
.y158{bottom:247.546667pt;}
.y9d{bottom:249.040000pt;}
.y20{bottom:249.706667pt;}
.yd4{bottom:250.666667pt;}
.y180{bottom:252.266667pt;}
.y1a7{bottom:252.666667pt;}
.y87{bottom:253.040000pt;}
.y144{bottom:253.546667pt;}
.y51{bottom:255.946667pt;}
.yb9{bottom:256.320000pt;}
.y11f{bottom:256.826667pt;}
.yf8{bottom:258.906667pt;}
.y1dd{bottom:260.266667pt;}
.y1c7{bottom:260.666667pt;}
.ye9{bottom:261.866667pt;}
.y157{bottom:263.146667pt;}
.y9c{bottom:264.746667pt;}
.y1f{bottom:265.306667pt;}
.yd3{bottom:266.266667pt;}
.y17f{bottom:267.946667pt;}
.y1a6{bottom:268.266667pt;}
.y86{bottom:268.746667pt;}
.y143{bottom:269.146667pt;}
.yc7{bottom:270.746667pt;}
.y50{bottom:271.626667pt;}
.y11e{bottom:272.506667pt;}
.yb8{bottom:275.946667pt;}
.y1e4{bottom:276.266667pt;}
.ye8{bottom:277.546667pt;}
.y9b{bottom:280.346667pt;}
.y1e{bottom:280.906667pt;}
.yd2{bottom:281.866667pt;}
.y1c6{bottom:284.266667pt;}
.y85{bottom:284.346667pt;}
.y142{bottom:284.826667pt;}
.y156{bottom:287.066667pt;}
.y4f{bottom:287.226667pt;}
.y11d{bottom:288.106667pt;}
.y17e{bottom:291.546667pt;}
.yb7{bottom:291.626667pt;}
.y1a5{bottom:291.946667pt;}
.y9a{bottom:295.946667pt;}
.y1d{bottom:296.586667pt;}
.ye7{bottom:297.146667pt;}
.yd1{bottom:297.546667pt;}
.y1dc{bottom:299.546667pt;}
.y84{bottom:299.946667pt;}
.y141{bottom:300.426667pt;}
.y4e{bottom:302.906667pt;}
.y11c{bottom:303.786667pt;}
.y17d{bottom:307.146667pt;}
.y1a4{bottom:307.546667pt;}
.yb6{bottom:311.226667pt;}
.y98{bottom:311.626667pt;}
.ye6{bottom:312.826667pt;}
.yd0{bottom:313.146667pt;}
.y1db{bottom:315.146667pt;}
.y1c5{bottom:315.546667pt;}
.y83{bottom:315.626667pt;}
.y140{bottom:316.026667pt;}
.y4d{bottom:318.506667pt;}
.y155{bottom:320.266667pt;}
.y1c{bottom:320.506667pt;}
.y17c{bottom:322.826667pt;}
.y1a3{bottom:323.146667pt;}
.y6c{bottom:325.386667pt;}
.y99{bottom:327.226667pt;}
.y11b{bottom:327.706667pt;}
.ycf{bottom:328.826667pt;}
.yb5{bottom:330.906667pt;}
.y1e3{bottom:331.146667pt;}
.y82{bottom:331.226667pt;}
.y13f{bottom:331.706667pt;}
.ye5{bottom:332.426667pt;}
.y4c{bottom:334.106667pt;}
.y1da{bottom:338.826667pt;}
.y1c4{bottom:339.146667pt;}
.y6b{bottom:340.986667pt;}
.ya5{bottom:342.906667pt;}
.yce{bottom:344.426667pt;}
.y17b{bottom:346.426667pt;}
.y1a2{bottom:346.826667pt;}
.y81{bottom:346.906667pt;}
.y13e{bottom:347.306667pt;}
.ye4{bottom:348.026667pt;}
.yb4{bottom:350.506667pt;}
.y1d9{bottom:354.426667pt;}
.y1c3{bottom:354.826667pt;}
.y6a{bottom:356.586667pt;}
.y4b{bottom:357.786667pt;}
.ya4{bottom:358.506667pt;}
.ycd{bottom:360.026667pt;}
.y154{bottom:360.186667pt;}
.y17a{bottom:362.106667pt;}
.y1a1{bottom:362.426667pt;}
.y80{bottom:362.506667pt;}
.y13d{bottom:362.986667pt;}
.y1b{bottom:363.706667pt;}
.yb3{bottom:366.106667pt;}
.ye3{bottom:367.706667pt;}
.y1d8{bottom:370.106667pt;}
.y1c2{bottom:370.426667pt;}
.y11a{bottom:370.586667pt;}
.y69{bottom:372.266667pt;}
.ya3{bottom:374.106667pt;}
.ycc{bottom:375.706667pt;}
.y7f{bottom:378.106667pt;}
.ye2{bottom:383.333333pt;}
.y179{bottom:385.706667pt;}
.yb2{bottom:385.786667pt;}
.y1e2{bottom:386.106667pt;}
.y119{bottom:386.186667pt;}
.y68{bottom:387.866667pt;}
.y4a{bottom:389.386667pt;}
.ya2{bottom:389.786667pt;}
.ycb{bottom:391.333333pt;}
.y1d7{bottom:393.706667pt;}
.y7e{bottom:393.786667pt;}
.y1c1{bottom:394.106667pt;}
.y13c{bottom:394.586667pt;}
.y1a{bottom:396.586667pt;}
.y178{bottom:401.306667pt;}
.yb1{bottom:401.386667pt;}
.y1a0{bottom:401.706667pt;}
.y118{bottom:401.866667pt;}
.ye1{bottom:402.933333pt;}
.y67{bottom:403.546667pt;}
.yaf{bottom:405.386667pt;}
.yca{bottom:406.933333pt;}
.y1d6{bottom:409.306667pt;}
.y7d{bottom:409.386667pt;}
.y1c0{bottom:409.706667pt;}
.y13b{bottom:410.186667pt;}
.y19{bottom:412.266667pt;}
.y49{bottom:413.066667pt;}
.y19f{bottom:417.306667pt;}
.y117{bottom:417.466667pt;}
.yb0{bottom:421.066667pt;}
.yc9{bottom:422.613333pt;}
.y177{bottom:425.013333pt;}
.y7c{bottom:425.066667pt;}
.y1bf{bottom:425.333333pt;}
.y13a{bottom:425.893333pt;}
.y1d1{bottom:433.013333pt;}
.y116{bottom:433.093333pt;}
.y66{bottom:435.173333pt;}
.yc8{bottom:438.213333pt;}
.y176{bottom:440.613333pt;}
.y7b{bottom:440.666667pt;}
.y19e{bottom:441.013333pt;}
.y139{bottom:441.493333pt;}
.y18{bottom:443.893333pt;}
.y48{bottom:444.693333pt;}
.y1d5{bottom:448.613333pt;}
.y115{bottom:448.773333pt;}
.y1be{bottom:449.013333pt;}
.y65{bottom:450.773333pt;}
.y7a{bottom:456.266667pt;}
.y19d{bottom:456.613333pt;}
.y138{bottom:457.093333pt;}
.y17{bottom:459.493333pt;}
.y47{bottom:460.293333pt;}
.y175{bottom:464.293333pt;}
.y114{bottom:464.373333pt;}
.y1bd{bottom:464.613333pt;}
.y64{bottom:466.453333pt;}
.y79{bottom:471.946667pt;}
.y19c{bottom:472.293333pt;}
.y137{bottom:472.773333pt;}
.y16{bottom:475.173333pt;}
.y174{bottom:479.893333pt;}
.y113{bottom:480.053333pt;}
.y1bc{bottom:480.293333pt;}
.y63{bottom:482.053333pt;}
.y46{bottom:483.973333pt;}
.y78{bottom:487.546667pt;}
.y1d0{bottom:487.893333pt;}
.y136{bottom:488.373333pt;}
.y15{bottom:490.773333pt;}
.y173{bottom:495.493333pt;}
.y112{bottom:495.653333pt;}
.y19b{bottom:495.893333pt;}
.y62{bottom:497.733333pt;}
.y1d4{bottom:503.493333pt;}
.y1bb{bottom:503.893333pt;}
.y14{bottom:506.373333pt;}
.y19a{bottom:511.493333pt;}
.y135{bottom:512.293333pt;}
.y45{bottom:515.573333pt;}
.y172{bottom:519.173333pt;}
.y1ba{bottom:519.493333pt;}
.y111{bottom:519.573333pt;}
.y61{bottom:521.573333pt;}
.y13{bottom:522.053333pt;}
.y199{bottom:527.173333pt;}
.y44{bottom:531.253333pt;}
.y1b1{bottom:535.173333pt;}
.y12{bottom:537.653333pt;}
.y171{bottom:542.773333pt;}
.y43{bottom:546.853333pt;}
.y198{bottom:550.773333pt;}
.y11{bottom:553.333333pt;}
.y134{bottom:555.253333pt;}
.y170{bottom:558.453333pt;}
.y1b9{bottom:558.773333pt;}
.y110{bottom:562.453333pt;}
.y60{bottom:564.533333pt;}
.y197{bottom:566.453333pt;}
.y10{bottom:568.933333pt;}
.y42{bottom:570.453333pt;}
.y133{bottom:570.853333pt;}
.y153{bottom:571.253333pt;}
.y16f{bottom:574.053333pt;}
.y1b0{bottom:574.453333pt;}
.y10f{bottom:578.133333pt;}
.y1cf{bottom:582.053333pt;}
.yf{bottom:584.533333pt;}
.y132{bottom:586.453333pt;}
.y152{bottom:586.853333pt;}
.y71{bottom:588.213333pt;}
.y196{bottom:590.053333pt;}
.y5f{bottom:593.173333pt;}
.y10e{bottom:593.733333pt;}
.y16e{bottom:597.653333pt;}
.y1b8{bottom:598.053333pt;}
.ye{bottom:600.213333pt;}
.y41{bottom:602.133333pt;}
.y151{bottom:602.453333pt;}
.y195{bottom:605.653333pt;}
.y10d{bottom:609.413333pt;}
.y16d{bottom:613.333333pt;}
.y1b7{bottom:613.653333pt;}
.yd{bottom:615.813333pt;}
.y40{bottom:617.733333pt;}
.y150{bottom:618.133333pt;}
.y194{bottom:621.333333pt;}
.y10c{bottom:625.013333pt;}
.y1af{bottom:629.333333pt;}
.yc{bottom:631.493333pt;}
.y3f{bottom:633.413333pt;}
.y14f{bottom:633.733333pt;}
.y16c{bottom:636.933333pt;}
.y1b6{bottom:637.333333pt;}
.y193{bottom:644.933333pt;}
.yb{bottom:647.093333pt;}
.y10b{bottom:648.613333pt;}
.y3e{bottom:649.013333pt;}
.y14e{bottom:649.413333pt;}
.y16b{bottom:652.613333pt;}
.y1b5{bottom:652.933333pt;}
.y192{bottom:660.613333pt;}
.y131{bottom:664.613333pt;}
.y14d{bottom:665.013333pt;}
.y16a{bottom:668.213333pt;}
.y1b4{bottom:668.613333pt;}
.ya{bottom:671.013333pt;}
.y3d{bottom:672.933333pt;}
.y1ce{bottom:676.213333pt;}
.y10a{bottom:680.293333pt;}
.y14c{bottom:680.613333pt;}
.y191{bottom:684.213333pt;}
.y169{bottom:691.813333pt;}
.y70{bottom:694.000000pt;}
.y109{bottom:695.893333pt;}
.y130{bottom:696.293333pt;}
.y190{bottom:699.813333pt;}
.y168{bottom:707.493333pt;}
.y6f{bottom:709.680000pt;}
.y108{bottom:711.573333pt;}
.y12f{bottom:711.893333pt;}
.y9{bottom:713.893333pt;}
.y18f{bottom:715.493333pt;}
.y3c{bottom:715.813333pt;}
.y1ae{bottom:723.493333pt;}
.y107{bottom:727.173333pt;}
.y12e{bottom:727.573333pt;}
.y167{bottom:731.093333pt;}
.y3b{bottom:731.493333pt;}
.y6d{bottom:733.280000pt;}
.y18e{bottom:739.093333pt;}
.y106{bottom:742.773333pt;}
.y12d{bottom:743.173333pt;}
.y8{bottom:745.733333pt;}
.y166{bottom:746.693333pt;}
.y3a{bottom:747.093333pt;}
.y18d{bottom:754.693333pt;}
.y12c{bottom:758.773333pt;}
.y1d3{bottom:762.693333pt;}
.y105{bottom:766.453333pt;}
.y165{bottom:770.373333pt;}
.y12b{bottom:774.453333pt;}
.y7{bottom:777.733333pt;}
.y18c{bottom:778.373333pt;}
.y39{bottom:778.693333pt;}
.y164{bottom:785.973333pt;}
.y18b{bottom:793.973333pt;}
.y38{bottom:794.373333pt;}
.y104{bottom:798.053333pt;}
.y12a{bottom:798.373333pt;}
.y163{bottom:809.653333pt;}
.y6{bottom:809.733333pt;}
.y37{bottom:809.973333pt;}
.y103{bottom:813.733333pt;}
.y18a{bottom:817.653333pt;}
.y162{bottom:825.253333pt;}
.y36{bottom:825.653333pt;}
.y102{bottom:829.333333pt;}
.y189{bottom:833.253333pt;}
.y35{bottom:841.253333pt;}
.y5{bottom:841.813333pt;}
.y101{bottom:844.933333pt;}
.y161{bottom:848.853333pt;}
.y34{bottom:856.853333pt;}
.y100{bottom:860.613333pt;}
.y160{bottom:864.533333pt;}
.y5e{bottom:872.133333pt;}
.y33{bottom:872.533333pt;}
.y4{bottom:875.893333pt;}
.yff{bottom:876.213333pt;}
.y15f{bottom:880.133333pt;}
.y5d{bottom:887.813333pt;}
.y32{bottom:888.133333pt;}
.yfe{bottom:891.813333pt;}
.y3{bottom:897.840000pt;}
.y5c{bottom:903.440000pt;}
.y31{bottom:903.840000pt;}
.yfd{bottom:907.520000pt;}
.y30{bottom:919.440000pt;}
.y5b{bottom:927.040000pt;}
.y188{bottom:927.440000pt;}
.yfc{bottom:931.120000pt;}
.y2f{bottom:935.040000pt;}
.y15e{bottom:943.040000pt;}
.y2e{bottom:950.720000pt;}
.y129{bottom:951.040000pt;}
.y5a{bottom:958.720000pt;}
.yfb{bottom:962.800000pt;}
.y2d{bottom:966.320000pt;}
.y128{bottom:966.720000pt;}
.y59{bottom:974.320000pt;}
.yfa{bottom:978.400000pt;}
.y127{bottom:982.320000pt;}
.y58{bottom:990.000000pt;}
.y2c{bottom:998.000000pt;}
.yf9{bottom:1002.320000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h10{height:49.336436pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h11{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.hd{height:86.106667pt;}
.hf{height:450.853333pt;}
.he{height:504.186667pt;}
.hb{height:793.920000pt;}
.hc{height:794.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w9{width:42.720000pt;}
.w14{width:48.480000pt;}
.wf{width:53.546667pt;}
.wd{width:54.000000pt;}
.wb{width:56.480000pt;}
.wc{width:60.960000pt;}
.w6{width:63.360000pt;}
.w7{width:63.920000pt;}
.wa{width:66.560000pt;}
.w11{width:68.000000pt;}
.we{width:80.000000pt;}
.w13{width:82.320000pt;}
.w8{width:88.080000pt;}
.w10{width:96.400000pt;}
.w12{width:127.040000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.w4{width:1122.000000pt;}
.w5{width:1122.239983pt;}
.w3{width:1122.240000pt;}
.x0{left:0.000000pt;}
.x9{left:3.120000pt;}
.x1{left:60.480000pt;}
.x8{left:95.999983pt;}
.x19{left:98.879988pt;}
.x17{left:119.999983pt;}
.xa{left:160.640000pt;}
.x2{left:180.266655pt;}
.xb{left:225.226667pt;}
.x5{left:263.386655pt;}
.x16{left:308.186667pt;}
.xc{left:313.946667pt;}
.x6{left:344.346650pt;}
.xd{left:357.386667pt;}
.xe{left:424.586667pt;}
.xf{left:481.786667pt;}
.x10{left:543.466667pt;}
.x11{left:598.106667pt;}
.x12{left:678.746667pt;}
.x18{left:682.053322pt;}
.x3{left:704.053322pt;}
.x13{left:732.933333pt;}
.x4{left:738.533322pt;}
.x14{left:829.973333pt;}
.x15{left:898.613333pt;}
.x7{left:996.773317pt;}
}




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