
    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_a668eb7108a2b1224bdd23d4.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1ac15b8b7c8e9cab27e9f8c4.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_056879e23feb7abd5e8ad368.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b8c7199508e1088c1f356520.woff')format("woff");}.ff4{font-family:ff4;line-height:0.706543;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_e497fd59ff47b8db00426889.woff')format("woff");}.ff5{font-family:ff5;line-height:0.708008;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_9474621be3ff9f903f0353f4.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_535441790b62d30a6b3e1e39.woff')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_06daf5d501db5060b12b20f3.woff')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_9f16296d6ec3173a12ccb418.woff')format("woff");}.ff9{font-family:ff9;line-height:1.909180;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_ba51bdec1f469f341e36dd41.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_08745d1545ff799d5ff8cdec.woff')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c49d17f81274cf464f90f5f9.woff')format("woff");}.ffc{font-family:ffc;line-height:0.774902;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:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:14.400000px;}
.v5{vertical-align:21.600000px;}
.v6{vertical-align:26.640000px;}
.v2{vertical-align:40.320000px;}
.v1{vertical-align:54.720000px;}
.ls12{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.087000px;}
.lse{letter-spacing:-0.078600px;}
.ls11{letter-spacing:-0.072000px;}
.ls9{letter-spacing:-0.017280px;}
.ls8{letter-spacing:-0.008640px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.008640px;}
.ls2{letter-spacing:0.012960px;}
.ls3{letter-spacing:0.017280px;}
.ls5{letter-spacing:0.025920px;}
.lsc{letter-spacing:0.034560px;}
.ls6{letter-spacing:0.150000px;}
.ls1{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.720000px;}
.ls10{letter-spacing:2.801520px;}
.lsb{letter-spacing:4.376880px;}
.lsa{letter-spacing:20.216880px;}
.lsd{letter-spacing:64.200000px;}
.ls13{letter-spacing:85.104000px;}
.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;}
}
.ws1{word-spacing:-19.465920px;}
.ws3{word-spacing:-19.457280px;}
.ws2{word-spacing:-19.448640px;}
.ws6{word-spacing:-19.431360px;}
.ws4{word-spacing:-19.422720px;}
.wsa{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.712000px;}
.ws8{word-spacing:-15.840000px;}
.wsd{word-spacing:-15.768000px;}
.wse{word-spacing:-15.552000px;}
.ws0{word-spacing:-14.940000px;}
.ws9{word-spacing:-11.246400px;}
.wsb{word-spacing:-11.167800px;}
.wsc{word-spacing:-11.159400px;}
.ws10{word-spacing:-0.072000px;}
.ws5{word-spacing:0.000000px;}
.ws7{word-spacing:6.048000px;}
._26{margin-left:-389.088000px;}
._28{margin-left:-373.032000px;}
._1f{margin-left:-324.073920px;}
._21{margin-left:-309.606960px;}
._22{margin-left:-201.560400px;}
._27{margin-left:-199.080000px;}
._25{margin-left:-177.120000px;}
._29{margin-left:-168.984000px;}
._20{margin-left:-165.106800px;}
._1e{margin-left:-146.880000px;}
._1c{margin-left:-3.983520px;}
._1a{margin-left:-2.300880px;}
._2{margin-left:-1.228080px;}
._0{width:1.260480px;}
._5{width:2.341440px;}
._12{width:3.960000px;}
._c{width:5.544000px;}
._d{width:6.768000px;}
._13{width:7.992000px;}
._6{width:9.072000px;}
._7{width:10.296000px;}
._e{width:12.024000px;}
._16{width:13.217520px;}
._15{width:15.035520px;}
._14{width:16.140480px;}
._11{width:19.080000px;}
._1b{width:20.520000px;}
._19{width:22.032000px;}
._23{width:23.184000px;}
._24{width:24.264000px;}
._f{width:27.504000px;}
._10{width:28.584000px;}
._8{width:29.736000px;}
._9{width:31.427040px;}
._1d{width:34.272000px;}
._a{width:38.016000px;}
._b{width:39.240000px;}
._17{width:42.192000px;}
._18{width:43.344000px;}
._2b{width:44.496000px;}
._2a{width:74.304000px;}
._4{width:204.021840px;}
._1{width:1208.832480px;}
._3{width:2033.296320px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs8{font-size:51.120000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:120.240000px;}
.y171{bottom:-23.205000px;}
.y0{bottom:0.000000px;}
.yc3{bottom:3.951000px;}
.y126{bottom:3.960000px;}
.yf2{bottom:4.131000px;}
.ybe{bottom:4.485000px;}
.yb7{bottom:4.500000px;}
.yc8{bottom:4.515000px;}
.y10b{bottom:4.530000px;}
.yc2{bottom:4.671000px;}
.y125{bottom:4.680000px;}
.yf3{bottom:4.851000px;}
.y164{bottom:5.940000px;}
.y168{bottom:6.135000px;}
.y166{bottom:6.300000px;}
.y162{bottom:6.480000px;}
.y88{bottom:7.395000px;}
.y7f{bottom:7.755000px;}
.y7d{bottom:7.935000px;}
.y16a{bottom:8.100000px;}
.y160{bottom:8.280000px;}
.y90{bottom:11.160000px;}
.y8d{bottom:11.520000px;}
.y177{bottom:13.140000px;}
.y179{bottom:13.680000px;}
.y175{bottom:13.695000px;}
.y15c{bottom:13.860000px;}
.y173{bottom:13.875000px;}
.y17c{bottom:13.905000px;}
.yde{bottom:14.025000px;}
.ydb{bottom:14.040000px;}
.ybb{bottom:14.205000px;}
.ycf{bottom:14.220000px;}
.y10a{bottom:14.250000px;}
.yd5{bottom:14.265000px;}
.ydf{bottom:14.745000px;}
.ydc{bottom:14.760000px;}
.yd6{bottom:14.805000px;}
.ybc{bottom:14.925000px;}
.yd0{bottom:14.940000px;}
.y4b{bottom:15.120000px;}
.y85{bottom:15.495000px;}
.y170{bottom:15.855000px;}
.y7b{bottom:16.380000px;}
.y92{bottom:16.560000px;}
.y83{bottom:16.575000px;}
.y8a{bottom:18.375000px;}
.y94{bottom:18.705000px;}
.y15e{bottom:21.270000px;}
.y79{bottom:23.400000px;}
.yfb{bottom:24.480000px;}
.yc0{bottom:25.185000px;}
.yd1{bottom:25.200000px;}
.y87{bottom:25.215000px;}
.ybd{bottom:25.230000px;}
.yd7{bottom:25.245000px;}
.yf7{bottom:25.560000px;}
.yf0{bottom:25.905000px;}
.y49{bottom:26.100000px;}
.y8f{bottom:28.980000px;}
.y8c{bottom:29.160000px;}
.y16c{bottom:29.175000px;}
.ye1{bottom:34.740000px;}
.yff{bottom:34.770000px;}
.yca{bottom:34.920000px;}
.ye2{bottom:35.460000px;}
.y100{bottom:35.490000px;}
.ycb{bottom:35.640000px;}
.ye6{bottom:35.820000px;}
.yd3{bottom:36.045000px;}
.y48{bottom:38.160000px;}
.y4c{bottom:38.340000px;}
.y7{bottom:44.676000px;}
.yc6{bottom:45.900000px;}
.y102{bottom:45.930000px;}
.yf6{bottom:46.260000px;}
.yb9{bottom:57.045000px;}
.ye9{bottom:57.060000px;}
.y6{bottom:58.536000px;}
.y4a{bottom:64.980000px;}
.ycc{bottom:66.600000px;}
.y101{bottom:66.630000px;}
.yfd{bottom:77.565000px;}
.y106{bottom:78.150000px;}
.y2c{bottom:131.076000px;}
.yef{bottom:132.705000px;}
.y5a{bottom:132.876000px;}
.y13f{bottom:133.596000px;}
.y77{bottom:133.776000px;}
.y2b{bottom:136.296000px;}
.yd9{bottom:140.970000px;}
.yc1{bottom:143.325000px;}
.y2a{bottom:149.256000px;}
.y119{bottom:151.230000px;}
.y59{bottom:153.570000px;}
.y13e{bottom:154.290000px;}
.yf1{bottom:154.665000px;}
.yb8{bottom:165.105000px;}
.y118{bottom:171.930000px;}
.y76{bottom:174.090000px;}
.y58{bottom:174.270000px;}
.y13d{bottom:174.990000px;}
.y15a{bottom:183.090000px;}
.y1a0{bottom:185.070000px;}
.y93{bottom:188.145000px;}
.y29{bottom:193.350000px;}
.y57{bottom:194.970000px;}
.y13c{bottom:195.690000px;}
.yec{bottom:196.785000px;}
.y159{bottom:203.790000px;}
.y19f{bottom:205.770000px;}
.ybf{bottom:207.225000px;}
.y28{bottom:210.630000px;}
.y117{bottom:210.990000px;}
.y75{bottom:215.130000px;}
.y56{bottom:215.670000px;}
.y13b{bottom:216.390000px;}
.y158{bottom:224.490000px;}
.y19e{bottom:226.470000px;}
.y27{bottom:227.730000px;}
.y13a{bottom:233.325000px;}
.y55{bottom:236.370000px;}
.yee{bottom:238.905000px;}
.y157{bottom:245.190000px;}
.yba{bottom:249.345000px;}
.y116{bottom:251.130000px;}
.y139{bottom:254.745000px;}
.y74{bottom:255.450000px;}
.y54{bottom:257.070000px;}
.y26{bottom:263.730000px;}
.y19d{bottom:265.170000px;}
.y156{bottom:265.890000px;}
.y115{bottom:271.830000px;}
.y86{bottom:276.720000px;}
.y53{bottom:277.815000px;}
.yed{bottom:281.055000px;}
.y25{bottom:284.475000px;}
.y81{bottom:285.540000px;}
.y19c{bottom:285.915000px;}
.y155{bottom:286.635000px;}
.yb6{bottom:291.675000px;}
.y114{bottom:292.575000px;}
.y73{bottom:295.995000px;}
.y138{bottom:296.895000px;}
.y52{bottom:298.515000px;}
.y19b{bottom:306.615000px;}
.y154{bottom:307.335000px;}
.y113{bottom:313.275000px;}
.y137{bottom:318.315000px;}
.y51{bottom:319.215000px;}
.ye8{bottom:323.175000px;}
.y24{bottom:324.975000px;}
.y1bb{bottom:326.055000px;}
.y153{bottom:327.855000px;}
.yb5{bottom:332.355000px;}
.y112{bottom:333.975000px;}
.y72{bottom:336.495000px;}
.y50{bottom:339.915000px;}
.y19a{bottom:345.315000px;}
.y23{bottom:345.675000px;}
.y1ba{bottom:346.755000px;}
.y152{bottom:348.555000px;}
.y151{bottom:349.275000px;}
.y111{bottom:354.675000px;}
.y4f{bottom:360.615000px;}
.y136{bottom:361.335000px;}
.y84{bottom:364.740000px;}
.yeb{bottom:365.475000px;}
.y199{bottom:366.015000px;}
.y22{bottom:366.375000px;}
.y1b9{bottom:367.455000px;}
.y150{bottom:369.255000px;}
.y80{bottom:370.500000px;}
.yb4{bottom:371.235000px;}
.y110{bottom:375.375000px;}
.y71{bottom:376.815000px;}
.y4e{bottom:381.315000px;}
.y135{bottom:382.755000px;}
.y198{bottom:386.715000px;}
.y21{bottom:387.075000px;}
.yb3{bottom:391.935000px;}
.y10f{bottom:396.075000px;}
.y4d{bottom:402.375000px;}
.y134{bottom:404.175000px;}
.y1b8{bottom:406.155000px;}
.yea{bottom:407.595000px;}
.y20{bottom:407.775000px;}
.y89{bottom:412.620000px;}
.y70{bottom:417.315000px;}
.y197{bottom:425.415000px;}
.y133{bottom:425.595000px;}
.y1b7{bottom:426.855000px;}
.y1f{bottom:428.475000px;}
.yb2{bottom:430.635000px;}
.y10e{bottom:434.955000px;}
.y47{bottom:437.115000px;}
.y196{bottom:446.115000px;}
.y132{bottom:447.015000px;}
.y1b6{bottom:447.555000px;}
.y16f{bottom:447.720000px;}
.y14f{bottom:448.455000px;}
.y1e{bottom:449.175000px;}
.ye5{bottom:449.715000px;}
.y7e{bottom:450.780000px;}
.y82{bottom:454.560000px;}
.y6f{bottom:457.635000px;}
.y131{bottom:468.615000px;}
.yb1{bottom:469.335000px;}
.y1d{bottom:469.875000px;}
.y10d{bottom:474.915000px;}
.y195{bottom:484.815000px;}
.y1b5{bottom:486.255000px;}
.y14e{bottom:487.155000px;}
.yb0{bottom:490.035000px;}
.y1c{bottom:490.575000px;}
.ye7{bottom:491.835000px;}
.y6e{bottom:498.135000px;}
.y167{bottom:501.720000px;}
.y194{bottom:505.515000px;}
.y1b4{bottom:506.955000px;}
.yaf{bottom:510.735000px;}
.y1b{bottom:511.275000px;}
.y130{bottom:511.455000px;}
.y10c{bottom:511.815000px;}
.y14d{bottom:525.855000px;}
.y193{bottom:526.215000px;}
.yae{bottom:531.435000px;}
.y1a{bottom:531.975000px;}
.y12f{bottom:532.875000px;}
.yd8{bottom:533.955000px;}
.y7c{bottom:535.920000px;}
.y6d{bottom:538.455000px;}
.y1b3{bottom:545.655000px;}
.y17b{bottom:546.540000px;}
.y46{bottom:548.355000px;}
.y105{bottom:553.935000px;}
.y12e{bottom:554.295000px;}
.y14c{bottom:564.585000px;}
.y192{bottom:564.945000px;}
.y1b2{bottom:566.385000px;}
.y7a{bottom:567.285000px;}
.y45{bottom:569.265000px;}
.yad{bottom:570.165000px;}
.y19{bottom:570.345000px;}
.y165{bottom:572.505000px;}
.y12d{bottom:575.745000px;}
.ye4{bottom:576.105000px;}
.y6c{bottom:578.985000px;}
.y191{bottom:585.645000px;}
.y1b1{bottom:587.085000px;}
.y44{bottom:589.965000px;}
.yac{bottom:590.865000px;}
.y109{bottom:596.085000px;}
.y17f{bottom:597.165000px;}
.y14b{bottom:603.285000px;}
.y190{bottom:606.345000px;}
.y169{bottom:610.485000px;}
.y43{bottom:610.665000px;}
.y18{bottom:610.845000px;}
.yab{bottom:611.565000px;}
.y12c{bottom:616.605000px;}
.ye3{bottom:618.225000px;}
.y6b{bottom:619.485000px;}
.y1b0{bottom:625.785000px;}
.y18f{bottom:627.045000px;}
.y42{bottom:631.365000px;}
.yaa{bottom:632.265000px;}
.y78{bottom:637.485000px;}
.y17a{bottom:637.665000px;}
.y108{bottom:638.205000px;}
.y14a{bottom:641.985000px;}
.y1af{bottom:646.485000px;}
.y163{bottom:651.165000px;}
.y12b{bottom:651.705000px;}
.y17{bottom:651.885000px;}
.ya9{bottom:652.965000px;}
.y6a{bottom:659.805000px;}
.ye0{bottom:660.525000px;}
.y18e{bottom:665.745000px;}
.y1ae{bottom:667.185000px;}
.y41{bottom:672.585000px;}
.y12a{bottom:673.125000px;}
.ya8{bottom:673.665000px;}
.y15{bottom:674.565000px;}
.y107{bottom:680.325000px;}
.y178{bottom:680.505000px;}
.y149{bottom:680.685000px;}
.y16{bottom:682.125000px;}
.y18d{bottom:686.445000px;}
.y8e{bottom:686.805000px;}
.y40{bottom:693.285000px;}
.ya7{bottom:694.365000px;}
.y129{bottom:694.545000px;}
.y69{bottom:700.305000px;}
.y1ad{bottom:705.885000px;}
.y17e{bottom:706.245000px;}
.y3f{bottom:713.985000px;}
.ya6{bottom:715.065000px;}
.y128{bottom:715.965000px;}
.y14{bottom:716.325000px;}
.y15f{bottom:719.025000px;}
.y148{bottom:719.385000px;}
.y104{bottom:722.625000px;}
.yfc{bottom:722.640000px;}
.y18c{bottom:725.145000px;}
.y1ac{bottom:726.585000px;}
.y161{bottom:734.505000px;}
.y3e{bottom:734.685000px;}
.ya5{bottom:735.765000px;}
.y127{bottom:737.565000px;}
.y13{bottom:738.825000px;}
.y68{bottom:740.625000px;}
.ydd{bottom:744.060000px;}
.y18b{bottom:745.845000px;}
.y1ab{bottom:747.285000px;}
.y3d{bottom:755.385000px;}
.ya4{bottom:756.465000px;}
.y147{bottom:758.085000px;}
.y124{bottom:758.985000px;}
.y12{bottom:761.505000px;}
.y103{bottom:764.745000px;}
.y17d{bottom:769.245000px;}
.y3c{bottom:776.085000px;}
.ya3{bottom:777.165000px;}
.y8b{bottom:780.585000px;}
.y67{bottom:781.125000px;}
.y18a{bottom:784.545000px;}
.y1aa{bottom:785.985000px;}
.yda{bottom:786.165000px;}
.y3b{bottom:796.785000px;}
.ya2{bottom:797.865000px;}
.y11{bottom:800.385000px;}
.y15b{bottom:805.245000px;}
.y1a9{bottom:806.685000px;}
.yfe{bottom:806.880000px;}
.y91{bottom:816.045000px;}
.y3a{bottom:817.485000px;}
.ya1{bottom:818.565000px;}
.y66{bottom:821.445000px;}
.y10{bottom:822.705000px;}
.y1a8{bottom:827.385000px;}
.yd2{bottom:828.285000px;}
.y15d{bottom:833.880000px;}
.y146{bottom:835.485000px;}
.y39{bottom:838.185000px;}
.ya0{bottom:839.310000px;}
.y123{bottom:839.850000px;}
.y189{bottom:843.990000px;}
.yf{bottom:845.610000px;}
.y38{bottom:858.930000px;}
.y9f{bottom:860.010000px;}
.y122{bottom:860.370000px;}
.y65{bottom:861.990000px;}
.y188{bottom:864.690000px;}
.y1a7{bottom:866.130000px;}
.yd4{bottom:870.450000px;}
.y145{bottom:874.230000px;}
.y176{bottom:875.115000px;}
.y37{bottom:879.630000px;}
.y9e{bottom:880.710000px;}
.y16d{bottom:881.055000px;}
.y121{bottom:881.610000px;}
.ye{bottom:884.490000px;}
.y187{bottom:885.390000px;}
.y1a6{bottom:886.830000px;}
.yf9{bottom:890.430000px;}
.y36{bottom:900.330000px;}
.y9d{bottom:901.410000px;}
.y64{bottom:902.130000px;}
.y120{bottom:903.030000px;}
.yd{bottom:906.810000px;}
.y1a5{bottom:907.530000px;}
.yce{bottom:912.570000px;}
.y144{bottom:912.930000px;}
.y35{bottom:921.030000px;}
.y9c{bottom:922.110000px;}
.y63{bottom:922.830000px;}
.y11f{bottom:923.730000px;}
.y186{bottom:923.910000px;}
.y174{bottom:928.035000px;}
.yc{bottom:929.490000px;}
.y34{bottom:941.730000px;}
.y9b{bottom:942.810000px;}
.y62{bottom:943.530000px;}
.y11e{bottom:944.430000px;}
.y1a4{bottom:946.230000px;}
.y143{bottom:951.630000px;}
.yfa{bottom:953.250000px;}
.ycd{bottom:954.675000px;}
.yc9{bottom:954.690000px;}
.yb{bottom:955.230000px;}
.y172{bottom:962.235000px;}
.y33{bottom:962.430000px;}
.y9a{bottom:963.510000px;}
.y61{bottom:964.230000px;}
.y185{bottom:964.590000px;}
.y11d{bottom:965.130000px;}
.y11c{bottom:965.850000px;}
.y1a3{bottom:966.930000px;}
.y16b{bottom:973.935000px;}
.y32{bottom:983.130000px;}
.y99{bottom:984.210000px;}
.y60{bottom:984.930000px;}
.y11b{bottom:985.830000px;}
.y1a2{bottom:987.630000px;}
.y142{bottom:990.330000px;}
.yf5{bottom:995.370000px;}
.y184{bottom:1003.290000px;}
.y31{bottom:1003.830000px;}
.y98{bottom:1004.910000px;}
.y5f{bottom:1005.630000px;}
.ya{bottom:1007.790000px;}
.y183{bottom:1023.990000px;}
.y11a{bottom:1024.350000px;}
.y30{bottom:1024.530000px;}
.y16e{bottom:1025.235000px;}
.y97{bottom:1025.610000px;}
.y5e{bottom:1026.330000px;}
.y141{bottom:1029.030000px;}
.yf8{bottom:1037.490000px;}
.yc7{bottom:1038.375000px;}
.yc5{bottom:1038.390000px;}
.y9{bottom:1042.170000px;}
.y96{bottom:1044.330000px;}
.y182{bottom:1044.510000px;}
.y2f{bottom:1045.230000px;}
.y1a1{bottom:1047.030000px;}
.y95{bottom:1064.490000px;}
.y5d{bottom:1065.030000px;}
.y2e{bottom:1065.930000px;}
.y140{bottom:1067.730000px;}
.y8{bottom:1076.730000px;}
.yf4{bottom:1079.790000px;}
.y181{bottom:1084.470000px;}
.y5c{bottom:1085.730000px;}
.yc4{bottom:1101.210000px;}
.y2d{bottom:1104.450000px;}
.y180{bottom:1105.170000px;}
.y5b{bottom:1106.430000px;}
.y5{bottom:1126.080000px;}
.y4{bottom:1143.720000px;}
.y3{bottom:1160.820000px;}
.y2{bottom:1178.100000px;}
.y1{bottom:1195.380000px;}
.h22{height:20.685000px;}
.h3f{height:20.700000px;}
.h27{height:20.730000px;}
.h26{height:21.051000px;}
.h36{height:21.231000px;}
.h3e{height:21.240000px;}
.h44{height:25.200000px;}
.h43{height:25.740000px;}
.h1a{height:25.920000px;}
.h19{height:26.685000px;}
.h10{height:26.995781px;}
.h45{height:28.980000px;}
.h42{height:29.340000px;}
.h49{height:30.060000px;}
.h40{height:30.240000px;}
.h4b{height:30.285000px;}
.h47{height:32.220000px;}
.h21{height:35.460000px;}
.hb{height:37.494141px;}
.h25{height:41.385000px;}
.h30{height:41.400000px;}
.h24{height:41.421000px;}
.h2e{height:41.422500px;}
.h32{height:41.430000px;}
.h6{height:41.756133px;}
.h1c{height:41.760000px;}
.h18{height:43.020000px;}
.h1b{height:43.560000px;}
.h20{height:43.942500px;}
.h4{height:45.184219px;}
.h1d{height:46.980000px;}
.h4a{height:49.113281px;}
.h46{height:49.320000px;}
.hf{height:50.027344px;}
.h1f{height:50.580000px;}
.h1e{height:50.760000px;}
.hc{height:52.998047px;}
.h41{height:55.822500px;}
.h17{height:57.240000px;}
.h2{height:58.651172px;}
.h5{height:58.905000px;}
.h3{height:60.226875px;}
.h38{height:62.085000px;}
.h28{height:62.091000px;}
.h29{height:62.100000px;}
.h35{height:63.351000px;}
.h14{height:63.400781px;}
.he{height:70.664062px;}
.h48{height:72.562500px;}
.h15{height:74.004654px;}
.h16{height:76.279219px;}
.h9{height:76.317188px;}
.hd{height:78.367500px;}
.h8{height:82.676953px;}
.h2a{height:82.785000px;}
.h2b{height:82.791000px;}
.h31{height:82.795500px;}
.h2c{height:82.800000px;}
.h3a{height:82.821000px;}
.h3b{height:82.822500px;}
.h33{height:83.505000px;}
.h2d{height:83.542500px;}
.h13{height:89.296875px;}
.h3d{height:90.040781px;}
.h11{height:91.785000px;}
.h37{height:104.205000px;}
.h7{height:121.179375px;}
.h23{height:125.661000px;}
.h34{height:125.805000px;}
.h12{height:144.016875px;}
.h39{height:167.055000px;}
.h3c{height:167.790000px;}
.h2f{height:293.610000px;}
.ha{height:1262.864960px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1b{width:65.505000px;}
.w2d{width:69.840000px;}
.w2b{width:72.540000px;}
.w13{width:74.901000px;}
.w31{width:75.262500px;}
.w30{width:78.120000px;}
.w1d{width:78.165000px;}
.w2c{width:78.840000px;}
.w1e{width:81.405000px;}
.w2f{width:82.980000px;}
.w2e{width:83.160000px;}
.w1c{width:83.541000px;}
.w29{width:83.700000px;}
.w22{width:89.280000px;}
.w20{width:90.900000px;}
.w6{width:95.220000px;}
.wf{width:95.782500px;}
.w10{width:95.962500px;}
.w21{width:98.100000px;}
.wb{width:99.202500px;}
.w18{width:100.281000px;}
.wa{width:101.362500px;}
.w9{width:101.722500px;}
.wc{width:101.925000px;}
.w32{width:102.262500px;}
.w33{width:102.442500px;}
.w7{width:104.040000px;}
.w8{width:104.062500px;}
.wd{width:105.502500px;}
.w25{width:108.922500px;}
.w1f{width:112.162500px;}
.w2a{width:113.242500px;}
.we{width:113.445000px;}
.w15{width:126.561000px;}
.w16{width:126.562500px;}
.w27{width:128.902500px;}
.w23{width:133.065000px;}
.w2{width:136.282500px;}
.w26{width:137.385000px;}
.w24{width:148.140000px;}
.w12{width:165.090000px;}
.w1a{width:190.830000px;}
.w17{width:209.370000px;}
.w19{width:296.481000px;}
.w11{width:325.305000px;}
.w4{width:326.901000px;}
.w5{width:327.315000px;}
.w14{width:333.930000px;}
.w28{width:372.660000px;}
.w3{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x40{left:7.740000px;}
.x39{left:11.145000px;}
.x2e{left:12.405000px;}
.x2b{left:13.500000px;}
.x20{left:15.120000px;}
.x52{left:16.905000px;}
.x4e{left:18.750000px;}
.x2c{left:21.630000px;}
.x24{left:23.430000px;}
.x5e{left:25.035000px;}
.x2f{left:26.265000px;}
.x25{left:28.110000px;}
.x32{left:29.160000px;}
.x1e{left:32.751000px;}
.x22{left:34.950000px;}
.x3c{left:39.810000px;}
.x3e{left:41.796000px;}
.x5a{left:43.725000px;}
.x43{left:45.216000px;}
.x64{left:47.730000px;}
.x42{left:52.236000px;}
.x37{left:53.316000px;}
.x2{left:55.777500px;}
.x41{left:57.270000px;}
.x3d{left:61.770000px;}
.x57{left:63.885000px;}
.x3f{left:65.190000px;}
.x44{left:66.270000px;}
.x54{left:72.210000px;}
.x50{left:75.270000px;}
.x55{left:77.565000px;}
.x49{left:82.080000px;}
.x48{left:86.580000px;}
.x17{left:88.005000px;}
.x4f{left:93.225000px;}
.x36{left:95.220000px;}
.x56{left:96.285000px;}
.x51{left:98.805000px;}
.x1d{left:106.065000px;}
.x59{left:107.805000px;}
.x58{left:112.845000px;}
.x53{left:117.345000px;}
.x16{left:119.565000px;}
.x1{left:127.656000px;}
.x33{left:131.076000px;}
.x15{left:132.516000px;}
.x19{left:144.705000px;}
.x4{left:147.276000px;}
.x8{left:149.076000px;}
.x3{left:151.230000px;}
.x1c{left:153.030000px;}
.x69{left:156.465000px;}
.x34{left:158.070000px;}
.x13{left:159.510000px;}
.x18{left:173.145000px;}
.x11{left:178.230000px;}
.x12{left:180.750000px;}
.x66{left:186.330000px;}
.xb{left:192.090000px;}
.x4a{left:221.790000px;}
.x5c{left:229.725000px;}
.x65{left:231.705000px;}
.x35{left:233.490000px;}
.x1a{left:239.070000px;}
.x29{left:245.205000px;}
.x38{left:261.045000px;}
.x30{left:279.405000px;}
.x47{left:291.285000px;}
.x67{left:292.545000px;}
.xc{left:295.455000px;}
.x1f{left:313.275000px;}
.x45{left:323.355000px;}
.x31{left:329.115000px;}
.xd{left:335.415000px;}
.x3a{left:336.675000px;}
.x14{left:343.695000px;}
.x5{left:375.015000px;}
.xa{left:376.455000px;}
.xe{left:381.855000px;}
.x7{left:387.615000px;}
.x68{left:389.415000px;}
.x46{left:392.475000px;}
.x9{left:398.415000px;}
.x6a{left:399.495000px;}
.x4b{left:424.515000px;}
.x27{left:436.035000px;}
.x28{left:438.915000px;}
.x60{left:443.235000px;}
.x1b{left:446.475000px;}
.x6{left:457.275000px;}
.x5b{left:461.955000px;}
.x2a{left:474.195000px;}
.x62{left:488.955000px;}
.x61{left:498.180000px;}
.xf{left:525.862500px;}
.x10{left:532.725000px;}
.x6b{left:567.120000px;}
.x2d{left:613.380000px;}
.x4c{left:616.080000px;}
.x6c{left:625.620000px;}
.x6d{left:627.960000px;}
.x63{left:666.660000px;}
.x3b{left:671.520000px;}
.x21{left:673.320000px;}
.x23{left:676.200000px;}
.x26{left:679.260000px;}
.x4d{left:682.320000px;}
.x5d{left:731.475000px;}
.x5f{left:737.415000px;}
@media print{
.v3{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:12.800000pt;}
.v5{vertical-align:19.200000pt;}
.v6{vertical-align:23.680000pt;}
.v2{vertical-align:35.840000pt;}
.v1{vertical-align:48.640000pt;}
.ls12{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.077333pt;}
.lse{letter-spacing:-0.069867pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:-0.015360pt;}
.ls8{letter-spacing:-0.007680pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.007680pt;}
.ls2{letter-spacing:0.011520pt;}
.ls3{letter-spacing:0.015360pt;}
.ls5{letter-spacing:0.023040pt;}
.lsc{letter-spacing:0.030720pt;}
.ls6{letter-spacing:0.133333pt;}
.ls1{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.640000pt;}
.ls10{letter-spacing:2.490240pt;}
.lsb{letter-spacing:3.890560pt;}
.lsa{letter-spacing:17.970560pt;}
.lsd{letter-spacing:57.066667pt;}
.ls13{letter-spacing:75.648000pt;}
.ws1{word-spacing:-17.303040pt;}
.ws3{word-spacing:-17.295360pt;}
.ws2{word-spacing:-17.287680pt;}
.ws6{word-spacing:-17.272320pt;}
.ws4{word-spacing:-17.264640pt;}
.wsa{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.744000pt;}
.ws8{word-spacing:-14.080000pt;}
.wsd{word-spacing:-14.016000pt;}
.wse{word-spacing:-13.824000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws9{word-spacing:-9.996800pt;}
.wsb{word-spacing:-9.926933pt;}
.wsc{word-spacing:-9.919467pt;}
.ws10{word-spacing:-0.064000pt;}
.ws5{word-spacing:0.000000pt;}
.ws7{word-spacing:5.376000pt;}
._26{margin-left:-345.856000pt;}
._28{margin-left:-331.584000pt;}
._1f{margin-left:-288.065707pt;}
._21{margin-left:-275.206187pt;}
._22{margin-left:-179.164800pt;}
._27{margin-left:-176.960000pt;}
._25{margin-left:-157.440000pt;}
._29{margin-left:-150.208000pt;}
._20{margin-left:-146.761600pt;}
._1e{margin-left:-130.560000pt;}
._1c{margin-left:-3.540907pt;}
._1a{margin-left:-2.045227pt;}
._2{margin-left:-1.091627pt;}
._0{width:1.120427pt;}
._5{width:2.081280pt;}
._12{width:3.520000pt;}
._c{width:4.928000pt;}
._d{width:6.016000pt;}
._13{width:7.104000pt;}
._6{width:8.064000pt;}
._7{width:9.152000pt;}
._e{width:10.688000pt;}
._16{width:11.748907pt;}
._15{width:13.364907pt;}
._14{width:14.347093pt;}
._11{width:16.960000pt;}
._1b{width:18.240000pt;}
._19{width:19.584000pt;}
._23{width:20.608000pt;}
._24{width:21.568000pt;}
._f{width:24.448000pt;}
._10{width:25.408000pt;}
._8{width:26.432000pt;}
._9{width:27.935147pt;}
._1d{width:30.464000pt;}
._a{width:33.792000pt;}
._b{width:34.880000pt;}
._17{width:37.504000pt;}
._18{width:38.528000pt;}
._2b{width:39.552000pt;}
._2a{width:66.048000pt;}
._4{width:181.352747pt;}
._1{width:1074.517760pt;}
._3{width:1807.374507pt;}
.fs7{font-size:34.560000pt;}
.fs8{font-size:45.440000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:106.880000pt;}
.y171{bottom:-20.626667pt;}
.y0{bottom:0.000000pt;}
.yc3{bottom:3.512000pt;}
.y126{bottom:3.520000pt;}
.yf2{bottom:3.672000pt;}
.ybe{bottom:3.986667pt;}
.yb7{bottom:4.000000pt;}
.yc8{bottom:4.013333pt;}
.y10b{bottom:4.026667pt;}
.yc2{bottom:4.152000pt;}
.y125{bottom:4.160000pt;}
.yf3{bottom:4.312000pt;}
.y164{bottom:5.280000pt;}
.y168{bottom:5.453333pt;}
.y166{bottom:5.600000pt;}
.y162{bottom:5.760000pt;}
.y88{bottom:6.573333pt;}
.y7f{bottom:6.893333pt;}
.y7d{bottom:7.053333pt;}
.y16a{bottom:7.200000pt;}
.y160{bottom:7.360000pt;}
.y90{bottom:9.920000pt;}
.y8d{bottom:10.240000pt;}
.y177{bottom:11.680000pt;}
.y179{bottom:12.160000pt;}
.y175{bottom:12.173333pt;}
.y15c{bottom:12.320000pt;}
.y173{bottom:12.333333pt;}
.y17c{bottom:12.360000pt;}
.yde{bottom:12.466667pt;}
.ydb{bottom:12.480000pt;}
.ybb{bottom:12.626667pt;}
.ycf{bottom:12.640000pt;}
.y10a{bottom:12.666667pt;}
.yd5{bottom:12.680000pt;}
.ydf{bottom:13.106667pt;}
.ydc{bottom:13.120000pt;}
.yd6{bottom:13.160000pt;}
.ybc{bottom:13.266667pt;}
.yd0{bottom:13.280000pt;}
.y4b{bottom:13.440000pt;}
.y85{bottom:13.773333pt;}
.y170{bottom:14.093333pt;}
.y7b{bottom:14.560000pt;}
.y92{bottom:14.720000pt;}
.y83{bottom:14.733333pt;}
.y8a{bottom:16.333333pt;}
.y94{bottom:16.626667pt;}
.y15e{bottom:18.906667pt;}
.y79{bottom:20.800000pt;}
.yfb{bottom:21.760000pt;}
.yc0{bottom:22.386667pt;}
.yd1{bottom:22.400000pt;}
.y87{bottom:22.413333pt;}
.ybd{bottom:22.426667pt;}
.yd7{bottom:22.440000pt;}
.yf7{bottom:22.720000pt;}
.yf0{bottom:23.026667pt;}
.y49{bottom:23.200000pt;}
.y8f{bottom:25.760000pt;}
.y8c{bottom:25.920000pt;}
.y16c{bottom:25.933333pt;}
.ye1{bottom:30.880000pt;}
.yff{bottom:30.906667pt;}
.yca{bottom:31.040000pt;}
.ye2{bottom:31.520000pt;}
.y100{bottom:31.546667pt;}
.ycb{bottom:31.680000pt;}
.ye6{bottom:31.840000pt;}
.yd3{bottom:32.040000pt;}
.y48{bottom:33.920000pt;}
.y4c{bottom:34.080000pt;}
.y7{bottom:39.712000pt;}
.yc6{bottom:40.800000pt;}
.y102{bottom:40.826667pt;}
.yf6{bottom:41.120000pt;}
.yb9{bottom:50.706667pt;}
.ye9{bottom:50.720000pt;}
.y6{bottom:52.032000pt;}
.y4a{bottom:57.760000pt;}
.ycc{bottom:59.200000pt;}
.y101{bottom:59.226667pt;}
.yfd{bottom:68.946667pt;}
.y106{bottom:69.466667pt;}
.y2c{bottom:116.512000pt;}
.yef{bottom:117.960000pt;}
.y5a{bottom:118.112000pt;}
.y13f{bottom:118.752000pt;}
.y77{bottom:118.912000pt;}
.y2b{bottom:121.152000pt;}
.yd9{bottom:125.306667pt;}
.yc1{bottom:127.400000pt;}
.y2a{bottom:132.672000pt;}
.y119{bottom:134.426667pt;}
.y59{bottom:136.506667pt;}
.y13e{bottom:137.146667pt;}
.yf1{bottom:137.480000pt;}
.yb8{bottom:146.760000pt;}
.y118{bottom:152.826667pt;}
.y76{bottom:154.746667pt;}
.y58{bottom:154.906667pt;}
.y13d{bottom:155.546667pt;}
.y15a{bottom:162.746667pt;}
.y1a0{bottom:164.506667pt;}
.y93{bottom:167.240000pt;}
.y29{bottom:171.866667pt;}
.y57{bottom:173.306667pt;}
.y13c{bottom:173.946667pt;}
.yec{bottom:174.920000pt;}
.y159{bottom:181.146667pt;}
.y19f{bottom:182.906667pt;}
.ybf{bottom:184.200000pt;}
.y28{bottom:187.226667pt;}
.y117{bottom:187.546667pt;}
.y75{bottom:191.226667pt;}
.y56{bottom:191.706667pt;}
.y13b{bottom:192.346667pt;}
.y158{bottom:199.546667pt;}
.y19e{bottom:201.306667pt;}
.y27{bottom:202.426667pt;}
.y13a{bottom:207.400000pt;}
.y55{bottom:210.106667pt;}
.yee{bottom:212.360000pt;}
.y157{bottom:217.946667pt;}
.yba{bottom:221.640000pt;}
.y116{bottom:223.226667pt;}
.y139{bottom:226.440000pt;}
.y74{bottom:227.066667pt;}
.y54{bottom:228.506667pt;}
.y26{bottom:234.426667pt;}
.y19d{bottom:235.706667pt;}
.y156{bottom:236.346667pt;}
.y115{bottom:241.626667pt;}
.y86{bottom:245.973333pt;}
.y53{bottom:246.946667pt;}
.yed{bottom:249.826667pt;}
.y25{bottom:252.866667pt;}
.y81{bottom:253.813333pt;}
.y19c{bottom:254.146667pt;}
.y155{bottom:254.786667pt;}
.yb6{bottom:259.266667pt;}
.y114{bottom:260.066667pt;}
.y73{bottom:263.106667pt;}
.y138{bottom:263.906667pt;}
.y52{bottom:265.346667pt;}
.y19b{bottom:272.546667pt;}
.y154{bottom:273.186667pt;}
.y113{bottom:278.466667pt;}
.y137{bottom:282.946667pt;}
.y51{bottom:283.746667pt;}
.ye8{bottom:287.266667pt;}
.y24{bottom:288.866667pt;}
.y1bb{bottom:289.826667pt;}
.y153{bottom:291.426667pt;}
.yb5{bottom:295.426667pt;}
.y112{bottom:296.866667pt;}
.y72{bottom:299.106667pt;}
.y50{bottom:302.146667pt;}
.y19a{bottom:306.946667pt;}
.y23{bottom:307.266667pt;}
.y1ba{bottom:308.226667pt;}
.y152{bottom:309.826667pt;}
.y151{bottom:310.466667pt;}
.y111{bottom:315.266667pt;}
.y4f{bottom:320.546667pt;}
.y136{bottom:321.186667pt;}
.y84{bottom:324.213333pt;}
.yeb{bottom:324.866667pt;}
.y199{bottom:325.346667pt;}
.y22{bottom:325.666667pt;}
.y1b9{bottom:326.626667pt;}
.y150{bottom:328.226667pt;}
.y80{bottom:329.333333pt;}
.yb4{bottom:329.986667pt;}
.y110{bottom:333.666667pt;}
.y71{bottom:334.946667pt;}
.y4e{bottom:338.946667pt;}
.y135{bottom:340.226667pt;}
.y198{bottom:343.746667pt;}
.y21{bottom:344.066667pt;}
.yb3{bottom:348.386667pt;}
.y10f{bottom:352.066667pt;}
.y4d{bottom:357.666667pt;}
.y134{bottom:359.266667pt;}
.y1b8{bottom:361.026667pt;}
.yea{bottom:362.306667pt;}
.y20{bottom:362.466667pt;}
.y89{bottom:366.773333pt;}
.y70{bottom:370.946667pt;}
.y197{bottom:378.146667pt;}
.y133{bottom:378.306667pt;}
.y1b7{bottom:379.426667pt;}
.y1f{bottom:380.866667pt;}
.yb2{bottom:382.786667pt;}
.y10e{bottom:386.626667pt;}
.y47{bottom:388.546667pt;}
.y196{bottom:396.546667pt;}
.y132{bottom:397.346667pt;}
.y1b6{bottom:397.826667pt;}
.y16f{bottom:397.973333pt;}
.y14f{bottom:398.626667pt;}
.y1e{bottom:399.266667pt;}
.ye5{bottom:399.746667pt;}
.y7e{bottom:400.693333pt;}
.y82{bottom:404.053333pt;}
.y6f{bottom:406.786667pt;}
.y131{bottom:416.546667pt;}
.yb1{bottom:417.186667pt;}
.y1d{bottom:417.666667pt;}
.y10d{bottom:422.146667pt;}
.y195{bottom:430.946667pt;}
.y1b5{bottom:432.226667pt;}
.y14e{bottom:433.026667pt;}
.yb0{bottom:435.586667pt;}
.y1c{bottom:436.066667pt;}
.ye7{bottom:437.186667pt;}
.y6e{bottom:442.786667pt;}
.y167{bottom:445.973333pt;}
.y194{bottom:449.346667pt;}
.y1b4{bottom:450.626667pt;}
.yaf{bottom:453.986667pt;}
.y1b{bottom:454.466667pt;}
.y130{bottom:454.626667pt;}
.y10c{bottom:454.946667pt;}
.y14d{bottom:467.426667pt;}
.y193{bottom:467.746667pt;}
.yae{bottom:472.386667pt;}
.y1a{bottom:472.866667pt;}
.y12f{bottom:473.666667pt;}
.yd8{bottom:474.626667pt;}
.y7c{bottom:476.373333pt;}
.y6d{bottom:478.626667pt;}
.y1b3{bottom:485.026667pt;}
.y17b{bottom:485.813333pt;}
.y46{bottom:487.426667pt;}
.y105{bottom:492.386667pt;}
.y12e{bottom:492.706667pt;}
.y14c{bottom:501.853333pt;}
.y192{bottom:502.173333pt;}
.y1b2{bottom:503.453333pt;}
.y7a{bottom:504.253333pt;}
.y45{bottom:506.013333pt;}
.yad{bottom:506.813333pt;}
.y19{bottom:506.973333pt;}
.y165{bottom:508.893333pt;}
.y12d{bottom:511.773333pt;}
.ye4{bottom:512.093333pt;}
.y6c{bottom:514.653333pt;}
.y191{bottom:520.573333pt;}
.y1b1{bottom:521.853333pt;}
.y44{bottom:524.413333pt;}
.yac{bottom:525.213333pt;}
.y109{bottom:529.853333pt;}
.y17f{bottom:530.813333pt;}
.y14b{bottom:536.253333pt;}
.y190{bottom:538.973333pt;}
.y169{bottom:542.653333pt;}
.y43{bottom:542.813333pt;}
.y18{bottom:542.973333pt;}
.yab{bottom:543.613333pt;}
.y12c{bottom:548.093333pt;}
.ye3{bottom:549.533333pt;}
.y6b{bottom:550.653333pt;}
.y1b0{bottom:556.253333pt;}
.y18f{bottom:557.373333pt;}
.y42{bottom:561.213333pt;}
.yaa{bottom:562.013333pt;}
.y78{bottom:566.653333pt;}
.y17a{bottom:566.813333pt;}
.y108{bottom:567.293333pt;}
.y14a{bottom:570.653333pt;}
.y1af{bottom:574.653333pt;}
.y163{bottom:578.813333pt;}
.y12b{bottom:579.293333pt;}
.y17{bottom:579.453333pt;}
.ya9{bottom:580.413333pt;}
.y6a{bottom:586.493333pt;}
.ye0{bottom:587.133333pt;}
.y18e{bottom:591.773333pt;}
.y1ae{bottom:593.053333pt;}
.y41{bottom:597.853333pt;}
.y12a{bottom:598.333333pt;}
.ya8{bottom:598.813333pt;}
.y15{bottom:599.613333pt;}
.y107{bottom:604.733333pt;}
.y178{bottom:604.893333pt;}
.y149{bottom:605.053333pt;}
.y16{bottom:606.333333pt;}
.y18d{bottom:610.173333pt;}
.y8e{bottom:610.493333pt;}
.y40{bottom:616.253333pt;}
.ya7{bottom:617.213333pt;}
.y129{bottom:617.373333pt;}
.y69{bottom:622.493333pt;}
.y1ad{bottom:627.453333pt;}
.y17e{bottom:627.773333pt;}
.y3f{bottom:634.653333pt;}
.ya6{bottom:635.613333pt;}
.y128{bottom:636.413333pt;}
.y14{bottom:636.733333pt;}
.y15f{bottom:639.133333pt;}
.y148{bottom:639.453333pt;}
.y104{bottom:642.333333pt;}
.yfc{bottom:642.346667pt;}
.y18c{bottom:644.573333pt;}
.y1ac{bottom:645.853333pt;}
.y161{bottom:652.893333pt;}
.y3e{bottom:653.053333pt;}
.ya5{bottom:654.013333pt;}
.y127{bottom:655.613333pt;}
.y13{bottom:656.733333pt;}
.y68{bottom:658.333333pt;}
.ydd{bottom:661.386667pt;}
.y18b{bottom:662.973333pt;}
.y1ab{bottom:664.253333pt;}
.y3d{bottom:671.453333pt;}
.ya4{bottom:672.413333pt;}
.y147{bottom:673.853333pt;}
.y124{bottom:674.653333pt;}
.y12{bottom:676.893333pt;}
.y103{bottom:679.773333pt;}
.y17d{bottom:683.773333pt;}
.y3c{bottom:689.853333pt;}
.ya3{bottom:690.813333pt;}
.y8b{bottom:693.853333pt;}
.y67{bottom:694.333333pt;}
.y18a{bottom:697.373333pt;}
.y1aa{bottom:698.653333pt;}
.yda{bottom:698.813333pt;}
.y3b{bottom:708.253333pt;}
.ya2{bottom:709.213333pt;}
.y11{bottom:711.453333pt;}
.y15b{bottom:715.773333pt;}
.y1a9{bottom:717.053333pt;}
.yfe{bottom:717.226667pt;}
.y91{bottom:725.373333pt;}
.y3a{bottom:726.653333pt;}
.ya1{bottom:727.613333pt;}
.y66{bottom:730.173333pt;}
.y10{bottom:731.293333pt;}
.y1a8{bottom:735.453333pt;}
.yd2{bottom:736.253333pt;}
.y15d{bottom:741.226667pt;}
.y146{bottom:742.653333pt;}
.y39{bottom:745.053333pt;}
.ya0{bottom:746.053333pt;}
.y123{bottom:746.533333pt;}
.y189{bottom:750.213333pt;}
.yf{bottom:751.653333pt;}
.y38{bottom:763.493333pt;}
.y9f{bottom:764.453333pt;}
.y122{bottom:764.773333pt;}
.y65{bottom:766.213333pt;}
.y188{bottom:768.613333pt;}
.y1a7{bottom:769.893333pt;}
.yd4{bottom:773.733333pt;}
.y145{bottom:777.093333pt;}
.y176{bottom:777.880000pt;}
.y37{bottom:781.893333pt;}
.y9e{bottom:782.853333pt;}
.y16d{bottom:783.160000pt;}
.y121{bottom:783.653333pt;}
.ye{bottom:786.213333pt;}
.y187{bottom:787.013333pt;}
.y1a6{bottom:788.293333pt;}
.yf9{bottom:791.493333pt;}
.y36{bottom:800.293333pt;}
.y9d{bottom:801.253333pt;}
.y64{bottom:801.893333pt;}
.y120{bottom:802.693333pt;}
.yd{bottom:806.053333pt;}
.y1a5{bottom:806.693333pt;}
.yce{bottom:811.173333pt;}
.y144{bottom:811.493333pt;}
.y35{bottom:818.693333pt;}
.y9c{bottom:819.653333pt;}
.y63{bottom:820.293333pt;}
.y11f{bottom:821.093333pt;}
.y186{bottom:821.253333pt;}
.y174{bottom:824.920000pt;}
.yc{bottom:826.213333pt;}
.y34{bottom:837.093333pt;}
.y9b{bottom:838.053333pt;}
.y62{bottom:838.693333pt;}
.y11e{bottom:839.493333pt;}
.y1a4{bottom:841.093333pt;}
.y143{bottom:845.893333pt;}
.yfa{bottom:847.333333pt;}
.ycd{bottom:848.600000pt;}
.yc9{bottom:848.613333pt;}
.yb{bottom:849.093333pt;}
.y172{bottom:855.320000pt;}
.y33{bottom:855.493333pt;}
.y9a{bottom:856.453333pt;}
.y61{bottom:857.093333pt;}
.y185{bottom:857.413333pt;}
.y11d{bottom:857.893333pt;}
.y11c{bottom:858.533333pt;}
.y1a3{bottom:859.493333pt;}
.y16b{bottom:865.720000pt;}
.y32{bottom:873.893333pt;}
.y99{bottom:874.853333pt;}
.y60{bottom:875.493333pt;}
.y11b{bottom:876.293333pt;}
.y1a2{bottom:877.893333pt;}
.y142{bottom:880.293333pt;}
.yf5{bottom:884.773333pt;}
.y184{bottom:891.813333pt;}
.y31{bottom:892.293333pt;}
.y98{bottom:893.253333pt;}
.y5f{bottom:893.893333pt;}
.ya{bottom:895.813333pt;}
.y183{bottom:910.213333pt;}
.y11a{bottom:910.533333pt;}
.y30{bottom:910.693333pt;}
.y16e{bottom:911.320000pt;}
.y97{bottom:911.653333pt;}
.y5e{bottom:912.293333pt;}
.y141{bottom:914.693333pt;}
.yf8{bottom:922.213333pt;}
.yc7{bottom:923.000000pt;}
.yc5{bottom:923.013333pt;}
.y9{bottom:926.373333pt;}
.y96{bottom:928.293333pt;}
.y182{bottom:928.453333pt;}
.y2f{bottom:929.093333pt;}
.y1a1{bottom:930.693333pt;}
.y95{bottom:946.213333pt;}
.y5d{bottom:946.693333pt;}
.y2e{bottom:947.493333pt;}
.y140{bottom:949.093333pt;}
.y8{bottom:957.093333pt;}
.yf4{bottom:959.813333pt;}
.y181{bottom:963.973333pt;}
.y5c{bottom:965.093333pt;}
.yc4{bottom:978.853333pt;}
.y2d{bottom:981.733333pt;}
.y180{bottom:982.373333pt;}
.y5b{bottom:983.493333pt;}
.y5{bottom:1000.960000pt;}
.y4{bottom:1016.640000pt;}
.y3{bottom:1031.840000pt;}
.y2{bottom:1047.200000pt;}
.y1{bottom:1062.560000pt;}
.h22{height:18.386667pt;}
.h3f{height:18.400000pt;}
.h27{height:18.426667pt;}
.h26{height:18.712000pt;}
.h36{height:18.872000pt;}
.h3e{height:18.880000pt;}
.h44{height:22.400000pt;}
.h43{height:22.880000pt;}
.h1a{height:23.040000pt;}
.h19{height:23.720000pt;}
.h10{height:23.996250pt;}
.h45{height:25.760000pt;}
.h42{height:26.080000pt;}
.h49{height:26.720000pt;}
.h40{height:26.880000pt;}
.h4b{height:26.920000pt;}
.h47{height:28.640000pt;}
.h21{height:31.520000pt;}
.hb{height:33.328125pt;}
.h25{height:36.786667pt;}
.h30{height:36.800000pt;}
.h24{height:36.818667pt;}
.h2e{height:36.820000pt;}
.h32{height:36.826667pt;}
.h6{height:37.116563pt;}
.h1c{height:37.120000pt;}
.h18{height:38.240000pt;}
.h1b{height:38.720000pt;}
.h20{height:39.060000pt;}
.h4{height:40.163750pt;}
.h1d{height:41.760000pt;}
.h4a{height:43.656250pt;}
.h46{height:43.840000pt;}
.hf{height:44.468750pt;}
.h1f{height:44.960000pt;}
.h1e{height:45.120000pt;}
.hc{height:47.109375pt;}
.h41{height:49.620000pt;}
.h17{height:50.880000pt;}
.h2{height:52.134375pt;}
.h5{height:52.360000pt;}
.h3{height:53.535000pt;}
.h38{height:55.186667pt;}
.h28{height:55.192000pt;}
.h29{height:55.200000pt;}
.h35{height:56.312000pt;}
.h14{height:56.356250pt;}
.he{height:62.812500pt;}
.h48{height:64.500000pt;}
.h15{height:65.781915pt;}
.h16{height:67.803750pt;}
.h9{height:67.837500pt;}
.hd{height:69.660000pt;}
.h8{height:73.490625pt;}
.h2a{height:73.586667pt;}
.h2b{height:73.592000pt;}
.h31{height:73.596000pt;}
.h2c{height:73.600000pt;}
.h3a{height:73.618667pt;}
.h3b{height:73.620000pt;}
.h33{height:74.226667pt;}
.h2d{height:74.260000pt;}
.h13{height:79.375000pt;}
.h3d{height:80.036250pt;}
.h11{height:81.586667pt;}
.h37{height:92.626667pt;}
.h7{height:107.715000pt;}
.h23{height:111.698667pt;}
.h34{height:111.826667pt;}
.h12{height:128.015000pt;}
.h39{height:148.493333pt;}
.h3c{height:149.146667pt;}
.h2f{height:260.986667pt;}
.ha{height:1122.546631pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1b{width:58.226667pt;}
.w2d{width:62.080000pt;}
.w2b{width:64.480000pt;}
.w13{width:66.578667pt;}
.w31{width:66.900000pt;}
.w30{width:69.440000pt;}
.w1d{width:69.480000pt;}
.w2c{width:70.080000pt;}
.w1e{width:72.360000pt;}
.w2f{width:73.760000pt;}
.w2e{width:73.920000pt;}
.w1c{width:74.258667pt;}
.w29{width:74.400000pt;}
.w22{width:79.360000pt;}
.w20{width:80.800000pt;}
.w6{width:84.640000pt;}
.wf{width:85.140000pt;}
.w10{width:85.300000pt;}
.w21{width:87.200000pt;}
.wb{width:88.180000pt;}
.w18{width:89.138667pt;}
.wa{width:90.100000pt;}
.w9{width:90.420000pt;}
.wc{width:90.600000pt;}
.w32{width:90.900000pt;}
.w33{width:91.060000pt;}
.w7{width:92.480000pt;}
.w8{width:92.500000pt;}
.wd{width:93.780000pt;}
.w25{width:96.820000pt;}
.w1f{width:99.700000pt;}
.w2a{width:100.660000pt;}
.we{width:100.840000pt;}
.w15{width:112.498667pt;}
.w16{width:112.500000pt;}
.w27{width:114.580000pt;}
.w23{width:118.280000pt;}
.w2{width:121.140000pt;}
.w26{width:122.120000pt;}
.w24{width:131.680000pt;}
.w12{width:146.746667pt;}
.w1a{width:169.626667pt;}
.w17{width:186.106667pt;}
.w19{width:263.538667pt;}
.w11{width:289.160000pt;}
.w4{width:290.578667pt;}
.w5{width:290.946667pt;}
.w14{width:296.826667pt;}
.w28{width:331.253333pt;}
.w3{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x40{left:6.880000pt;}
.x39{left:9.906667pt;}
.x2e{left:11.026667pt;}
.x2b{left:12.000000pt;}
.x20{left:13.440000pt;}
.x52{left:15.026667pt;}
.x4e{left:16.666667pt;}
.x2c{left:19.226667pt;}
.x24{left:20.826667pt;}
.x5e{left:22.253333pt;}
.x2f{left:23.346667pt;}
.x25{left:24.986667pt;}
.x32{left:25.920000pt;}
.x1e{left:29.112000pt;}
.x22{left:31.066667pt;}
.x3c{left:35.386667pt;}
.x3e{left:37.152000pt;}
.x5a{left:38.866667pt;}
.x43{left:40.192000pt;}
.x64{left:42.426667pt;}
.x42{left:46.432000pt;}
.x37{left:47.392000pt;}
.x2{left:49.580000pt;}
.x41{left:50.906667pt;}
.x3d{left:54.906667pt;}
.x57{left:56.786667pt;}
.x3f{left:57.946667pt;}
.x44{left:58.906667pt;}
.x54{left:64.186667pt;}
.x50{left:66.906667pt;}
.x55{left:68.946667pt;}
.x49{left:72.960000pt;}
.x48{left:76.960000pt;}
.x17{left:78.226667pt;}
.x4f{left:82.866667pt;}
.x36{left:84.640000pt;}
.x56{left:85.586667pt;}
.x51{left:87.826667pt;}
.x1d{left:94.280000pt;}
.x59{left:95.826667pt;}
.x58{left:100.306667pt;}
.x53{left:104.306667pt;}
.x16{left:106.280000pt;}
.x1{left:113.472000pt;}
.x33{left:116.512000pt;}
.x15{left:117.792000pt;}
.x19{left:128.626667pt;}
.x4{left:130.912000pt;}
.x8{left:132.512000pt;}
.x3{left:134.426667pt;}
.x1c{left:136.026667pt;}
.x69{left:139.080000pt;}
.x34{left:140.506667pt;}
.x13{left:141.786667pt;}
.x18{left:153.906667pt;}
.x11{left:158.426667pt;}
.x12{left:160.666667pt;}
.x66{left:165.626667pt;}
.xb{left:170.746667pt;}
.x4a{left:197.146667pt;}
.x5c{left:204.200000pt;}
.x65{left:205.960000pt;}
.x35{left:207.546667pt;}
.x1a{left:212.506667pt;}
.x29{left:217.960000pt;}
.x38{left:232.040000pt;}
.x30{left:248.360000pt;}
.x47{left:258.920000pt;}
.x67{left:260.040000pt;}
.xc{left:262.626667pt;}
.x1f{left:278.466667pt;}
.x45{left:287.426667pt;}
.x31{left:292.546667pt;}
.xd{left:298.146667pt;}
.x3a{left:299.266667pt;}
.x14{left:305.506667pt;}
.x5{left:333.346667pt;}
.xa{left:334.626667pt;}
.xe{left:339.426667pt;}
.x7{left:344.546667pt;}
.x68{left:346.146667pt;}
.x46{left:348.866667pt;}
.x9{left:354.146667pt;}
.x6a{left:355.106667pt;}
.x4b{left:377.346667pt;}
.x27{left:387.586667pt;}
.x28{left:390.146667pt;}
.x60{left:393.986667pt;}
.x1b{left:396.866667pt;}
.x6{left:406.466667pt;}
.x5b{left:410.626667pt;}
.x2a{left:421.506667pt;}
.x62{left:434.626667pt;}
.x61{left:442.826667pt;}
.xf{left:467.433333pt;}
.x10{left:473.533333pt;}
.x6b{left:504.106667pt;}
.x2d{left:545.226667pt;}
.x4c{left:547.626667pt;}
.x6c{left:556.106667pt;}
.x6d{left:558.186667pt;}
.x63{left:592.586667pt;}
.x3b{left:596.906667pt;}
.x21{left:598.506667pt;}
.x23{left:601.066667pt;}
.x26{left:603.786667pt;}
.x4d{left:606.506667pt;}
.x5d{left:650.200000pt;}
.x5f{left:655.480000pt;}
}




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