
    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_c144daa5f83fb4d84f4dfa8c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_94c395ccbcaef90cdefc704b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.940918;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_294e2d5562a6277b9ae5bb32.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b55175217f05773ca5706c16.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_81ac3ff7dfb3a3cc255dffc1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_51535c70d94bc102954d4e4f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_d16ee7cb176b88d22725b430.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_45d6c1c795423bf2ce481710.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9b506d1d598c055562ba8305.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6b60bed131651614606f3d5a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.092773;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_3332742b6ae7911884a79862.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.972656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_27f5a1a30e2c994cfdeb5d04.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_6c5fc0800fb107016c8c8559.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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;}
.m2{transform:matrix(0.000000,-0.246476,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.246476,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.246476,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.249638,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249638,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249638,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250362,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.253574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253574,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.v7{vertical-align:-79.920000px;}
.v6{vertical-align:-65.520000px;}
.v4{vertical-align:-28.016403px;}
.v5{vertical-align:-26.497659px;}
.v3{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.v1{vertical-align:33.120000px;}
.ls17{letter-spacing:-0.817011px;}
.ls8{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.259800px;}
.ls7{letter-spacing:-0.053280px;}
.ls1c{letter-spacing:-0.027360px;}
.ls5{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.012960px;}
.ls1d{letter-spacing:0.013440px;}
.lsc{letter-spacing:0.017280px;}
.lsa{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.259920px;}
.ls3{letter-spacing:0.298800px;}
.ls13{letter-spacing:0.305400px;}
.ls2{letter-spacing:0.311760px;}
.lse{letter-spacing:0.324000px;}
.lsd{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.540000px;}
.ls11{letter-spacing:0.612000px;}
.lsb{letter-spacing:0.666000px;}
.ls12{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.900000px;}
.ls18{letter-spacing:1.077571px;}
.ls16{letter-spacing:1.139334px;}
.ls4{letter-spacing:3.060000px;}
.ls10{letter-spacing:5.706720px;}
.ls1a{letter-spacing:15.091920px;}
.ls1b{letter-spacing:18.900000px;}
.ls1e{letter-spacing:27.540000px;}
.ls19{letter-spacing:49.140000px;}
.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;}
}
.ws10{word-spacing:-59.760000px;}
.ws17{word-spacing:-56.880000px;}
.ws1{word-spacing:-48.240000px;}
.ws0{word-spacing:-23.976000px;}
.wsf{word-spacing:-16.865400px;}
.wsa{word-spacing:-15.606000px;}
.wse{word-spacing:-15.552000px;}
.wsd{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.238800px;}
.ws9{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.ws16{word-spacing:-14.784773px;}
.ws3{word-spacing:-14.680200px;}
.ws19{word-spacing:-14.580000px;}
.wsc{word-spacing:-14.402160px;}
.ws18{word-spacing:-14.220000px;}
.ws1a{word-spacing:-14.192640px;}
.ws1b{word-spacing:-13.860000px;}
.ws7{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.140000px;}
.ws13{word-spacing:-11.881056px;}
.ws15{word-spacing:-11.236995px;}
.ws4{word-spacing:-9.720000px;}
.ws11{word-spacing:-0.045643px;}
.wsb{word-spacing:0.000000px;}
.ws12{word-spacing:450.983195px;}
.ws14{word-spacing:476.218906px;}
._1d{margin-left:-2.270880px;}
._2{margin-left:-1.126080px;}
._6{width:1.553760px;}
._10{width:2.644800px;}
._5{width:3.809280px;}
._4{width:5.317200px;}
._18{width:6.517200px;}
._16{width:7.695360px;}
._17{width:8.858160px;}
._9{width:10.083360px;}
._8{width:12.002400px;}
._a{width:13.505760px;}
._2e{width:15.471360px;}
._1c{width:16.605840px;}
._e{width:17.663760px;}
._3{width:18.900000px;}
._12{width:20.318400px;}
._11{width:21.453840px;}
._b{width:23.425920px;}
._c{width:24.621120px;}
._d{width:25.919760px;}
._15{width:27.280080px;}
._28{width:28.402320px;}
._13{width:29.760480px;}
._14{width:31.015440px;}
._22{width:32.577120px;}
._2a{width:33.704640px;}
._19{width:35.258400px;}
._7{width:36.334080px;}
._37{width:38.097120px;}
._29{width:39.202560px;}
._1b{width:40.360800px;}
._1a{width:41.832000px;}
._24{width:43.359600px;}
._25{width:47.031120px;}
._23{width:48.986400px;}
._26{width:50.497200px;}
._27{width:52.123440px;}
._31{width:53.353440px;}
._32{width:54.780480px;}
._21{width:56.190000px;}
._20{width:57.309840px;}
._3a{width:60.477120px;}
._1f{width:62.496240px;}
._1e{width:63.733920px;}
._f{width:65.885520px;}
._36{width:77.407200px;}
._35{width:78.640800px;}
._33{width:79.885920px;}
._38{width:93.524400px;}
._39{width:95.245680px;}
._30{width:104.498160px;}
._2f{width:106.128480px;}
._34{width:139.379760px;}
._2b{width:453.539225px;}
._2c{width:456.901193px;}
._2d{width:478.724702px;}
._1{width:1074.540000px;}
._0{width:1131.276000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:36.544688px;}
.fs8{font-size:38.639290px;}
.fs4{font-size:38.880000px;}
.fsa{font-size:43.169103px;}
.fs6{font-size:45.643390px;}
.fs1{font-size:48.240000px;}
.fsb{font-size:53.105725px;}
.fsd{font-size:53.182638px;}
.fs5{font-size:54.000000px;}
.fs7{font-size:56.149542px;}
.fse{font-size:56.880000px;}
.fs9{font-size:56.952330px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y122{bottom:-23.040000px;}
.y114{bottom:-7.740000px;}
.y121{bottom:-2.340000px;}
.y0{bottom:0.000000px;}
.y144{bottom:2.511757px;}
.y133{bottom:2.626538px;}
.y142{bottom:7.480510px;}
.y131{bottom:7.909264px;}
.y5d{bottom:8.460000px;}
.yf3{bottom:9.720000px;}
.y110{bottom:12.240000px;}
.y10f{bottom:12.420000px;}
.y10b{bottom:14.040000px;}
.y120{bottom:17.640000px;}
.y105{bottom:19.252500px;}
.yf0{bottom:20.550000px;}
.yf2{bottom:20.700000px;}
.yf7{bottom:20.880000px;}
.yf5{bottom:21.060000px;}
.yfc{bottom:21.105000px;}
.y136{bottom:24.832500px;}
.y10d{bottom:25.560000px;}
.y109{bottom:29.340000px;}
.y113{bottom:29.520000px;}
.y11f{bottom:34.740000px;}
.y104{bottom:36.892500px;}
.y5c{bottom:37.980000px;}
.y135{bottom:38.872500px;}
.y12f{bottom:39.479782px;}
.y140{bottom:43.169589px;}
.y112{bottom:46.800000px;}
.y11e{bottom:48.450000px;}
.yef{bottom:53.640000px;}
.y103{bottom:55.426500px;}
.y124{bottom:56.143705px;}
.y3{bottom:57.600000px;}
.y5b{bottom:57.780000px;}
.y138{bottom:58.930176px;}
.y111{bottom:63.900000px;}
.y102{bottom:72.706500px;}
.y5a{bottom:77.580000px;}
.y101{bottom:89.986500px;}
.y23{bottom:90.216000px;}
.y125{bottom:90.347064px;}
.y43{bottom:90.756000px;}
.y17b{bottom:91.296000px;}
.y9a{bottom:93.456000px;}
.y59{bottom:97.380000px;}
.y134{bottom:97.783500px;}
.yeb{bottom:98.863500px;}
.y139{bottom:104.555833px;}
.y100{bottom:107.266500px;}
.y22{bottom:107.496000px;}
.y17a{bottom:107.676000px;}
.y42{bottom:108.036000px;}
.y99{bottom:110.736000px;}
.y1b8{bottom:113.256000px;}
.y58{bottom:117.180000px;}
.y145{bottom:120.320349px;}
.yd0{bottom:121.716000px;}
.y179{bottom:124.056000px;}
.yff{bottom:124.546500px;}
.y126{bottom:124.579607px;}
.y21{bottom:124.776000px;}
.y41{bottom:125.316000px;}
.y98{bottom:128.016000px;}
.y1b7{bottom:130.536000px;}
.y137{bottom:136.766658px;}
.y57{bottom:137.160000px;}
.ycf{bottom:138.996000px;}
.y178{bottom:140.436000px;}
.y20{bottom:142.056000px;}
.y40{bottom:142.596000px;}
.y97{bottom:145.116000px;}
.y141{bottom:146.730927px;}
.y1b6{bottom:147.816000px;}
.y13a{bottom:150.185905px;}
.yce{bottom:156.270000px;}
.y177{bottom:156.810000px;}
.y56{bottom:156.960000px;}
.y1f{bottom:159.150000px;}
.y127{bottom:159.658478px;}
.y3f{bottom:159.870000px;}
.y96{bottom:162.390000px;}
.y1b5{bottom:165.090000px;}
.y176{bottom:173.190000px;}
.ycd{bottom:173.550000px;}
.y1e{bottom:176.430000px;}
.y55{bottom:176.760000px;}
.y3e{bottom:177.150000px;}
.y95{bottom:179.670000px;}
.y1b4{bottom:181.830000px;}
.y175{bottom:189.570000px;}
.ycc{bottom:190.650000px;}
.y1d{bottom:193.710000px;}
.y128{bottom:193.861837px;}
.y3d{bottom:194.250000px;}
.y13b{bottom:195.839163px;}
.y54{bottom:196.560000px;}
.y94{bottom:196.950000px;}
.y1b3{bottom:198.210000px;}
.y174{bottom:205.950000px;}
.ycb{bottom:207.570000px;}
.y107{bottom:209.730000px;}
.y1c{bottom:210.990000px;}
.y3c{bottom:211.530000px;}
.y93{bottom:214.230000px;}
.y1b2{bottom:215.130000px;}
.y53{bottom:216.360000px;}
.y143{bottom:217.253784px;}
.y173{bottom:222.330000px;}
.yca{bottom:224.850000px;}
.y129{bottom:228.088543px;}
.y1b{bottom:228.270000px;}
.y3b{bottom:228.810000px;}
.y92{bottom:231.510000px;}
.y1b1{bottom:232.410000px;}
.y52{bottom:236.385000px;}
.y172{bottom:238.710000px;}
.y13c{bottom:240.631248px;}
.yfe{bottom:242.130000px;}
.y1a{bottom:245.550000px;}
.y3a{bottom:246.090000px;}
.yc9{bottom:246.810000px;}
.y91{bottom:248.610000px;}
.y1b0{bottom:249.690000px;}
.y171{bottom:255.090000px;}
.y51{bottom:260.865000px;}
.y12a{bottom:262.291902px;}
.y19{bottom:262.650000px;}
.y39{bottom:263.370000px;}
.y90{bottom:265.890000px;}
.y1af{bottom:266.430000px;}
.y170{bottom:271.470000px;}
.yfd{bottom:277.410000px;}
.y18{bottom:279.930000px;}
.y38{bottom:280.470000px;}
.y50{bottom:280.665000px;}
.y1ae{bottom:282.810000px;}
.y8f{bottom:283.170000px;}
.yc8{bottom:284.970000px;}
.y13d{bottom:286.262424px;}
.y16f{bottom:287.850000px;}
.y12b{bottom:296.530282px;}
.y17{bottom:297.210000px;}
.y37{bottom:297.750000px;}
.y1ad{bottom:298.470000px;}
.y8e{bottom:300.450000px;}
.y4f{bottom:301.005000px;}
.yc7{bottom:302.070000px;}
.y16e{bottom:304.230000px;}
.yfb{bottom:312.510000px;}
.y16{bottom:314.490000px;}
.y1ac{bottom:314.850000px;}
.y36{bottom:315.030000px;}
.y8d{bottom:317.730000px;}
.yc6{bottom:320.610000px;}
.y4e{bottom:321.705000px;}
.y1ab{bottom:331.275000px;}
.y12c{bottom:331.609153px;}
.y15{bottom:331.815000px;}
.y13e{bottom:331.915682px;}
.y35{bottom:332.355000px;}
.y8c{bottom:334.875000px;}
.y16d{bottom:337.035000px;}
.yc5{bottom:337.755000px;}
.y4d{bottom:343.845000px;}
.y1aa{bottom:347.655000px;}
.yfa{bottom:347.835000px;}
.y14{bottom:348.915000px;}
.y34{bottom:349.635000px;}
.y8b{bottom:352.155000px;}
.y16c{bottom:353.415000px;}
.yc4{bottom:355.035000px;}
.y1a9{bottom:364.035000px;}
.y12d{bottom:365.835859px;}
.y13{bottom:366.195000px;}
.y33{bottom:366.915000px;}
.y4c{bottom:369.225000px;}
.y8a{bottom:369.435000px;}
.y16b{bottom:369.795000px;}
.yc3{bottom:372.315000px;}
.y13f{bottom:377.535818px;}
.y1a8{bottom:380.415000px;}
.yf9{bottom:383.115000px;}
.y12{bottom:383.475000px;}
.y32{bottom:384.015000px;}
.y16a{bottom:386.175000px;}
.y89{bottom:386.715000px;}
.yc2{bottom:389.595000px;}
.y4b{bottom:394.605000px;}
.y1a7{bottom:396.795000px;}
.y12e{bottom:400.039218px;}
.y11{bottom:400.755000px;}
.y31{bottom:401.295000px;}
.y169{bottom:402.555000px;}
.y88{bottom:403.995000px;}
.yc1{bottom:406.875000px;}
.y1a6{bottom:413.175000px;}
.y10{bottom:418.035000px;}
.yf8{bottom:418.395000px;}
.y30{bottom:418.575000px;}
.y168{bottom:418.935000px;}
.y4a{bottom:419.985000px;}
.y87{bottom:421.275000px;}
.yc0{bottom:423.795000px;}
.y1a5{bottom:429.555000px;}
.yf{bottom:435.315000px;}
.y2f{bottom:435.855000px;}
.y86{bottom:438.375000px;}
.y49{bottom:443.025000px;}
.y1a4{bottom:445.935000px;}
.ybf{bottom:450.255000px;}
.y167{bottom:451.695000px;}
.ye{bottom:452.415000px;}
.y2e{bottom:453.135000px;}
.yf6{bottom:453.675000px;}
.y85{bottom:455.655000px;}
.y48{bottom:458.685000px;}
.y1a3{bottom:462.315000px;}
.ybe{bottom:467.535000px;}
.y166{bottom:468.255000px;}
.yd{bottom:469.695000px;}
.y2d{bottom:470.415000px;}
.y84{bottom:472.935000px;}
.y47{bottom:474.165000px;}
.y1a2{bottom:478.695000px;}
.y165{bottom:484.635000px;}
.ybd{bottom:484.815000px;}
.yc{bottom:486.975000px;}
.y2c{bottom:487.515000px;}
.yf4{bottom:488.775000px;}
.y46{bottom:489.675000px;}
.y83{bottom:490.215000px;}
.y1a1{bottom:495.075000px;}
.y164{bottom:501.015000px;}
.ybc{bottom:502.095000px;}
.yb{bottom:504.255000px;}
.y2b{bottom:504.795000px;}
.y82{bottom:507.495000px;}
.y1a0{bottom:511.455000px;}
.y163{bottom:517.395000px;}
.ybb{bottom:519.375000px;}
.y45{bottom:520.455000px;}
.ya{bottom:521.535000px;}
.y2a{bottom:521.895000px;}
.yee{bottom:524.055000px;}
.y81{bottom:524.775000px;}
.y19f{bottom:527.835000px;}
.y162{bottom:533.775000px;}
.yba{bottom:536.655000px;}
.y9{bottom:538.815000px;}
.yed{bottom:538.981500px;}
.y29{bottom:540.435000px;}
.y80{bottom:541.515000px;}
.y19e{bottom:544.215000px;}
.y161{bottom:550.155000px;}
.y11d{bottom:550.875000px;}
.yb9{bottom:553.755000px;}
.yf1{bottom:554.655000px;}
.y8{bottom:555.915000px;}
.yec{bottom:556.261500px;}
.y28{bottom:557.715000px;}
.y19d{bottom:560.595000px;}
.y7f{bottom:563.295000px;}
.y160{bottom:566.535000px;}
.yb8{bottom:571.035000px;}
.y7{bottom:573.195000px;}
.y27{bottom:574.995000px;}
.y19c{bottom:576.975000px;}
.y15f{bottom:582.915000px;}
.yb7{bottom:588.315000px;}
.y7e{bottom:589.935000px;}
.y6{bottom:590.475000px;}
.y26{bottom:591.915000px;}
.y19b{bottom:593.355000px;}
.y123{bottom:599.280000px;}
.y15e{bottom:599.325000px;}
.y130{bottom:603.651259px;}
.yb6{bottom:605.625000px;}
.y7d{bottom:607.245000px;}
.y5{bottom:607.785000px;}
.y25{bottom:609.405000px;}
.y19a{bottom:609.765000px;}
.y15d{bottom:615.705000px;}
.yb5{bottom:622.905000px;}
.y7c{bottom:624.525000px;}
.y4{bottom:624.885000px;}
.y199{bottom:626.145000px;}
.y24{bottom:626.685000px;}
.y15c{bottom:632.085000px;}
.yb4{bottom:640.005000px;}
.y7b{bottom:641.805000px;}
.y198{bottom:642.705000px;}
.y44{bottom:644.865000px;}
.y15b{bottom:648.465000px;}
.yb3{bottom:657.285000px;}
.y7a{bottom:658.905000px;}
.y197{bottom:659.085000px;}
.y15a{bottom:664.845000px;}
.yb2{bottom:674.565000px;}
.y196{bottom:675.465000px;}
.y79{bottom:676.185000px;}
.y132{bottom:680.871938px;}
.y159{bottom:681.405000px;}
.yea{bottom:689.685000px;}
.yde{bottom:690.765000px;}
.yb1{bottom:691.845000px;}
.y78{bottom:693.465000px;}
.y158{bottom:698.685000px;}
.ye9{bottom:706.785000px;}
.ydd{bottom:708.045000px;}
.y195{bottom:708.225000px;}
.yb0{bottom:709.125000px;}
.y77{bottom:710.745000px;}
.y157{bottom:715.245000px;}
.ye8{bottom:724.065000px;}
.y194{bottom:724.605000px;}
.ydc{bottom:725.145000px;}
.yaf{bottom:726.045000px;}
.y76{bottom:728.025000px;}
.y156{bottom:734.325000px;}
.ye7{bottom:740.985000px;}
.ydb{bottom:742.425000px;}
.yae{bottom:743.145000px;}
.y75{bottom:745.125000px;}
.y155{bottom:753.405000px;}
.y193{bottom:757.365000px;}
.ye6{bottom:758.265000px;}
.yda{bottom:759.705000px;}
.y74{bottom:762.405000px;}
.yad{bottom:769.785000px;}
.y154{bottom:770.505000px;}
.y192{bottom:773.745000px;}
.ye5{bottom:775.905000px;}
.yd9{bottom:776.985000px;}
.y73{bottom:779.685000px;}
.yac{bottom:787.065000px;}
.y153{bottom:787.785000px;}
.y191{bottom:790.125000px;}
.ye4{bottom:793.005000px;}
.yd8{bottom:794.265000px;}
.y72{bottom:796.965000px;}
.yab{bottom:804.345000px;}
.y152{bottom:805.065000px;}
.y190{bottom:806.505000px;}
.ye3{bottom:810.285000px;}
.yd7{bottom:811.545000px;}
.y71{bottom:814.245000px;}
.yaa{bottom:821.625000px;}
.y151{bottom:822.345000px;}
.y18f{bottom:822.885000px;}
.ye2{bottom:827.565000px;}
.yd6{bottom:828.645000px;}
.y70{bottom:831.345000px;}
.ya9{bottom:838.905000px;}
.y18e{bottom:839.265000px;}
.y150{bottom:839.625000px;}
.ye1{bottom:844.845000px;}
.yd5{bottom:845.925000px;}
.y6f{bottom:848.625000px;}
.y18d{bottom:855.645000px;}
.ya8{bottom:856.005000px;}
.y14f{bottom:856.905000px;}
.ye0{bottom:862.170000px;}
.yd4{bottom:863.250000px;}
.y6e{bottom:865.950000px;}
.y18c{bottom:872.070000px;}
.ya7{bottom:873.330000px;}
.y14e{bottom:874.050000px;}
.ydf{bottom:879.270000px;}
.yd3{bottom:880.530000px;}
.y6d{bottom:883.230000px;}
.y18b{bottom:888.450000px;}
.ya6{bottom:890.610000px;}
.y14d{bottom:891.330000px;}
.yd2{bottom:897.810000px;}
.y6c{bottom:900.690000px;}
.y18a{bottom:904.830000px;}
.ya5{bottom:907.890000px;}
.y14c{bottom:908.610000px;}
.yd1{bottom:914.910000px;}
.y6b{bottom:917.970000px;}
.y189{bottom:921.210000px;}
.ya4{bottom:925.170000px;}
.y14b{bottom:925.890000px;}
.y106{bottom:933.990000px;}
.y6a{bottom:935.250000px;}
.y188{bottom:937.590000px;}
.ya3{bottom:942.450000px;}
.y14a{bottom:943.170000px;}
.y69{bottom:952.350000px;}
.y187{bottom:953.970000px;}
.ya2{bottom:959.190000px;}
.y149{bottom:960.450000px;}
.y68{bottom:969.270000px;}
.y186{bottom:970.350000px;}
.ya1{bottom:976.470000px;}
.y148{bottom:977.550000px;}
.y185{bottom:986.730000px;}
.y67{bottom:991.410000px;}
.y147{bottom:994.830000px;}
.ya0{bottom:1003.110000px;}
.y66{bottom:1010.310000px;}
.y146{bottom:1012.110000px;}
.y10c{bottom:1016.790000px;}
.y184{bottom:1019.490000px;}
.y9f{bottom:1020.390000px;}
.y65{bottom:1029.390000px;}
.y183{bottom:1035.870000px;}
.y9e{bottom:1037.670000px;}
.y10e{bottom:1043.250000px;}
.y11c{bottom:1044.870000px;}
.y115{bottom:1046.310000px;}
.y64{bottom:1046.670000px;}
.y182{bottom:1052.250000px;}
.y9d{bottom:1054.770000px;}
.y11b{bottom:1062.150000px;}
.y63{bottom:1063.770000px;}
.y181{bottom:1068.630000px;}
.y108{bottom:1069.890000px;}
.y9c{bottom:1072.050000px;}
.y11a{bottom:1079.430000px;}
.y62{bottom:1081.050000px;}
.y180{bottom:1085.010000px;}
.y9b{bottom:1088.970000px;}
.y119{bottom:1096.710000px;}
.y61{bottom:1098.330000px;}
.y10a{bottom:1100.490000px;}
.y17f{bottom:1101.390000px;}
.y118{bottom:1113.810000px;}
.y60{bottom:1115.610000px;}
.y17e{bottom:1117.950000px;}
.y117{bottom:1131.120000px;}
.y5f{bottom:1132.920000px;}
.y17d{bottom:1134.360000px;}
.y116{bottom:1148.400000px;}
.y5e{bottom:1150.200000px;}
.y17c{bottom:1150.740000px;}
.y2{bottom:1168.200000px;}
.y1{bottom:1189.980000px;}
.h1c{height:25.740000px;}
.h1b{height:25.920000px;}
.h27{height:27.380914px;}
.h20{height:28.950283px;}
.h18{height:29.736000px;}
.h13{height:29.880000px;}
.h14{height:34.380000px;}
.h11{height:34.416000px;}
.h12{height:34.560000px;}
.h15{height:34.596000px;}
.h26{height:45.024025px;}
.h1f{height:47.604630px;}
.h2d{height:50.992031px;}
.h1a{height:52.380000px;}
.hc{height:52.417969px;}
.hb{height:52.998047px;}
.h7{height:53.573906px;}
.ha{height:54.421875px;}
.h2a{height:55.467830px;}
.h2c{height:55.796836px;}
.h2b{height:55.824609px;}
.h2e{height:57.324375px;}
.h5{height:58.651172px;}
.h23{height:59.399500px;}
.h8{height:60.226875px;}
.h17{height:60.336000px;}
.he{height:62.327813px;}
.h28{height:64.612626px;}
.h6{height:65.518594px;}
.h19{height:66.543750px;}
.h4{height:66.757500px;}
.h21{height:68.315975px;}
.h2{height:68.357812px;}
.hd{height:70.628906px;}
.h3{height:70.664062px;}
.h10{height:100.296000px;}
.h16{height:223.230000px;}
.h29{height:282.939793px;}
.h22{height:300.907845px;}
.h25{height:403.233342px;}
.h1e{height:428.989501px;}
.h24{height:442.102500px;}
.h1d{height:477.420000px;}
.h9{height:533.055000px;}
.hf{height:569.767500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w13{width:25.782474px;}
.w16{width:41.517839px;}
.w9{width:65.700000px;}
.w8{width:65.736000px;}
.wc{width:80.856000px;}
.wb{width:116.100000px;}
.we{width:122.400000px;}
.wf{width:122.436000px;}
.w4{width:169.410000px;}
.w15{width:200.955187px;}
.w12{width:215.163770px;}
.w7{width:264.990000px;}
.w6{width:265.215000px;}
.wd{width:492.015000px;}
.w5{width:530.925000px;}
.w14{width:610.328820px;}
.w11{width:667.798626px;}
.w3{width:743.715000px;}
.w2{width:747.315000px;}
.w10{width:754.695000px;}
.wa{width:778.635000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x32{left:2.652250px;}
.x1f{left:7.560000px;}
.xc{left:11.338500px;}
.x3b{left:15.783413px;}
.x33{left:16.902173px;}
.x10{left:19.258500px;}
.x1d{left:25.740000px;}
.x16{left:27.360000px;}
.x29{left:29.160000px;}
.x28{left:30.420000px;}
.x2c{left:32.074500px;}
.x3c{left:33.225328px;}
.x27{left:36.540000px;}
.xd{left:49.894500px;}
.x23{left:55.800000px;}
.xb{left:65.914500px;}
.x37{left:69.740019px;}
.x2{left:74.340000px;}
.x36{left:75.572418px;}
.x2f{left:79.153082px;}
.x2a{left:82.800000px;}
.x11{left:85.680000px;}
.x2e{left:88.921413px;}
.x14{left:91.485000px;}
.x1e{left:107.136000px;}
.x2d{left:109.275000px;}
.x35{left:138.000000px;}
.x22{left:145.620000px;}
.x38{left:150.293472px;}
.x30{left:161.834603px;}
.x3a{left:164.563677px;}
.x1{left:179.490000px;}
.x20{left:223.950000px;}
.x13{left:238.755000px;}
.x12{left:255.810000px;}
.xe{left:271.333500px;}
.x21{left:305.535000px;}
.x17{left:322.275000px;}
.x31{left:351.150715px;}
.xa{left:373.573500px;}
.x39{left:381.302277px;}
.x18{left:388.875000px;}
.x7{left:427.063500px;}
.x24{left:428.655000px;}
.x19{left:455.295000px;}
.x3{left:462.495000px;}
.xf{left:470.955000px;}
.x3d{left:473.145000px;}
.x6{left:484.303500px;}
.x4{left:493.843500px;}
.x8{left:511.663500px;}
.x15{left:521.745000px;}
.x25{left:551.805000px;}
.x1a{left:588.165000px;}
.x9{left:609.988500px;}
.x1b{left:654.585000px;}
.x5{left:656.968500px;}
.x26{left:675.150000px;}
.x34{left:682.528500px;}
.x2b{left:711.328500px;}
.x1c{left:721.050000px;}
@media print{
.v7{vertical-align:-71.040000pt;}
.v6{vertical-align:-58.240000pt;}
.v4{vertical-align:-24.903470pt;}
.v5{vertical-align:-23.553475pt;}
.v3{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.v1{vertical-align:29.440000pt;}
.ls17{letter-spacing:-0.726232pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.230933pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls1c{letter-spacing:-0.024320pt;}
.ls5{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.011520pt;}
.ls1d{letter-spacing:0.011947pt;}
.lsc{letter-spacing:0.015360pt;}
.lsa{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.231040pt;}
.ls3{letter-spacing:0.265600pt;}
.ls13{letter-spacing:0.271467pt;}
.ls2{letter-spacing:0.277120pt;}
.lse{letter-spacing:0.288000pt;}
.lsd{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.480000pt;}
.ls11{letter-spacing:0.544000pt;}
.lsb{letter-spacing:0.592000pt;}
.ls12{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.800000pt;}
.ls18{letter-spacing:0.957841pt;}
.ls16{letter-spacing:1.012741pt;}
.ls4{letter-spacing:2.720000pt;}
.ls10{letter-spacing:5.072640pt;}
.ls1a{letter-spacing:13.415040pt;}
.ls1b{letter-spacing:16.800000pt;}
.ls1e{letter-spacing:24.480000pt;}
.ls19{letter-spacing:43.680000pt;}
.ws10{word-spacing:-53.120000pt;}
.ws17{word-spacing:-50.560000pt;}
.ws1{word-spacing:-42.880000pt;}
.ws0{word-spacing:-21.312000pt;}
.wsf{word-spacing:-14.991467pt;}
.wsa{word-spacing:-13.872000pt;}
.wse{word-spacing:-13.824000pt;}
.wsd{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.545600pt;}
.ws9{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.ws16{word-spacing:-13.142021pt;}
.ws3{word-spacing:-13.049067pt;}
.ws19{word-spacing:-12.960000pt;}
.wsc{word-spacing:-12.801920pt;}
.ws18{word-spacing:-12.640000pt;}
.ws1a{word-spacing:-12.615680pt;}
.ws1b{word-spacing:-12.320000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.680000pt;}
.ws13{word-spacing:-10.560939pt;}
.ws15{word-spacing:-9.988440pt;}
.ws4{word-spacing:-8.640000pt;}
.ws11{word-spacing:-0.040572pt;}
.wsb{word-spacing:0.000000pt;}
.ws12{word-spacing:400.873951pt;}
.ws14{word-spacing:423.305695pt;}
._1d{margin-left:-2.018560pt;}
._2{margin-left:-1.000960pt;}
._6{width:1.381120pt;}
._10{width:2.350933pt;}
._5{width:3.386027pt;}
._4{width:4.726400pt;}
._18{width:5.793067pt;}
._16{width:6.840320pt;}
._17{width:7.873920pt;}
._9{width:8.962987pt;}
._8{width:10.668800pt;}
._a{width:12.005120pt;}
._2e{width:13.752320pt;}
._1c{width:14.760747pt;}
._e{width:15.701120pt;}
._3{width:16.800000pt;}
._12{width:18.060800pt;}
._11{width:19.070080pt;}
._b{width:20.823040pt;}
._c{width:21.885440pt;}
._d{width:23.039787pt;}
._15{width:24.248960pt;}
._28{width:25.246507pt;}
._13{width:26.453760pt;}
._14{width:27.569280pt;}
._22{width:28.957440pt;}
._2a{width:29.959680pt;}
._19{width:31.340800pt;}
._7{width:32.296960pt;}
._37{width:33.864107pt;}
._29{width:34.846720pt;}
._1b{width:35.876267pt;}
._1a{width:37.184000pt;}
._24{width:38.541867pt;}
._25{width:41.805440pt;}
._23{width:43.543467pt;}
._26{width:44.886400pt;}
._27{width:46.331947pt;}
._31{width:47.425280pt;}
._32{width:48.693760pt;}
._21{width:49.946667pt;}
._20{width:50.942080pt;}
._3a{width:53.757440pt;}
._1f{width:55.552213pt;}
._1e{width:56.652373pt;}
._f{width:58.564907pt;}
._36{width:68.806400pt;}
._35{width:69.902933pt;}
._33{width:71.009707pt;}
._38{width:83.132800pt;}
._39{width:84.662827pt;}
._30{width:92.887253pt;}
._2f{width:94.336427pt;}
._34{width:123.893120pt;}
._2b{width:403.145978pt;}
._2c{width:406.134394pt;}
._2d{width:425.533068pt;}
._1{width:955.146667pt;}
._0{width:1005.578667pt;}
.fsc{font-size:32.484167pt;}
.fs8{font-size:34.346035pt;}
.fs4{font-size:34.560000pt;}
.fsa{font-size:38.372536pt;}
.fs6{font-size:40.571903pt;}
.fs1{font-size:42.880000pt;}
.fsb{font-size:47.205089pt;}
.fsd{font-size:47.273456pt;}
.fs5{font-size:48.000000pt;}
.fs7{font-size:49.910704pt;}
.fse{font-size:50.560000pt;}
.fs9{font-size:50.624293pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y122{bottom:-20.480000pt;}
.y114{bottom:-6.880000pt;}
.y121{bottom:-2.080000pt;}
.y0{bottom:0.000000pt;}
.y144{bottom:2.232673pt;}
.y133{bottom:2.334700pt;}
.y142{bottom:6.649342pt;}
.y131{bottom:7.030457pt;}
.y5d{bottom:7.520000pt;}
.yf3{bottom:8.640000pt;}
.y110{bottom:10.880000pt;}
.y10f{bottom:11.040000pt;}
.y10b{bottom:12.480000pt;}
.y120{bottom:15.680000pt;}
.y105{bottom:17.113333pt;}
.yf0{bottom:18.266667pt;}
.yf2{bottom:18.400000pt;}
.yf7{bottom:18.560000pt;}
.yf5{bottom:18.720000pt;}
.yfc{bottom:18.760000pt;}
.y136{bottom:22.073333pt;}
.y10d{bottom:22.720000pt;}
.y109{bottom:26.080000pt;}
.y113{bottom:26.240000pt;}
.y11f{bottom:30.880000pt;}
.y104{bottom:32.793333pt;}
.y5c{bottom:33.760000pt;}
.y135{bottom:34.553333pt;}
.y12f{bottom:35.093139pt;}
.y140{bottom:38.372968pt;}
.y112{bottom:41.600000pt;}
.y11e{bottom:43.066667pt;}
.yef{bottom:47.680000pt;}
.y103{bottom:49.268000pt;}
.y124{bottom:49.905515pt;}
.y3{bottom:51.200000pt;}
.y5b{bottom:51.360000pt;}
.y138{bottom:52.382379pt;}
.y111{bottom:56.800000pt;}
.y102{bottom:64.628000pt;}
.y5a{bottom:68.960000pt;}
.y101{bottom:79.988000pt;}
.y23{bottom:80.192000pt;}
.y125{bottom:80.308501pt;}
.y43{bottom:80.672000pt;}
.y17b{bottom:81.152000pt;}
.y9a{bottom:83.072000pt;}
.y59{bottom:86.560000pt;}
.y134{bottom:86.918667pt;}
.yeb{bottom:87.878667pt;}
.y139{bottom:92.938518pt;}
.y100{bottom:95.348000pt;}
.y22{bottom:95.552000pt;}
.y17a{bottom:95.712000pt;}
.y42{bottom:96.032000pt;}
.y99{bottom:98.432000pt;}
.y1b8{bottom:100.672000pt;}
.y58{bottom:104.160000pt;}
.y145{bottom:106.951421pt;}
.yd0{bottom:108.192000pt;}
.y179{bottom:110.272000pt;}
.yff{bottom:110.708000pt;}
.y126{bottom:110.737428pt;}
.y21{bottom:110.912000pt;}
.y41{bottom:111.392000pt;}
.y98{bottom:113.792000pt;}
.y1b7{bottom:116.032000pt;}
.y137{bottom:121.570363pt;}
.y57{bottom:121.920000pt;}
.ycf{bottom:123.552000pt;}
.y178{bottom:124.832000pt;}
.y20{bottom:126.272000pt;}
.y40{bottom:126.752000pt;}
.y97{bottom:128.992000pt;}
.y141{bottom:130.427491pt;}
.y1b6{bottom:131.392000pt;}
.y13a{bottom:133.498582pt;}
.yce{bottom:138.906667pt;}
.y177{bottom:139.386667pt;}
.y56{bottom:139.520000pt;}
.y1f{bottom:141.466667pt;}
.y127{bottom:141.918647pt;}
.y3f{bottom:142.106667pt;}
.y96{bottom:144.346667pt;}
.y1b5{bottom:146.746667pt;}
.y176{bottom:153.946667pt;}
.ycd{bottom:154.266667pt;}
.y1e{bottom:156.826667pt;}
.y55{bottom:157.120000pt;}
.y3e{bottom:157.466667pt;}
.y95{bottom:159.706667pt;}
.y1b4{bottom:161.626667pt;}
.y175{bottom:168.506667pt;}
.ycc{bottom:169.466667pt;}
.y1d{bottom:172.186667pt;}
.y128{bottom:172.321633pt;}
.y3d{bottom:172.666667pt;}
.y13b{bottom:174.079256pt;}
.y54{bottom:174.720000pt;}
.y94{bottom:175.066667pt;}
.y1b3{bottom:176.186667pt;}
.y174{bottom:183.066667pt;}
.ycb{bottom:184.506667pt;}
.y107{bottom:186.426667pt;}
.y1c{bottom:187.546667pt;}
.y3c{bottom:188.026667pt;}
.y93{bottom:190.426667pt;}
.y1b2{bottom:191.226667pt;}
.y53{bottom:192.320000pt;}
.y143{bottom:193.114474pt;}
.y173{bottom:197.626667pt;}
.yca{bottom:199.866667pt;}
.y129{bottom:202.745372pt;}
.y1b{bottom:202.906667pt;}
.y3b{bottom:203.386667pt;}
.y92{bottom:205.786667pt;}
.y1b1{bottom:206.586667pt;}
.y52{bottom:210.120000pt;}
.y172{bottom:212.186667pt;}
.y13c{bottom:213.894442pt;}
.yfe{bottom:215.226667pt;}
.y1a{bottom:218.266667pt;}
.y3a{bottom:218.746667pt;}
.yc9{bottom:219.386667pt;}
.y91{bottom:220.986667pt;}
.y1b0{bottom:221.946667pt;}
.y171{bottom:226.746667pt;}
.y51{bottom:231.880000pt;}
.y12a{bottom:233.148357pt;}
.y19{bottom:233.466667pt;}
.y39{bottom:234.106667pt;}
.y90{bottom:236.346667pt;}
.y1af{bottom:236.826667pt;}
.y170{bottom:241.306667pt;}
.yfd{bottom:246.586667pt;}
.y18{bottom:248.826667pt;}
.y38{bottom:249.306667pt;}
.y50{bottom:249.480000pt;}
.y1ae{bottom:251.386667pt;}
.y8f{bottom:251.706667pt;}
.yc8{bottom:253.306667pt;}
.y13d{bottom:254.455488pt;}
.y16f{bottom:255.866667pt;}
.y12b{bottom:263.582472pt;}
.y17{bottom:264.186667pt;}
.y37{bottom:264.666667pt;}
.y1ad{bottom:265.306667pt;}
.y8e{bottom:267.066667pt;}
.y4f{bottom:267.560000pt;}
.yc7{bottom:268.506667pt;}
.y16e{bottom:270.426667pt;}
.yfb{bottom:277.786667pt;}
.y16{bottom:279.546667pt;}
.y1ac{bottom:279.866667pt;}
.y36{bottom:280.026667pt;}
.y8d{bottom:282.426667pt;}
.yc6{bottom:284.986667pt;}
.y4e{bottom:285.960000pt;}
.y1ab{bottom:294.466667pt;}
.y12c{bottom:294.763692pt;}
.y15{bottom:294.946667pt;}
.y13e{bottom:295.036162pt;}
.y35{bottom:295.426667pt;}
.y8c{bottom:297.666667pt;}
.y16d{bottom:299.586667pt;}
.yc5{bottom:300.226667pt;}
.y4d{bottom:305.640000pt;}
.y1aa{bottom:309.026667pt;}
.yfa{bottom:309.186667pt;}
.y14{bottom:310.146667pt;}
.y34{bottom:310.786667pt;}
.y8b{bottom:313.026667pt;}
.y16c{bottom:314.146667pt;}
.yc4{bottom:315.586667pt;}
.y1a9{bottom:323.586667pt;}
.y12d{bottom:325.187430pt;}
.y13{bottom:325.506667pt;}
.y33{bottom:326.146667pt;}
.y4c{bottom:328.200000pt;}
.y8a{bottom:328.386667pt;}
.y16b{bottom:328.706667pt;}
.yc3{bottom:330.946667pt;}
.y13f{bottom:335.587394pt;}
.y1a8{bottom:338.146667pt;}
.yf9{bottom:340.546667pt;}
.y12{bottom:340.866667pt;}
.y32{bottom:341.346667pt;}
.y16a{bottom:343.266667pt;}
.y89{bottom:343.746667pt;}
.yc2{bottom:346.306667pt;}
.y4b{bottom:350.760000pt;}
.y1a7{bottom:352.706667pt;}
.y12e{bottom:355.590416pt;}
.y11{bottom:356.226667pt;}
.y31{bottom:356.706667pt;}
.y169{bottom:357.826667pt;}
.y88{bottom:359.106667pt;}
.yc1{bottom:361.666667pt;}
.y1a6{bottom:367.266667pt;}
.y10{bottom:371.586667pt;}
.yf8{bottom:371.906667pt;}
.y30{bottom:372.066667pt;}
.y168{bottom:372.386667pt;}
.y4a{bottom:373.320000pt;}
.y87{bottom:374.466667pt;}
.yc0{bottom:376.706667pt;}
.y1a5{bottom:381.826667pt;}
.yf{bottom:386.946667pt;}
.y2f{bottom:387.426667pt;}
.y86{bottom:389.666667pt;}
.y49{bottom:393.800000pt;}
.y1a4{bottom:396.386667pt;}
.ybf{bottom:400.226667pt;}
.y167{bottom:401.506667pt;}
.ye{bottom:402.146667pt;}
.y2e{bottom:402.786667pt;}
.yf6{bottom:403.266667pt;}
.y85{bottom:405.026667pt;}
.y48{bottom:407.720000pt;}
.y1a3{bottom:410.946667pt;}
.ybe{bottom:415.586667pt;}
.y166{bottom:416.226667pt;}
.yd{bottom:417.506667pt;}
.y2d{bottom:418.146667pt;}
.y84{bottom:420.386667pt;}
.y47{bottom:421.480000pt;}
.y1a2{bottom:425.506667pt;}
.y165{bottom:430.786667pt;}
.ybd{bottom:430.946667pt;}
.yc{bottom:432.866667pt;}
.y2c{bottom:433.346667pt;}
.yf4{bottom:434.466667pt;}
.y46{bottom:435.266667pt;}
.y83{bottom:435.746667pt;}
.y1a1{bottom:440.066667pt;}
.y164{bottom:445.346667pt;}
.ybc{bottom:446.306667pt;}
.yb{bottom:448.226667pt;}
.y2b{bottom:448.706667pt;}
.y82{bottom:451.106667pt;}
.y1a0{bottom:454.626667pt;}
.y163{bottom:459.906667pt;}
.ybb{bottom:461.666667pt;}
.y45{bottom:462.626667pt;}
.ya{bottom:463.586667pt;}
.y2a{bottom:463.906667pt;}
.yee{bottom:465.826667pt;}
.y81{bottom:466.466667pt;}
.y19f{bottom:469.186667pt;}
.y162{bottom:474.466667pt;}
.yba{bottom:477.026667pt;}
.y9{bottom:478.946667pt;}
.yed{bottom:479.094667pt;}
.y29{bottom:480.386667pt;}
.y80{bottom:481.346667pt;}
.y19e{bottom:483.746667pt;}
.y161{bottom:489.026667pt;}
.y11d{bottom:489.666667pt;}
.yb9{bottom:492.226667pt;}
.yf1{bottom:493.026667pt;}
.y8{bottom:494.146667pt;}
.yec{bottom:494.454667pt;}
.y28{bottom:495.746667pt;}
.y19d{bottom:498.306667pt;}
.y7f{bottom:500.706667pt;}
.y160{bottom:503.586667pt;}
.yb8{bottom:507.586667pt;}
.y7{bottom:509.506667pt;}
.y27{bottom:511.106667pt;}
.y19c{bottom:512.866667pt;}
.y15f{bottom:518.146667pt;}
.yb7{bottom:522.946667pt;}
.y7e{bottom:524.386667pt;}
.y6{bottom:524.866667pt;}
.y26{bottom:526.146667pt;}
.y19b{bottom:527.426667pt;}
.y123{bottom:532.693333pt;}
.y15e{bottom:532.733333pt;}
.y130{bottom:536.578897pt;}
.yb6{bottom:538.333333pt;}
.y7d{bottom:539.773333pt;}
.y5{bottom:540.253333pt;}
.y25{bottom:541.693333pt;}
.y19a{bottom:542.013333pt;}
.y15d{bottom:547.293333pt;}
.yb5{bottom:553.693333pt;}
.y7c{bottom:555.133333pt;}
.y4{bottom:555.453333pt;}
.y199{bottom:556.573333pt;}
.y24{bottom:557.053333pt;}
.y15c{bottom:561.853333pt;}
.yb4{bottom:568.893333pt;}
.y7b{bottom:570.493333pt;}
.y198{bottom:571.293333pt;}
.y44{bottom:573.213333pt;}
.y15b{bottom:576.413333pt;}
.yb3{bottom:584.253333pt;}
.y7a{bottom:585.693333pt;}
.y197{bottom:585.853333pt;}
.y15a{bottom:590.973333pt;}
.yb2{bottom:599.613333pt;}
.y196{bottom:600.413333pt;}
.y79{bottom:601.053333pt;}
.y132{bottom:605.219500pt;}
.y159{bottom:605.693333pt;}
.yea{bottom:613.053333pt;}
.yde{bottom:614.013333pt;}
.yb1{bottom:614.973333pt;}
.y78{bottom:616.413333pt;}
.y158{bottom:621.053333pt;}
.ye9{bottom:628.253333pt;}
.ydd{bottom:629.373333pt;}
.y195{bottom:629.533333pt;}
.yb0{bottom:630.333333pt;}
.y77{bottom:631.773333pt;}
.y157{bottom:635.773333pt;}
.ye8{bottom:643.613333pt;}
.y194{bottom:644.093333pt;}
.ydc{bottom:644.573333pt;}
.yaf{bottom:645.373333pt;}
.y76{bottom:647.133333pt;}
.y156{bottom:652.733333pt;}
.ye7{bottom:658.653333pt;}
.ydb{bottom:659.933333pt;}
.yae{bottom:660.573333pt;}
.y75{bottom:662.333333pt;}
.y155{bottom:669.693333pt;}
.y193{bottom:673.213333pt;}
.ye6{bottom:674.013333pt;}
.yda{bottom:675.293333pt;}
.y74{bottom:677.693333pt;}
.yad{bottom:684.253333pt;}
.y154{bottom:684.893333pt;}
.y192{bottom:687.773333pt;}
.ye5{bottom:689.693333pt;}
.yd9{bottom:690.653333pt;}
.y73{bottom:693.053333pt;}
.yac{bottom:699.613333pt;}
.y153{bottom:700.253333pt;}
.y191{bottom:702.333333pt;}
.ye4{bottom:704.893333pt;}
.yd8{bottom:706.013333pt;}
.y72{bottom:708.413333pt;}
.yab{bottom:714.973333pt;}
.y152{bottom:715.613333pt;}
.y190{bottom:716.893333pt;}
.ye3{bottom:720.253333pt;}
.yd7{bottom:721.373333pt;}
.y71{bottom:723.773333pt;}
.yaa{bottom:730.333333pt;}
.y151{bottom:730.973333pt;}
.y18f{bottom:731.453333pt;}
.ye2{bottom:735.613333pt;}
.yd6{bottom:736.573333pt;}
.y70{bottom:738.973333pt;}
.ya9{bottom:745.693333pt;}
.y18e{bottom:746.013333pt;}
.y150{bottom:746.333333pt;}
.ye1{bottom:750.973333pt;}
.yd5{bottom:751.933333pt;}
.y6f{bottom:754.333333pt;}
.y18d{bottom:760.573333pt;}
.ya8{bottom:760.893333pt;}
.y14f{bottom:761.693333pt;}
.ye0{bottom:766.373333pt;}
.yd4{bottom:767.333333pt;}
.y6e{bottom:769.733333pt;}
.y18c{bottom:775.173333pt;}
.ya7{bottom:776.293333pt;}
.y14e{bottom:776.933333pt;}
.ydf{bottom:781.573333pt;}
.yd3{bottom:782.693333pt;}
.y6d{bottom:785.093333pt;}
.y18b{bottom:789.733333pt;}
.ya6{bottom:791.653333pt;}
.y14d{bottom:792.293333pt;}
.yd2{bottom:798.053333pt;}
.y6c{bottom:800.613333pt;}
.y18a{bottom:804.293333pt;}
.ya5{bottom:807.013333pt;}
.y14c{bottom:807.653333pt;}
.yd1{bottom:813.253333pt;}
.y6b{bottom:815.973333pt;}
.y189{bottom:818.853333pt;}
.ya4{bottom:822.373333pt;}
.y14b{bottom:823.013333pt;}
.y106{bottom:830.213333pt;}
.y6a{bottom:831.333333pt;}
.y188{bottom:833.413333pt;}
.ya3{bottom:837.733333pt;}
.y14a{bottom:838.373333pt;}
.y69{bottom:846.533333pt;}
.y187{bottom:847.973333pt;}
.ya2{bottom:852.613333pt;}
.y149{bottom:853.733333pt;}
.y68{bottom:861.573333pt;}
.y186{bottom:862.533333pt;}
.ya1{bottom:867.973333pt;}
.y148{bottom:868.933333pt;}
.y185{bottom:877.093333pt;}
.y67{bottom:881.253333pt;}
.y147{bottom:884.293333pt;}
.ya0{bottom:891.653333pt;}
.y66{bottom:898.053333pt;}
.y146{bottom:899.653333pt;}
.y10c{bottom:903.813333pt;}
.y184{bottom:906.213333pt;}
.y9f{bottom:907.013333pt;}
.y65{bottom:915.013333pt;}
.y183{bottom:920.773333pt;}
.y9e{bottom:922.373333pt;}
.y10e{bottom:927.333333pt;}
.y11c{bottom:928.773333pt;}
.y115{bottom:930.053333pt;}
.y64{bottom:930.373333pt;}
.y182{bottom:935.333333pt;}
.y9d{bottom:937.573333pt;}
.y11b{bottom:944.133333pt;}
.y63{bottom:945.573333pt;}
.y181{bottom:949.893333pt;}
.y108{bottom:951.013333pt;}
.y9c{bottom:952.933333pt;}
.y11a{bottom:959.493333pt;}
.y62{bottom:960.933333pt;}
.y180{bottom:964.453333pt;}
.y9b{bottom:967.973333pt;}
.y119{bottom:974.853333pt;}
.y61{bottom:976.293333pt;}
.y10a{bottom:978.213333pt;}
.y17f{bottom:979.013333pt;}
.y118{bottom:990.053333pt;}
.y60{bottom:991.653333pt;}
.y17e{bottom:993.733333pt;}
.y117{bottom:1005.440000pt;}
.y5f{bottom:1007.040000pt;}
.y17d{bottom:1008.320000pt;}
.y116{bottom:1020.800000pt;}
.y5e{bottom:1022.400000pt;}
.y17c{bottom:1022.880000pt;}
.y2{bottom:1038.400000pt;}
.y1{bottom:1057.760000pt;}
.h1c{height:22.880000pt;}
.h1b{height:23.040000pt;}
.h27{height:24.338590pt;}
.h20{height:25.733585pt;}
.h18{height:26.432000pt;}
.h13{height:26.560000pt;}
.h14{height:30.560000pt;}
.h11{height:30.592000pt;}
.h12{height:30.720000pt;}
.h15{height:30.752000pt;}
.h26{height:40.021356pt;}
.h1f{height:42.315226pt;}
.h2d{height:45.326250pt;}
.h1a{height:46.560000pt;}
.hc{height:46.593750pt;}
.hb{height:47.109375pt;}
.h7{height:47.621250pt;}
.ha{height:48.375000pt;}
.h2a{height:49.304737pt;}
.h2c{height:49.597187pt;}
.h2b{height:49.621875pt;}
.h2e{height:50.955000pt;}
.h5{height:52.134375pt;}
.h23{height:52.799556pt;}
.h8{height:53.535000pt;}
.h17{height:53.632000pt;}
.he{height:55.402500pt;}
.h28{height:57.433446pt;}
.h6{height:58.238750pt;}
.h19{height:59.150000pt;}
.h4{height:59.340000pt;}
.h21{height:60.725311pt;}
.h2{height:60.762500pt;}
.hd{height:62.781250pt;}
.h3{height:62.812500pt;}
.h10{height:89.152000pt;}
.h16{height:198.426667pt;}
.h29{height:251.502039pt;}
.h22{height:267.473640pt;}
.h25{height:358.429637pt;}
.h1e{height:381.324001pt;}
.h24{height:392.980000pt;}
.h1d{height:424.373333pt;}
.h9{height:473.826667pt;}
.hf{height:506.460000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w13{width:22.917754pt;}
.w16{width:36.904746pt;}
.w9{width:58.400000pt;}
.w8{width:58.432000pt;}
.wc{width:71.872000pt;}
.wb{width:103.200000pt;}
.we{width:108.800000pt;}
.wf{width:108.832000pt;}
.w4{width:150.586667pt;}
.w15{width:178.626833pt;}
.w12{width:191.256684pt;}
.w7{width:235.546667pt;}
.w6{width:235.746667pt;}
.wd{width:437.346667pt;}
.w5{width:471.933333pt;}
.w14{width:542.514507pt;}
.w11{width:593.598779pt;}
.w3{width:661.080000pt;}
.w2{width:664.280000pt;}
.w10{width:670.840000pt;}
.wa{width:692.120000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x32{left:2.357555pt;}
.x1f{left:6.720000pt;}
.xc{left:10.078667pt;}
.x3b{left:14.029700pt;}
.x33{left:15.024153pt;}
.x10{left:17.118667pt;}
.x1d{left:22.880000pt;}
.x16{left:24.320000pt;}
.x29{left:25.920000pt;}
.x28{left:27.040000pt;}
.x2c{left:28.510667pt;}
.x3c{left:29.533625pt;}
.x27{left:32.480000pt;}
.xd{left:44.350667pt;}
.x23{left:49.600000pt;}
.xb{left:58.590667pt;}
.x37{left:61.991128pt;}
.x2{left:66.080000pt;}
.x36{left:67.175483pt;}
.x2f{left:70.358295pt;}
.x2a{left:73.600000pt;}
.x11{left:76.160000pt;}
.x2e{left:79.041256pt;}
.x14{left:81.320000pt;}
.x1e{left:95.232000pt;}
.x2d{left:97.133333pt;}
.x35{left:122.666667pt;}
.x22{left:129.440000pt;}
.x38{left:133.594197pt;}
.x30{left:143.852981pt;}
.x3a{left:146.278824pt;}
.x1{left:159.546667pt;}
.x20{left:199.066667pt;}
.x13{left:212.226667pt;}
.x12{left:227.386667pt;}
.xe{left:241.185333pt;}
.x21{left:271.586667pt;}
.x17{left:286.466667pt;}
.x31{left:312.133969pt;}
.xa{left:332.065333pt;}
.x39{left:338.935357pt;}
.x18{left:345.666667pt;}
.x7{left:379.612000pt;}
.x24{left:381.026667pt;}
.x19{left:404.706667pt;}
.x3{left:411.106667pt;}
.xf{left:418.626667pt;}
.x3d{left:420.573333pt;}
.x6{left:430.492000pt;}
.x4{left:438.972000pt;}
.x8{left:454.812000pt;}
.x15{left:463.773333pt;}
.x25{left:490.493333pt;}
.x1a{left:522.813333pt;}
.x9{left:542.212000pt;}
.x1b{left:581.853333pt;}
.x5{left:583.972000pt;}
.x26{left:600.133333pt;}
.x34{left:606.692000pt;}
.x2b{left:632.292000pt;}
.x1c{left:640.933333pt;}
}




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