
    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_1a0f2fc784aac186ef8e0324.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_7396a052fd7639cfb138fcce.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_12cc7eecc371291199531e60.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1e56422412a1df15ca175d51.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7cd0d0da30355ade2c91eca4.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_bf4ef5c3d4e72c20e948eff3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_1632441b224e7378b1b91d4e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-103.860000px;}
.v4{vertical-align:-5.760000px;}
.v2{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.880000px;}
.v5{vertical-align:5.760000px;}
.v6{vertical-align:14.400000px;}
.v7{vertical-align:18.720000px;}
.ls13{letter-spacing:-2.376000px;}
.ls12{letter-spacing:-1.908000px;}
.ls2{letter-spacing:-1.440000px;}
.lsd{letter-spacing:-1.422000px;}
.ls4{letter-spacing:-0.972000px;}
.ls10{letter-spacing:-0.936000px;}
.ls7{letter-spacing:-0.720000px;}
.ls1b{letter-spacing:-0.507000px;}
.ls17{letter-spacing:-0.501000px;}
.ls3{letter-spacing:-0.486600px;}
.ls8{letter-spacing:-0.466800px;}
.ls15{letter-spacing:-0.015840px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.020160px;}
.ls18{letter-spacing:0.234600px;}
.lsf{letter-spacing:0.466560px;}
.lsa{letter-spacing:0.466800px;}
.ls19{letter-spacing:0.501000px;}
.ls5{letter-spacing:0.507000px;}
.ls14{letter-spacing:0.665280px;}
.ls9{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.840000px;}
.ls16{letter-spacing:0.936000px;}
.lsc{letter-spacing:1.440000px;}
.ls1a{letter-spacing:6.480000px;}
.lsb{letter-spacing:40.786560px;}
.lse{letter-spacing:43.786560px;}
.ls1{letter-spacing:242.760000px;}
.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;}
}
.ws8{word-spacing:-60.480000px;}
.wsc{word-spacing:-18.000000px;}
.ws11{word-spacing:-16.560000px;}
.ws12{word-spacing:-15.627000px;}
.ws6{word-spacing:-15.586800px;}
.ws3{word-spacing:-15.140160px;}
.ws4{word-spacing:-15.120000px;}
.ws5{word-spacing:-14.653200px;}
.ws1{word-spacing:-14.633400px;}
.ws18{word-spacing:-14.613000px;}
.ws9{word-spacing:-14.184000px;}
.ws2{word-spacing:-14.148000px;}
.ws19{word-spacing:-13.698000px;}
.ws7{word-spacing:-13.680000px;}
.wsf{word-spacing:-13.212000px;}
.ws14{word-spacing:-12.816000px;}
.ws10{word-spacing:-12.744000px;}
.ws17{word-spacing:-12.381000px;}
.ws16{word-spacing:-12.114600px;}
.wsd{word-spacing:-11.880000px;}
.ws13{word-spacing:-11.864160px;}
.ws15{word-spacing:-11.379000px;}
.wsb{word-spacing:-10.440000px;}
.wse{word-spacing:-9.720000px;}
.wsa{word-spacing:-9.000000px;}
.ws0{word-spacing:0.000000px;}
._12{margin-left:-5.782080px;}
._11{margin-left:-4.409760px;}
._4{margin-left:-3.240000px;}
._0{margin-left:-2.177280px;}
._1{margin-left:-1.028160px;}
._2{width:1.088640px;}
._3{width:2.358720px;}
._8{width:4.321920px;}
._9{width:5.927040px;}
._6{width:7.838400px;}
._5{width:8.844480px;}
._b{width:10.068960px;}
._7{width:11.691360px;}
._a{width:13.219200px;}
._10{width:16.356960px;}
._e{width:17.402880px;}
._d{width:18.670080px;}
._c{width:20.018880px;}
._f{width:21.244320px;}
._13{width:22.921920px;}
._15{width:24.494400px;}
._14{width:25.764480px;}
._16{width:27.336960px;}
._17{width:28.653600px;}
._18{width:30.421440px;}
._19{width:31.811040px;}
._1c{width:33.134880px;}
._1b{width:34.663680px;}
._1a{width:849.180000px;}
.fc2{color:transparent;}
.fc1{color:rgb(64,65,65);}
.fc3{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs8{font-size:38.880000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:47.520000px;}
.fsa{font-size:54.720000px;}
.fs3{font-size:60.000000px;}
.fs5{font-size:60.480000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:96.480000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y147{bottom:2.865000px;}
.y15d{bottom:2.880000px;}
.y14d{bottom:3.225000px;}
.y160{bottom:3.240000px;}
.y14b{bottom:3.585000px;}
.y12c{bottom:3.600000px;}
.y114{bottom:3.615000px;}
.y52{bottom:3.945000px;}
.y130{bottom:3.960000px;}
.y117{bottom:3.975000px;}
.y10d{bottom:5.040000px;}
.y164{bottom:5.400000px;}
.y155{bottom:5.430000px;}
.y152{bottom:5.790000px;}
.y166{bottom:6.120000px;}
.y145{bottom:9.705000px;}
.y15b{bottom:10.080000px;}
.y159{bottom:10.440000px;}
.y16b{bottom:10.485000px;}
.y181{bottom:11.145000px;}
.y111{bottom:12.240000px;}
.y12a{bottom:12.270000px;}
.y11f{bottom:12.585000px;}
.y119{bottom:12.600000px;}
.y154{bottom:12.630000px;}
.y178{bottom:12.945000px;}
.y16f{bottom:12.960000px;}
.y17a{bottom:13.305000px;}
.y172{bottom:13.335000px;}
.y17e{bottom:13.665000px;}
.y162{bottom:14.760000px;}
.y148{bottom:16.545000px;}
.y146{bottom:16.590000px;}
.y143{bottom:16.905000px;}
.y15c{bottom:16.920000px;}
.y14a{bottom:17.265000px;}
.y15f{bottom:17.280000px;}
.y180{bottom:18.345000px;}
.y16c{bottom:18.405000px;}
.y14f{bottom:19.470000px;}
.y174{bottom:20.520000px;}
.y17c{bottom:20.865000px;}
.y112{bottom:20.880000px;}
.y12b{bottom:20.910000px;}
.y121{bottom:21.225000px;}
.y11a{bottom:21.240000px;}
.y120{bottom:21.255000px;}
.y158{bottom:24.120000px;}
.y153{bottom:26.310000px;}
.y177{bottom:28.425000px;}
.y16e{bottom:28.440000px;}
.y179{bottom:28.785000px;}
.y170{bottom:28.800000px;}
.y17d{bottom:29.145000px;}
.y142{bottom:30.945000px;}
.y15e{bottom:30.960000px;}
.y151{bottom:33.510000px;}
.y6{bottom:35.925007px;}
.y157{bottom:38.160000px;}
.y127{bottom:47.190000px;}
.y123{bottom:47.550000px;}
.y12e{bottom:65.190000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y10f{bottom:100.455000px;}
.y22{bottom:139.264499px;}
.y51{bottom:186.570000px;}
.y50{bottom:187.635000px;}
.y19{bottom:196.933500px;}
.y82{bottom:207.450000px;}
.y81{bottom:208.515000px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y80{bottom:231.195000px;}
.y1c3{bottom:231.555000px;}
.y13e{bottom:234.435000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.yef{bottom:237.315000px;}
.y108{bottom:240.915000px;}
.yd3{bottom:243.435000px;}
.y1b4{bottom:244.515000px;}
.y4e{bottom:248.145000px;}
.y7f{bottom:249.225000px;}
.y13d{bottom:252.465000px;}
.yaa{bottom:255.345000px;}
.y107{bottom:258.585000px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.yd2{bottom:261.465000px;}
.yc1{bottom:261.825000px;}
.y1b3{bottom:262.185000px;}
.y4d{bottom:266.145000px;}
.y7e{bottom:267.225000px;}
.y1cd{bottom:267.585000px;}
.y18a{bottom:270.105000px;}
.y13c{bottom:270.465000px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.ya9{bottom:273.345000px;}
.y106{bottom:276.585000px;}
.yc0{bottom:279.465000px;}
.y4c{bottom:284.145000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y7d{bottom:285.225000px;}
.y1b2{bottom:286.305000px;}
.y13b{bottom:288.465000px;}
.ya8{bottom:291.345000px;}
.y1c2{bottom:291.705000px;}
.y105{bottom:294.585000px;}
.ybf{bottom:297.465000px;}
.y4b{bottom:302.145000px;}
.y7c{bottom:303.225000px;}
.y1b1{bottom:303.945000px;}
.y13a{bottom:306.465000px;}
.ya7{bottom:309.345000px;}
.ye3{bottom:309.705000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y104{bottom:312.585000px;}
.ybe{bottom:315.465000px;}
.yee{bottom:315.825000px;}
.y4a{bottom:320.145000px;}
.y7b{bottom:321.225000px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y139{bottom:324.465000px;}
.ya6{bottom:327.345000px;}
.y1cc{bottom:327.705000px;}
.y1b0{bottom:328.425000px;}
.y103{bottom:330.585000px;}
.ybd{bottom:333.465000px;}
.ye2{bottom:333.825000px;}
.y49{bottom:338.145000px;}
.y7a{bottom:339.225000px;}
.yed{bottom:339.585000px;}
.y138{bottom:342.465000px;}
.ya5{bottom:345.345000px;}
.y1af{bottom:346.065000px;}
.y10{bottom:348.133500px;}
.y102{bottom:348.585000px;}
.ybc{bottom:351.465000px;}
.y1c1{bottom:351.825000px;}
.y48{bottom:356.145000px;}
.y79{bottom:357.225000px;}
.y137{bottom:360.465000px;}
.ya4{bottom:363.345000px;}
.y1ae{bottom:364.065000px;}
.y101{bottom:366.585000px;}
.ybb{bottom:369.465000px;}
.y1cb{bottom:369.825000px;}
.y47{bottom:374.190000px;}
.y78{bottom:375.270000px;}
.y136{bottom:378.510000px;}
.yec{bottom:381.750000px;}
.y100{bottom:384.630000px;}
.yf{bottom:386.785499px;}
.yba{bottom:387.510000px;}
.ya3{bottom:387.870000px;}
.y1ad{bottom:388.590000px;}
.y46{bottom:392.190000px;}
.y1c0{bottom:393.630000px;}
.y135{bottom:396.510000px;}
.yeb{bottom:399.390000px;}
.y77{bottom:399.750000px;}
.yff{bottom:402.630000px;}
.yb9{bottom:405.510000px;}
.y1ac{bottom:406.230000px;}
.ye{bottom:408.044999px;}
.y45{bottom:410.190000px;}
.y1bf{bottom:411.270000px;}
.ya2{bottom:411.630000px;}
.y76{bottom:417.390000px;}
.yfe{bottom:420.630000px;}
.yb8{bottom:423.510000px;}
.y44{bottom:428.190000px;}
.yd1{bottom:429.630000px;}
.y1ab{bottom:430.350000px;}
.y75{bottom:435.390000px;}
.ya1{bottom:435.750000px;}
.yfd{bottom:438.630000px;}
.yb7{bottom:441.510000px;}
.yea{bottom:441.870000px;}
.y43{bottom:446.190000px;}
.yd0{bottom:447.270000px;}
.y1aa{bottom:447.990000px;}
.y74{bottom:453.390000px;}
.y134{bottom:455.550000px;}
.ye1{bottom:459.510000px;}
.ya0{bottom:459.870000px;}
.yfc{bottom:463.110000px;}
.y42{bottom:464.190000px;}
.ycf{bottom:465.270000px;}
.yb6{bottom:465.630000px;}
.y1a9{bottom:465.990000px;}
.y168{bottom:469.590000px;}
.y133{bottom:470.655000px;}
.y12d{bottom:470.670000px;}
.y73{bottom:471.390000px;}
.ye0{bottom:477.510000px;}
.y41{bottom:482.190000px;}
.yb5{bottom:483.270000px;}
.y9f{bottom:483.630000px;}
.y167{bottom:486.870000px;}
.yfb{bottom:487.230000px;}
.y72{bottom:489.390000px;}
.y1ca{bottom:489.750000px;}
.y1a8{bottom:490.470000px;}
.ydf{bottom:495.510000px;}
.y1be{bottom:495.870000px;}
.y40{bottom:500.220000px;}
.yb4{bottom:501.300000px;}
.y165{bottom:502.020000px;}
.yd{bottom:502.864502px;}
.y132{bottom:505.980000px;}
.y71{bottom:507.420000px;}
.y9e{bottom:507.780000px;}
.y1a7{bottom:508.140000px;}
.yfa{bottom:510.660000px;}
.yde{bottom:513.540000px;}
.y3f{bottom:518.220000px;}
.yb3{bottom:519.300000px;}
.yc{bottom:520.864502px;}
.y161{bottom:522.900000px;}
.y70{bottom:525.420000px;}
.ydd{bottom:531.540000px;}
.y9d{bottom:531.900000px;}
.y1a6{bottom:532.620000px;}
.yf9{bottom:535.140000px;}
.y3e{bottom:536.220000px;}
.yb2{bottom:537.300000px;}
.yb{bottom:538.864499px;}
.y131{bottom:541.260000px;}
.y163{bottom:542.340000px;}
.y6f{bottom:543.420000px;}
.y9c{bottom:549.540000px;}
.y1c9{bottom:549.900000px;}
.y1a5{bottom:550.260000px;}
.yf8{bottom:552.780000px;}
.y3d{bottom:554.220000px;}
.yb1{bottom:555.300000px;}
.ydc{bottom:555.660000px;}
.ya{bottom:556.864499px;}
.y156{bottom:560.700000px;}
.y6e{bottom:561.420000px;}
.y1c8{bottom:567.540000px;}
.yf7{bottom:570.780000px;}
.y3c{bottom:572.220000px;}
.yb0{bottom:573.300000px;}
.y9b{bottom:573.660000px;}
.y1a4{bottom:574.020000px;}
.y12f{bottom:576.900000px;}
.y189{bottom:577.620000px;}
.y6d{bottom:579.420000px;}
.y10a{bottom:586.260000px;}
.y15a{bottom:589.140000px;}
.y3b{bottom:590.220000px;}
.y9a{bottom:591.300000px;}
.y1c7{bottom:591.660000px;}
.yf6{bottom:595.620000px;}
.y6c{bottom:597.420000px;}
.y1d5{bottom:597.780000px;}
.y1a3{bottom:598.500000px;}
.y188{bottom:601.020000px;}
.ydb{bottom:603.900000px;}
.y3a{bottom:608.220000px;}
.y99{bottom:609.300000px;}
.y109{bottom:609.660000px;}
.y126{bottom:612.180000px;}
.y6b{bottom:615.420000px;}
.y1bd{bottom:615.780000px;}
.y1a2{bottom:616.140000px;}
.y14e{bottom:617.580000px;}
.yf5{bottom:621.900000px;}
.y187{bottom:624.810000px;}
.y39{bottom:626.250000px;}
.y98{bottom:627.330000px;}
.yda{bottom:627.690000px;}
.y6a{bottom:633.450000px;}
.y1a1{bottom:634.170000px;}
.y150{bottom:637.065000px;}
.yf4{bottom:639.570000px;}
.ye9{bottom:639.930000px;}
.y38{bottom:644.250000px;}
.y97{bottom:645.330000px;}
.y9{bottom:645.510000px;}
.y129{bottom:647.145000px;}
.y186{bottom:648.930000px;}
.y69{bottom:651.450000px;}
.yd9{bottom:651.810000px;}
.y1a0{bottom:652.170000px;}
.yf3{bottom:657.570000px;}
.y1d4{bottom:657.930000px;}
.y37{bottom:662.250000px;}
.y96{bottom:663.330000px;}
.ye8{bottom:663.690000px;}
.y149{bottom:665.145000px;}
.y8{bottom:666.771000px;}
.y68{bottom:669.450000px;}
.y19f{bottom:670.170000px;}
.y185{bottom:673.050000px;}
.yf2{bottom:675.570000px;}
.yd8{bottom:675.930000px;}
.y36{bottom:679.890000px;}
.y14c{bottom:679.905000px;}
.y95{bottom:681.330000px;}
.y128{bottom:682.425000px;}
.y67{bottom:687.450000px;}
.y19e{bottom:688.170000px;}
.yd7{bottom:693.570000px;}
.y1c6{bottom:693.930000px;}
.y184{bottom:696.810000px;}
.y35{bottom:698.250000px;}
.y94{bottom:699.330000px;}
.y1d3{bottom:699.690000px;}
.y66{bottom:705.450000px;}
.y19d{bottom:706.170000px;}
.y141{bottom:708.345000px;}
.yd6{bottom:711.570000px;}
.y34{bottom:716.610000px;}
.y93{bottom:717.330000px;}
.y1bc{bottom:717.690000px;}
.y122{bottom:717.705000px;}
.y183{bottom:720.930000px;}
.y19c{bottom:724.170000px;}
.y7{bottom:726.298500px;}
.yd5{bottom:729.570000px;}
.y65{bottom:729.930000px;}
.y33{bottom:733.530000px;}
.y92{bottom:735.330000px;}
.y1c5{bottom:735.690000px;}
.y144{bottom:736.425000px;}
.y182{bottom:738.930000px;}
.y1d2{bottom:741.810000px;}
.y19b{bottom:742.170000px;}
.y64{bottom:747.570000px;}
.y32{bottom:751.575000px;}
.y3{bottom:752.599495px;}
.y125{bottom:753.030000px;}
.y91{bottom:753.375000px;}
.y17f{bottom:754.110000px;}
.y1d1{bottom:759.495000px;}
.y1bb{bottom:759.855000px;}
.y19a{bottom:760.215000px;}
.y63{bottom:765.615000px;}
.y31{bottom:769.575000px;}
.y140{bottom:771.015000px;}
.y90{bottom:771.375000px;}
.y1ba{bottom:777.495000px;}
.yce{bottom:777.855000px;}
.y199{bottom:778.215000px;}
.y62{bottom:783.615000px;}
.y1d0{bottom:783.975000px;}
.y17b{bottom:785.790000px;}
.y30{bottom:787.575000px;}
.y124{bottom:788.310000px;}
.y8f{bottom:789.375000px;}
.ycd{bottom:795.495000px;}
.y13f{bottom:795.855000px;}
.y198{bottom:796.215000px;}
.y61{bottom:801.615000px;}
.y1b9{bottom:801.975000px;}
.y2f{bottom:805.575000px;}
.y8e{bottom:807.375000px;}
.ycc{bottom:813.495000px;}
.y197{bottom:814.215000px;}
.y60{bottom:819.615000px;}
.y1c4{bottom:819.975000px;}
.y2e{bottom:823.575000px;}
.y10e{bottom:823.590000px;}
.y8d{bottom:825.375000px;}
.yd4{bottom:825.735000px;}
.ycb{bottom:831.495000px;}
.ye7{bottom:831.855000px;}
.y196{bottom:832.215000px;}
.y5f{bottom:837.615000px;}
.y176{bottom:837.990000px;}
.y2d{bottom:841.575000px;}
.y8c{bottom:843.375000px;}
.yca{bottom:849.495000px;}
.yaf{bottom:849.855000px;}
.y195{bottom:850.215000px;}
.y5e{bottom:855.615000px;}
.ye6{bottom:855.975000px;}
.y11e{bottom:858.870000px;}
.y2c{bottom:859.575000px;}
.y8b{bottom:861.375000px;}
.y1b8{bottom:861.735000px;}
.yae{bottom:867.495000px;}
.y194{bottom:868.215000px;}
.y5d{bottom:873.615000px;}
.y2b{bottom:877.605000px;}
.y2{bottom:879.369000px;}
.y8a{bottom:879.405000px;}
.ye5{bottom:879.765000px;}
.yad{bottom:885.525000px;}
.y1cf{bottom:885.885000px;}
.y193{bottom:886.245000px;}
.y175{bottom:890.190000px;}
.y173{bottom:890.205000px;}
.y5c{bottom:891.645000px;}
.y11d{bottom:894.150000px;}
.y11c{bottom:894.165000px;}
.y2a{bottom:895.605000px;}
.y89{bottom:897.405000px;}
.yac{bottom:903.525000px;}
.y192{bottom:904.245000px;}
.y5b{bottom:909.645000px;}
.y29{bottom:913.605000px;}
.y88{bottom:915.405000px;}
.yc9{bottom:921.525000px;}
.y1b7{bottom:921.885000px;}
.y191{bottom:922.245000px;}
.y5a{bottom:927.645000px;}
.y1ce{bottom:928.005000px;}
.y11b{bottom:929.430000px;}
.y118{bottom:929.445000px;}
.y87{bottom:933.405000px;}
.y28{bottom:933.765000px;}
.yc8{bottom:939.525000px;}
.y190{bottom:940.245000px;}
.y171{bottom:942.030000px;}
.y16d{bottom:942.045000px;}
.y59{bottom:945.645000px;}
.y86{bottom:951.405000px;}
.yab{bottom:951.765000px;}
.yc7{bottom:957.525000px;}
.ye4{bottom:957.885000px;}
.y18f{bottom:958.245000px;}
.y27{bottom:961.485000px;}
.y58{bottom:963.645000px;}
.y1b6{bottom:964.005000px;}
.y116{bottom:964.710000px;}
.y115{bottom:964.725000px;}
.y1{bottom:966.726000px;}
.y85{bottom:969.405000px;}
.yc6{bottom:975.525000px;}
.y18e{bottom:976.245000px;}
.y57{bottom:981.645000px;}
.y84{bottom:987.405000px;}
.yf1{bottom:987.765000px;}
.yc5{bottom:993.525000px;}
.y16a{bottom:994.245000px;}
.y56{bottom:999.645000px;}
.y113{bottom:1000.035000px;}
.y110{bottom:1000.050000px;}
.y83{bottom:1005.450000px;}
.y1b5{bottom:1005.810000px;}
.yc4{bottom:1011.570000px;}
.yf0{bottom:1011.930000px;}
.y18d{bottom:1012.290000px;}
.y26{bottom:1014.810000px;}
.y55{bottom:1023.450000px;}
.yc3{bottom:1029.570000px;}
.y18c{bottom:1030.290000px;}
.y25{bottom:1032.090000px;}
.y10c{bottom:1034.970000px;}
.y169{bottom:1038.570000px;}
.yc2{bottom:1047.570000px;}
.y54{bottom:1047.930000px;}
.y18b{bottom:1048.290000px;}
.y24{bottom:1049.370000px;}
.y53{bottom:1065.570000px;}
.y10b{bottom:1065.930000px;}
.y23{bottom:1066.290000px;}
.y4f{bottom:1120.650000px;}
.h30{height:14.025000px;}
.hd{height:17.280000px;}
.h37{height:17.640000px;}
.h38{height:18.720000px;}
.h33{height:18.756000px;}
.h11{height:20.145000px;}
.h39{height:20.160000px;}
.h2c{height:27.345000px;}
.h2d{height:27.351000px;}
.h2e{height:27.360000px;}
.h35{height:27.720000px;}
.h2a{height:27.741000px;}
.h43{height:30.945000px;}
.h3a{height:30.990000px;}
.h7{height:32.130000px;}
.h16{height:34.182000px;}
.h13{height:34.185000px;}
.h14{height:34.191000px;}
.h15{height:34.200000px;}
.h20{height:34.236000px;}
.h21{height:34.245000px;}
.h18{height:34.542000px;}
.h17{height:34.545000px;}
.h1f{height:34.551000px;}
.h19{height:34.560000px;}
.h1b{height:34.581000px;}
.h1c{height:34.587000px;}
.h24{height:34.590000px;}
.h25{height:34.596000px;}
.h1d{height:34.605000px;}
.h23{height:34.920000px;}
.h36{height:37.080000px;}
.h2f{height:42.105000px;}
.he{height:42.229688px;}
.h6{height:45.900000px;}
.h27{height:46.638281px;}
.h31{height:46.836000px;}
.h32{height:46.845000px;}
.h2b{height:47.891250px;}
.h3{height:48.195000px;}
.h41{height:51.102000px;}
.h40{height:51.105000px;}
.h42{height:51.120000px;}
.h3e{height:51.462000px;}
.h3c{height:51.465000px;}
.h3f{height:51.480000px;}
.h3d{height:53.704687px;}
.h2{height:55.080000px;}
.h3b{height:55.147500px;}
.h29{height:55.821000px;}
.h26{height:55.827000px;}
.h28{height:55.845000px;}
.h34{height:56.160000px;}
.h10{height:59.328281px;}
.ha{height:59.357813px;}
.h9{height:60.952500px;}
.hf{height:62.163910px;}
.hc{height:70.664062px;}
.h5{height:78.030000px;}
.hb{height:97.233750px;}
.h1e{height:104.796000px;}
.h1a{height:105.141000px;}
.h4{height:119.055004px;}
.h22{height:140.430000px;}
.h12{height:210.645000px;}
.h8{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w4{width:22.320000px;}
.w8{width:45.000000px;}
.wf{width:48.240000px;}
.wc{width:60.150000px;}
.wd{width:60.465000px;}
.w11{width:60.501000px;}
.w13{width:60.507000px;}
.we{width:60.510000px;}
.w10{width:60.516000px;}
.w14{width:60.525000px;}
.w12{width:64.440000px;}
.w1a{width:65.181000px;}
.w21{width:65.187000px;}
.w22{width:65.205000px;}
.w17{width:68.070000px;}
.w1c{width:68.076000px;}
.w1d{width:68.085000px;}
.w1b{width:68.760000px;}
.w19{width:69.465000px;}
.w1f{width:69.471000px;}
.w20{width:69.480000px;}
.wb{width:71.280000px;}
.w18{width:72.036000px;}
.w1e{width:72.045000px;}
.w16{width:73.470000px;}
.w7{width:93.621000px;}
.w9{width:93.627000px;}
.wa{width:93.645000px;}
.w15{width:117.720000px;}
.w5{width:165.645000px;}
.w6{width:207.795000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x19{left:1.785000px;}
.x1c{left:5.745000px;}
.x2a{left:7.905000px;}
.x1e{left:9.345000px;}
.x32{left:11.145000px;}
.x36{left:12.585000px;}
.x34{left:14.040000px;}
.x35{left:15.105000px;}
.x24{left:16.185000px;}
.x33{left:17.280000px;}
.x1f{left:18.705000px;}
.x38{left:19.800000px;}
.x25{left:21.225000px;}
.x21{left:22.305000px;}
.x26{left:23.745000px;}
.x20{left:25.185000px;}
.x37{left:26.280000px;}
.x23{left:27.345000px;}
.x27{left:28.830000px;}
.x22{left:29.910000px;}
.x41{left:33.165000px;}
.x40{left:34.605000px;}
.x42{left:36.765000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.x29{left:209.970000px;}
.x5{left:216.075000px;}
.x15{left:221.475000px;}
.x18{left:229.050000px;}
.x6{left:238.755000px;}
.x14{left:243.105000px;}
.xe{left:254.985000px;}
.x10{left:275.145000px;}
.x2b{left:281.985000px;}
.xa{left:286.305000px;}
.x16{left:301.785000px;}
.x7{left:310.785000px;}
.x28{left:313.665000px;}
.x3a{left:334.905000px;}
.x2c{left:342.870000px;}
.x11{left:345.390000px;}
.x39{left:347.190000px;}
.xb{left:377.430000px;}
.x44{left:378.510000px;}
.x17{left:382.830000px;}
.xf{left:387.870000px;}
.x1a{left:395.430000px;}
.x2d{left:404.070000px;}
.x3b{left:409.110000px;}
.x9{left:426.750000px;}
.xc{left:438.660000px;}
.xd{left:445.500000px;}
.x13{left:449.820000px;}
.x45{left:451.260000px;}
.x3{left:454.959000px;}
.x2e{left:465.300000px;}
.x12{left:475.020000px;}
.x3c{left:477.900000px;}
.x8{left:486.180000px;}
.x2f{left:514.260000px;}
.x3d{left:550.665000px;}
.x30{left:575.505000px;}
.x1b{left:603.945000px;}
.x3e{left:620.865000px;}
.x31{left:636.750000px;}
.x3f{left:687.150000px;}
.x1d{left:698.310000px;}
.x43{left:754.125000px;}
@media print{
.v1{vertical-align:-92.320000pt;}
.v4{vertical-align:-5.120000pt;}
.v2{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.560000pt;}
.v5{vertical-align:5.120000pt;}
.v6{vertical-align:12.800000pt;}
.v7{vertical-align:16.640000pt;}
.ls13{letter-spacing:-2.112000pt;}
.ls12{letter-spacing:-1.696000pt;}
.ls2{letter-spacing:-1.280000pt;}
.lsd{letter-spacing:-1.264000pt;}
.ls4{letter-spacing:-0.864000pt;}
.ls10{letter-spacing:-0.832000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls1b{letter-spacing:-0.450667pt;}
.ls17{letter-spacing:-0.445333pt;}
.ls3{letter-spacing:-0.432533pt;}
.ls8{letter-spacing:-0.414933pt;}
.ls15{letter-spacing:-0.014080pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.017920pt;}
.ls18{letter-spacing:0.208533pt;}
.lsf{letter-spacing:0.414720pt;}
.lsa{letter-spacing:0.414933pt;}
.ls19{letter-spacing:0.445333pt;}
.ls5{letter-spacing:0.450667pt;}
.ls14{letter-spacing:0.591360pt;}
.ls9{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.746667pt;}
.ls16{letter-spacing:0.832000pt;}
.lsc{letter-spacing:1.280000pt;}
.ls1a{letter-spacing:5.760000pt;}
.lsb{letter-spacing:36.254720pt;}
.lse{letter-spacing:38.921387pt;}
.ls1{letter-spacing:215.786667pt;}
.ws8{word-spacing:-53.760000pt;}
.wsc{word-spacing:-16.000000pt;}
.ws11{word-spacing:-14.720000pt;}
.ws12{word-spacing:-13.890667pt;}
.ws6{word-spacing:-13.854933pt;}
.ws3{word-spacing:-13.457920pt;}
.ws4{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.025067pt;}
.ws1{word-spacing:-13.007467pt;}
.ws18{word-spacing:-12.989333pt;}
.ws9{word-spacing:-12.608000pt;}
.ws2{word-spacing:-12.576000pt;}
.ws19{word-spacing:-12.176000pt;}
.ws7{word-spacing:-12.160000pt;}
.wsf{word-spacing:-11.744000pt;}
.ws14{word-spacing:-11.392000pt;}
.ws10{word-spacing:-11.328000pt;}
.ws17{word-spacing:-11.005333pt;}
.ws16{word-spacing:-10.768533pt;}
.wsd{word-spacing:-10.560000pt;}
.ws13{word-spacing:-10.545920pt;}
.ws15{word-spacing:-10.114667pt;}
.wsb{word-spacing:-9.280000pt;}
.wse{word-spacing:-8.640000pt;}
.wsa{word-spacing:-8.000000pt;}
.ws0{word-spacing:0.000000pt;}
._12{margin-left:-5.139627pt;}
._11{margin-left:-3.919787pt;}
._4{margin-left:-2.880000pt;}
._0{margin-left:-1.935360pt;}
._1{margin-left:-0.913920pt;}
._2{width:0.967680pt;}
._3{width:2.096640pt;}
._8{width:3.841707pt;}
._9{width:5.268480pt;}
._6{width:6.967467pt;}
._5{width:7.861760pt;}
._b{width:8.950187pt;}
._7{width:10.392320pt;}
._a{width:11.750400pt;}
._10{width:14.539520pt;}
._e{width:15.469227pt;}
._d{width:16.595627pt;}
._c{width:17.794560pt;}
._f{width:18.883840pt;}
._13{width:20.375040pt;}
._15{width:21.772800pt;}
._14{width:22.901760pt;}
._16{width:24.299520pt;}
._17{width:25.469867pt;}
._18{width:27.041280pt;}
._19{width:28.276480pt;}
._1c{width:29.453227pt;}
._1b{width:30.812160pt;}
._1a{width:754.826667pt;}
.fsb{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs8{font-size:34.560000pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:42.240000pt;}
.fsa{font-size:48.640000pt;}
.fs3{font-size:53.333333pt;}
.fs5{font-size:53.760000pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:85.760000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y147{bottom:2.546667pt;}
.y15d{bottom:2.560000pt;}
.y14d{bottom:2.866667pt;}
.y160{bottom:2.880000pt;}
.y14b{bottom:3.186667pt;}
.y12c{bottom:3.200000pt;}
.y114{bottom:3.213333pt;}
.y52{bottom:3.506667pt;}
.y130{bottom:3.520000pt;}
.y117{bottom:3.533333pt;}
.y10d{bottom:4.480000pt;}
.y164{bottom:4.800000pt;}
.y155{bottom:4.826667pt;}
.y152{bottom:5.146667pt;}
.y166{bottom:5.440000pt;}
.y145{bottom:8.626667pt;}
.y15b{bottom:8.960000pt;}
.y159{bottom:9.280000pt;}
.y16b{bottom:9.320000pt;}
.y181{bottom:9.906667pt;}
.y111{bottom:10.880000pt;}
.y12a{bottom:10.906667pt;}
.y11f{bottom:11.186667pt;}
.y119{bottom:11.200000pt;}
.y154{bottom:11.226667pt;}
.y178{bottom:11.506667pt;}
.y16f{bottom:11.520000pt;}
.y17a{bottom:11.826667pt;}
.y172{bottom:11.853333pt;}
.y17e{bottom:12.146667pt;}
.y162{bottom:13.120000pt;}
.y148{bottom:14.706667pt;}
.y146{bottom:14.746667pt;}
.y143{bottom:15.026667pt;}
.y15c{bottom:15.040000pt;}
.y14a{bottom:15.346667pt;}
.y15f{bottom:15.360000pt;}
.y180{bottom:16.306667pt;}
.y16c{bottom:16.360000pt;}
.y14f{bottom:17.306667pt;}
.y174{bottom:18.240000pt;}
.y17c{bottom:18.546667pt;}
.y112{bottom:18.560000pt;}
.y12b{bottom:18.586667pt;}
.y121{bottom:18.866667pt;}
.y11a{bottom:18.880000pt;}
.y120{bottom:18.893333pt;}
.y158{bottom:21.440000pt;}
.y153{bottom:23.386667pt;}
.y177{bottom:25.266667pt;}
.y16e{bottom:25.280000pt;}
.y179{bottom:25.586667pt;}
.y170{bottom:25.600000pt;}
.y17d{bottom:25.906667pt;}
.y142{bottom:27.506667pt;}
.y15e{bottom:27.520000pt;}
.y151{bottom:29.786667pt;}
.y6{bottom:31.933340pt;}
.y157{bottom:33.920000pt;}
.y127{bottom:41.946667pt;}
.y123{bottom:42.266667pt;}
.y12e{bottom:57.946667pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y10f{bottom:89.293333pt;}
.y22{bottom:123.790666pt;}
.y51{bottom:165.840000pt;}
.y50{bottom:166.786667pt;}
.y19{bottom:175.052000pt;}
.y82{bottom:184.400000pt;}
.y81{bottom:185.346667pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y80{bottom:205.506667pt;}
.y1c3{bottom:205.826667pt;}
.y13e{bottom:208.386667pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.yef{bottom:210.946667pt;}
.y108{bottom:214.146667pt;}
.yd3{bottom:216.386667pt;}
.y1b4{bottom:217.346667pt;}
.y4e{bottom:220.573333pt;}
.y7f{bottom:221.533333pt;}
.y13d{bottom:224.413333pt;}
.yaa{bottom:226.973333pt;}
.y107{bottom:229.853333pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.yd2{bottom:232.413333pt;}
.yc1{bottom:232.733333pt;}
.y1b3{bottom:233.053333pt;}
.y4d{bottom:236.573333pt;}
.y7e{bottom:237.533333pt;}
.y1cd{bottom:237.853333pt;}
.y18a{bottom:240.093333pt;}
.y13c{bottom:240.413333pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.ya9{bottom:242.973333pt;}
.y106{bottom:245.853333pt;}
.yc0{bottom:248.413333pt;}
.y4c{bottom:252.573333pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y7d{bottom:253.533333pt;}
.y1b2{bottom:254.493333pt;}
.y13b{bottom:256.413333pt;}
.ya8{bottom:258.973333pt;}
.y1c2{bottom:259.293333pt;}
.y105{bottom:261.853333pt;}
.ybf{bottom:264.413333pt;}
.y4b{bottom:268.573333pt;}
.y7c{bottom:269.533333pt;}
.y1b1{bottom:270.173333pt;}
.y13a{bottom:272.413333pt;}
.ya7{bottom:274.973333pt;}
.ye3{bottom:275.293333pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y104{bottom:277.853333pt;}
.ybe{bottom:280.413333pt;}
.yee{bottom:280.733333pt;}
.y4a{bottom:284.573333pt;}
.y7b{bottom:285.533333pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y139{bottom:288.413333pt;}
.ya6{bottom:290.973333pt;}
.y1cc{bottom:291.293333pt;}
.y1b0{bottom:291.933333pt;}
.y103{bottom:293.853333pt;}
.ybd{bottom:296.413333pt;}
.ye2{bottom:296.733333pt;}
.y49{bottom:300.573333pt;}
.y7a{bottom:301.533333pt;}
.yed{bottom:301.853333pt;}
.y138{bottom:304.413333pt;}
.ya5{bottom:306.973333pt;}
.y1af{bottom:307.613333pt;}
.y10{bottom:309.452000pt;}
.y102{bottom:309.853333pt;}
.ybc{bottom:312.413333pt;}
.y1c1{bottom:312.733333pt;}
.y48{bottom:316.573333pt;}
.y79{bottom:317.533333pt;}
.y137{bottom:320.413333pt;}
.ya4{bottom:322.973333pt;}
.y1ae{bottom:323.613333pt;}
.y101{bottom:325.853333pt;}
.ybb{bottom:328.413333pt;}
.y1cb{bottom:328.733333pt;}
.y47{bottom:332.613333pt;}
.y78{bottom:333.573333pt;}
.y136{bottom:336.453333pt;}
.yec{bottom:339.333333pt;}
.y100{bottom:341.893333pt;}
.yf{bottom:343.809333pt;}
.yba{bottom:344.453333pt;}
.ya3{bottom:344.773333pt;}
.y1ad{bottom:345.413333pt;}
.y46{bottom:348.613333pt;}
.y1c0{bottom:349.893333pt;}
.y135{bottom:352.453333pt;}
.yeb{bottom:355.013333pt;}
.y77{bottom:355.333333pt;}
.yff{bottom:357.893333pt;}
.yb9{bottom:360.453333pt;}
.y1ac{bottom:361.093333pt;}
.ye{bottom:362.706666pt;}
.y45{bottom:364.613333pt;}
.y1bf{bottom:365.573333pt;}
.ya2{bottom:365.893333pt;}
.y76{bottom:371.013333pt;}
.yfe{bottom:373.893333pt;}
.yb8{bottom:376.453333pt;}
.y44{bottom:380.613333pt;}
.yd1{bottom:381.893333pt;}
.y1ab{bottom:382.533333pt;}
.y75{bottom:387.013333pt;}
.ya1{bottom:387.333333pt;}
.yfd{bottom:389.893333pt;}
.yb7{bottom:392.453333pt;}
.yea{bottom:392.773333pt;}
.y43{bottom:396.613333pt;}
.yd0{bottom:397.573333pt;}
.y1aa{bottom:398.213333pt;}
.y74{bottom:403.013333pt;}
.y134{bottom:404.933333pt;}
.ye1{bottom:408.453333pt;}
.ya0{bottom:408.773333pt;}
.yfc{bottom:411.653333pt;}
.y42{bottom:412.613333pt;}
.ycf{bottom:413.573333pt;}
.yb6{bottom:413.893333pt;}
.y1a9{bottom:414.213333pt;}
.y168{bottom:417.413333pt;}
.y133{bottom:418.360000pt;}
.y12d{bottom:418.373333pt;}
.y73{bottom:419.013333pt;}
.ye0{bottom:424.453333pt;}
.y41{bottom:428.613333pt;}
.yb5{bottom:429.573333pt;}
.y9f{bottom:429.893333pt;}
.y167{bottom:432.773333pt;}
.yfb{bottom:433.093333pt;}
.y72{bottom:435.013333pt;}
.y1ca{bottom:435.333333pt;}
.y1a8{bottom:435.973333pt;}
.ydf{bottom:440.453333pt;}
.y1be{bottom:440.773333pt;}
.y40{bottom:444.640000pt;}
.yb4{bottom:445.600000pt;}
.y165{bottom:446.240000pt;}
.yd{bottom:446.990669pt;}
.y132{bottom:449.760000pt;}
.y71{bottom:451.040000pt;}
.y9e{bottom:451.360000pt;}
.y1a7{bottom:451.680000pt;}
.yfa{bottom:453.920000pt;}
.yde{bottom:456.480000pt;}
.y3f{bottom:460.640000pt;}
.yb3{bottom:461.600000pt;}
.yc{bottom:462.990669pt;}
.y161{bottom:464.800000pt;}
.y70{bottom:467.040000pt;}
.ydd{bottom:472.480000pt;}
.y9d{bottom:472.800000pt;}
.y1a6{bottom:473.440000pt;}
.yf9{bottom:475.680000pt;}
.y3e{bottom:476.640000pt;}
.yb2{bottom:477.600000pt;}
.yb{bottom:478.990666pt;}
.y131{bottom:481.120000pt;}
.y163{bottom:482.080000pt;}
.y6f{bottom:483.040000pt;}
.y9c{bottom:488.480000pt;}
.y1c9{bottom:488.800000pt;}
.y1a5{bottom:489.120000pt;}
.yf8{bottom:491.360000pt;}
.y3d{bottom:492.640000pt;}
.yb1{bottom:493.600000pt;}
.ydc{bottom:493.920000pt;}
.ya{bottom:494.990666pt;}
.y156{bottom:498.400000pt;}
.y6e{bottom:499.040000pt;}
.y1c8{bottom:504.480000pt;}
.yf7{bottom:507.360000pt;}
.y3c{bottom:508.640000pt;}
.yb0{bottom:509.600000pt;}
.y9b{bottom:509.920000pt;}
.y1a4{bottom:510.240000pt;}
.y12f{bottom:512.800000pt;}
.y189{bottom:513.440000pt;}
.y6d{bottom:515.040000pt;}
.y10a{bottom:521.120000pt;}
.y15a{bottom:523.680000pt;}
.y3b{bottom:524.640000pt;}
.y9a{bottom:525.600000pt;}
.y1c7{bottom:525.920000pt;}
.yf6{bottom:529.440000pt;}
.y6c{bottom:531.040000pt;}
.y1d5{bottom:531.360000pt;}
.y1a3{bottom:532.000000pt;}
.y188{bottom:534.240000pt;}
.ydb{bottom:536.800000pt;}
.y3a{bottom:540.640000pt;}
.y99{bottom:541.600000pt;}
.y109{bottom:541.920000pt;}
.y126{bottom:544.160000pt;}
.y6b{bottom:547.040000pt;}
.y1bd{bottom:547.360000pt;}
.y1a2{bottom:547.680000pt;}
.y14e{bottom:548.960000pt;}
.yf5{bottom:552.800000pt;}
.y187{bottom:555.386667pt;}
.y39{bottom:556.666667pt;}
.y98{bottom:557.626667pt;}
.yda{bottom:557.946667pt;}
.y6a{bottom:563.066667pt;}
.y1a1{bottom:563.706667pt;}
.y150{bottom:566.280000pt;}
.yf4{bottom:568.506667pt;}
.ye9{bottom:568.826667pt;}
.y38{bottom:572.666667pt;}
.y97{bottom:573.626667pt;}
.y9{bottom:573.786667pt;}
.y129{bottom:575.240000pt;}
.y186{bottom:576.826667pt;}
.y69{bottom:579.066667pt;}
.yd9{bottom:579.386667pt;}
.y1a0{bottom:579.706667pt;}
.yf3{bottom:584.506667pt;}
.y1d4{bottom:584.826667pt;}
.y37{bottom:588.666667pt;}
.y96{bottom:589.626667pt;}
.ye8{bottom:589.946667pt;}
.y149{bottom:591.240000pt;}
.y8{bottom:592.685334pt;}
.y68{bottom:595.066667pt;}
.y19f{bottom:595.706667pt;}
.y185{bottom:598.266667pt;}
.yf2{bottom:600.506667pt;}
.yd8{bottom:600.826667pt;}
.y36{bottom:604.346667pt;}
.y14c{bottom:604.360000pt;}
.y95{bottom:605.626667pt;}
.y128{bottom:606.600000pt;}
.y67{bottom:611.066667pt;}
.y19e{bottom:611.706667pt;}
.yd7{bottom:616.506667pt;}
.y1c6{bottom:616.826667pt;}
.y184{bottom:619.386667pt;}
.y35{bottom:620.666667pt;}
.y94{bottom:621.626667pt;}
.y1d3{bottom:621.946667pt;}
.y66{bottom:627.066667pt;}
.y19d{bottom:627.706667pt;}
.y141{bottom:629.640000pt;}
.yd6{bottom:632.506667pt;}
.y34{bottom:636.986667pt;}
.y93{bottom:637.626667pt;}
.y1bc{bottom:637.946667pt;}
.y122{bottom:637.960000pt;}
.y183{bottom:640.826667pt;}
.y19c{bottom:643.706667pt;}
.y7{bottom:645.598667pt;}
.yd5{bottom:648.506667pt;}
.y65{bottom:648.826667pt;}
.y33{bottom:652.026667pt;}
.y92{bottom:653.626667pt;}
.y1c5{bottom:653.946667pt;}
.y144{bottom:654.600000pt;}
.y182{bottom:656.826667pt;}
.y1d2{bottom:659.386667pt;}
.y19b{bottom:659.706667pt;}
.y64{bottom:664.506667pt;}
.y32{bottom:668.066667pt;}
.y3{bottom:668.977329pt;}
.y125{bottom:669.360000pt;}
.y91{bottom:669.666667pt;}
.y17f{bottom:670.320000pt;}
.y1d1{bottom:675.106667pt;}
.y1bb{bottom:675.426667pt;}
.y19a{bottom:675.746667pt;}
.y63{bottom:680.546667pt;}
.y31{bottom:684.066667pt;}
.y140{bottom:685.346667pt;}
.y90{bottom:685.666667pt;}
.y1ba{bottom:691.106667pt;}
.yce{bottom:691.426667pt;}
.y199{bottom:691.746667pt;}
.y62{bottom:696.546667pt;}
.y1d0{bottom:696.866667pt;}
.y17b{bottom:698.480000pt;}
.y30{bottom:700.066667pt;}
.y124{bottom:700.720000pt;}
.y8f{bottom:701.666667pt;}
.ycd{bottom:707.106667pt;}
.y13f{bottom:707.426667pt;}
.y198{bottom:707.746667pt;}
.y61{bottom:712.546667pt;}
.y1b9{bottom:712.866667pt;}
.y2f{bottom:716.066667pt;}
.y8e{bottom:717.666667pt;}
.ycc{bottom:723.106667pt;}
.y197{bottom:723.746667pt;}
.y60{bottom:728.546667pt;}
.y1c4{bottom:728.866667pt;}
.y2e{bottom:732.066667pt;}
.y10e{bottom:732.080000pt;}
.y8d{bottom:733.666667pt;}
.yd4{bottom:733.986667pt;}
.ycb{bottom:739.106667pt;}
.ye7{bottom:739.426667pt;}
.y196{bottom:739.746667pt;}
.y5f{bottom:744.546667pt;}
.y176{bottom:744.880000pt;}
.y2d{bottom:748.066667pt;}
.y8c{bottom:749.666667pt;}
.yca{bottom:755.106667pt;}
.yaf{bottom:755.426667pt;}
.y195{bottom:755.746667pt;}
.y5e{bottom:760.546667pt;}
.ye6{bottom:760.866667pt;}
.y11e{bottom:763.440000pt;}
.y2c{bottom:764.066667pt;}
.y8b{bottom:765.666667pt;}
.y1b8{bottom:765.986667pt;}
.yae{bottom:771.106667pt;}
.y194{bottom:771.746667pt;}
.y5d{bottom:776.546667pt;}
.y2b{bottom:780.093333pt;}
.y2{bottom:781.661334pt;}
.y8a{bottom:781.693333pt;}
.ye5{bottom:782.013333pt;}
.yad{bottom:787.133333pt;}
.y1cf{bottom:787.453333pt;}
.y193{bottom:787.773333pt;}
.y175{bottom:791.280000pt;}
.y173{bottom:791.293333pt;}
.y5c{bottom:792.573333pt;}
.y11d{bottom:794.800000pt;}
.y11c{bottom:794.813333pt;}
.y2a{bottom:796.093333pt;}
.y89{bottom:797.693333pt;}
.yac{bottom:803.133333pt;}
.y192{bottom:803.773333pt;}
.y5b{bottom:808.573333pt;}
.y29{bottom:812.093333pt;}
.y88{bottom:813.693333pt;}
.yc9{bottom:819.133333pt;}
.y1b7{bottom:819.453333pt;}
.y191{bottom:819.773333pt;}
.y5a{bottom:824.573333pt;}
.y1ce{bottom:824.893333pt;}
.y11b{bottom:826.160000pt;}
.y118{bottom:826.173333pt;}
.y87{bottom:829.693333pt;}
.y28{bottom:830.013333pt;}
.yc8{bottom:835.133333pt;}
.y190{bottom:835.773333pt;}
.y171{bottom:837.360000pt;}
.y16d{bottom:837.373333pt;}
.y59{bottom:840.573333pt;}
.y86{bottom:845.693333pt;}
.yab{bottom:846.013333pt;}
.yc7{bottom:851.133333pt;}
.ye4{bottom:851.453333pt;}
.y18f{bottom:851.773333pt;}
.y27{bottom:854.653333pt;}
.y58{bottom:856.573333pt;}
.y1b6{bottom:856.893333pt;}
.y116{bottom:857.520000pt;}
.y115{bottom:857.533333pt;}
.y1{bottom:859.312000pt;}
.y85{bottom:861.693333pt;}
.yc6{bottom:867.133333pt;}
.y18e{bottom:867.773333pt;}
.y57{bottom:872.573333pt;}
.y84{bottom:877.693333pt;}
.yf1{bottom:878.013333pt;}
.yc5{bottom:883.133333pt;}
.y16a{bottom:883.773333pt;}
.y56{bottom:888.573333pt;}
.y113{bottom:888.920000pt;}
.y110{bottom:888.933333pt;}
.y83{bottom:893.733333pt;}
.y1b5{bottom:894.053333pt;}
.yc4{bottom:899.173333pt;}
.yf0{bottom:899.493333pt;}
.y18d{bottom:899.813333pt;}
.y26{bottom:902.053333pt;}
.y55{bottom:909.733333pt;}
.yc3{bottom:915.173333pt;}
.y18c{bottom:915.813333pt;}
.y25{bottom:917.413333pt;}
.y10c{bottom:919.973333pt;}
.y169{bottom:923.173333pt;}
.yc2{bottom:931.173333pt;}
.y54{bottom:931.493333pt;}
.y18b{bottom:931.813333pt;}
.y24{bottom:932.773333pt;}
.y53{bottom:947.173333pt;}
.y10b{bottom:947.493333pt;}
.y23{bottom:947.813333pt;}
.y4f{bottom:996.133333pt;}
.h30{height:12.466667pt;}
.hd{height:15.360000pt;}
.h37{height:15.680000pt;}
.h38{height:16.640000pt;}
.h33{height:16.672000pt;}
.h11{height:17.906667pt;}
.h39{height:17.920000pt;}
.h2c{height:24.306667pt;}
.h2d{height:24.312000pt;}
.h2e{height:24.320000pt;}
.h35{height:24.640000pt;}
.h2a{height:24.658667pt;}
.h43{height:27.506667pt;}
.h3a{height:27.546667pt;}
.h7{height:28.560000pt;}
.h16{height:30.384000pt;}
.h13{height:30.386667pt;}
.h14{height:30.392000pt;}
.h15{height:30.400000pt;}
.h20{height:30.432000pt;}
.h21{height:30.440000pt;}
.h18{height:30.704000pt;}
.h17{height:30.706667pt;}
.h1f{height:30.712000pt;}
.h19{height:30.720000pt;}
.h1b{height:30.738667pt;}
.h1c{height:30.744000pt;}
.h24{height:30.746667pt;}
.h25{height:30.752000pt;}
.h1d{height:30.760000pt;}
.h23{height:31.040000pt;}
.h36{height:32.960000pt;}
.h2f{height:37.426667pt;}
.he{height:37.537500pt;}
.h6{height:40.800000pt;}
.h27{height:41.456250pt;}
.h31{height:41.632000pt;}
.h32{height:41.640000pt;}
.h2b{height:42.570000pt;}
.h3{height:42.840000pt;}
.h41{height:45.424000pt;}
.h40{height:45.426667pt;}
.h42{height:45.440000pt;}
.h3e{height:45.744000pt;}
.h3c{height:45.746667pt;}
.h3f{height:45.760000pt;}
.h3d{height:47.737500pt;}
.h2{height:48.960000pt;}
.h3b{height:49.020000pt;}
.h29{height:49.618667pt;}
.h26{height:49.624000pt;}
.h28{height:49.640000pt;}
.h34{height:49.920000pt;}
.h10{height:52.736250pt;}
.ha{height:52.762500pt;}
.h9{height:54.180000pt;}
.hf{height:55.256809pt;}
.hc{height:62.812500pt;}
.h5{height:69.360000pt;}
.hb{height:86.430000pt;}
.h1e{height:93.152000pt;}
.h1a{height:93.458667pt;}
.h4{height:105.826671pt;}
.h22{height:124.826667pt;}
.h12{height:187.240000pt;}
.h8{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w4{width:19.840000pt;}
.w8{width:40.000000pt;}
.wf{width:42.880000pt;}
.wc{width:53.466667pt;}
.wd{width:53.746667pt;}
.w11{width:53.778667pt;}
.w13{width:53.784000pt;}
.we{width:53.786667pt;}
.w10{width:53.792000pt;}
.w14{width:53.800000pt;}
.w12{width:57.280000pt;}
.w1a{width:57.938667pt;}
.w21{width:57.944000pt;}
.w22{width:57.960000pt;}
.w17{width:60.506667pt;}
.w1c{width:60.512000pt;}
.w1d{width:60.520000pt;}
.w1b{width:61.120000pt;}
.w19{width:61.746667pt;}
.w1f{width:61.752000pt;}
.w20{width:61.760000pt;}
.wb{width:63.360000pt;}
.w18{width:64.032000pt;}
.w1e{width:64.040000pt;}
.w16{width:65.306667pt;}
.w7{width:83.218667pt;}
.w9{width:83.224000pt;}
.wa{width:83.240000pt;}
.w15{width:104.640000pt;}
.w5{width:147.240000pt;}
.w6{width:184.706667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x19{left:1.586667pt;}
.x1c{left:5.106667pt;}
.x2a{left:7.026667pt;}
.x1e{left:8.306667pt;}
.x32{left:9.906667pt;}
.x36{left:11.186667pt;}
.x34{left:12.480000pt;}
.x35{left:13.426667pt;}
.x24{left:14.386667pt;}
.x33{left:15.360000pt;}
.x1f{left:16.626667pt;}
.x38{left:17.600000pt;}
.x25{left:18.866667pt;}
.x21{left:19.826667pt;}
.x26{left:21.106667pt;}
.x20{left:22.386667pt;}
.x37{left:23.360000pt;}
.x23{left:24.306667pt;}
.x27{left:25.626667pt;}
.x22{left:26.586667pt;}
.x41{left:29.480000pt;}
.x40{left:30.760000pt;}
.x42{left:32.680000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.x29{left:186.640000pt;}
.x5{left:192.066667pt;}
.x15{left:196.866667pt;}
.x18{left:203.600000pt;}
.x6{left:212.226667pt;}
.x14{left:216.093333pt;}
.xe{left:226.653333pt;}
.x10{left:244.573333pt;}
.x2b{left:250.653333pt;}
.xa{left:254.493333pt;}
.x16{left:268.253333pt;}
.x7{left:276.253333pt;}
.x28{left:278.813333pt;}
.x3a{left:297.693333pt;}
.x2c{left:304.773333pt;}
.x11{left:307.013333pt;}
.x39{left:308.613333pt;}
.xb{left:335.493333pt;}
.x44{left:336.453333pt;}
.x17{left:340.293333pt;}
.xf{left:344.773333pt;}
.x1a{left:351.493333pt;}
.x2d{left:359.173333pt;}
.x3b{left:363.653333pt;}
.x9{left:379.333333pt;}
.xc{left:389.920000pt;}
.xd{left:396.000000pt;}
.x13{left:399.840000pt;}
.x45{left:401.120000pt;}
.x3{left:404.408000pt;}
.x2e{left:413.600000pt;}
.x12{left:422.240000pt;}
.x3c{left:424.800000pt;}
.x8{left:432.160000pt;}
.x2f{left:457.120000pt;}
.x3d{left:489.480000pt;}
.x30{left:511.560000pt;}
.x1b{left:536.840000pt;}
.x3e{left:551.880000pt;}
.x31{left:566.000000pt;}
.x3f{left:610.800000pt;}
.x1d{left:620.720000pt;}
.x43{left:670.333333pt;}
}




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