
    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_657133427b160d04c203e431.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c1c53e557d8fa5e2dbf7a2d1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_dcd34be962811457b952a42c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b53c47404faa4e3c86588bc2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1ce7df1c24372986ff98d323.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c0115b677ec82a0ca4e2b685.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ded56a26b1e704d3973320eb.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b8d9dca3f0d81155721dd12d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_be72e40346eed5b32e307211.woff2')format("woff");}.ffa{font-family:ffa;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);}
.v9{vertical-align:-80.640000px;}
.vc{vertical-align:-52.560000px;}
.ve{vertical-align:-42.180000px;}
.vf{vertical-align:-29.940000px;}
.vb{vertical-align:-23.760000px;}
.v2{vertical-align:-20.880000px;}
.v8{vertical-align:-13.500000px;}
.v3{vertical-align:-5.760000px;}
.v5{vertical-align:-2.880000px;}
.v7{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:4.140000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.v6{vertical-align:29.700000px;}
.v11{vertical-align:31.920000px;}
.vd{vertical-align:40.320000px;}
.v10{vertical-align:58.080000px;}
.v13{vertical-align:64.080000px;}
.v12{vertical-align:114.480000px;}
.ls1f{letter-spacing:-1.260000px;}
.ls3{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.612000px;}
.lse{letter-spacing:-0.460200px;}
.ls24{letter-spacing:-0.432000px;}
.ls6{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.206400px;}
.ls13{letter-spacing:-0.131400px;}
.ls8{letter-spacing:-0.106800px;}
.ls12{letter-spacing:-0.058320px;}
.ls1a{letter-spacing:-0.050700px;}
.ls2{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.022320px;}
.ls4{letter-spacing:0.037440px;}
.lsa{letter-spacing:0.053280px;}
.ls17{letter-spacing:0.093600px;}
.ls18{letter-spacing:0.096480px;}
.ls9{letter-spacing:0.106800px;}
.ls19{letter-spacing:0.166200px;}
.ls14{letter-spacing:0.179280px;}
.ls1{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.206400px;}
.ls10{letter-spacing:0.259800px;}
.ls22{letter-spacing:0.259920px;}
.lsb{letter-spacing:0.298800px;}
.ls1b{letter-spacing:0.314400px;}
.ls0{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.720000px;}
.lsc{letter-spacing:0.900000px;}
.ls1e{letter-spacing:2.340000px;}
.ls23{letter-spacing:3.180000px;}
.ls1d{letter-spacing:5.940000px;}
.ls1c{letter-spacing:6.660000px;}
.ls15{letter-spacing:11.700000px;}
.lsf{letter-spacing:14.580000px;}
.ls20{letter-spacing:46.026720px;}
.ls11{letter-spacing:234.961680px;}
.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;}
}
.ws3{word-spacing:-23.977440px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.840000px;}
.wsc{word-spacing:-15.300000px;}
.ws27{word-spacing:-15.238800px;}
.wse{word-spacing:-15.199800px;}
.wsd{word-spacing:-15.120000px;}
.ws9{word-spacing:-15.046800px;}
.wsb{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.833200px;}
.ws6{word-spacing:-14.733600px;}
.ws7{word-spacing:-14.580000px;}
.ws1c{word-spacing:-13.685040px;}
.ws1b{word-spacing:-13.538304px;}
.ws1a{word-spacing:-13.505760px;}
.ws1f{word-spacing:-10.998720px;}
.ws1{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.wsa{word-spacing:0.000000px;}
.ws19{word-spacing:45.954960px;}
.ws1d{word-spacing:54.113040px;}
.ws1e{word-spacing:83.093760px;}
.ws21{word-spacing:83.579760px;}
.ws14{word-spacing:105.602016px;}
.ws13{word-spacing:114.474960px;}
.ws11{word-spacing:130.104000px;}
.ws18{word-spacing:134.872560px;}
.ws15{word-spacing:144.550344px;}
.wsf{word-spacing:152.358000px;}
.ws17{word-spacing:153.052560px;}
.ws23{word-spacing:157.134960px;}
.ws24{word-spacing:169.134960px;}
.ws20{word-spacing:170.275440px;}
.ws26{word-spacing:171.801840px;}
.ws22{word-spacing:175.134960px;}
.ws12{word-spacing:190.620000px;}
.ws10{word-spacing:196.200000px;}
.ws25{word-spacing:199.314960px;}
.ws16{word-spacing:220.975920px;}
._31{margin-left:-3.294240px;}
._b{margin-left:-2.237280px;}
._0{margin-left:-1.080000px;}
._12{width:1.053360px;}
._1{width:2.220000px;}
._17{width:4.045440px;}
._18{width:5.081760px;}
._16{width:6.095520px;}
._14{width:7.111440px;}
._15{width:8.260320px;}
._1a{width:9.585360px;}
._6{width:10.800000px;}
._19{width:12.000240px;}
._13{width:13.257360px;}
._29{width:17.565360px;}
._10{width:18.948000px;}
._21{width:26.115120px;}
._1b{width:32.232960px;}
._24{width:39.740400px;}
._22{width:42.310080px;}
._33{width:48.286560px;}
._1c{width:51.752160px;}
._1d{width:53.485200px;}
._2a{width:71.174160px;}
._7{width:76.284960px;}
._2e{width:81.154080px;}
._35{width:85.217760px;}
._1e{width:90.596160px;}
._2f{width:96.691680px;}
._2c{width:98.185680px;}
._11{width:99.660000px;}
._20{width:102.607920px;}
._30{width:122.241600px;}
._34{width:127.647360px;}
._25{width:128.782800px;}
._2d{width:130.701600px;}
._23{width:134.220960px;}
._1f{width:139.181040px;}
._26{width:152.310000px;}
._8{width:154.080000px;}
._36{width:189.506400px;}
._d{width:195.120000px;}
._f{width:199.584000px;}
._2b{width:215.494560px;}
._27{width:222.378480px;}
._37{width:230.038800px;}
._32{width:231.629760px;}
._28{width:237.900000px;}
._2{width:255.512640px;}
._3{width:357.300000px;}
._4{width:388.054560px;}
._5{width:436.440000px;}
._9{width:604.364160px;}
._e{width:637.320000px;}
._a{width:1096.860000px;}
._c{width:1176.060000px;}
.fc5{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc7{color:rgb(68,68,68);}
.fc6{color:rgb(10,10,10);}
.fc4{color:rgb(118,118,118);}
.fc3{color:rgb(71,71,71);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fsb{font-size:48.240000px;}
.fsc{font-size:48.384000px;}
.fs7{font-size:54.000000px;}
.fs8{font-size:54.144000px;}
.fs2{font-size:59.760000px;}
.fs9{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fsa{font-size:72.000000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.ycf{bottom:-14.865000px;}
.y0{bottom:0.000000px;}
.yce{bottom:3.450000px;}
.y5a{bottom:5.760000px;}
.ye{bottom:5.940000px;}
.yb2{bottom:6.120000px;}
.y65{bottom:7.020000px;}
.y63{bottom:7.200000px;}
.y69{bottom:8.100000px;}
.y61{bottom:9.540000px;}
.yad{bottom:10.980000px;}
.y6{bottom:12.420000px;}
.y8b{bottom:13.425000px;}
.ye1{bottom:13.605000px;}
.y154{bottom:13.680000px;}
.y137{bottom:15.660000px;}
.ya9{bottom:16.200000px;}
.y8{bottom:18.180000px;}
.y5e{bottom:19.440000px;}
.yb0{bottom:20.880000px;}
.yef{bottom:22.680000px;}
.y136{bottom:25.560000px;}
.y11d{bottom:25.710000px;}
.y5c{bottom:25.740000px;}
.y131{bottom:26.460000px;}
.y5f{bottom:29.340000px;}
.yab{bottom:30.960000px;}
.ye0{bottom:31.935000px;}
.ycd{bottom:32.400000px;}
.yf1{bottom:32.580000px;}
.y14b{bottom:33.195000px;}
.y8a{bottom:33.405000px;}
.yc{bottom:34.560000px;}
.y14a{bottom:35.175000px;}
.ya8{bottom:36.000000px;}
.y134{bottom:36.360000px;}
.y5d{bottom:39.240000px;}
.y5{bottom:40.320000px;}
.yaf{bottom:40.860000px;}
.y78{bottom:41.040000px;}
.yee{bottom:42.660000px;}
.y11c{bottom:44.025000px;}
.y12f{bottom:46.260000px;}
.y89{bottom:48.960000px;}
.y60{bottom:49.185000px;}
.yd4{bottom:50.610000px;}
.ycc{bottom:50.730000px;}
.yaa{bottom:50.760000px;}
.y7d{bottom:50.940000px;}
.yd7{bottom:51.450000px;}
.yea{bottom:52.605000px;}
.yb{bottom:55.080000px;}
.ya7{bottom:55.980000px;}
.y133{bottom:56.160000px;}
.ye8{bottom:59.445000px;}
.yae{bottom:60.660000px;}
.y77{bottom:60.840000px;}
.yed{bottom:62.505000px;}
.y12e{bottom:66.060000px;}
.y14c{bottom:66.930000px;}
.y12d{bottom:66.960000px;}
.y4{bottom:68.400000px;}
.y88{bottom:68.430000px;}
.ycb{bottom:69.015000px;}
.yac{bottom:70.560000px;}
.y7b{bottom:70.785000px;}
.y9b{bottom:71.070000px;}
.yd{bottom:71.820000px;}
.ye9{bottom:72.405000px;}
.y11b{bottom:72.975000px;}
.ya{bottom:75.420000px;}
.ya6{bottom:75.780000px;}
.yd6{bottom:76.110000px;}
.y132{bottom:76.140000px;}
.y149{bottom:78.585000px;}
.ye7{bottom:79.245000px;}
.yd8{bottom:79.920000px;}
.y74{bottom:80.685000px;}
.yec{bottom:82.305000px;}
.y130{bottom:86.040000px;}
.y12c{bottom:86.760000px;}
.yca{bottom:87.330000px;}
.y87{bottom:88.170000px;}
.y7a{bottom:90.585000px;}
.y11a{bottom:91.290000px;}
.yf0{bottom:92.205000px;}
.y3{bottom:96.330000px;}
.y90{bottom:97.170000px;}
.y92{bottom:97.995000px;}
.yb4{bottom:99.000000px;}
.ye6{bottom:99.225000px;}
.y3b{bottom:99.360000px;}
.y73{bottom:100.485000px;}
.y14d{bottom:100.620000px;}
.yeb{bottom:102.105000px;}
.y12b{bottom:106.740000px;}
.yc1{bottom:106.845000px;}
.ybb{bottom:107.430000px;}
.yd9{bottom:108.435000px;}
.y119{bottom:109.620000px;}
.y79{bottom:110.565000px;}
.y16a{bottom:112.860000px;}
.yb3{bottom:114.660000px;}
.yc0{bottom:115.350000px;}
.y146{bottom:116.100000px;}
.ye5{bottom:119.025000px;}
.y3a{bottom:119.340000px;}
.ybe{bottom:119.415000px;}
.y76{bottom:120.465000px;}
.y91{bottom:121.065000px;}
.ybc{bottom:124.350000px;}
.y2{bottom:125.670000px;}
.y15a{bottom:125.745000px;}
.y118{bottom:127.905000px;}
.y93{bottom:127.980000px;}
.y7c{bottom:130.365000px;}
.yc2{bottom:132.090000px;}
.ye3{bottom:132.300000px;}
.yb8{bottom:132.450000px;}
.y169{bottom:132.840000px;}
.y14e{bottom:134.355000px;}
.y145{bottom:135.900000px;}
.yb1{bottom:136.260000px;}
.yda{bottom:136.950000px;}
.y39{bottom:139.140000px;}
.y75{bottom:140.265000px;}
.yba{bottom:141.555000px;}
.yb6{bottom:142.485000px;}
.y159{bottom:144.075000px;}
.yd1{bottom:144.720000px;}
.y110{bottom:147.420000px;}
.y102{bottom:147.675000px;}
.y10f{bottom:147.750000px;}
.y10d{bottom:147.885000px;}
.y168{bottom:152.850000px;}
.y144{bottom:155.730000px;}
.yc3{bottom:157.350000px;}
.ya5{bottom:157.890000px;}
.y94{bottom:157.935000px;}
.y85{bottom:158.610000px;}
.y38{bottom:158.970000px;}
.ye2{bottom:159.405000px;}
.y10b{bottom:161.070000px;}
.yfc{bottom:162.360000px;}
.y109{bottom:162.465000px;}
.ydb{bottom:165.450000px;}
.y14f{bottom:168.090000px;}
.y107{bottom:168.450000px;}
.y158{bottom:170.640000px;}
.yd0{bottom:171.870000px;}
.y167{bottom:174.990000px;}
.y143{bottom:175.710000px;}
.y84{bottom:178.410000px;}
.y37{bottom:178.770000px;}
.y101{bottom:180.180000px;}
.yfe{bottom:180.435000px;}
.yc4{bottom:182.595000px;}
.y95{bottom:187.890000px;}
.y111{bottom:188.640000px;}
.y157{bottom:188.970000px;}
.y105{bottom:189.645000px;}
.y83{bottom:193.170000px;}
.ydc{bottom:193.965000px;}
.y166{bottom:194.790000px;}
.y142{bottom:195.510000px;}
.yfb{bottom:196.350000px;}
.y104{bottom:196.485000px;}
.y36{bottom:198.570000px;}
.y150{bottom:201.810000px;}
.yd3{bottom:203.145000px;}
.y121{bottom:205.740000px;}
.y156{bottom:207.255000px;}
.yc5{bottom:207.870000px;}
.y10e{bottom:210.750000px;}
.y165{bottom:214.590000px;}
.y141{bottom:215.310000px;}
.y6a{bottom:215.670000px;}
.y96{bottom:217.875000px;}
.y82{bottom:218.370000px;}
.y35{bottom:218.550000px;}
.y10a{bottom:219.810000px;}
.y10c{bottom:219.990000px;}
.yf9{bottom:222.120000px;}
.ydd{bottom:222.480000px;}
.y148{bottom:222.870000px;}
.y155{bottom:225.570000px;}
.y108{bottom:227.595000px;}
.y112{bottom:229.860000px;}
.y120{bottom:232.845000px;}
.yc6{bottom:233.130000px;}
.y164{bottom:234.570000px;}
.y140{bottom:235.110000px;}
.y151{bottom:235.545000px;}
.y34{bottom:238.350000px;}
.y106{bottom:239.835000px;}
.y68{bottom:240.690000px;}
.y81{bottom:243.570000px;}
.yf7{bottom:246.630000px;}
.y97{bottom:247.830000px;}
.yde{bottom:250.995000px;}
.ya4{bottom:254.190000px;}
.y163{bottom:254.370000px;}
.y13f{bottom:254.910000px;}
.y8e{bottom:256.785000px;}
.y33{bottom:258.150000px;}
.yc7{bottom:258.375000px;}
.y11f{bottom:259.995000px;}
.yd5{bottom:261.435000px;}
.yff{bottom:264.570000px;}
.y67{bottom:265.890000px;}
.y8c{bottom:266.010000px;}
.yf6{bottom:266.430000px;}
.y80{bottom:266.970000px;}
.y152{bottom:269.280000px;}
.y113{bottom:271.080000px;}
.ya3{bottom:273.990000px;}
.y162{bottom:274.170000px;}
.y13e{bottom:274.890000px;}
.yb9{bottom:276.810000px;}
.y98{bottom:277.815000px;}
.y32{bottom:277.950000px;}
.ydf{bottom:279.510000px;}
.yf5{bottom:282.990000px;}
.yf8{bottom:283.320000px;}
.yc8{bottom:283.650000px;}
.yb7{bottom:284.070000px;}
.y11e{bottom:287.100000px;}
.y66{bottom:289.110000px;}
.y7f{bottom:290.370000px;}
.ybf{bottom:292.500000px;}
.y8f{bottom:292.890000px;}
.ya2{bottom:293.790000px;}
.y161{bottom:293.970000px;}
.y13d{bottom:294.690000px;}
.ybd{bottom:296.280000px;}
.y31{bottom:297.750000px;}
.y153{bottom:302.970000px;}
.y99{bottom:307.770000px;}
.yc9{bottom:308.880000px;}
.y64{bottom:312.330000px;}
.y7e{bottom:313.770000px;}
.y13c{bottom:314.490000px;}
.y8d{bottom:315.825000px;}
.y30{bottom:317.730000px;}
.ya1{bottom:333.570000px;}
.y160{bottom:333.750000px;}
.y13b{bottom:334.290000px;}
.y62{bottom:335.550000px;}
.y72{bottom:337.170000px;}
.y2f{bottom:337.530000px;}
.y9a{bottom:337.710000px;}
.y13a{bottom:349.770000px;}
.y103{bottom:350.280000px;}
.ya0{bottom:353.370000px;}
.y114{bottom:353.550000px;}
.y2e{bottom:357.330000px;}
.y59{bottom:358.770000px;}
.y9f{bottom:369.930000px;}
.yd2{bottom:371.160000px;}
.y139{bottom:371.190000px;}
.y15f{bottom:373.350000px;}
.y2d{bottom:377.130000px;}
.y100{bottom:379.830000px;}
.y138{bottom:392.610000px;}
.y15e{bottom:393.150000px;}
.y115{bottom:394.770000px;}
.y2c{bottom:396.930000px;}
.y15d{bottom:412.995000px;}
.y135{bottom:413.895000px;}
.yfd{bottom:414.435000px;}
.y2b{bottom:416.955000px;}
.y5b{bottom:426.315000px;}
.y15c{bottom:432.975000px;}
.y116{bottom:435.990000px;}
.y2a{bottom:436.755000px;}
.y15b{bottom:452.775000px;}
.y12a{bottom:455.115000px;}
.y29{bottom:456.555000px;}
.yfa{bottom:460.230000px;}
.y58{bottom:472.575000px;}
.y28{bottom:476.355000px;}
.y117{bottom:477.210000px;}
.y57{bottom:492.375000px;}
.y27{bottom:496.155000px;}
.y56{bottom:512.175000px;}
.y26{bottom:516.135000px;}
.y55{bottom:532.155000px;}
.y71{bottom:533.235000px;}
.y25{bottom:535.935000px;}
.y54{bottom:551.955000px;}
.y70{bottom:553.035000px;}
.y24{bottom:555.735000px;}
.y53{bottom:571.755000px;}
.y6f{bottom:572.835000px;}
.y23{bottom:575.535000px;}
.y129{bottom:582.375000px;}
.y52{bottom:591.555000px;}
.y6e{bottom:592.635000px;}
.y22{bottom:595.335000px;}
.y128{bottom:602.175000px;}
.y51{bottom:611.355000px;}
.y6d{bottom:612.615000px;}
.y21{bottom:615.315000px;}
.y127{bottom:621.975000px;}
.y50{bottom:631.335000px;}
.y6c{bottom:632.415000px;}
.y20{bottom:635.115000px;}
.y126{bottom:641.955000px;}
.y6b{bottom:648.975000px;}
.y86{bottom:649.260000px;}
.y4f{bottom:651.165000px;}
.y1f{bottom:654.945000px;}
.y125{bottom:661.785000px;}
.y4e{bottom:670.965000px;}
.y1e{bottom:674.745000px;}
.y9e{bottom:677.445000px;}
.y124{bottom:681.585000px;}
.y4d{bottom:690.765000px;}
.y1d{bottom:694.545000px;}
.y9d{bottom:697.245000px;}
.y123{bottom:701.385000px;}
.y4c{bottom:710.565000px;}
.y1c{bottom:714.525000px;}
.y9c{bottom:716.865000px;}
.yb5{bottom:716.940000px;}
.y122{bottom:718.125000px;}
.y147{bottom:718.200000px;}
.y4b{bottom:730.545000px;}
.y1b{bottom:734.325000px;}
.y4a{bottom:750.345000px;}
.y1a{bottom:754.125000px;}
.y49{bottom:770.145000px;}
.y19{bottom:773.925000px;}
.y48{bottom:789.945000px;}
.yf4{bottom:790.665000px;}
.y18{bottom:793.725000px;}
.yf3{bottom:806.145000px;}
.y47{bottom:809.745000px;}
.y17{bottom:813.705000px;}
.yf2{bottom:827.565000px;}
.y46{bottom:829.725000px;}
.y16{bottom:838.725000px;}
.ye4{bottom:848.805000px;}
.y45{bottom:849.525000px;}
.y15{bottom:858.525000px;}
.y44{bottom:869.325000px;}
.y14{bottom:878.325000px;}
.y43{bottom:889.125000px;}
.y13{bottom:893.445000px;}
.y42{bottom:908.970000px;}
.y12{bottom:914.910000px;}
.y41{bottom:928.950000px;}
.y11{bottom:938.310000px;}
.y40{bottom:948.750000px;}
.y3f{bottom:968.550000px;}
.y10{bottom:969.990000px;}
.y3e{bottom:988.350000px;}
.yf{bottom:1001.850000px;}
.y3d{bottom:1008.150000px;}
.y3c{bottom:1028.130000px;}
.y9{bottom:1046.670000px;}
.y1{bottom:1063.050000px;}
.y7{bottom:1097.250000px;}
.h6{height:2.010938px;}
.h2c{height:19.800000px;}
.h34{height:19.836000px;}
.h2d{height:19.980000px;}
.h27{height:20.160000px;}
.h26{height:20.196000px;}
.ha{height:21.420000px;}
.h16{height:22.500000px;}
.h19{height:22.680000px;}
.h17{height:24.300000px;}
.h1a{height:24.480000px;}
.hf{height:27.147656px;}
.h7{height:33.480000px;}
.h1c{height:38.100586px;}
.h1d{height:38.202187px;}
.h33{height:39.600000px;}
.h14{height:39.780000px;}
.h10{height:41.726953px;}
.hd{height:42.164648px;}
.h39{height:43.506914px;}
.hb{height:46.251562px;}
.h4{height:46.736719px;}
.h12{height:48.027656px;}
.h3a{height:48.496641px;}
.h11{height:49.255313px;}
.h2f{height:49.394180px;}
.h30{height:49.541625px;}
.h31{height:49.814180px;}
.h24{height:50.800781px;}
.h9{height:53.224453px;}
.he{height:53.404453px;}
.h22{height:59.439023px;}
.h23{height:59.582250px;}
.h1f{height:61.189805px;}
.h20{height:61.337250px;}
.h3{height:63.500977px;}
.h21{height:65.477250px;}
.h8{height:65.884219px;}
.h15{height:66.816000px;}
.hc{height:67.565039px;}
.h1e{height:67.800586px;}
.h38{height:85.489805px;}
.h25{height:89.820000px;}
.h29{height:101.509805px;}
.h13{height:107.316000px;}
.h5{height:112.536000px;}
.h32{height:120.780000px;}
.h37{height:125.269805px;}
.h2b{height:133.056000px;}
.h2{height:146.736000px;}
.h36{height:175.817250px;}
.h18{height:189.570000px;}
.h2a{height:300.420000px;}
.h35{height:324.000000px;}
.h28{height:325.260000px;}
.h1b{height:392.940000px;}
.h2e{height:501.660000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.900000px;}
.w7{width:52.560000px;}
.w6{width:60.120000px;}
.w15{width:64.080000px;}
.w22{width:64.260000px;}
.w1b{width:64.620000px;}
.w3b{width:66.780000px;}
.w34{width:67.140000px;}
.wb{width:71.280000px;}
.we{width:73.476000px;}
.w2c{width:74.160000px;}
.w29{width:74.700000px;}
.wf{width:74.880000px;}
.w12{width:74.916000px;}
.w11{width:76.140000px;}
.w39{width:79.560000px;}
.w32{width:79.920000px;}
.wd{width:80.280000px;}
.w38{width:81.036000px;}
.w27{width:81.180000px;}
.w31{width:81.756000px;}
.w1e{width:83.340000px;}
.w17{width:84.240000px;}
.w13{width:85.860000px;}
.w3c{width:91.476000px;}
.w35{width:91.836000px;}
.w10{width:92.520000px;}
.w14{width:93.096000px;}
.wa{width:96.876000px;}
.w3d{width:99.360000px;}
.w36{width:99.720000px;}
.w2e{width:102.240000px;}
.w24{width:102.600000px;}
.w2a{width:102.816000px;}
.w1d{width:102.960000px;}
.w1f{width:103.176000px;}
.w2b{width:103.680000px;}
.w28{width:103.716000px;}
.w18{width:103.896000px;}
.w20{width:104.040000px;}
.w19{width:104.400000px;}
.w21{width:108.576000px;}
.w1a{width:108.936000px;}
.w2d{width:113.076000px;}
.w23{width:113.436000px;}
.w1c{width:113.796000px;}
.wc{width:113.976000px;}
.w37{width:120.960000px;}
.w30{width:122.040000px;}
.w3{width:137.556000px;}
.w3a{width:140.256000px;}
.w33{width:140.616000px;}
.w9{width:242.310000px;}
.w8{width:364.575000px;}
.w26{width:540.000000px;}
.w2{width:649.410000px;}
.w16{width:658.800000px;}
.w25{width:676.800000px;}
.w2f{width:725.220000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x41{left:3.852000px;}
.x2{left:8.100000px;}
.x56{left:9.870000px;}
.x6b{left:16.236000px;}
.x55{left:17.460000px;}
.x40{left:34.308000px;}
.x57{left:45.750000px;}
.x1{left:53.100000px;}
.x6a{left:54.252000px;}
.x42{left:56.670000px;}
.x58{left:58.170000px;}
.x25{left:62.175000px;}
.x4f{left:65.415000px;}
.x83{left:66.855000px;}
.x6{left:71.819987px;}
.x85{left:75.239987px;}
.x43{left:76.395000px;}
.x26{left:77.730000px;}
.x61{left:83.700000px;}
.x10{left:85.716000px;}
.x7{left:89.495987px;}
.x62{left:90.645000px;}
.x81{left:93.270000px;}
.x74{left:100.080000px;}
.x3d{left:101.520000px;}
.x32{left:103.716000px;}
.xe{left:108.035987px;}
.x1b{left:114.516000px;}
.x50{left:115.815000px;}
.x22{left:117.000000px;}
.x4{left:118.470000px;}
.x44{left:131.325000px;}
.x69{left:139.245000px;}
.x11{left:146.556000px;}
.x75{left:150.480000px;}
.x54{left:153.900000px;}
.x66{left:158.610000px;}
.xf{left:162.029987px;}
.x39{left:167.370000px;}
.x60{left:170.129987px;}
.x53{left:176.400000px;}
.xd{left:178.589987px;}
.x2d{left:181.800000px;}
.x5b{left:185.610000px;}
.x19{left:187.409987px;}
.x33{left:188.850000px;}
.xb{left:189.929987px;}
.x1c{left:191.550000px;}
.x45{left:194.910000px;}
.x78{left:196.229987px;}
.x12{left:199.830000px;}
.x63{left:202.890000px;}
.x46{left:204.225000px;}
.x2c{left:216.105000px;}
.x2b{left:223.740000px;}
.x7b{left:226.470000px;}
.x6c{left:228.495000px;}
.x2f{left:231.869987px;}
.x3a{left:234.570000px;}
.x6d{left:237.855000px;}
.x3e{left:239.115000px;}
.x79{left:240.149987px;}
.x82{left:252.975000px;}
.x48{left:257.835000px;}
.x59{left:261.750000px;}
.x23{left:265.965000px;}
.xa{left:267.014987px;}
.x64{left:268.020000px;}
.x24{left:271.620000px;}
.x47{left:275.970000px;}
.x5c{left:289.695000px;}
.x27{left:291.210000px;}
.x34{left:293.115000px;}
.xc{left:298.154987px;}
.x6e{left:307.440000px;}
.x7c{left:308.595000px;}
.x1a{left:322.814987px;}
.x51{left:326.370000px;}
.x49{left:328.680000px;}
.x67{left:330.270000px;}
.x65{left:351.570000px;}
.x1d{left:353.775000px;}
.x28{left:357.450000px;}
.x8{left:362.234987px;}
.x31{left:364.934987px;}
.x14{left:369.435000px;}
.x7a{left:386.714987px;}
.x7d{left:388.875000px;}
.x52{left:392.250000px;}
.x5d{left:394.095000px;}
.x35{left:397.875000px;}
.x4a{left:405.330000px;}
.x84{left:413.715000px;}
.x76{left:419.430000px;}
.x6f{left:422.250000px;}
.x29{left:423.645000px;}
.x3b{left:429.090000px;}
.x3f{left:430.560000px;}
.x70{left:432.510000px;}
.x1e{left:440.355000px;}
.x9{left:446.504987px;}
.x4d{left:453.990000px;}
.x4c{left:458.025000px;}
.x4e{left:467.385000px;}
.x4b{left:473.325000px;}
.x72{left:479.055000px;}
.x71{left:483.090000px;}
.x15{left:484.125000px;}
.x2a{left:489.855000px;}
.x73{left:492.405000px;}
.x3c{left:496.260000px;}
.x5e{left:497.625000px;}
.x5a{left:502.590000px;}
.x36{left:507.165000px;}
.x68{left:516.930000px;}
.x7e{left:529.845000px;}
.x1f{left:534.165000px;}
.x13{left:565.125000px;}
.x37{left:572.145000px;}
.x7f{left:597.345000px;}
.x20{left:598.965000px;}
.x16{left:639.330000px;}
.x77{left:667.410000px;}
.x38{left:686.310000px;}
.x80{left:689.550000px;}
.x21{left:692.790000px;}
.x3{left:702.510000px;}
.x17{left:714.930000px;}
.x30{left:716.549987px;}
.x18{left:775.949987px;}
.x2e{left:784.949987px;}
.x5f{left:809.279987px;}
.x5{left:829.260000px;}
@media print{
.v9{vertical-align:-71.680000pt;}
.vc{vertical-align:-46.720000pt;}
.ve{vertical-align:-37.493333pt;}
.vf{vertical-align:-26.613333pt;}
.vb{vertical-align:-21.120000pt;}
.v2{vertical-align:-18.560000pt;}
.v8{vertical-align:-12.000000pt;}
.v3{vertical-align:-5.120000pt;}
.v5{vertical-align:-2.560000pt;}
.v7{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:3.680000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.v6{vertical-align:26.400000pt;}
.v11{vertical-align:28.373333pt;}
.vd{vertical-align:35.840000pt;}
.v10{vertical-align:51.626667pt;}
.v13{vertical-align:56.960000pt;}
.v12{vertical-align:101.760000pt;}
.ls1f{letter-spacing:-1.120000pt;}
.ls3{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.544000pt;}
.lse{letter-spacing:-0.409067pt;}
.ls24{letter-spacing:-0.384000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.183467pt;}
.ls13{letter-spacing:-0.116800pt;}
.ls8{letter-spacing:-0.094933pt;}
.ls12{letter-spacing:-0.051840pt;}
.ls1a{letter-spacing:-0.045067pt;}
.ls2{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.019840pt;}
.ls4{letter-spacing:0.033280pt;}
.lsa{letter-spacing:0.047360pt;}
.ls17{letter-spacing:0.083200pt;}
.ls18{letter-spacing:0.085760pt;}
.ls9{letter-spacing:0.094933pt;}
.ls19{letter-spacing:0.147733pt;}
.ls14{letter-spacing:0.159360pt;}
.ls1{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.183467pt;}
.ls10{letter-spacing:0.230933pt;}
.ls22{letter-spacing:0.231040pt;}
.lsb{letter-spacing:0.265600pt;}
.ls1b{letter-spacing:0.279467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.800000pt;}
.ls1e{letter-spacing:2.080000pt;}
.ls23{letter-spacing:2.826667pt;}
.ls1d{letter-spacing:5.280000pt;}
.ls1c{letter-spacing:5.920000pt;}
.ls15{letter-spacing:10.400000pt;}
.lsf{letter-spacing:12.960000pt;}
.ls20{letter-spacing:40.912640pt;}
.ls11{letter-spacing:208.854827pt;}
.ws3{word-spacing:-21.313280pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.080000pt;}
.wsc{word-spacing:-13.600000pt;}
.ws27{word-spacing:-13.545600pt;}
.wse{word-spacing:-13.510933pt;}
.wsd{word-spacing:-13.440000pt;}
.ws9{word-spacing:-13.374933pt;}
.wsb{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.185067pt;}
.ws6{word-spacing:-13.096533pt;}
.ws7{word-spacing:-12.960000pt;}
.ws1c{word-spacing:-12.164480pt;}
.ws1b{word-spacing:-12.034048pt;}
.ws1a{word-spacing:-12.005120pt;}
.ws1f{word-spacing:-9.776640pt;}
.ws1{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.wsa{word-spacing:0.000000pt;}
.ws19{word-spacing:40.848853pt;}
.ws1d{word-spacing:48.100480pt;}
.ws1e{word-spacing:73.861120pt;}
.ws21{word-spacing:74.293120pt;}
.ws14{word-spacing:93.868459pt;}
.ws13{word-spacing:101.755520pt;}
.ws11{word-spacing:115.648000pt;}
.ws18{word-spacing:119.886720pt;}
.ws15{word-spacing:128.489195pt;}
.wsf{word-spacing:135.429333pt;}
.ws17{word-spacing:136.046720pt;}
.ws23{word-spacing:139.675520pt;}
.ws24{word-spacing:150.342187pt;}
.ws20{word-spacing:151.355947pt;}
.ws26{word-spacing:152.712747pt;}
.ws22{word-spacing:155.675520pt;}
.ws12{word-spacing:169.440000pt;}
.ws10{word-spacing:174.400000pt;}
.ws25{word-spacing:177.168853pt;}
.ws16{word-spacing:196.423040pt;}
._31{margin-left:-2.928213pt;}
._b{margin-left:-1.988693pt;}
._0{margin-left:-0.960000pt;}
._12{width:0.936320pt;}
._1{width:1.973333pt;}
._17{width:3.595947pt;}
._18{width:4.517120pt;}
._16{width:5.418240pt;}
._14{width:6.321280pt;}
._15{width:7.342507pt;}
._1a{width:8.520320pt;}
._6{width:9.600000pt;}
._19{width:10.666880pt;}
._13{width:11.784320pt;}
._29{width:15.613653pt;}
._10{width:16.842667pt;}
._21{width:23.213440pt;}
._1b{width:28.651520pt;}
._24{width:35.324800pt;}
._22{width:37.608960pt;}
._33{width:42.921387pt;}
._1c{width:46.001920pt;}
._1d{width:47.542400pt;}
._2a{width:63.265920pt;}
._7{width:67.808853pt;}
._2e{width:72.136960pt;}
._35{width:75.749120pt;}
._1e{width:80.529920pt;}
._2f{width:85.948160pt;}
._2c{width:87.276160pt;}
._11{width:88.586667pt;}
._20{width:91.207040pt;}
._30{width:108.659200pt;}
._34{width:113.464320pt;}
._25{width:114.473600pt;}
._2d{width:116.179200pt;}
._23{width:119.307520pt;}
._1f{width:123.716480pt;}
._26{width:135.386667pt;}
._8{width:136.960000pt;}
._36{width:168.450133pt;}
._d{width:173.440000pt;}
._f{width:177.408000pt;}
._2b{width:191.550720pt;}
._27{width:197.669760pt;}
._37{width:204.478933pt;}
._32{width:205.893120pt;}
._28{width:211.466667pt;}
._2{width:227.122347pt;}
._3{width:317.600000pt;}
._4{width:344.937387pt;}
._5{width:387.946667pt;}
._9{width:537.212587pt;}
._e{width:566.506667pt;}
._a{width:974.986667pt;}
._c{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fsb{font-size:42.880000pt;}
.fsc{font-size:43.008000pt;}
.fs7{font-size:48.000000pt;}
.fs8{font-size:48.128000pt;}
.fs2{font-size:53.120000pt;}
.fs9{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fsa{font-size:64.000000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.ycf{bottom:-13.213333pt;}
.y0{bottom:0.000000pt;}
.yce{bottom:3.066667pt;}
.y5a{bottom:5.120000pt;}
.ye{bottom:5.280000pt;}
.yb2{bottom:5.440000pt;}
.y65{bottom:6.240000pt;}
.y63{bottom:6.400000pt;}
.y69{bottom:7.200000pt;}
.y61{bottom:8.480000pt;}
.yad{bottom:9.760000pt;}
.y6{bottom:11.040000pt;}
.y8b{bottom:11.933333pt;}
.ye1{bottom:12.093333pt;}
.y154{bottom:12.160000pt;}
.y137{bottom:13.920000pt;}
.ya9{bottom:14.400000pt;}
.y8{bottom:16.160000pt;}
.y5e{bottom:17.280000pt;}
.yb0{bottom:18.560000pt;}
.yef{bottom:20.160000pt;}
.y136{bottom:22.720000pt;}
.y11d{bottom:22.853333pt;}
.y5c{bottom:22.880000pt;}
.y131{bottom:23.520000pt;}
.y5f{bottom:26.080000pt;}
.yab{bottom:27.520000pt;}
.ye0{bottom:28.386667pt;}
.ycd{bottom:28.800000pt;}
.yf1{bottom:28.960000pt;}
.y14b{bottom:29.506667pt;}
.y8a{bottom:29.693333pt;}
.yc{bottom:30.720000pt;}
.y14a{bottom:31.266667pt;}
.ya8{bottom:32.000000pt;}
.y134{bottom:32.320000pt;}
.y5d{bottom:34.880000pt;}
.y5{bottom:35.840000pt;}
.yaf{bottom:36.320000pt;}
.y78{bottom:36.480000pt;}
.yee{bottom:37.920000pt;}
.y11c{bottom:39.133333pt;}
.y12f{bottom:41.120000pt;}
.y89{bottom:43.520000pt;}
.y60{bottom:43.720000pt;}
.yd4{bottom:44.986667pt;}
.ycc{bottom:45.093333pt;}
.yaa{bottom:45.120000pt;}
.y7d{bottom:45.280000pt;}
.yd7{bottom:45.733333pt;}
.yea{bottom:46.760000pt;}
.yb{bottom:48.960000pt;}
.ya7{bottom:49.760000pt;}
.y133{bottom:49.920000pt;}
.ye8{bottom:52.840000pt;}
.yae{bottom:53.920000pt;}
.y77{bottom:54.080000pt;}
.yed{bottom:55.560000pt;}
.y12e{bottom:58.720000pt;}
.y14c{bottom:59.493333pt;}
.y12d{bottom:59.520000pt;}
.y4{bottom:60.800000pt;}
.y88{bottom:60.826667pt;}
.ycb{bottom:61.346667pt;}
.yac{bottom:62.720000pt;}
.y7b{bottom:62.920000pt;}
.y9b{bottom:63.173333pt;}
.yd{bottom:63.840000pt;}
.ye9{bottom:64.360000pt;}
.y11b{bottom:64.866667pt;}
.ya{bottom:67.040000pt;}
.ya6{bottom:67.360000pt;}
.yd6{bottom:67.653333pt;}
.y132{bottom:67.680000pt;}
.y149{bottom:69.853333pt;}
.ye7{bottom:70.440000pt;}
.yd8{bottom:71.040000pt;}
.y74{bottom:71.720000pt;}
.yec{bottom:73.160000pt;}
.y130{bottom:76.480000pt;}
.y12c{bottom:77.120000pt;}
.yca{bottom:77.626667pt;}
.y87{bottom:78.373333pt;}
.y7a{bottom:80.520000pt;}
.y11a{bottom:81.146667pt;}
.yf0{bottom:81.960000pt;}
.y3{bottom:85.626667pt;}
.y90{bottom:86.373333pt;}
.y92{bottom:87.106667pt;}
.yb4{bottom:88.000000pt;}
.ye6{bottom:88.200000pt;}
.y3b{bottom:88.320000pt;}
.y73{bottom:89.320000pt;}
.y14d{bottom:89.440000pt;}
.yeb{bottom:90.760000pt;}
.y12b{bottom:94.880000pt;}
.yc1{bottom:94.973333pt;}
.ybb{bottom:95.493333pt;}
.yd9{bottom:96.386667pt;}
.y119{bottom:97.440000pt;}
.y79{bottom:98.280000pt;}
.y16a{bottom:100.320000pt;}
.yb3{bottom:101.920000pt;}
.yc0{bottom:102.533333pt;}
.y146{bottom:103.200000pt;}
.ye5{bottom:105.800000pt;}
.y3a{bottom:106.080000pt;}
.ybe{bottom:106.146667pt;}
.y76{bottom:107.080000pt;}
.y91{bottom:107.613333pt;}
.ybc{bottom:110.533333pt;}
.y2{bottom:111.706667pt;}
.y15a{bottom:111.773333pt;}
.y118{bottom:113.693333pt;}
.y93{bottom:113.760000pt;}
.y7c{bottom:115.880000pt;}
.yc2{bottom:117.413333pt;}
.ye3{bottom:117.600000pt;}
.yb8{bottom:117.733333pt;}
.y169{bottom:118.080000pt;}
.y14e{bottom:119.426667pt;}
.y145{bottom:120.800000pt;}
.yb1{bottom:121.120000pt;}
.yda{bottom:121.733333pt;}
.y39{bottom:123.680000pt;}
.y75{bottom:124.680000pt;}
.yba{bottom:125.826667pt;}
.yb6{bottom:126.653333pt;}
.y159{bottom:128.066667pt;}
.yd1{bottom:128.640000pt;}
.y110{bottom:131.040000pt;}
.y102{bottom:131.266667pt;}
.y10f{bottom:131.333333pt;}
.y10d{bottom:131.453333pt;}
.y168{bottom:135.866667pt;}
.y144{bottom:138.426667pt;}
.yc3{bottom:139.866667pt;}
.ya5{bottom:140.346667pt;}
.y94{bottom:140.386667pt;}
.y85{bottom:140.986667pt;}
.y38{bottom:141.306667pt;}
.ye2{bottom:141.693333pt;}
.y10b{bottom:143.173333pt;}
.yfc{bottom:144.320000pt;}
.y109{bottom:144.413333pt;}
.ydb{bottom:147.066667pt;}
.y14f{bottom:149.413333pt;}
.y107{bottom:149.733333pt;}
.y158{bottom:151.680000pt;}
.yd0{bottom:152.773333pt;}
.y167{bottom:155.546667pt;}
.y143{bottom:156.186667pt;}
.y84{bottom:158.586667pt;}
.y37{bottom:158.906667pt;}
.y101{bottom:160.160000pt;}
.yfe{bottom:160.386667pt;}
.yc4{bottom:162.306667pt;}
.y95{bottom:167.013333pt;}
.y111{bottom:167.680000pt;}
.y157{bottom:167.973333pt;}
.y105{bottom:168.573333pt;}
.y83{bottom:171.706667pt;}
.ydc{bottom:172.413333pt;}
.y166{bottom:173.146667pt;}
.y142{bottom:173.786667pt;}
.yfb{bottom:174.533333pt;}
.y104{bottom:174.653333pt;}
.y36{bottom:176.506667pt;}
.y150{bottom:179.386667pt;}
.yd3{bottom:180.573333pt;}
.y121{bottom:182.880000pt;}
.y156{bottom:184.226667pt;}
.yc5{bottom:184.773333pt;}
.y10e{bottom:187.333333pt;}
.y165{bottom:190.746667pt;}
.y141{bottom:191.386667pt;}
.y6a{bottom:191.706667pt;}
.y96{bottom:193.666667pt;}
.y82{bottom:194.106667pt;}
.y35{bottom:194.266667pt;}
.y10a{bottom:195.386667pt;}
.y10c{bottom:195.546667pt;}
.yf9{bottom:197.440000pt;}
.ydd{bottom:197.760000pt;}
.y148{bottom:198.106667pt;}
.y155{bottom:200.506667pt;}
.y108{bottom:202.306667pt;}
.y112{bottom:204.320000pt;}
.y120{bottom:206.973333pt;}
.yc6{bottom:207.226667pt;}
.y164{bottom:208.506667pt;}
.y140{bottom:208.986667pt;}
.y151{bottom:209.373333pt;}
.y34{bottom:211.866667pt;}
.y106{bottom:213.186667pt;}
.y68{bottom:213.946667pt;}
.y81{bottom:216.506667pt;}
.yf7{bottom:219.226667pt;}
.y97{bottom:220.293333pt;}
.yde{bottom:223.106667pt;}
.ya4{bottom:225.946667pt;}
.y163{bottom:226.106667pt;}
.y13f{bottom:226.586667pt;}
.y8e{bottom:228.253333pt;}
.y33{bottom:229.466667pt;}
.yc7{bottom:229.666667pt;}
.y11f{bottom:231.106667pt;}
.yd5{bottom:232.386667pt;}
.yff{bottom:235.173333pt;}
.y67{bottom:236.346667pt;}
.y8c{bottom:236.453333pt;}
.yf6{bottom:236.826667pt;}
.y80{bottom:237.306667pt;}
.y152{bottom:239.360000pt;}
.y113{bottom:240.960000pt;}
.ya3{bottom:243.546667pt;}
.y162{bottom:243.706667pt;}
.y13e{bottom:244.346667pt;}
.yb9{bottom:246.053333pt;}
.y98{bottom:246.946667pt;}
.y32{bottom:247.066667pt;}
.ydf{bottom:248.453333pt;}
.yf5{bottom:251.546667pt;}
.yf8{bottom:251.840000pt;}
.yc8{bottom:252.133333pt;}
.yb7{bottom:252.506667pt;}
.y11e{bottom:255.200000pt;}
.y66{bottom:256.986667pt;}
.y7f{bottom:258.106667pt;}
.ybf{bottom:260.000000pt;}
.y8f{bottom:260.346667pt;}
.ya2{bottom:261.146667pt;}
.y161{bottom:261.306667pt;}
.y13d{bottom:261.946667pt;}
.ybd{bottom:263.360000pt;}
.y31{bottom:264.666667pt;}
.y153{bottom:269.306667pt;}
.y99{bottom:273.573333pt;}
.yc9{bottom:274.560000pt;}
.y64{bottom:277.626667pt;}
.y7e{bottom:278.906667pt;}
.y13c{bottom:279.546667pt;}
.y8d{bottom:280.733333pt;}
.y30{bottom:282.426667pt;}
.ya1{bottom:296.506667pt;}
.y160{bottom:296.666667pt;}
.y13b{bottom:297.146667pt;}
.y62{bottom:298.266667pt;}
.y72{bottom:299.706667pt;}
.y2f{bottom:300.026667pt;}
.y9a{bottom:300.186667pt;}
.y13a{bottom:310.906667pt;}
.y103{bottom:311.360000pt;}
.ya0{bottom:314.106667pt;}
.y114{bottom:314.266667pt;}
.y2e{bottom:317.626667pt;}
.y59{bottom:318.906667pt;}
.y9f{bottom:328.826667pt;}
.yd2{bottom:329.920000pt;}
.y139{bottom:329.946667pt;}
.y15f{bottom:331.866667pt;}
.y2d{bottom:335.226667pt;}
.y100{bottom:337.626667pt;}
.y138{bottom:348.986667pt;}
.y15e{bottom:349.466667pt;}
.y115{bottom:350.906667pt;}
.y2c{bottom:352.826667pt;}
.y15d{bottom:367.106667pt;}
.y135{bottom:367.906667pt;}
.yfd{bottom:368.386667pt;}
.y2b{bottom:370.626667pt;}
.y5b{bottom:378.946667pt;}
.y15c{bottom:384.866667pt;}
.y116{bottom:387.546667pt;}
.y2a{bottom:388.226667pt;}
.y15b{bottom:402.466667pt;}
.y12a{bottom:404.546667pt;}
.y29{bottom:405.826667pt;}
.yfa{bottom:409.093333pt;}
.y58{bottom:420.066667pt;}
.y28{bottom:423.426667pt;}
.y117{bottom:424.186667pt;}
.y57{bottom:437.666667pt;}
.y27{bottom:441.026667pt;}
.y56{bottom:455.266667pt;}
.y26{bottom:458.786667pt;}
.y55{bottom:473.026667pt;}
.y71{bottom:473.986667pt;}
.y25{bottom:476.386667pt;}
.y54{bottom:490.626667pt;}
.y70{bottom:491.586667pt;}
.y24{bottom:493.986667pt;}
.y53{bottom:508.226667pt;}
.y6f{bottom:509.186667pt;}
.y23{bottom:511.586667pt;}
.y129{bottom:517.666667pt;}
.y52{bottom:525.826667pt;}
.y6e{bottom:526.786667pt;}
.y22{bottom:529.186667pt;}
.y128{bottom:535.266667pt;}
.y51{bottom:543.426667pt;}
.y6d{bottom:544.546667pt;}
.y21{bottom:546.946667pt;}
.y127{bottom:552.866667pt;}
.y50{bottom:561.186667pt;}
.y6c{bottom:562.146667pt;}
.y20{bottom:564.546667pt;}
.y126{bottom:570.626667pt;}
.y6b{bottom:576.866667pt;}
.y86{bottom:577.120000pt;}
.y4f{bottom:578.813333pt;}
.y1f{bottom:582.173333pt;}
.y125{bottom:588.253333pt;}
.y4e{bottom:596.413333pt;}
.y1e{bottom:599.773333pt;}
.y9e{bottom:602.173333pt;}
.y124{bottom:605.853333pt;}
.y4d{bottom:614.013333pt;}
.y1d{bottom:617.373333pt;}
.y9d{bottom:619.773333pt;}
.y123{bottom:623.453333pt;}
.y4c{bottom:631.613333pt;}
.y1c{bottom:635.133333pt;}
.y9c{bottom:637.213333pt;}
.yb5{bottom:637.280000pt;}
.y122{bottom:638.333333pt;}
.y147{bottom:638.400000pt;}
.y4b{bottom:649.373333pt;}
.y1b{bottom:652.733333pt;}
.y4a{bottom:666.973333pt;}
.y1a{bottom:670.333333pt;}
.y49{bottom:684.573333pt;}
.y19{bottom:687.933333pt;}
.y48{bottom:702.173333pt;}
.yf4{bottom:702.813333pt;}
.y18{bottom:705.533333pt;}
.yf3{bottom:716.573333pt;}
.y47{bottom:719.773333pt;}
.y17{bottom:723.293333pt;}
.yf2{bottom:735.613333pt;}
.y46{bottom:737.533333pt;}
.y16{bottom:745.533333pt;}
.ye4{bottom:754.493333pt;}
.y45{bottom:755.133333pt;}
.y15{bottom:763.133333pt;}
.y44{bottom:772.733333pt;}
.y14{bottom:780.733333pt;}
.y43{bottom:790.333333pt;}
.y13{bottom:794.173333pt;}
.y42{bottom:807.973333pt;}
.y12{bottom:813.253333pt;}
.y41{bottom:825.733333pt;}
.y11{bottom:834.053333pt;}
.y40{bottom:843.333333pt;}
.y3f{bottom:860.933333pt;}
.y10{bottom:862.213333pt;}
.y3e{bottom:878.533333pt;}
.yf{bottom:890.533333pt;}
.y3d{bottom:896.133333pt;}
.y3c{bottom:913.893333pt;}
.y9{bottom:930.373333pt;}
.y1{bottom:944.933333pt;}
.y7{bottom:975.333333pt;}
.h6{height:1.787500pt;}
.h2c{height:17.600000pt;}
.h34{height:17.632000pt;}
.h2d{height:17.760000pt;}
.h27{height:17.920000pt;}
.h26{height:17.952000pt;}
.ha{height:19.040000pt;}
.h16{height:20.000000pt;}
.h19{height:20.160000pt;}
.h17{height:21.600000pt;}
.h1a{height:21.760000pt;}
.hf{height:24.131250pt;}
.h7{height:29.760000pt;}
.h1c{height:33.867188pt;}
.h1d{height:33.957500pt;}
.h33{height:35.200000pt;}
.h14{height:35.360000pt;}
.h10{height:37.090625pt;}
.hd{height:37.479688pt;}
.h39{height:38.672812pt;}
.hb{height:41.112500pt;}
.h4{height:41.543750pt;}
.h12{height:42.691250pt;}
.h3a{height:43.108125pt;}
.h11{height:43.782500pt;}
.h2f{height:43.905937pt;}
.h30{height:44.037000pt;}
.h31{height:44.279271pt;}
.h24{height:45.156250pt;}
.h9{height:47.310625pt;}
.he{height:47.470625pt;}
.h22{height:52.834688pt;}
.h23{height:52.962000pt;}
.h1f{height:54.390938pt;}
.h20{height:54.522000pt;}
.h3{height:56.445312pt;}
.h21{height:58.202000pt;}
.h8{height:58.563750pt;}
.h15{height:59.392000pt;}
.hc{height:60.057813pt;}
.h1e{height:60.267188pt;}
.h38{height:75.990938pt;}
.h25{height:79.840000pt;}
.h29{height:90.230938pt;}
.h13{height:95.392000pt;}
.h5{height:100.032000pt;}
.h32{height:107.360000pt;}
.h37{height:111.350937pt;}
.h2b{height:118.272000pt;}
.h2{height:130.432000pt;}
.h36{height:156.282000pt;}
.h18{height:168.506667pt;}
.h2a{height:267.040000pt;}
.h35{height:288.000000pt;}
.h28{height:289.120000pt;}
.h1b{height:349.280000pt;}
.h2e{height:445.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.800000pt;}
.w7{width:46.720000pt;}
.w6{width:53.440000pt;}
.w15{width:56.960000pt;}
.w22{width:57.120000pt;}
.w1b{width:57.440000pt;}
.w3b{width:59.360000pt;}
.w34{width:59.680000pt;}
.wb{width:63.360000pt;}
.we{width:65.312000pt;}
.w2c{width:65.920000pt;}
.w29{width:66.400000pt;}
.wf{width:66.560000pt;}
.w12{width:66.592000pt;}
.w11{width:67.680000pt;}
.w39{width:70.720000pt;}
.w32{width:71.040000pt;}
.wd{width:71.360000pt;}
.w38{width:72.032000pt;}
.w27{width:72.160000pt;}
.w31{width:72.672000pt;}
.w1e{width:74.080000pt;}
.w17{width:74.880000pt;}
.w13{width:76.320000pt;}
.w3c{width:81.312000pt;}
.w35{width:81.632000pt;}
.w10{width:82.240000pt;}
.w14{width:82.752000pt;}
.wa{width:86.112000pt;}
.w3d{width:88.320000pt;}
.w36{width:88.640000pt;}
.w2e{width:90.880000pt;}
.w24{width:91.200000pt;}
.w2a{width:91.392000pt;}
.w1d{width:91.520000pt;}
.w1f{width:91.712000pt;}
.w2b{width:92.160000pt;}
.w28{width:92.192000pt;}
.w18{width:92.352000pt;}
.w20{width:92.480000pt;}
.w19{width:92.800000pt;}
.w21{width:96.512000pt;}
.w1a{width:96.832000pt;}
.w2d{width:100.512000pt;}
.w23{width:100.832000pt;}
.w1c{width:101.152000pt;}
.wc{width:101.312000pt;}
.w37{width:107.520000pt;}
.w30{width:108.480000pt;}
.w3{width:122.272000pt;}
.w3a{width:124.672000pt;}
.w33{width:124.992000pt;}
.w9{width:215.386667pt;}
.w8{width:324.066667pt;}
.w26{width:480.000000pt;}
.w2{width:577.253333pt;}
.w16{width:585.600000pt;}
.w25{width:601.600000pt;}
.w2f{width:644.640000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x41{left:3.424000pt;}
.x2{left:7.200000pt;}
.x56{left:8.773333pt;}
.x6b{left:14.432000pt;}
.x55{left:15.520000pt;}
.x40{left:30.496000pt;}
.x57{left:40.666667pt;}
.x1{left:47.200000pt;}
.x6a{left:48.224000pt;}
.x42{left:50.373333pt;}
.x58{left:51.706667pt;}
.x25{left:55.266667pt;}
.x4f{left:58.146667pt;}
.x83{left:59.426667pt;}
.x6{left:63.839988pt;}
.x85{left:66.879988pt;}
.x43{left:67.906667pt;}
.x26{left:69.093333pt;}
.x61{left:74.400000pt;}
.x10{left:76.192000pt;}
.x7{left:79.551988pt;}
.x62{left:80.573333pt;}
.x81{left:82.906667pt;}
.x74{left:88.960000pt;}
.x3d{left:90.240000pt;}
.x32{left:92.192000pt;}
.xe{left:96.031988pt;}
.x1b{left:101.792000pt;}
.x50{left:102.946667pt;}
.x22{left:104.000000pt;}
.x4{left:105.306667pt;}
.x44{left:116.733333pt;}
.x69{left:123.773333pt;}
.x11{left:130.272000pt;}
.x75{left:133.760000pt;}
.x54{left:136.800000pt;}
.x66{left:140.986667pt;}
.xf{left:144.026655pt;}
.x39{left:148.773333pt;}
.x60{left:151.226655pt;}
.x53{left:156.800000pt;}
.xd{left:158.746655pt;}
.x2d{left:161.600000pt;}
.x5b{left:164.986667pt;}
.x19{left:166.586655pt;}
.x33{left:167.866667pt;}
.xb{left:168.826655pt;}
.x1c{left:170.266667pt;}
.x45{left:173.253333pt;}
.x78{left:174.426655pt;}
.x12{left:177.626667pt;}
.x63{left:180.346667pt;}
.x46{left:181.533333pt;}
.x2c{left:192.093333pt;}
.x2b{left:198.880000pt;}
.x7b{left:201.306667pt;}
.x6c{left:203.106667pt;}
.x2f{left:206.106655pt;}
.x3a{left:208.506667pt;}
.x6d{left:211.426667pt;}
.x3e{left:212.546667pt;}
.x79{left:213.466655pt;}
.x82{left:224.866667pt;}
.x48{left:229.186667pt;}
.x59{left:232.666667pt;}
.x23{left:236.413333pt;}
.xa{left:237.346655pt;}
.x64{left:238.240000pt;}
.x24{left:241.440000pt;}
.x47{left:245.306667pt;}
.x5c{left:257.506667pt;}
.x27{left:258.853333pt;}
.x34{left:260.546667pt;}
.xc{left:265.026655pt;}
.x6e{left:273.280000pt;}
.x7c{left:274.306667pt;}
.x1a{left:286.946655pt;}
.x51{left:290.106667pt;}
.x49{left:292.160000pt;}
.x67{left:293.573333pt;}
.x65{left:312.506667pt;}
.x1d{left:314.466667pt;}
.x28{left:317.733333pt;}
.x8{left:321.986655pt;}
.x31{left:324.386655pt;}
.x14{left:328.386667pt;}
.x7a{left:343.746655pt;}
.x7d{left:345.666667pt;}
.x52{left:348.666667pt;}
.x5d{left:350.306667pt;}
.x35{left:353.666667pt;}
.x4a{left:360.293333pt;}
.x84{left:367.746667pt;}
.x76{left:372.826667pt;}
.x6f{left:375.333333pt;}
.x29{left:376.573333pt;}
.x3b{left:381.413333pt;}
.x3f{left:382.720000pt;}
.x70{left:384.453333pt;}
.x1e{left:391.426667pt;}
.x9{left:396.893322pt;}
.x4d{left:403.546667pt;}
.x4c{left:407.133333pt;}
.x4e{left:415.453333pt;}
.x4b{left:420.733333pt;}
.x72{left:425.826667pt;}
.x71{left:429.413333pt;}
.x15{left:430.333333pt;}
.x2a{left:435.426667pt;}
.x73{left:437.693333pt;}
.x3c{left:441.120000pt;}
.x5e{left:442.333333pt;}
.x5a{left:446.746667pt;}
.x36{left:450.813333pt;}
.x68{left:459.493333pt;}
.x7e{left:470.973333pt;}
.x1f{left:474.813333pt;}
.x13{left:502.333333pt;}
.x37{left:508.573333pt;}
.x7f{left:530.973333pt;}
.x20{left:532.413333pt;}
.x16{left:568.293333pt;}
.x77{left:593.253333pt;}
.x38{left:610.053333pt;}
.x80{left:612.933333pt;}
.x21{left:615.813333pt;}
.x3{left:624.453333pt;}
.x17{left:635.493333pt;}
.x30{left:636.933322pt;}
.x18{left:689.733322pt;}
.x2e{left:697.733322pt;}
.x5f{left:719.359988pt;}
.x5{left:737.120000pt;}
}




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