
    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_182fdb3e1b61b6e99d2447d6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_d3e5c348bf9e19e391a2e8d1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.825195;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_6cca1059e07e045ae38393f2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_eb8a91bd9c4f6299e129a4d9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_69d06057458f443c145be10d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_fc9d2020c5dedf9d0414d6ac.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.330078;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_18121377bf75bb46ef288614.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_c0525b17fc7109427bf6f47e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.691406;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_0d45298ece5061de1df2b15e.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_1acf1f0ec7fc8b26d4a923da.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.825195;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-87.120000px;}
.v2{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:9.360000px;}
.v1{vertical-align:33.120000px;}
.ls2f{letter-spacing:-0.504000px;}
.ls13{letter-spacing:-0.432000px;}
.ls1e{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.305400px;}
.ls15{letter-spacing:-0.269400px;}
.ls6{letter-spacing:-0.216000px;}
.ls24{letter-spacing:-0.206400px;}
.ls17{letter-spacing:-0.181200px;}
.ls11{letter-spacing:-0.178800px;}
.ls30{letter-spacing:-0.144000px;}
.ls21{letter-spacing:-0.106800px;}
.ls31{letter-spacing:-0.072000px;}
.ls1f{letter-spacing:-0.053400px;}
.ls5{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.045600px;}
.ls1c{letter-spacing:0.053280px;}
.ls27{letter-spacing:0.053400px;}
.ls1d{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.120000px;}
.ls28{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.149760px;}
.ls1b{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.192000px;}
.ls14{letter-spacing:0.216000px;}
.lse{letter-spacing:0.223920px;}
.lsc{letter-spacing:0.226200px;}
.ls22{letter-spacing:0.259920px;}
.lsb{letter-spacing:0.288000px;}
.ls1a{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.ls2c{letter-spacing:0.391680px;}
.lsf{letter-spacing:0.404400px;}
.ls23{letter-spacing:0.460200px;}
.ls7{letter-spacing:0.504000px;}
.ls10{letter-spacing:0.541200px;}
.ls25{letter-spacing:0.612000px;}
.ls19{letter-spacing:0.720000px;}
.ls20{letter-spacing:0.828000px;}
.ls18{letter-spacing:0.942000px;}
.ls12{letter-spacing:0.948000px;}
.ls9{letter-spacing:2.880000px;}
.ls2d{letter-spacing:3.029760px;}
.ls2e{letter-spacing:5.909760px;}
.ls2b{letter-spacing:19.440000px;}
.ls2a{letter-spacing:20.880000px;}
.ls26{letter-spacing:24.456000px;}
.ls29{letter-spacing:34.560000px;}
.ls0{letter-spacing:76.680000px;}
.lsa{letter-spacing:151.920000px;}
.ls2{letter-spacing:468.120000px;}
.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;}
}
.ws22{word-spacing:-72.000000px;}
.ws6{word-spacing:-18.288000px;}
.wse{word-spacing:-18.216000px;}
.ws21{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws25{word-spacing:-17.928000px;}
.ws24{word-spacing:-17.856000px;}
.ws1{word-spacing:-17.784000px;}
.wsc{word-spacing:-17.568000px;}
.ws23{word-spacing:-17.496000px;}
.ws3{word-spacing:-16.560000px;}
.ws5{word-spacing:-16.254600px;}
.ws18{word-spacing:-15.768000px;}
.ws1e{word-spacing:-15.552000px;}
.ws1d{word-spacing:-15.400200px;}
.ws19{word-spacing:-15.300000px;}
.ws15{word-spacing:-15.238800px;}
.ws1a{word-spacing:-15.120000px;}
.ws16{word-spacing:-15.046800px;}
.ws1f{word-spacing:-14.993400px;}
.ws14{word-spacing:-14.940000px;}
.ws1b{word-spacing:-14.886600px;}
.ws1c{word-spacing:-14.833200px;}
.ws17{word-spacing:-14.580000px;}
.ws13{word-spacing:-13.002000px;}
.wsf{word-spacing:-12.420000px;}
.ws11{word-spacing:-12.105600px;}
.wsd{word-spacing:-12.060000px;}
.ws12{word-spacing:-11.878800px;}
.ws10{word-spacing:-11.790600px;}
.wsb{word-spacing:-11.388000px;}
.ws9{word-spacing:-10.981200px;}
.ws8{word-spacing:-10.844400px;}
.ws7{word-spacing:-10.666200px;}
.ws4{word-spacing:-10.440000px;}
.wsa{word-spacing:-10.261200px;}
.ws20{word-spacing:-9.720000px;}
.ws2{word-spacing:0.000000px;}
._1c{margin-left:-34.583952px;}
._1d{margin-left:-20.567976px;}
._16{margin-left:-3.624000px;}
._19{margin-left:-2.268072px;}
._0{margin-left:-1.263600px;}
._4{width:1.139976px;}
._5{width:2.256048px;}
._b{width:4.032000px;}
._a{width:5.112000px;}
._e{width:6.480000px;}
._12{width:7.560000px;}
._f{width:8.607600px;}
._8{width:9.936000px;}
._9{width:11.311200px;}
._2{width:12.312000px;}
._3{width:13.608000px;}
._c{width:14.952000px;}
._d{width:16.032048px;}
._13{width:19.800000px;}
._10{width:21.168000px;}
._11{width:22.248000px;}
._6{width:23.328000px;}
._7{width:24.360048px;}
._17{width:25.992000px;}
._18{width:27.360000px;}
._1a{width:33.624000px;}
._1b{width:34.632000px;}
._14{width:36.720000px;}
._15{width:37.800000px;}
._1{width:847.683600px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs5{font-size:48.000000px;}
.fs2{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:2.590500px;}
.y139{bottom:3.585000px;}
.y10f{bottom:3.600000px;}
.yf3{bottom:3.765000px;}
.ye2{bottom:3.780000px;}
.y55{bottom:3.945000px;}
.y68{bottom:3.960000px;}
.ya2{bottom:3.990000px;}
.y6d{bottom:4.005000px;}
.y5d{bottom:4.140000px;}
.y49{bottom:4.500000px;}
.ydb{bottom:4.680000px;}
.y62{bottom:4.860000px;}
.y52{bottom:5.385000px;}
.yb4{bottom:6.300000px;}
.ya{bottom:7.425000px;}
.yb5{bottom:7.560000px;}
.yd{bottom:13.140000px;}
.y5c{bottom:13.500000px;}
.ye0{bottom:16.200000px;}
.y61{bottom:18.540000px;}
.y9a{bottom:18.900000px;}
.y13c{bottom:20.865000px;}
.ye4{bottom:20.880000px;}
.y134{bottom:20.910000px;}
.yfd{bottom:21.045000px;}
.ye7{bottom:21.060000px;}
.yef{bottom:21.090000px;}
.y50{bottom:22.860000px;}
.y5e{bottom:23.040000px;}
.ya0{bottom:23.070000px;}
.y46{bottom:24.660000px;}
.y48{bottom:25.200000px;}
.y98{bottom:28.440000px;}
.y71{bottom:29.700000px;}
.y9{bottom:31.185000px;}
.ydf{bottom:34.200000px;}
.yc{bottom:36.900000px;}
.y60{bottom:37.440000px;}
.y99{bottom:37.980000px;}
.y13b{bottom:38.145000px;}
.ye3{bottom:38.160000px;}
.y133{bottom:38.190000px;}
.y124{bottom:38.325000px;}
.yf1{bottom:38.340000px;}
.yee{bottom:38.370000px;}
.ye6{bottom:38.385000px;}
.y10d{bottom:38.880000px;}
.y6a{bottom:39.060000px;}
.y2a{bottom:40.799927px;}
.yda{bottom:40.860000px;}
.y67{bottom:41.940000px;}
.ya1{bottom:41.970000px;}
.y47{bottom:45.360000px;}
.y70{bottom:48.600000px;}
.yde{bottom:53.280000px;}
.y8{bottom:55.125000px;}
.y123{bottom:55.425000px;}
.yeb{bottom:55.440000px;}
.yfc{bottom:55.470000px;}
.y12f{bottom:55.620000px;}
.y14f{bottom:55.665000px;}
.y128{bottom:56.160000px;}
.yd9{bottom:59.040000px;}
.y10c{bottom:59.580000px;}
.y14c{bottom:59.760000px;}
.y80{bottom:61.020000px;}
.y7a{bottom:70.020000px;}
.y122{bottom:72.705000px;}
.yea{bottom:72.720000px;}
.yfb{bottom:72.750000px;}
.y14e{bottom:72.765000px;}
.y151{bottom:72.900000px;}
.y12e{bottom:72.945000px;}
.y4e{bottom:73.245000px;}
.ydd{bottom:75.060000px;}
.y127{bottom:76.860000px;}
.yd8{bottom:77.040000px;}
.y7{bottom:78.885000px;}
.y7f{bottom:79.920000px;}
.y121{bottom:89.985000px;}
.ye9{bottom:90.000000px;}
.yfa{bottom:90.030000px;}
.y116{bottom:90.045000px;}
.y79{bottom:90.180000px;}
.y4d{bottom:92.145000px;}
.yd7{bottom:96.120000px;}
.ydc{bottom:96.840000px;}
.y7e{bottom:98.820000px;}
.y6{bottom:102.645000px;}
.y13a{bottom:107.085000px;}
.y149{bottom:107.130000px;}
.y115{bottom:107.145000px;}
.y120{bottom:107.265000px;}
.y11d{bottom:107.280000px;}
.yf9{bottom:107.310000px;}
.y12d{bottom:107.325000px;}
.y4c{bottom:111.045000px;}
.yd5{bottom:111.780000px;}
.y7d{bottom:117.900000px;}
.y171{bottom:118.800000px;}
.y15b{bottom:121.140000px;}
.y92{bottom:121.680000px;}
.y10a{bottom:122.580000px;}
.y14b{bottom:124.365000px;}
.y11c{bottom:124.380000px;}
.y132{bottom:124.410000px;}
.y114{bottom:124.425000px;}
.y11f{bottom:124.545000px;}
.y137{bottom:124.560000px;}
.yf8{bottom:124.590000px;}
.y12c{bottom:124.605000px;}
.yb0{bottom:124.740000px;}
.y5{bottom:126.585000px;}
.y4b{bottom:130.125000px;}
.y143{bottom:133.200000px;}
.yd4{bottom:133.560000px;}
.y7c{bottom:136.800000px;}
.y170{bottom:140.580000px;}
.y14a{bottom:141.645000px;}
.y11b{bottom:141.660000px;}
.y131{bottom:141.690000px;}
.y113{bottom:141.705000px;}
.y136{bottom:141.840000px;}
.yf7{bottom:141.870000px;}
.y12b{bottom:141.885000px;}
.y15a{bottom:142.920000px;}
.y91{bottom:143.460000px;}
.y109{bottom:144.360000px;}
.yaf{bottom:146.520000px;}
.y29{bottom:153.720000px;}
.y142{bottom:154.980000px;}
.y4{bottom:155.205000px;}
.yd3{bottom:155.340000px;}
.y190{bottom:155.520000px;}
.y7b{bottom:155.880000px;}
.y11a{bottom:158.940000px;}
.yf6{bottom:158.970000px;}
.y112{bottom:158.985000px;}
.y147{bottom:159.150000px;}
.y12a{bottom:159.165000px;}
.y16f{bottom:162.180000px;}
.y159{bottom:164.700000px;}
.y90{bottom:165.240000px;}
.y108{bottom:166.140000px;}
.yae{bottom:168.120000px;}
.y28{bottom:175.500000px;}
.yf5{bottom:176.250000px;}
.y111{bottom:176.265000px;}
.y141{bottom:176.580000px;}
.yd2{bottom:176.940000px;}
.y18f{bottom:177.300000px;}
.y3{bottom:182.925000px;}
.y16e{bottom:183.960000px;}
.y158{bottom:186.480000px;}
.y8f{bottom:187.020000px;}
.y107{bottom:187.920000px;}
.yad{bottom:190.290000px;}
.y110{bottom:193.365000px;}
.yf4{bottom:193.530000px;}
.y27{bottom:197.310000px;}
.y140{bottom:198.390000px;}
.yd1{bottom:198.750000px;}
.y18e{bottom:198.930000px;}
.y16d{bottom:205.410000px;}
.y157{bottom:208.110000px;}
.y8e{bottom:208.650000px;}
.y106{bottom:209.550000px;}
.y125{bottom:209.730000px;}
.y2{bottom:210.645000px;}
.yac{bottom:212.070000px;}
.y26{bottom:219.090000px;}
.y13f{bottom:220.170000px;}
.yd0{bottom:220.530000px;}
.y18d{bottom:220.710000px;}
.y16c{bottom:227.190000px;}
.y156{bottom:229.890000px;}
.y8d{bottom:230.430000px;}
.y105{bottom:231.330000px;}
.yab{bottom:233.850000px;}
.y25{bottom:240.690000px;}
.y13e{bottom:241.950000px;}
.ycf{bottom:242.310000px;}
.y18c{bottom:242.490000px;}
.y16b{bottom:249.150000px;}
.y155{bottom:251.670000px;}
.y8c{bottom:252.210000px;}
.y104{bottom:253.110000px;}
.yaa{bottom:255.450000px;}
.y13d{bottom:259.605000px;}
.y24{bottom:262.470000px;}
.yce{bottom:263.910000px;}
.y18b{bottom:264.270000px;}
.y16a{bottom:270.930000px;}
.y4a{bottom:272.385000px;}
.y154{bottom:273.450000px;}
.y8b{bottom:273.990000px;}
.y103{bottom:274.890000px;}
.ya9{bottom:277.230000px;}
.y23{bottom:284.250000px;}
.ycd{bottom:285.690000px;}
.y18a{bottom:285.870000px;}
.y11e{bottom:292.545000px;}
.y169{bottom:292.710000px;}
.y58{bottom:294.885000px;}
.y153{bottom:295.050000px;}
.y8a{bottom:295.590000px;}
.y102{bottom:296.490000px;}
.ya8{bottom:299.010000px;}
.y22{bottom:305.850000px;}
.ycc{bottom:307.110000px;}
.y189{bottom:307.650000px;}
.y138{bottom:312.885000px;}
.y168{bottom:314.310000px;}
.y89{bottom:317.370000px;}
.y57{bottom:317.385000px;}
.y101{bottom:318.270000px;}
.ya7{bottom:320.790000px;}
.y21{bottom:327.630000px;}
.y188{bottom:329.430000px;}
.y167{bottom:336.090000px;}
.y88{bottom:339.150000px;}
.y56{bottom:339.885000px;}
.y100{bottom:340.050000px;}
.ya6{bottom:342.390000px;}
.y20{bottom:349.410000px;}
.ycb{bottom:350.850000px;}
.y187{bottom:351.030000px;}
.y166{bottom:357.870000px;}
.y87{bottom:360.930000px;}
.yff{bottom:361.830000px;}
.y54{bottom:362.385000px;}
.ya5{bottom:364.170000px;}
.y1f{bottom:371.190000px;}
.yca{bottom:372.630000px;}
.y186{bottom:372.810000px;}
.y165{bottom:379.650000px;}
.y86{bottom:382.530000px;}
.yfe{bottom:383.070000px;}
.y53{bottom:384.885000px;}
.ya4{bottom:385.950000px;}
.y1e{bottom:392.430000px;}
.yc9{bottom:394.410000px;}
.y185{bottom:394.590000px;}
.yf2{bottom:400.005000px;}
.y164{bottom:401.250000px;}
.y85{bottom:404.310000px;}
.y51{bottom:407.385000px;}
.ya3{bottom:407.730000px;}
.yc8{bottom:416.010000px;}
.y184{bottom:416.370000px;}
.y148{bottom:416.385000px;}
.y163{bottom:423.030000px;}
.y9f{bottom:424.665000px;}
.y84{bottom:426.090000px;}
.y4f{bottom:429.915000px;}
.y1d{bottom:436.395000px;}
.yc7{bottom:437.835000px;}
.y183{bottom:438.015000px;}
.y162{bottom:444.855000px;}
.y83{bottom:447.735000px;}
.y1c{bottom:458.175000px;}
.yc6{bottom:459.615000px;}
.y119{bottom:466.635000px;}
.y82{bottom:469.695000px;}
.yc5{bottom:481.395000px;}
.y182{bottom:481.575000px;}
.y9e{bottom:482.295000px;}
.y135{bottom:486.795000px;}
.y45{bottom:487.515000px;}
.y161{bottom:488.235000px;}
.y81{bottom:490.755000px;}
.y1b{bottom:501.555000px;}
.yc4{bottom:502.995000px;}
.y181{bottom:503.355000px;}
.y152{bottom:504.075000px;}
.y9d{bottom:505.695000px;}
.y78{bottom:507.675000px;}
.y160{bottom:510.015000px;}
.y1a{bottom:523.335000px;}
.yc3{bottom:524.775000px;}
.y180{bottom:524.955000px;}
.y15f{bottom:531.795000px;}
.y19{bottom:545.115000px;}
.yc2{bottom:546.555000px;}
.y17f{bottom:546.735000px;}
.y15e{bottom:553.575000px;}
.y44{bottom:554.115000px;}
.y9c{bottom:563.295000px;}
.y18{bottom:566.715000px;}
.yc1{bottom:568.335000px;}
.y17e{bottom:568.515000px;}
.y146{bottom:573.015000px;}
.y15d{bottom:575.175000px;}
.y9b{bottom:586.695000px;}
.y17{bottom:588.495000px;}
.yc0{bottom:589.935000px;}
.y17d{bottom:590.295000px;}
.y15c{bottom:596.955000px;}
.yf0{bottom:608.475000px;}
.y97{bottom:609.915000px;}
.y16{bottom:610.275000px;}
.ybf{bottom:611.715000px;}
.y17c{bottom:611.895000px;}
.y43{bottom:618.735000px;}
.y15{bottom:632.055000px;}
.ybe{bottom:633.495000px;}
.y17b{bottom:633.675000px;}
.y42{bottom:640.515000px;}
.y14{bottom:653.655000px;}
.ybd{bottom:655.275000px;}
.y17a{bottom:655.455000px;}
.y130{bottom:660.855000px;}
.yed{bottom:661.755000px;}
.y41{bottom:662.115000px;}
.y13{bottom:675.465000px;}
.ybc{bottom:676.905000px;}
.y179{bottom:677.265000px;}
.y74{bottom:679.245000px;}
.y40{bottom:683.925000px;}
.y118{bottom:693.825000px;}
.y150{bottom:695.265000px;}
.y12{bottom:697.245000px;}
.ybb{bottom:698.685000px;}
.y178{bottom:700.845000px;}
.y77{bottom:701.745000px;}
.y3f{bottom:705.705000px;}
.yec{bottom:715.065000px;}
.y11{bottom:719.025000px;}
.yba{bottom:720.465000px;}
.y76{bottom:724.245000px;}
.y177{bottom:724.605000px;}
.y3e{bottom:727.125000px;}
.y96{bottom:727.485000px;}
.y10{bottom:740.625000px;}
.yb9{bottom:742.245000px;}
.y75{bottom:746.745000px;}
.y117{bottom:747.105000px;}
.y176{bottom:748.365000px;}
.y95{bottom:749.085000px;}
.yf{bottom:762.405000px;}
.yb8{bottom:763.845000px;}
.y145{bottom:764.385000px;}
.ye8{bottom:768.345000px;}
.y6f{bottom:769.245000px;}
.y175{bottom:770.325000px;}
.y3d{bottom:770.865000px;}
.ye{bottom:785.625000px;}
.y73{bottom:791.745000px;}
.y174{bottom:792.105000px;}
.y3c{bottom:792.645000px;}
.yb7{bottom:807.405000px;}
.y173{bottom:813.885000px;}
.y3b{bottom:814.245000px;}
.y10e{bottom:817.665000px;}
.yb{bottom:823.065000px;}
.yb6{bottom:829.185000px;}
.y129{bottom:834.765000px;}
.y3a{bottom:836.025000px;}
.y72{bottom:836.745000px;}
.yb3{bottom:844.665000px;}
.y14d{bottom:852.045000px;}
.y94{bottom:857.445000px;}
.y39{bottom:857.805000px;}
.y69{bottom:859.245000px;}
.yb2{bottom:867.885000px;}
.ye5{bottom:873.285000px;}
.y38{bottom:879.585000px;}
.y6e{bottom:881.745000px;}
.y1{bottom:898.665000px;}
.y37{bottom:901.185000px;}
.y6c{bottom:904.245000px;}
.y93{bottom:922.650000px;}
.y36{bottom:923.010000px;}
.ye1{bottom:925.890000px;}
.y6b{bottom:926.790000px;}
.y35{bottom:944.790000px;}
.y65{bottom:949.290000px;}
.y144{bottom:955.590000px;}
.y34{bottom:966.570000px;}
.yd6{bottom:978.270000px;}
.y66{bottom:984.390000px;}
.y33{bottom:988.170000px;}
.y5f{bottom:1006.890000px;}
.y126{bottom:1008.870000px;}
.y172{bottom:1009.590000px;}
.y32{bottom:1009.950000px;}
.y10b{bottom:1026.150000px;}
.y64{bottom:1029.390000px;}
.y31{bottom:1031.730000px;}
.y63{bottom:1051.890000px;}
.y30{bottom:1053.510000px;}
.y5b{bottom:1074.390000px;}
.y2f{bottom:1075.110000px;}
.y2e{bottom:1096.890000px;}
.y2d{bottom:1118.670000px;}
.yb1{bottom:1140.090000px;}
.y2c{bottom:1140.450000px;}
.y5a{bottom:1194.300000px;}
.y59{bottom:1208.879974px;}
.ha{height:13.200074px;}
.h11{height:21.585000px;}
.h10{height:21.621000px;}
.h16{height:21.765000px;}
.h1b{height:21.780000px;}
.h1a{height:21.802500px;}
.h20{height:22.485000px;}
.h24{height:22.500000px;}
.h21{height:22.665000px;}
.h18{height:34.365000px;}
.h13{height:37.965000px;}
.h12{height:45.281250px;}
.h1f{height:46.025156px;}
.hb{height:49.125000px;}
.h15{height:49.218750px;}
.h23{height:49.522500px;}
.h9{height:50.027344px;}
.h28{height:51.645000px;}
.h2b{height:51.660000px;}
.h2d{height:51.825000px;}
.h32{height:51.840000px;}
.h29{height:51.862500px;}
.h2c{height:51.870000px;}
.h6{height:53.280000px;}
.hf{height:56.685000px;}
.h17{height:56.865000px;}
.h22{height:56.901000px;}
.h27{height:58.651172px;}
.hc{height:60.285000px;}
.hd{height:65.010937px;}
.h14{height:66.765000px;}
.h1e{height:67.710000px;}
.h31{height:68.940000px;}
.h5{height:70.628906px;}
.h7{height:70.664062px;}
.h8{height:72.562500px;}
.h25{height:80.464922px;}
.h4{height:81.736875px;}
.h3{height:84.898125px;}
.h2f{height:86.205000px;}
.h1c{height:89.280000px;}
.h19{height:89.302500px;}
.h35{height:103.485000px;}
.h2a{height:103.500000px;}
.h26{height:112.305000px;}
.h3a{height:155.145000px;}
.h39{height:155.175000px;}
.h3c{height:155.340000px;}
.h3b{height:155.370000px;}
.h1d{height:170.850000px;}
.h33{height:172.425000px;}
.h34{height:172.455000px;}
.h37{height:172.470000px;}
.h36{height:172.650000px;}
.h3d{height:189.735000px;}
.h38{height:189.750000px;}
.h30{height:206.850000px;}
.h2e{height:207.015000px;}
.he{height:214.215000px;}
.h2{height:258.015000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:14.399970px;}
.w3c{width:20.400000px;}
.w38{width:30.045000px;}
.w25{width:31.125000px;}
.w1a{width:38.181000px;}
.w1b{width:38.505000px;}
.w19{width:39.945000px;}
.w3d{width:40.665000px;}
.w3e{width:42.141000px;}
.w1c{width:42.465000px;}
.w16{width:43.236000px;}
.w39{width:46.965000px;}
.w13{width:47.160000px;}
.w18{width:48.045000px;}
.w26{width:48.621000px;}
.w36{width:49.305000px;}
.w12{width:49.341000px;}
.w11{width:49.665000px;}
.w33{width:49.860000px;}
.w34{width:50.220000px;}
.w23{width:50.925000px;}
.w20{width:51.660000px;}
.w21{width:51.840000px;}
.w35{width:52.596000px;}
.w17{width:53.445000px;}
.w14{width:54.360000px;}
.w2b{width:54.396000px;}
.w22{width:54.576000px;}
.w3b{width:57.945000px;}
.w2e{width:58.845000px;}
.w15{width:59.760000px;}
.w28{width:59.925000px;}
.w37{width:60.825000px;}
.w10{width:61.369500px;}
.w2c{width:62.805000px;}
.w24{width:62.985000px;}
.w32{width:64.641000px;}
.w2d{width:65.361000px;}
.w2a{width:66.621000px;}
.w1f{width:66.801000px;}
.w3f{width:67.665000px;}
.w40{width:69.465000px;}
.w2f{width:71.805000px;}
.w3a{width:73.461000px;}
.w27{width:75.945000px;}
.w31{width:81.165000px;}
.w29{width:83.865000px;}
.w1e{width:84.225000px;}
.w8{width:89.136000px;}
.w30{width:100.474500px;}
.w1d{width:103.174500px;}
.w9{width:104.565000px;}
.wb{width:129.051000px;}
.wf{width:149.241000px;}
.we{width:160.365000px;}
.wc{width:162.195000px;}
.wa{width:165.975000px;}
.w6{width:166.708500px;}
.w7{width:168.135000px;}
.w4{width:363.496500px;}
.wd{width:371.584500px;}
.w2{width:475.845000px;}
.w3{width:700.470000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x35{left:5.209500px;}
.x4e{left:6.285000px;}
.x8{left:7.920000px;}
.x53{left:9.180000px;}
.x23{left:10.245000px;}
.x1b{left:11.554500px;}
.x1e{left:12.765000px;}
.x4a{left:14.385000px;}
.x16{left:16.365000px;}
.x2b{left:17.674500px;}
.x21{left:18.900000px;}
.x6{left:20.520000px;}
.x64{left:21.585000px;}
.x20{left:23.040000px;}
.x50{left:24.285000px;}
.x4{left:25.740000px;}
.x48{left:27.000000px;}
.x2{left:28.980000px;}
.x4c{left:31.305000px;}
.x17{left:32.565000px;}
.x24{left:34.050000px;}
.x29{left:35.625000px;}
.x28{left:36.934500px;}
.x63{left:38.160000px;}
.x22{left:39.585000px;}
.x1f{left:41.070000px;}
.x32{left:43.005000px;}
.x1a{left:44.674500px;}
.x3{left:46.620000px;}
.x1d{left:47.865000px;}
.x11{left:50.074500px;}
.x43{left:51.334500px;}
.x1c{left:52.954500px;}
.x30{left:56.685000px;}
.x13{left:59.970000px;}
.x2a{left:63.210000px;}
.x31{left:64.290000px;}
.x27{left:66.810000px;}
.x19{left:68.790000px;}
.x33{left:70.410000px;}
.x42{left:74.701500px;}
.x5{left:87.525000px;}
.x10{left:94.141500px;}
.xa{left:95.626500px;}
.x7{left:100.305000px;}
.xc{left:106.236000px;}
.xf{left:132.156000px;}
.x34{left:133.786500px;}
.x9{left:140.085000px;}
.xb{left:148.716000px;}
.x2c{left:150.823500px;}
.x66{left:159.330000px;}
.x58{left:175.545000px;}
.x44{left:178.245000px;}
.x2f{left:181.288500px;}
.x36{left:195.165000px;}
.x1{left:232.230000px;}
.x37{left:244.845000px;}
.x59{left:257.085000px;}
.x12{left:261.225000px;}
.x45{left:262.845000px;}
.xd{left:264.741760px;}
.x38{left:294.195000px;}
.x5a{left:322.095000px;}
.x46{left:330.015000px;}
.x39{left:341.355000px;}
.x5b{left:372.315000px;}
.x25{left:381.964508px;}
.x3a{left:395.715000px;}
.x5c{left:422.895000px;}
.x14{left:429.735000px;}
.x47{left:434.415000px;}
.x26{left:446.475000px;}
.x3b{left:455.475000px;}
.x5d{left:475.860000px;}
.x2d{left:477.480000px;}
.x49{left:489.360000px;}
.x3c{left:498.720000px;}
.x15{left:519.240000px;}
.x5e{left:525.540000px;}
.x4b{left:540.660000px;}
.x3d{left:552.180000px;}
.x5f{left:586.740000px;}
.x3e{left:600.240000px;}
.x54{left:602.940000px;}
.x4d{left:604.020000px;}
.x60{left:617.160000px;}
.x18{left:624.180000px;}
.x67{left:627.780000px;}
.x55{left:634.440000px;}
.x4f{left:635.520000px;}
.x2e{left:638.220000px;}
.x3f{left:640.200000px;}
.x61{left:664.500000px;}
.x68{left:670.290000px;}
.x40{left:678.390000px;}
.x51{left:684.690000px;}
.x56{left:700.170000px;}
.x41{left:716.910000px;}
.x62{left:738.330000px;}
.x57{left:759.390000px;}
.x52{left:761.010000px;}
.x65{left:764.580048px;}
.xe{left:770.580048px;}
@media print{
.v3{vertical-align:-77.440000pt;}
.v2{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:8.320000pt;}
.v1{vertical-align:29.440000pt;}
.ls2f{letter-spacing:-0.448000pt;}
.ls13{letter-spacing:-0.384000pt;}
.ls1e{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.271467pt;}
.ls15{letter-spacing:-0.239467pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls24{letter-spacing:-0.183467pt;}
.ls17{letter-spacing:-0.161067pt;}
.ls11{letter-spacing:-0.158933pt;}
.ls30{letter-spacing:-0.128000pt;}
.ls21{letter-spacing:-0.094933pt;}
.ls31{letter-spacing:-0.064000pt;}
.ls1f{letter-spacing:-0.047467pt;}
.ls5{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.040533pt;}
.ls1c{letter-spacing:0.047360pt;}
.ls27{letter-spacing:0.047467pt;}
.ls1d{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.106667pt;}
.ls28{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.133120pt;}
.ls1b{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.170667pt;}
.ls14{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.199040pt;}
.lsc{letter-spacing:0.201067pt;}
.ls22{letter-spacing:0.231040pt;}
.lsb{letter-spacing:0.256000pt;}
.ls1a{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.ls2c{letter-spacing:0.348160pt;}
.lsf{letter-spacing:0.359467pt;}
.ls23{letter-spacing:0.409067pt;}
.ls7{letter-spacing:0.448000pt;}
.ls10{letter-spacing:0.481067pt;}
.ls25{letter-spacing:0.544000pt;}
.ls19{letter-spacing:0.640000pt;}
.ls20{letter-spacing:0.736000pt;}
.ls18{letter-spacing:0.837333pt;}
.ls12{letter-spacing:0.842667pt;}
.ls9{letter-spacing:2.560000pt;}
.ls2d{letter-spacing:2.693120pt;}
.ls2e{letter-spacing:5.253120pt;}
.ls2b{letter-spacing:17.280000pt;}
.ls2a{letter-spacing:18.560000pt;}
.ls26{letter-spacing:21.738667pt;}
.ls29{letter-spacing:30.720000pt;}
.ls0{letter-spacing:68.160000pt;}
.lsa{letter-spacing:135.040000pt;}
.ls2{letter-spacing:416.106667pt;}
.ws22{word-spacing:-64.000000pt;}
.ws6{word-spacing:-16.256000pt;}
.wse{word-spacing:-16.192000pt;}
.ws21{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws25{word-spacing:-15.936000pt;}
.ws24{word-spacing:-15.872000pt;}
.ws1{word-spacing:-15.808000pt;}
.wsc{word-spacing:-15.616000pt;}
.ws23{word-spacing:-15.552000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.448533pt;}
.ws18{word-spacing:-14.016000pt;}
.ws1e{word-spacing:-13.824000pt;}
.ws1d{word-spacing:-13.689067pt;}
.ws19{word-spacing:-13.600000pt;}
.ws15{word-spacing:-13.545600pt;}
.ws1a{word-spacing:-13.440000pt;}
.ws16{word-spacing:-13.374933pt;}
.ws1f{word-spacing:-13.327467pt;}
.ws14{word-spacing:-13.280000pt;}
.ws1b{word-spacing:-13.232533pt;}
.ws1c{word-spacing:-13.185067pt;}
.ws17{word-spacing:-12.960000pt;}
.ws13{word-spacing:-11.557333pt;}
.wsf{word-spacing:-11.040000pt;}
.ws11{word-spacing:-10.760533pt;}
.wsd{word-spacing:-10.720000pt;}
.ws12{word-spacing:-10.558933pt;}
.ws10{word-spacing:-10.480533pt;}
.wsb{word-spacing:-10.122667pt;}
.ws9{word-spacing:-9.761067pt;}
.ws8{word-spacing:-9.639467pt;}
.ws7{word-spacing:-9.481067pt;}
.ws4{word-spacing:-9.280000pt;}
.wsa{word-spacing:-9.121067pt;}
.ws20{word-spacing:-8.640000pt;}
.ws2{word-spacing:0.000000pt;}
._1c{margin-left:-30.741291pt;}
._1d{margin-left:-18.282645pt;}
._16{margin-left:-3.221333pt;}
._19{margin-left:-2.016064pt;}
._0{margin-left:-1.123200pt;}
._4{width:1.013312pt;}
._5{width:2.005376pt;}
._b{width:3.584000pt;}
._a{width:4.544000pt;}
._e{width:5.760000pt;}
._12{width:6.720000pt;}
._f{width:7.651200pt;}
._8{width:8.832000pt;}
._9{width:10.054400pt;}
._2{width:10.944000pt;}
._3{width:12.096000pt;}
._c{width:13.290667pt;}
._d{width:14.250709pt;}
._13{width:17.600000pt;}
._10{width:18.816000pt;}
._11{width:19.776000pt;}
._6{width:20.736000pt;}
._7{width:21.653376pt;}
._17{width:23.104000pt;}
._18{width:24.320000pt;}
._1a{width:29.888000pt;}
._1b{width:30.784000pt;}
._14{width:32.640000pt;}
._15{width:33.600000pt;}
._1{width:753.496533pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs5{font-size:42.666667pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:2.302667pt;}
.y139{bottom:3.186667pt;}
.y10f{bottom:3.200000pt;}
.yf3{bottom:3.346667pt;}
.ye2{bottom:3.360000pt;}
.y55{bottom:3.506667pt;}
.y68{bottom:3.520000pt;}
.ya2{bottom:3.546667pt;}
.y6d{bottom:3.560000pt;}
.y5d{bottom:3.680000pt;}
.y49{bottom:4.000000pt;}
.ydb{bottom:4.160000pt;}
.y62{bottom:4.320000pt;}
.y52{bottom:4.786667pt;}
.yb4{bottom:5.600000pt;}
.ya{bottom:6.600000pt;}
.yb5{bottom:6.720000pt;}
.yd{bottom:11.680000pt;}
.y5c{bottom:12.000000pt;}
.ye0{bottom:14.400000pt;}
.y61{bottom:16.480000pt;}
.y9a{bottom:16.800000pt;}
.y13c{bottom:18.546667pt;}
.ye4{bottom:18.560000pt;}
.y134{bottom:18.586667pt;}
.yfd{bottom:18.706667pt;}
.ye7{bottom:18.720000pt;}
.yef{bottom:18.746667pt;}
.y50{bottom:20.320000pt;}
.y5e{bottom:20.480000pt;}
.ya0{bottom:20.506667pt;}
.y46{bottom:21.920000pt;}
.y48{bottom:22.400000pt;}
.y98{bottom:25.280000pt;}
.y71{bottom:26.400000pt;}
.y9{bottom:27.720000pt;}
.ydf{bottom:30.400000pt;}
.yc{bottom:32.800000pt;}
.y60{bottom:33.280000pt;}
.y99{bottom:33.760000pt;}
.y13b{bottom:33.906667pt;}
.ye3{bottom:33.920000pt;}
.y133{bottom:33.946667pt;}
.y124{bottom:34.066667pt;}
.yf1{bottom:34.080000pt;}
.yee{bottom:34.106667pt;}
.ye6{bottom:34.120000pt;}
.y10d{bottom:34.560000pt;}
.y6a{bottom:34.720000pt;}
.y2a{bottom:36.266602pt;}
.yda{bottom:36.320000pt;}
.y67{bottom:37.280000pt;}
.ya1{bottom:37.306667pt;}
.y47{bottom:40.320000pt;}
.y70{bottom:43.200000pt;}
.yde{bottom:47.360000pt;}
.y8{bottom:49.000000pt;}
.y123{bottom:49.266667pt;}
.yeb{bottom:49.280000pt;}
.yfc{bottom:49.306667pt;}
.y12f{bottom:49.440000pt;}
.y14f{bottom:49.480000pt;}
.y128{bottom:49.920000pt;}
.yd9{bottom:52.480000pt;}
.y10c{bottom:52.960000pt;}
.y14c{bottom:53.120000pt;}
.y80{bottom:54.240000pt;}
.y7a{bottom:62.240000pt;}
.y122{bottom:64.626667pt;}
.yea{bottom:64.640000pt;}
.yfb{bottom:64.666667pt;}
.y14e{bottom:64.680000pt;}
.y151{bottom:64.800000pt;}
.y12e{bottom:64.840000pt;}
.y4e{bottom:65.106667pt;}
.ydd{bottom:66.720000pt;}
.y127{bottom:68.320000pt;}
.yd8{bottom:68.480000pt;}
.y7{bottom:70.120000pt;}
.y7f{bottom:71.040000pt;}
.y121{bottom:79.986667pt;}
.ye9{bottom:80.000000pt;}
.yfa{bottom:80.026667pt;}
.y116{bottom:80.040000pt;}
.y79{bottom:80.160000pt;}
.y4d{bottom:81.906667pt;}
.yd7{bottom:85.440000pt;}
.ydc{bottom:86.080000pt;}
.y7e{bottom:87.840000pt;}
.y6{bottom:91.240000pt;}
.y13a{bottom:95.186667pt;}
.y149{bottom:95.226667pt;}
.y115{bottom:95.240000pt;}
.y120{bottom:95.346667pt;}
.y11d{bottom:95.360000pt;}
.yf9{bottom:95.386667pt;}
.y12d{bottom:95.400000pt;}
.y4c{bottom:98.706667pt;}
.yd5{bottom:99.360000pt;}
.y7d{bottom:104.800000pt;}
.y171{bottom:105.600000pt;}
.y15b{bottom:107.680000pt;}
.y92{bottom:108.160000pt;}
.y10a{bottom:108.960000pt;}
.y14b{bottom:110.546667pt;}
.y11c{bottom:110.560000pt;}
.y132{bottom:110.586667pt;}
.y114{bottom:110.600000pt;}
.y11f{bottom:110.706667pt;}
.y137{bottom:110.720000pt;}
.yf8{bottom:110.746667pt;}
.y12c{bottom:110.760000pt;}
.yb0{bottom:110.880000pt;}
.y5{bottom:112.520000pt;}
.y4b{bottom:115.666667pt;}
.y143{bottom:118.400000pt;}
.yd4{bottom:118.720000pt;}
.y7c{bottom:121.600000pt;}
.y170{bottom:124.960000pt;}
.y14a{bottom:125.906667pt;}
.y11b{bottom:125.920000pt;}
.y131{bottom:125.946667pt;}
.y113{bottom:125.960000pt;}
.y136{bottom:126.080000pt;}
.yf7{bottom:126.106667pt;}
.y12b{bottom:126.120000pt;}
.y15a{bottom:127.040000pt;}
.y91{bottom:127.520000pt;}
.y109{bottom:128.320000pt;}
.yaf{bottom:130.240000pt;}
.y29{bottom:136.640000pt;}
.y142{bottom:137.760000pt;}
.y4{bottom:137.960000pt;}
.yd3{bottom:138.080000pt;}
.y190{bottom:138.240000pt;}
.y7b{bottom:138.560000pt;}
.y11a{bottom:141.280000pt;}
.yf6{bottom:141.306667pt;}
.y112{bottom:141.320000pt;}
.y147{bottom:141.466667pt;}
.y12a{bottom:141.480000pt;}
.y16f{bottom:144.160000pt;}
.y159{bottom:146.400000pt;}
.y90{bottom:146.880000pt;}
.y108{bottom:147.680000pt;}
.yae{bottom:149.440000pt;}
.y28{bottom:156.000000pt;}
.yf5{bottom:156.666667pt;}
.y111{bottom:156.680000pt;}
.y141{bottom:156.960000pt;}
.yd2{bottom:157.280000pt;}
.y18f{bottom:157.600000pt;}
.y3{bottom:162.600000pt;}
.y16e{bottom:163.520000pt;}
.y158{bottom:165.760000pt;}
.y8f{bottom:166.240000pt;}
.y107{bottom:167.040000pt;}
.yad{bottom:169.146667pt;}
.y110{bottom:171.880000pt;}
.yf4{bottom:172.026667pt;}
.y27{bottom:175.386667pt;}
.y140{bottom:176.346667pt;}
.yd1{bottom:176.666667pt;}
.y18e{bottom:176.826667pt;}
.y16d{bottom:182.586667pt;}
.y157{bottom:184.986667pt;}
.y8e{bottom:185.466667pt;}
.y106{bottom:186.266667pt;}
.y125{bottom:186.426667pt;}
.y2{bottom:187.240000pt;}
.yac{bottom:188.506667pt;}
.y26{bottom:194.746667pt;}
.y13f{bottom:195.706667pt;}
.yd0{bottom:196.026667pt;}
.y18d{bottom:196.186667pt;}
.y16c{bottom:201.946667pt;}
.y156{bottom:204.346667pt;}
.y8d{bottom:204.826667pt;}
.y105{bottom:205.626667pt;}
.yab{bottom:207.866667pt;}
.y25{bottom:213.946667pt;}
.y13e{bottom:215.066667pt;}
.ycf{bottom:215.386667pt;}
.y18c{bottom:215.546667pt;}
.y16b{bottom:221.466667pt;}
.y155{bottom:223.706667pt;}
.y8c{bottom:224.186667pt;}
.y104{bottom:224.986667pt;}
.yaa{bottom:227.066667pt;}
.y13d{bottom:230.760000pt;}
.y24{bottom:233.306667pt;}
.yce{bottom:234.586667pt;}
.y18b{bottom:234.906667pt;}
.y16a{bottom:240.826667pt;}
.y4a{bottom:242.120000pt;}
.y154{bottom:243.066667pt;}
.y8b{bottom:243.546667pt;}
.y103{bottom:244.346667pt;}
.ya9{bottom:246.426667pt;}
.y23{bottom:252.666667pt;}
.ycd{bottom:253.946667pt;}
.y18a{bottom:254.106667pt;}
.y11e{bottom:260.040000pt;}
.y169{bottom:260.186667pt;}
.y58{bottom:262.120000pt;}
.y153{bottom:262.266667pt;}
.y8a{bottom:262.746667pt;}
.y102{bottom:263.546667pt;}
.ya8{bottom:265.786667pt;}
.y22{bottom:271.866667pt;}
.ycc{bottom:272.986667pt;}
.y189{bottom:273.466667pt;}
.y138{bottom:278.120000pt;}
.y168{bottom:279.386667pt;}
.y89{bottom:282.106667pt;}
.y57{bottom:282.120000pt;}
.y101{bottom:282.906667pt;}
.ya7{bottom:285.146667pt;}
.y21{bottom:291.226667pt;}
.y188{bottom:292.826667pt;}
.y167{bottom:298.746667pt;}
.y88{bottom:301.466667pt;}
.y56{bottom:302.120000pt;}
.y100{bottom:302.266667pt;}
.ya6{bottom:304.346667pt;}
.y20{bottom:310.586667pt;}
.ycb{bottom:311.866667pt;}
.y187{bottom:312.026667pt;}
.y166{bottom:318.106667pt;}
.y87{bottom:320.826667pt;}
.yff{bottom:321.626667pt;}
.y54{bottom:322.120000pt;}
.ya5{bottom:323.706667pt;}
.y1f{bottom:329.946667pt;}
.yca{bottom:331.226667pt;}
.y186{bottom:331.386667pt;}
.y165{bottom:337.466667pt;}
.y86{bottom:340.026667pt;}
.yfe{bottom:340.506667pt;}
.y53{bottom:342.120000pt;}
.ya4{bottom:343.066667pt;}
.y1e{bottom:348.826667pt;}
.yc9{bottom:350.586667pt;}
.y185{bottom:350.746667pt;}
.yf2{bottom:355.560000pt;}
.y164{bottom:356.666667pt;}
.y85{bottom:359.386667pt;}
.y51{bottom:362.120000pt;}
.ya3{bottom:362.426667pt;}
.yc8{bottom:369.786667pt;}
.y184{bottom:370.106667pt;}
.y148{bottom:370.120000pt;}
.y163{bottom:376.026667pt;}
.y9f{bottom:377.480000pt;}
.y84{bottom:378.746667pt;}
.y4f{bottom:382.146667pt;}
.y1d{bottom:387.906667pt;}
.yc7{bottom:389.186667pt;}
.y183{bottom:389.346667pt;}
.y162{bottom:395.426667pt;}
.y83{bottom:397.986667pt;}
.y1c{bottom:407.266667pt;}
.yc6{bottom:408.546667pt;}
.y119{bottom:414.786667pt;}
.y82{bottom:417.506667pt;}
.yc5{bottom:427.906667pt;}
.y182{bottom:428.066667pt;}
.y9e{bottom:428.706667pt;}
.y135{bottom:432.706667pt;}
.y45{bottom:433.346667pt;}
.y161{bottom:433.986667pt;}
.y81{bottom:436.226667pt;}
.y1b{bottom:445.826667pt;}
.yc4{bottom:447.106667pt;}
.y181{bottom:447.426667pt;}
.y152{bottom:448.066667pt;}
.y9d{bottom:449.506667pt;}
.y78{bottom:451.266667pt;}
.y160{bottom:453.346667pt;}
.y1a{bottom:465.186667pt;}
.yc3{bottom:466.466667pt;}
.y180{bottom:466.626667pt;}
.y15f{bottom:472.706667pt;}
.y19{bottom:484.546667pt;}
.yc2{bottom:485.826667pt;}
.y17f{bottom:485.986667pt;}
.y15e{bottom:492.066667pt;}
.y44{bottom:492.546667pt;}
.y9c{bottom:500.706667pt;}
.y18{bottom:503.746667pt;}
.yc1{bottom:505.186667pt;}
.y17e{bottom:505.346667pt;}
.y146{bottom:509.346667pt;}
.y15d{bottom:511.266667pt;}
.y9b{bottom:521.506667pt;}
.y17{bottom:523.106667pt;}
.yc0{bottom:524.386667pt;}
.y17d{bottom:524.706667pt;}
.y15c{bottom:530.626667pt;}
.yf0{bottom:540.866667pt;}
.y97{bottom:542.146667pt;}
.y16{bottom:542.466667pt;}
.ybf{bottom:543.746667pt;}
.y17c{bottom:543.906667pt;}
.y43{bottom:549.986667pt;}
.y15{bottom:561.826667pt;}
.ybe{bottom:563.106667pt;}
.y17b{bottom:563.266667pt;}
.y42{bottom:569.346667pt;}
.y14{bottom:581.026667pt;}
.ybd{bottom:582.466667pt;}
.y17a{bottom:582.626667pt;}
.y130{bottom:587.426667pt;}
.yed{bottom:588.226667pt;}
.y41{bottom:588.546667pt;}
.y13{bottom:600.413333pt;}
.ybc{bottom:601.693333pt;}
.y179{bottom:602.013333pt;}
.y74{bottom:603.773333pt;}
.y40{bottom:607.933333pt;}
.y118{bottom:616.733333pt;}
.y150{bottom:618.013333pt;}
.y12{bottom:619.773333pt;}
.ybb{bottom:621.053333pt;}
.y178{bottom:622.973333pt;}
.y77{bottom:623.773333pt;}
.y3f{bottom:627.293333pt;}
.yec{bottom:635.613333pt;}
.y11{bottom:639.133333pt;}
.yba{bottom:640.413333pt;}
.y76{bottom:643.773333pt;}
.y177{bottom:644.093333pt;}
.y3e{bottom:646.333333pt;}
.y96{bottom:646.653333pt;}
.y10{bottom:658.333333pt;}
.yb9{bottom:659.773333pt;}
.y75{bottom:663.773333pt;}
.y117{bottom:664.093333pt;}
.y176{bottom:665.213333pt;}
.y95{bottom:665.853333pt;}
.yf{bottom:677.693333pt;}
.yb8{bottom:678.973333pt;}
.y145{bottom:679.453333pt;}
.ye8{bottom:682.973333pt;}
.y6f{bottom:683.773333pt;}
.y175{bottom:684.733333pt;}
.y3d{bottom:685.213333pt;}
.ye{bottom:698.333333pt;}
.y73{bottom:703.773333pt;}
.y174{bottom:704.093333pt;}
.y3c{bottom:704.573333pt;}
.yb7{bottom:717.693333pt;}
.y173{bottom:723.453333pt;}
.y3b{bottom:723.773333pt;}
.y10e{bottom:726.813333pt;}
.yb{bottom:731.613333pt;}
.yb6{bottom:737.053333pt;}
.y129{bottom:742.013333pt;}
.y3a{bottom:743.133333pt;}
.y72{bottom:743.773333pt;}
.yb3{bottom:750.813333pt;}
.y14d{bottom:757.373333pt;}
.y94{bottom:762.173333pt;}
.y39{bottom:762.493333pt;}
.y69{bottom:763.773333pt;}
.yb2{bottom:771.453333pt;}
.ye5{bottom:776.253333pt;}
.y38{bottom:781.853333pt;}
.y6e{bottom:783.773333pt;}
.y1{bottom:798.813333pt;}
.y37{bottom:801.053333pt;}
.y6c{bottom:803.773333pt;}
.y93{bottom:820.133333pt;}
.y36{bottom:820.453333pt;}
.ye1{bottom:823.013333pt;}
.y6b{bottom:823.813333pt;}
.y35{bottom:839.813333pt;}
.y65{bottom:843.813333pt;}
.y144{bottom:849.413333pt;}
.y34{bottom:859.173333pt;}
.yd6{bottom:869.573333pt;}
.y66{bottom:875.013333pt;}
.y33{bottom:878.373333pt;}
.y5f{bottom:895.013333pt;}
.y126{bottom:896.773333pt;}
.y172{bottom:897.413333pt;}
.y32{bottom:897.733333pt;}
.y10b{bottom:912.133333pt;}
.y64{bottom:915.013333pt;}
.y31{bottom:917.093333pt;}
.y63{bottom:935.013333pt;}
.y30{bottom:936.453333pt;}
.y5b{bottom:955.013333pt;}
.y2f{bottom:955.653333pt;}
.y2e{bottom:975.013333pt;}
.y2d{bottom:994.373333pt;}
.yb1{bottom:1013.413333pt;}
.y2c{bottom:1013.733333pt;}
.y5a{bottom:1061.600000pt;}
.y59{bottom:1074.559977pt;}
.ha{height:11.733399pt;}
.h11{height:19.186667pt;}
.h10{height:19.218667pt;}
.h16{height:19.346667pt;}
.h1b{height:19.360000pt;}
.h1a{height:19.380000pt;}
.h20{height:19.986667pt;}
.h24{height:20.000000pt;}
.h21{height:20.146667pt;}
.h18{height:30.546667pt;}
.h13{height:33.746667pt;}
.h12{height:40.250000pt;}
.h1f{height:40.911250pt;}
.hb{height:43.666667pt;}
.h15{height:43.750000pt;}
.h23{height:44.020000pt;}
.h9{height:44.468750pt;}
.h28{height:45.906667pt;}
.h2b{height:45.920000pt;}
.h2d{height:46.066667pt;}
.h32{height:46.080000pt;}
.h29{height:46.100000pt;}
.h2c{height:46.106667pt;}
.h6{height:47.360000pt;}
.hf{height:50.386667pt;}
.h17{height:50.546667pt;}
.h22{height:50.578667pt;}
.h27{height:52.134375pt;}
.hc{height:53.586667pt;}
.hd{height:57.787500pt;}
.h14{height:59.346667pt;}
.h1e{height:60.186667pt;}
.h31{height:61.280000pt;}
.h5{height:62.781250pt;}
.h7{height:62.812500pt;}
.h8{height:64.500000pt;}
.h25{height:71.524375pt;}
.h4{height:72.655000pt;}
.h3{height:75.465000pt;}
.h2f{height:76.626667pt;}
.h1c{height:79.360000pt;}
.h19{height:79.380000pt;}
.h35{height:91.986667pt;}
.h2a{height:92.000000pt;}
.h26{height:99.826667pt;}
.h3a{height:137.906667pt;}
.h39{height:137.933333pt;}
.h3c{height:138.080000pt;}
.h3b{height:138.106667pt;}
.h1d{height:151.866667pt;}
.h33{height:153.266667pt;}
.h34{height:153.293333pt;}
.h37{height:153.306667pt;}
.h36{height:153.466667pt;}
.h3d{height:168.653333pt;}
.h38{height:168.666667pt;}
.h30{height:183.866667pt;}
.h2e{height:184.013333pt;}
.he{height:190.413333pt;}
.h2{height:229.346667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:12.799973pt;}
.w3c{width:18.133333pt;}
.w38{width:26.706667pt;}
.w25{width:27.666667pt;}
.w1a{width:33.938667pt;}
.w1b{width:34.226667pt;}
.w19{width:35.506667pt;}
.w3d{width:36.146667pt;}
.w3e{width:37.458667pt;}
.w1c{width:37.746667pt;}
.w16{width:38.432000pt;}
.w39{width:41.746667pt;}
.w13{width:41.920000pt;}
.w18{width:42.706667pt;}
.w26{width:43.218667pt;}
.w36{width:43.826667pt;}
.w12{width:43.858667pt;}
.w11{width:44.146667pt;}
.w33{width:44.320000pt;}
.w34{width:44.640000pt;}
.w23{width:45.266667pt;}
.w20{width:45.920000pt;}
.w21{width:46.080000pt;}
.w35{width:46.752000pt;}
.w17{width:47.506667pt;}
.w14{width:48.320000pt;}
.w2b{width:48.352000pt;}
.w22{width:48.512000pt;}
.w3b{width:51.506667pt;}
.w2e{width:52.306667pt;}
.w15{width:53.120000pt;}
.w28{width:53.266667pt;}
.w37{width:54.066667pt;}
.w10{width:54.550667pt;}
.w2c{width:55.826667pt;}
.w24{width:55.986667pt;}
.w32{width:57.458667pt;}
.w2d{width:58.098667pt;}
.w2a{width:59.218667pt;}
.w1f{width:59.378667pt;}
.w3f{width:60.146667pt;}
.w40{width:61.746667pt;}
.w2f{width:63.826667pt;}
.w3a{width:65.298667pt;}
.w27{width:67.506667pt;}
.w31{width:72.146667pt;}
.w29{width:74.546667pt;}
.w1e{width:74.866667pt;}
.w8{width:79.232000pt;}
.w30{width:89.310667pt;}
.w1d{width:91.710667pt;}
.w9{width:92.946667pt;}
.wb{width:114.712000pt;}
.wf{width:132.658667pt;}
.we{width:142.546667pt;}
.wc{width:144.173333pt;}
.wa{width:147.533333pt;}
.w6{width:148.185333pt;}
.w7{width:149.453333pt;}
.w4{width:323.108000pt;}
.wd{width:330.297333pt;}
.w2{width:422.973333pt;}
.w3{width:622.640000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x35{left:4.630667pt;}
.x4e{left:5.586667pt;}
.x8{left:7.040000pt;}
.x53{left:8.160000pt;}
.x23{left:9.106667pt;}
.x1b{left:10.270667pt;}
.x1e{left:11.346667pt;}
.x4a{left:12.786667pt;}
.x16{left:14.546667pt;}
.x2b{left:15.710667pt;}
.x21{left:16.800000pt;}
.x6{left:18.240000pt;}
.x64{left:19.186667pt;}
.x20{left:20.480000pt;}
.x50{left:21.586667pt;}
.x4{left:22.880000pt;}
.x48{left:24.000000pt;}
.x2{left:25.760000pt;}
.x4c{left:27.826667pt;}
.x17{left:28.946667pt;}
.x24{left:30.266667pt;}
.x29{left:31.666667pt;}
.x28{left:32.830667pt;}
.x63{left:33.920000pt;}
.x22{left:35.186667pt;}
.x1f{left:36.506667pt;}
.x32{left:38.226667pt;}
.x1a{left:39.710667pt;}
.x3{left:41.440000pt;}
.x1d{left:42.546667pt;}
.x11{left:44.510667pt;}
.x43{left:45.630667pt;}
.x1c{left:47.070667pt;}
.x30{left:50.386667pt;}
.x13{left:53.306667pt;}
.x2a{left:56.186667pt;}
.x31{left:57.146667pt;}
.x27{left:59.386667pt;}
.x19{left:61.146667pt;}
.x33{left:62.586667pt;}
.x42{left:66.401333pt;}
.x5{left:77.800000pt;}
.x10{left:83.681333pt;}
.xa{left:85.001333pt;}
.x7{left:89.160000pt;}
.xc{left:94.432000pt;}
.xf{left:117.472000pt;}
.x34{left:118.921333pt;}
.x9{left:124.520000pt;}
.xb{left:132.192000pt;}
.x2c{left:134.065333pt;}
.x66{left:141.626667pt;}
.x58{left:156.040000pt;}
.x44{left:158.440000pt;}
.x2f{left:161.145333pt;}
.x36{left:173.480000pt;}
.x1{left:206.426667pt;}
.x37{left:217.640000pt;}
.x59{left:228.520000pt;}
.x12{left:232.200000pt;}
.x45{left:233.640000pt;}
.xd{left:235.326009pt;}
.x38{left:261.506667pt;}
.x5a{left:286.306667pt;}
.x46{left:293.346667pt;}
.x39{left:303.426667pt;}
.x5b{left:330.946667pt;}
.x25{left:339.524007pt;}
.x3a{left:351.746667pt;}
.x5c{left:375.906667pt;}
.x14{left:381.986667pt;}
.x47{left:386.146667pt;}
.x26{left:396.866667pt;}
.x3b{left:404.866667pt;}
.x5d{left:422.986667pt;}
.x2d{left:424.426667pt;}
.x49{left:434.986667pt;}
.x3c{left:443.306667pt;}
.x15{left:461.546667pt;}
.x5e{left:467.146667pt;}
.x4b{left:480.586667pt;}
.x3d{left:490.826667pt;}
.x5f{left:521.546667pt;}
.x3e{left:533.546667pt;}
.x54{left:535.946667pt;}
.x4d{left:536.906667pt;}
.x60{left:548.586667pt;}
.x18{left:554.826667pt;}
.x67{left:558.026667pt;}
.x55{left:563.946667pt;}
.x4f{left:564.906667pt;}
.x2e{left:567.306667pt;}
.x3f{left:569.066667pt;}
.x61{left:590.666667pt;}
.x68{left:595.813333pt;}
.x40{left:603.013333pt;}
.x51{left:608.613333pt;}
.x56{left:622.373333pt;}
.x41{left:637.253333pt;}
.x62{left:656.293333pt;}
.x57{left:675.013333pt;}
.x52{left:676.453333pt;}
.x65{left:679.626709pt;}
.xe{left:684.960042pt;}
}




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