
    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_fc5878776029b70799a42c5b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.982910;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_87dbbd2ba9b632ea8feb642e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.981934;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_dd1b09dce5b2a5928434b565.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.934082;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_3cb6796f30a1c4b9286bc69d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900879;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_4750b6f777cbb3272a324892.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.053223;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_260c8e12108cd29a5b08b949.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1d605d8bf260b53782130188.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.052734;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_146ffc935d42cc32c52e8a85.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.002930;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_23a03aab1f140829f4768e50.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.934082;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_cc134b0320043dcabf177c67.woff2')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_a200f524164095ae2fc88b28.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.052734;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);}
.v2{vertical-align:-72.840000px;}
.v3{vertical-align:-64.500000px;}
.v1{vertical-align:-34.680000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:39.600000px;}
.ls9{letter-spacing:-0.864000px;}
.lsf{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.072000px;}
.lsc{letter-spacing:-0.058320px;}
.ls6{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.022320px;}
.ls18{letter-spacing:0.120000px;}
.lsb{letter-spacing:0.123000px;}
.ls16{letter-spacing:0.126000px;}
.ls7{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.149760px;}
.ls14{letter-spacing:0.174000px;}
.ls0{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.306000px;}
.ls17{letter-spacing:0.324000px;}
.ls10{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.371520px;}
.ls1{letter-spacing:7.601760px;}
.ls3{letter-spacing:23.441760px;}
.ls12{letter-spacing:119.466720px;}
.ls11{letter-spacing:150.426720px;}
.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:-19.038240px;}
.ws7{word-spacing:-16.632000px;}
.ws0{word-spacing:-16.488000px;}
.ws1{word-spacing:-16.272000px;}
.ws2{word-spacing:-16.056000px;}
.ws9{word-spacing:-15.912000px;}
.ws4{word-spacing:-13.811760px;}
.ws3{word-spacing:-13.505760px;}
.ws6{word-spacing:-13.447440px;}
.wsa{word-spacing:-12.236544px;}
.wsb{word-spacing:-10.902240px;}
.ws5{word-spacing:0.000000px;}
.wsc{word-spacing:75.826080px;}
.wsd{word-spacing:101.806080px;}
.wse{word-spacing:111.281520px;}
.wsf{word-spacing:633.930000px;}
._38{margin-left:-11.148000px;}
._21{margin-left:-6.823440px;}
._36{margin-left:-2.364000px;}
._1{margin-left:-1.126080px;}
._3{width:1.462080px;}
._9{width:2.775360px;}
._17{width:3.848640px;}
._c{width:5.436000px;}
._5{width:6.492000px;}
._4{width:7.632000px;}
._b{width:8.859840px;}
._f{width:10.486080px;}
._e{width:11.520000px;}
._19{width:12.653760px;}
._18{width:13.798080px;}
._10{width:15.120000px;}
._1b{width:16.398000px;}
._d{width:17.424000px;}
._13{width:18.720000px;}
._14{width:19.728000px;}
._16{width:21.001920px;}
._7{width:22.320000px;}
._6{width:23.616000px;}
._15{width:25.560000px;}
._12{width:26.640000px;}
._11{width:27.864000px;}
._27{width:29.088000px;}
._39{width:30.216000px;}
._34{width:32.341920px;}
._20{width:33.394080px;}
._1f{width:34.416000px;}
._2e{width:35.487840px;}
._24{width:42.369600px;}
._1a{width:43.632000px;}
._2a{width:44.860320px;}
._31{width:46.296000px;}
._25{width:48.704400px;}
._30{width:50.518080px;}
._2f{width:51.768000px;}
._23{width:59.819520px;}
._26{width:69.679920px;}
._2c{width:82.225920px;}
._22{width:91.442880px;}
._32{width:122.268000px;}
._2d{width:127.884000px;}
._2b{width:162.420000px;}
._35{width:170.832000px;}
._33{width:174.396000px;}
._37{width:193.426080px;}
._8{width:296.790240px;}
._28{width:361.560000px;}
._29{width:369.408000px;}
._1d{width:394.134240px;}
._2{width:468.046560px;}
._0{width:650.851680px;}
._a{width:723.396000px;}
._1e{width:793.794240px;}
._1c{width:1262.490240px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc6{color:rgb(89,89,89);}
.fc5{color:rgb(64,64,64);}
.fc4{color:rgb(68,84,106);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs8{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs7{font-size:54.144000px;}
.fs3{font-size:59.760000px;}
.fs6{font-size:59.904000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yf0{bottom:3.585000px;}
.yde{bottom:3.600000px;}
.yfa{bottom:3.615000px;}
.ye8{bottom:3.765000px;}
.yda{bottom:3.780000px;}
.ye3{bottom:3.795000px;}
.y137{bottom:4.140000px;}
.y151{bottom:4.155000px;}
.ydc{bottom:12.600000px;}
.ye7{bottom:20.145000px;}
.ye4{bottom:20.160000px;}
.ye2{bottom:20.175000px;}
.y127{bottom:20.595000px;}
.yd8{bottom:20.880000px;}
.y136{bottom:22.500000px;}
.y150{bottom:22.515000px;}
.y141{bottom:27.360000px;}
.ydb{bottom:29.160000px;}
.yef{bottom:36.525000px;}
.yfb{bottom:36.540000px;}
.yf9{bottom:36.555000px;}
.ye6{bottom:36.705000px;}
.ye0{bottom:36.720000px;}
.y14f{bottom:40.695000px;}
.y135{bottom:40.860000px;}
.y140{bottom:45.720000px;}
.yee{bottom:53.085000px;}
.yf6{bottom:53.100000px;}
.y1ac{bottom:56.955000px;}
.y2a{bottom:57.600000px;}
.yd5{bottom:57.636000px;}
.y134{bottom:59.040000px;}
.y14e{bottom:59.055000px;}
.y126{bottom:61.590000px;}
.y13f{bottom:63.900000px;}
.yed{bottom:69.465000px;}
.yf5{bottom:69.660000px;}
.y1a1{bottom:74.520000px;}
.y133{bottom:77.400000px;}
.y14d{bottom:77.415000px;}
.y29{bottom:77.760000px;}
.yd4{bottom:77.796000px;}
.y125{bottom:78.150000px;}
.y13e{bottom:82.260000px;}
.yec{bottom:86.025000px;}
.yf4{bottom:86.040000px;}
.y121{bottom:89.670000px;}
.y132{bottom:95.760000px;}
.y14c{bottom:95.775000px;}
.y28{bottom:96.120000px;}
.yd3{bottom:96.156000px;}
.y1a0{bottom:98.310000px;}
.y13d{bottom:100.620000px;}
.yeb{bottom:102.405000px;}
.yf3{bottom:102.600000px;}
.y19d{bottom:102.630000px;}
.y1a2{bottom:105.375000px;}
.y120{bottom:106.230000px;}
.y124{bottom:113.250000px;}
.y131{bottom:113.940000px;}
.y14b{bottom:113.955000px;}
.y27{bottom:114.300000px;}
.yd2{bottom:114.336000px;}
.y59{bottom:114.480000px;}
.y19a{bottom:116.850000px;}
.y13c{bottom:118.800000px;}
.yea{bottom:118.965000px;}
.yf2{bottom:118.980000px;}
.y19e{bottom:119.910000px;}
.y147{bottom:122.955000px;}
.y123{bottom:129.810000px;}
.y130{bottom:132.300000px;}
.y14a{bottom:132.315000px;}
.y58{bottom:132.660000px;}
.y1a3{bottom:136.230000px;}
.y13b{bottom:137.160000px;}
.y146{bottom:141.495000px;}
.y26{bottom:144.720000px;}
.yd1{bottom:144.756000px;}
.y19b{bottom:148.320000px;}
.y12f{bottom:150.660000px;}
.y149{bottom:150.675000px;}
.y13a{bottom:155.520000px;}
.y11b{bottom:157.290000px;}
.y22{bottom:158.580000px;}
.y145{bottom:159.855000px;}
.y25{bottom:161.460000px;}
.yd0{bottom:161.490000px;}
.y57{bottom:163.080000px;}
.y1a4{bottom:167.115000px;}
.y148{bottom:168.855000px;}
.y12e{bottom:169.020000px;}
.y122{bottom:172.335000px;}
.y139{bottom:173.880000px;}
.y21{bottom:176.940000px;}
.y17a{bottom:177.915000px;}
.y24{bottom:178.200000px;}
.ycf{bottom:178.230000px;}
.yfc{bottom:179.280000px;}
.y56{bottom:179.820000px;}
.y11a{bottom:180.330000px;}
.y12d{bottom:187.200000px;}
.y143{bottom:187.230000px;}
.y138{bottom:192.060000px;}
.y20{bottom:195.300000px;}
.y55{bottom:196.560000px;}
.y53{bottom:197.100000px;}
.y197{bottom:197.460000px;}
.y1a5{bottom:197.970000px;}
.y181{bottom:198.870000px;}
.ycd{bottom:199.080000px;}
.ya0{bottom:199.980000px;}
.y12c{bottom:205.560000px;}
.y16c{bottom:207.180000px;}
.y1f{bottom:213.480000px;}
.y182{bottom:214.845000px;}
.y1f1{bottom:216.360000px;}
.y83{bottom:217.080000px;}
.y17b{bottom:218.010000px;}
.y52{bottom:219.060000px;}
.y196{bottom:219.420000px;}
.ycc{bottom:221.040000px;}
.y9f{bottom:221.940000px;}
.y11f{bottom:222.225000px;}
.y178{bottom:223.020000px;}
.ybc{bottom:223.200000px;}
.y12b{bottom:223.965000px;}
.yf8{bottom:226.320000px;}
.yf7{bottom:226.335000px;}
.y1a6{bottom:228.810000px;}
.y16b{bottom:229.140000px;}
.y1e{bottom:231.840000px;}
.y118{bottom:232.020000px;}
.y1f0{bottom:238.320000px;}
.y82{bottom:239.040000px;}
.y11d{bottom:239.295000px;}
.y51{bottom:241.020000px;}
.y195{bottom:241.380000px;}
.y1cd{bottom:242.280000px;}
.ycb{bottom:243.000000px;}
.ybb{bottom:244.980000px;}
.y16a{bottom:251.130000px;}
.y117{bottom:253.830000px;}
.y11c{bottom:255.855000px;}
.y17c{bottom:258.090000px;}
.y1a7{bottom:259.710000px;}
.y1ef{bottom:260.310000px;}
.y81{bottom:261.210000px;}
.y1d{bottom:262.830000px;}
.y50{bottom:263.010000px;}
.y194{bottom:263.370000px;}
.y1cc{bottom:264.270000px;}
.yca{bottom:264.990000px;}
.y9e{bottom:265.170000px;}
.yba{bottom:266.970000px;}
.y15b{bottom:268.590000px;}
.y1af{bottom:269.970000px;}
.y11e{bottom:271.185000px;}
.y169{bottom:273.090000px;}
.y116{bottom:275.790000px;}
.y1ee{bottom:282.270000px;}
.y80{bottom:283.170000px;}
.y1c{bottom:283.710000px;}
.y4f{bottom:284.970000px;}
.y193{bottom:285.330000px;}
.y1cb{bottom:286.230000px;}
.y9d{bottom:286.950000px;}
.yb9{bottom:288.930000px;}
.y15a{bottom:290.370000px;}
.y1a8{bottom:290.550000px;}
.yf1{bottom:292.935000px;}
.y168{bottom:295.050000px;}
.y115{bottom:297.750000px;}
.y17d{bottom:298.185000px;}
.y1ae{bottom:302.010000px;}
.y1b{bottom:302.070000px;}
.y17f{bottom:303.870000px;}
.y1ed{bottom:304.230000px;}
.y7f{bottom:305.130000px;}
.y4e{bottom:306.930000px;}
.y1ca{bottom:308.190000px;}
.y9c{bottom:308.910000px;}
.y199{bottom:310.065000px;}
.y177{bottom:310.890000px;}
.y159{bottom:312.330000px;}
.y167{bottom:317.010000px;}
.y114{bottom:319.710000px;}
.y1a{bottom:320.430000px;}
.y1a9{bottom:321.405000px;}
.y1ec{bottom:326.370000px;}
.y7e{bottom:327.090000px;}
.y192{bottom:328.530000px;}
.y4d{bottom:329.070000px;}
.y1c9{bottom:330.150000px;}
.y9b{bottom:330.870000px;}
.yb8{bottom:332.130000px;}
.y1ad{bottom:334.050000px;}
.y17e{bottom:338.295000px;}
.y19{bottom:338.790000px;}
.y113{bottom:341.670000px;}
.y180{bottom:344.370000px;}
.y1eb{bottom:348.330000px;}
.y7d{bottom:349.050000px;}
.y191{bottom:350.310000px;}
.y4c{bottom:351.030000px;}
.y1c8{bottom:352.110000px;}
.y1aa{bottom:352.290000px;}
.y19c{bottom:352.335000px;}
.y9a{bottom:352.830000px;}
.yb7{bottom:353.910000px;}
.y176{bottom:354.090000px;}
.y158{bottom:355.530000px;}
.y18{bottom:357.150000px;}
.y166{bottom:360.210000px;}
.y19f{bottom:368.385000px;}
.y1ea{bottom:370.290000px;}
.y7c{bottom:371.010000px;}
.y190{bottom:372.270000px;}
.y4b{bottom:372.990000px;}
.y1c7{bottom:374.070000px;}
.y99{bottom:374.790000px;}
.y17{bottom:375.330000px;}
.yb6{bottom:375.870000px;}
.y157{bottom:377.310000px;}
.y165{bottom:381.990000px;}
.y1ab{bottom:383.145000px;}
.y112{bottom:384.690000px;}
.y1e9{bottom:392.250000px;}
.y7b{bottom:392.970000px;}
.y16{bottom:393.690000px;}
.y18f{bottom:394.230000px;}
.y4a{bottom:394.950000px;}
.y1c6{bottom:396.030000px;}
.yc9{bottom:396.930000px;}
.yb5{bottom:397.830000px;}
.y156{bottom:399.270000px;}
.y164{bottom:403.950000px;}
.y15{bottom:412.050000px;}
.y1e8{bottom:414.210000px;}
.y7a{bottom:414.930000px;}
.y49{bottom:416.910000px;}
.y98{bottom:417.990000px;}
.yc8{bottom:418.890000px;}
.yb4{bottom:419.790000px;}
.y155{bottom:421.230000px;}
.ye9{bottom:425.640000px;}
.y163{bottom:426.090000px;}
.y111{bottom:427.710000px;}
.y14{bottom:431.130000px;}
.y1e7{bottom:436.170000px;}
.y79{bottom:436.890000px;}
.y18e{bottom:437.430000px;}
.y48{bottom:438.870000px;}
.y97{bottom:439.770000px;}
.y1c5{bottom:440.130000px;}
.yc7{bottom:440.850000px;}
.yb3{bottom:441.750000px;}
.y154{bottom:443.370000px;}
.y110{bottom:449.670000px;}
.y13{bottom:453.090000px;}
.y1e6{bottom:458.130000px;}
.y78{bottom:458.850000px;}
.y18d{bottom:459.210000px;}
.y47{bottom:460.830000px;}
.y96{bottom:461.730000px;}
.y1c4{bottom:462.090000px;}
.yc6{bottom:462.810000px;}
.yb2{bottom:463.710000px;}
.y162{bottom:468.930000px;}
.y10f{bottom:471.630000px;}
.y12{bottom:475.050000px;}
.y1e5{bottom:480.135000px;}
.y77{bottom:480.855000px;}
.y18c{bottom:481.215000px;}
.y46{bottom:482.835000px;}
.y95{bottom:483.735000px;}
.y1c3{bottom:484.095000px;}
.y153{bottom:485.355000px;}
.y175{bottom:485.715000px;}
.y161{bottom:490.935000px;}
.y10e{bottom:493.635000px;}
.y11{bottom:497.055000px;}
.y1e4{bottom:502.095000px;}
.y76{bottom:502.815000px;}
.y18b{bottom:503.175000px;}
.y152{bottom:503.715000px;}
.y45{bottom:504.795000px;}
.y94{bottom:505.695000px;}
.yc5{bottom:505.875000px;}
.y1c2{bottom:506.055000px;}
.yb1{bottom:506.955000px;}
.y174{bottom:507.675000px;}
.y160{bottom:512.895000px;}
.y10d{bottom:515.595000px;}
.y144{bottom:518.640000px;}
.y142{bottom:518.655000px;}
.y10{bottom:519.015000px;}
.y1e3{bottom:524.055000px;}
.y75{bottom:524.775000px;}
.y18a{bottom:525.135000px;}
.y44{bottom:526.755000px;}
.y93{bottom:527.835000px;}
.y1c1{bottom:528.015000px;}
.yb0{bottom:528.735000px;}
.y173{bottom:529.635000px;}
.y15f{bottom:534.135000px;}
.y10c{bottom:537.555000px;}
.yf{bottom:541.875000px;}
.y1e2{bottom:546.015000px;}
.y74{bottom:546.735000px;}
.y189{bottom:547.095000px;}
.y15e{bottom:548.355000px;}
.y43{bottom:548.715000px;}
.y92{bottom:549.795000px;}
.y1c0{bottom:549.975000px;}
.yaf{bottom:550.695000px;}
.y172{bottom:551.775000px;}
.ye5{bottom:558.120000px;}
.y10b{bottom:559.515000px;}
.ye{bottom:566.715000px;}
.y1e1{bottom:567.975000px;}
.y73{bottom:568.695000px;}
.y188{bottom:569.055000px;}
.y42{bottom:570.675000px;}
.y91{bottom:571.755000px;}
.y1bf{bottom:571.935000px;}
.yae{bottom:572.655000px;}
.y10a{bottom:581.475000px;}
.y1e0{bottom:589.935000px;}
.y72{bottom:590.835000px;}
.y187{bottom:591.015000px;}
.y41{bottom:592.635000px;}
.y90{bottom:593.715000px;}
.y171{bottom:593.895000px;}
.yad{bottom:594.615000px;}
.y109{bottom:603.435000px;}
.yd{bottom:606.855000px;}
.ye1{bottom:608.355000px;}
.ydf{bottom:608.370000px;}
.y1df{bottom:611.895000px;}
.y170{bottom:612.255000px;}
.y71{bottom:612.795000px;}
.y40{bottom:614.595000px;}
.y8f{bottom:615.675000px;}
.y1be{bottom:615.855000px;}
.y108{bottom:625.395000px;}
.y16f{bottom:626.475000px;}
.y179{bottom:626.580000px;}
.yc{bottom:629.715000px;}
.y1de{bottom:634.035000px;}
.y186{bottom:634.215000px;}
.y70{bottom:634.755000px;}
.y3f{bottom:636.735000px;}
.y8e{bottom:637.635000px;}
.yac{bottom:637.815000px;}
.y107{bottom:647.355000px;}
.yb{bottom:654.555000px;}
.y1dd{bottom:655.995000px;}
.y6f{bottom:656.715000px;}
.yd7{bottom:658.590000px;}
.y3e{bottom:658.695000px;}
.yab{bottom:659.595000px;}
.y106{bottom:668.595000px;}
.ydd{bottom:675.870000px;}
.ya{bottom:676.515000px;}
.y185{bottom:676.875000px;}
.y1dc{bottom:677.955000px;}
.y6e{bottom:678.675000px;}
.y3d{bottom:680.655000px;}
.y8d{bottom:680.835000px;}
.y1bd{bottom:681.015000px;}
.yaa{bottom:681.555000px;}
.y105{bottom:686.955000px;}
.yd9{bottom:692.970000px;}
.y184{bottom:696.315000px;}
.y9{bottom:698.475000px;}
.y1db{bottom:699.915000px;}
.y6d{bottom:700.635000px;}
.y104{bottom:701.175000px;}
.y119{bottom:701.280000px;}
.y3c{bottom:702.615000px;}
.y1bc{bottom:702.795000px;}
.ya9{bottom:703.515000px;}
.y12a{bottom:720.825000px;}
.y1da{bottom:721.905000px;}
.y6c{bottom:722.625000px;}
.y198{bottom:723.060000px;}
.yc4{bottom:723.525000px;}
.y3b{bottom:724.605000px;}
.y1bb{bottom:724.785000px;}
.ya8{bottom:725.505000px;}
.y8{bottom:742.425000px;}
.y1d9{bottom:743.865000px;}
.y6b{bottom:744.585000px;}
.yc3{bottom:745.485000px;}
.y3a{bottom:746.565000px;}
.y1ba{bottom:746.745000px;}
.ya7{bottom:747.465000px;}
.y1d8{bottom:765.825000px;}
.y6a{bottom:766.545000px;}
.yc2{bottom:767.625000px;}
.y39{bottom:768.525000px;}
.y1b9{bottom:768.705000px;}
.ya6{bottom:769.425000px;}
.y1d7{bottom:787.785000px;}
.y69{bottom:788.505000px;}
.y7{bottom:788.865000px;}
.yc1{bottom:789.585000px;}
.y38{bottom:790.485000px;}
.yd6{bottom:790.890000px;}
.y1d6{bottom:809.745000px;}
.y68{bottom:810.465000px;}
.yc0{bottom:811.545000px;}
.y1b8{bottom:811.905000px;}
.y37{bottom:812.445000px;}
.ya5{bottom:812.625000px;}
.y6{bottom:813.705000px;}
.yce{bottom:825.660000px;}
.y1d5{bottom:831.705000px;}
.y67{bottom:832.425000px;}
.ybf{bottom:833.505000px;}
.y36{bottom:834.405000px;}
.y5{bottom:837.465000px;}
.y1d4{bottom:853.665000px;}
.y66{bottom:854.385000px;}
.y1b7{bottom:854.925000px;}
.ybe{bottom:855.465000px;}
.ya4{bottom:855.645000px;}
.y35{bottom:856.365000px;}
.y4{bottom:856.725000px;}
.y1d3{bottom:875.625000px;}
.y65{bottom:876.345000px;}
.y1b6{bottom:876.705000px;}
.ya3{bottom:877.425000px;}
.y34{bottom:877.605000px;}
.y33{bottom:895.965000px;}
.y3{bottom:896.865000px;}
.y1d2{bottom:897.585000px;}
.y64{bottom:898.485000px;}
.y1b5{bottom:898.665000px;}
.ya2{bottom:899.385000px;}
.y8c{bottom:899.565000px;}
.y32{bottom:914.145000px;}
.y1d1{bottom:919.545000px;}
.y63{bottom:920.445000px;}
.y1b4{bottom:920.625000px;}
.y8b{bottom:921.345000px;}
.y31{bottom:933.270000px;}
.y2{bottom:938.310000px;}
.y1d0{bottom:941.730000px;}
.y62{bottom:942.450000px;}
.y1b3{bottom:942.630000px;}
.y8a{bottom:943.350000px;}
.y30{bottom:956.130000px;}
.y1cf{bottom:963.690000px;}
.y61{bottom:964.410000px;}
.y129{bottom:964.590000px;}
.y89{bottom:965.310000px;}
.y1{bottom:976.650000px;}
.y2f{bottom:980.970000px;}
.y1ce{bottom:985.650000px;}
.y60{bottom:986.370000px;}
.ybd{bottom:986.550000px;}
.y88{bottom:987.270000px;}
.y2e{bottom:1002.930000px;}
.y103{bottom:1007.610000px;}
.y5f{bottom:1008.330000px;}
.y1b2{bottom:1008.510000px;}
.y15d{bottom:1008.690000px;}
.y87{bottom:1009.230000px;}
.y2d{bottom:1024.890000px;}
.y102{bottom:1029.570000px;}
.y128{bottom:1029.750000px;}
.y5e{bottom:1030.290000px;}
.y1b1{bottom:1030.470000px;}
.y86{bottom:1031.190000px;}
.y16e{bottom:1031.730000px;}
.y101{bottom:1051.530000px;}
.y15c{bottom:1051.710000px;}
.y5d{bottom:1052.250000px;}
.y85{bottom:1053.150000px;}
.y2c{bottom:1068.810000px;}
.y100{bottom:1073.490000px;}
.y1b0{bottom:1073.670000px;}
.y5c{bottom:1074.210000px;}
.ya1{bottom:1074.390000px;}
.y16d{bottom:1074.570000px;}
.y84{bottom:1075.290000px;}
.yff{bottom:1095.450000px;}
.y5b{bottom:1096.170000px;}
.y2b{bottom:1115.250000px;}
.yfe{bottom:1117.410000px;}
.y5a{bottom:1118.130000px;}
.yfd{bottom:1139.370000px;}
.y183{bottom:1139.550000px;}
.y54{bottom:1195.560000px;}
.y23{bottom:1196.460000px;}
.h14{height:16.365000px;}
.h13{height:16.545000px;}
.h2c{height:42.186445px;}
.h12{height:44.534180px;}
.h16{height:47.223633px;}
.h2b{height:47.349562px;}
.h9{height:48.029766px;}
.h5{height:48.088125px;}
.h25{height:49.284492px;}
.h18{height:49.485000px;}
.h15{height:49.491000px;}
.h19{height:49.495500px;}
.h17{height:49.500000px;}
.h11{height:50.925000px;}
.hb{height:52.260820px;}
.h23{height:52.386750px;}
.h2{height:53.302500px;}
.h2d{height:54.628594px;}
.h6{height:54.667969px;}
.h7{height:57.867188px;}
.h4{height:57.937500px;}
.he{height:59.378906px;}
.h27{height:61.423863px;}
.hd{height:62.964844px;}
.h1f{height:65.865000px;}
.h20{height:65.875500px;}
.h21{height:65.880000px;}
.h3{height:67.704609px;}
.h8{height:67.786875px;}
.hc{height:69.473320px;}
.ha{height:74.004654px;}
.h2f{height:86.823633px;}
.h1c{height:131.745000px;}
.h1a{height:131.755500px;}
.h1b{height:131.760000px;}
.h1d{height:131.796000px;}
.h1e{height:131.805000px;}
.h28{height:201.450000px;}
.h29{height:201.465000px;}
.h24{height:238.155000px;}
.h26{height:238.170000px;}
.h22{height:301.500000px;}
.h2a{height:379.080000px;}
.h2e{height:396.000000px;}
.hf{height:892.980000px;}
.h10{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:111.765000px;}
.w5{width:127.425000px;}
.wb{width:127.431000px;}
.wc{width:127.440000px;}
.w8{width:145.281000px;}
.wd{width:145.282500px;}
.w4{width:145.476000px;}
.wa{width:145.485000px;}
.w6{width:270.240000px;}
.we{width:270.255000px;}
.w12{width:290.580000px;}
.w13{width:290.595000px;}
.w11{width:326.370000px;}
.w9{width:353.910000px;}
.wf{width:353.925000px;}
.w14{width:632.340000px;}
.w15{width:637.740000px;}
.w10{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w2{width:1262.880000px;}
.w3{width:1263.000000px;}
.x0{left:0.000000px;}
.x18{left:7.740000px;}
.x1e{left:9.525000px;}
.x48{left:20.265000px;}
.x47{left:27.105000px;}
.x1f{left:31.125000px;}
.x46{left:33.945000px;}
.x1c{left:38.865000px;}
.x17{left:53.460000px;}
.x1b{left:73.830000px;}
.x15{left:106.416000px;}
.x12{left:107.856000px;}
.x21{left:109.440000px;}
.x38{left:111.345000px;}
.x3f{left:114.225000px;}
.x37{left:118.185000px;}
.x49{left:121.215000px;}
.x1{left:127.656000px;}
.xc{left:129.096000px;}
.x32{left:138.645000px;}
.x31{left:141.516000px;}
.x3e{left:143.100000px;}
.x5{left:150.150000px;}
.x39{left:171.105000px;}
.x6{left:178.230000px;}
.x13{left:183.090000px;}
.x44{left:186.810000px;}
.x19{left:199.665000px;}
.xd{left:204.330000px;}
.x3d{left:209.010000px;}
.x34{left:210.450000px;}
.x36{left:217.110000px;}
.x4{left:224.490000px;}
.x26{left:230.684987px;}
.x27{left:233.744987px;}
.x23{left:239.970000px;}
.x10{left:242.850000px;}
.x3a{left:249.915000px;}
.xb{left:255.450000px;}
.x2{left:288.975000px;}
.x16{left:290.010000px;}
.x3b{left:294.840000px;}
.x40{left:305.925000px;}
.x8{left:323.175000px;}
.x1a{left:327.825000px;}
.x3c{left:338.505000px;}
.x42{left:342.180000px;}
.x25{left:364.215000px;}
.x9{left:370.695000px;}
.x3{left:376.995000px;}
.x45{left:378.465000px;}
.x7{left:405.255000px;}
.x28{left:409.889987px;}
.x2b{left:411.149987px;}
.xf{left:414.615000px;}
.x29{left:417.449987px;}
.xa{left:446.475000px;}
.x33{left:465.735000px;}
.x4a{left:483.660000px;}
.x41{left:490.755000px;}
.x43{left:527.010000px;}
.x2a{left:560.009987px;}
.x11{left:599.685000px;}
.x2d{left:605.519987px;}
.x30{left:607.349987px;}
.x2c{left:609.554987px;}
.x2f{left:619.919987px;}
.x2e{left:624.599987px;}
.x24{left:703.230000px;}
.x1d{left:711.480000px;}
.xe{left:750.390000px;}
.x35{left:759.930000px;}
.x22{left:765.510000px;}
.x20{left:857.490000px;}
.x14{left:1141.560000px;}
@media print{
.v2{vertical-align:-64.746667pt;}
.v3{vertical-align:-57.333333pt;}
.v1{vertical-align:-30.826667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:35.200000pt;}
.ls9{letter-spacing:-0.768000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.064000pt;}
.lsc{letter-spacing:-0.051840pt;}
.ls6{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.019840pt;}
.ls18{letter-spacing:0.106667pt;}
.lsb{letter-spacing:0.109333pt;}
.ls16{letter-spacing:0.112000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.133120pt;}
.ls14{letter-spacing:0.154667pt;}
.ls0{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.272000pt;}
.ls17{letter-spacing:0.288000pt;}
.ls10{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.330240pt;}
.ls1{letter-spacing:6.757120pt;}
.ls3{letter-spacing:20.837120pt;}
.ls12{letter-spacing:106.192640pt;}
.ls11{letter-spacing:133.712640pt;}
.ws8{word-spacing:-16.922880pt;}
.ws7{word-spacing:-14.784000pt;}
.ws0{word-spacing:-14.656000pt;}
.ws1{word-spacing:-14.464000pt;}
.ws2{word-spacing:-14.272000pt;}
.ws9{word-spacing:-14.144000pt;}
.ws4{word-spacing:-12.277120pt;}
.ws3{word-spacing:-12.005120pt;}
.ws6{word-spacing:-11.953280pt;}
.wsa{word-spacing:-10.876928pt;}
.wsb{word-spacing:-9.690880pt;}
.ws5{word-spacing:0.000000pt;}
.wsc{word-spacing:67.400960pt;}
.wsd{word-spacing:90.494293pt;}
.wse{word-spacing:98.916907pt;}
.wsf{word-spacing:563.493333pt;}
._38{margin-left:-9.909333pt;}
._21{margin-left:-6.065280pt;}
._36{margin-left:-2.101333pt;}
._1{margin-left:-1.000960pt;}
._3{width:1.299627pt;}
._9{width:2.466987pt;}
._17{width:3.421013pt;}
._c{width:4.832000pt;}
._5{width:5.770667pt;}
._4{width:6.784000pt;}
._b{width:7.875413pt;}
._f{width:9.320960pt;}
._e{width:10.240000pt;}
._19{width:11.247787pt;}
._18{width:12.264960pt;}
._10{width:13.440000pt;}
._1b{width:14.576000pt;}
._d{width:15.488000pt;}
._13{width:16.640000pt;}
._14{width:17.536000pt;}
._16{width:18.668373pt;}
._7{width:19.840000pt;}
._6{width:20.992000pt;}
._15{width:22.720000pt;}
._12{width:23.680000pt;}
._11{width:24.768000pt;}
._27{width:25.856000pt;}
._39{width:26.858667pt;}
._34{width:28.748373pt;}
._20{width:29.683627pt;}
._1f{width:30.592000pt;}
._2e{width:31.544747pt;}
._24{width:37.661867pt;}
._1a{width:38.784000pt;}
._2a{width:39.875840pt;}
._31{width:41.152000pt;}
._25{width:43.292800pt;}
._30{width:44.904960pt;}
._2f{width:46.016000pt;}
._23{width:53.172907pt;}
._26{width:61.937707pt;}
._2c{width:73.089707pt;}
._22{width:81.282560pt;}
._32{width:108.682667pt;}
._2d{width:113.674667pt;}
._2b{width:144.373333pt;}
._35{width:151.850667pt;}
._33{width:155.018667pt;}
._37{width:171.934293pt;}
._8{width:263.813547pt;}
._28{width:321.386667pt;}
._29{width:328.362667pt;}
._1d{width:350.341547pt;}
._2{width:416.041387pt;}
._0{width:578.534827pt;}
._a{width:643.018667pt;}
._1e{width:705.594880pt;}
._1c{width:1122.213547pt;}
.fs4{font-size:32.000000pt;}
.fs8{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs7{font-size:48.128000pt;}
.fs3{font-size:53.120000pt;}
.fs6{font-size:53.248000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yf0{bottom:3.186667pt;}
.yde{bottom:3.200000pt;}
.yfa{bottom:3.213333pt;}
.ye8{bottom:3.346667pt;}
.yda{bottom:3.360000pt;}
.ye3{bottom:3.373333pt;}
.y137{bottom:3.680000pt;}
.y151{bottom:3.693333pt;}
.ydc{bottom:11.200000pt;}
.ye7{bottom:17.906667pt;}
.ye4{bottom:17.920000pt;}
.ye2{bottom:17.933333pt;}
.y127{bottom:18.306667pt;}
.yd8{bottom:18.560000pt;}
.y136{bottom:20.000000pt;}
.y150{bottom:20.013333pt;}
.y141{bottom:24.320000pt;}
.ydb{bottom:25.920000pt;}
.yef{bottom:32.466667pt;}
.yfb{bottom:32.480000pt;}
.yf9{bottom:32.493333pt;}
.ye6{bottom:32.626667pt;}
.ye0{bottom:32.640000pt;}
.y14f{bottom:36.173333pt;}
.y135{bottom:36.320000pt;}
.y140{bottom:40.640000pt;}
.yee{bottom:47.186667pt;}
.yf6{bottom:47.200000pt;}
.y1ac{bottom:50.626667pt;}
.y2a{bottom:51.200000pt;}
.yd5{bottom:51.232000pt;}
.y134{bottom:52.480000pt;}
.y14e{bottom:52.493333pt;}
.y126{bottom:54.746667pt;}
.y13f{bottom:56.800000pt;}
.yed{bottom:61.746667pt;}
.yf5{bottom:61.920000pt;}
.y1a1{bottom:66.240000pt;}
.y133{bottom:68.800000pt;}
.y14d{bottom:68.813333pt;}
.y29{bottom:69.120000pt;}
.yd4{bottom:69.152000pt;}
.y125{bottom:69.466667pt;}
.y13e{bottom:73.120000pt;}
.yec{bottom:76.466667pt;}
.yf4{bottom:76.480000pt;}
.y121{bottom:79.706667pt;}
.y132{bottom:85.120000pt;}
.y14c{bottom:85.133333pt;}
.y28{bottom:85.440000pt;}
.yd3{bottom:85.472000pt;}
.y1a0{bottom:87.386667pt;}
.y13d{bottom:89.440000pt;}
.yeb{bottom:91.026667pt;}
.yf3{bottom:91.200000pt;}
.y19d{bottom:91.226667pt;}
.y1a2{bottom:93.666667pt;}
.y120{bottom:94.426667pt;}
.y124{bottom:100.666667pt;}
.y131{bottom:101.280000pt;}
.y14b{bottom:101.293333pt;}
.y27{bottom:101.600000pt;}
.yd2{bottom:101.632000pt;}
.y59{bottom:101.760000pt;}
.y19a{bottom:103.866667pt;}
.y13c{bottom:105.600000pt;}
.yea{bottom:105.746667pt;}
.yf2{bottom:105.760000pt;}
.y19e{bottom:106.586667pt;}
.y147{bottom:109.293333pt;}
.y123{bottom:115.386667pt;}
.y130{bottom:117.600000pt;}
.y14a{bottom:117.613333pt;}
.y58{bottom:117.920000pt;}
.y1a3{bottom:121.093333pt;}
.y13b{bottom:121.920000pt;}
.y146{bottom:125.773333pt;}
.y26{bottom:128.640000pt;}
.yd1{bottom:128.672000pt;}
.y19b{bottom:131.840000pt;}
.y12f{bottom:133.920000pt;}
.y149{bottom:133.933333pt;}
.y13a{bottom:138.240000pt;}
.y11b{bottom:139.813333pt;}
.y22{bottom:140.960000pt;}
.y145{bottom:142.093333pt;}
.y25{bottom:143.520000pt;}
.yd0{bottom:143.546667pt;}
.y57{bottom:144.960000pt;}
.y1a4{bottom:148.546667pt;}
.y148{bottom:150.093333pt;}
.y12e{bottom:150.240000pt;}
.y122{bottom:153.186667pt;}
.y139{bottom:154.560000pt;}
.y21{bottom:157.280000pt;}
.y17a{bottom:158.146667pt;}
.y24{bottom:158.400000pt;}
.ycf{bottom:158.426667pt;}
.yfc{bottom:159.360000pt;}
.y56{bottom:159.840000pt;}
.y11a{bottom:160.293333pt;}
.y12d{bottom:166.400000pt;}
.y143{bottom:166.426667pt;}
.y138{bottom:170.720000pt;}
.y20{bottom:173.600000pt;}
.y55{bottom:174.720000pt;}
.y53{bottom:175.200000pt;}
.y197{bottom:175.520000pt;}
.y1a5{bottom:175.973333pt;}
.y181{bottom:176.773333pt;}
.ycd{bottom:176.960000pt;}
.ya0{bottom:177.760000pt;}
.y12c{bottom:182.720000pt;}
.y16c{bottom:184.160000pt;}
.y1f{bottom:189.760000pt;}
.y182{bottom:190.973333pt;}
.y1f1{bottom:192.320000pt;}
.y83{bottom:192.960000pt;}
.y17b{bottom:193.786667pt;}
.y52{bottom:194.720000pt;}
.y196{bottom:195.040000pt;}
.ycc{bottom:196.480000pt;}
.y9f{bottom:197.280000pt;}
.y11f{bottom:197.533333pt;}
.y178{bottom:198.240000pt;}
.ybc{bottom:198.400000pt;}
.y12b{bottom:199.080000pt;}
.yf8{bottom:201.173333pt;}
.yf7{bottom:201.186667pt;}
.y1a6{bottom:203.386667pt;}
.y16b{bottom:203.680000pt;}
.y1e{bottom:206.080000pt;}
.y118{bottom:206.240000pt;}
.y1f0{bottom:211.840000pt;}
.y82{bottom:212.480000pt;}
.y11d{bottom:212.706667pt;}
.y51{bottom:214.240000pt;}
.y195{bottom:214.560000pt;}
.y1cd{bottom:215.360000pt;}
.ycb{bottom:216.000000pt;}
.ybb{bottom:217.760000pt;}
.y16a{bottom:223.226667pt;}
.y117{bottom:225.626667pt;}
.y11c{bottom:227.426667pt;}
.y17c{bottom:229.413333pt;}
.y1a7{bottom:230.853333pt;}
.y1ef{bottom:231.386667pt;}
.y81{bottom:232.186667pt;}
.y1d{bottom:233.626667pt;}
.y50{bottom:233.786667pt;}
.y194{bottom:234.106667pt;}
.y1cc{bottom:234.906667pt;}
.yca{bottom:235.546667pt;}
.y9e{bottom:235.706667pt;}
.yba{bottom:237.306667pt;}
.y15b{bottom:238.746667pt;}
.y1af{bottom:239.973333pt;}
.y11e{bottom:241.053333pt;}
.y169{bottom:242.746667pt;}
.y116{bottom:245.146667pt;}
.y1ee{bottom:250.906667pt;}
.y80{bottom:251.706667pt;}
.y1c{bottom:252.186667pt;}
.y4f{bottom:253.306667pt;}
.y193{bottom:253.626667pt;}
.y1cb{bottom:254.426667pt;}
.y9d{bottom:255.066667pt;}
.yb9{bottom:256.826667pt;}
.y15a{bottom:258.106667pt;}
.y1a8{bottom:258.266667pt;}
.yf1{bottom:260.386667pt;}
.y168{bottom:262.266667pt;}
.y115{bottom:264.666667pt;}
.y17d{bottom:265.053333pt;}
.y1ae{bottom:268.453333pt;}
.y1b{bottom:268.506667pt;}
.y17f{bottom:270.106667pt;}
.y1ed{bottom:270.426667pt;}
.y7f{bottom:271.226667pt;}
.y4e{bottom:272.826667pt;}
.y1ca{bottom:273.946667pt;}
.y9c{bottom:274.586667pt;}
.y199{bottom:275.613333pt;}
.y177{bottom:276.346667pt;}
.y159{bottom:277.626667pt;}
.y167{bottom:281.786667pt;}
.y114{bottom:284.186667pt;}
.y1a{bottom:284.826667pt;}
.y1a9{bottom:285.693333pt;}
.y1ec{bottom:290.106667pt;}
.y7e{bottom:290.746667pt;}
.y192{bottom:292.026667pt;}
.y4d{bottom:292.506667pt;}
.y1c9{bottom:293.466667pt;}
.y9b{bottom:294.106667pt;}
.yb8{bottom:295.226667pt;}
.y1ad{bottom:296.933333pt;}
.y17e{bottom:300.706667pt;}
.y19{bottom:301.146667pt;}
.y113{bottom:303.706667pt;}
.y180{bottom:306.106667pt;}
.y1eb{bottom:309.626667pt;}
.y7d{bottom:310.266667pt;}
.y191{bottom:311.386667pt;}
.y4c{bottom:312.026667pt;}
.y1c8{bottom:312.986667pt;}
.y1aa{bottom:313.146667pt;}
.y19c{bottom:313.186667pt;}
.y9a{bottom:313.626667pt;}
.yb7{bottom:314.586667pt;}
.y176{bottom:314.746667pt;}
.y158{bottom:316.026667pt;}
.y18{bottom:317.466667pt;}
.y166{bottom:320.186667pt;}
.y19f{bottom:327.453333pt;}
.y1ea{bottom:329.146667pt;}
.y7c{bottom:329.786667pt;}
.y190{bottom:330.906667pt;}
.y4b{bottom:331.546667pt;}
.y1c7{bottom:332.506667pt;}
.y99{bottom:333.146667pt;}
.y17{bottom:333.626667pt;}
.yb6{bottom:334.106667pt;}
.y157{bottom:335.386667pt;}
.y165{bottom:339.546667pt;}
.y1ab{bottom:340.573333pt;}
.y112{bottom:341.946667pt;}
.y1e9{bottom:348.666667pt;}
.y7b{bottom:349.306667pt;}
.y16{bottom:349.946667pt;}
.y18f{bottom:350.426667pt;}
.y4a{bottom:351.066667pt;}
.y1c6{bottom:352.026667pt;}
.yc9{bottom:352.826667pt;}
.yb5{bottom:353.626667pt;}
.y156{bottom:354.906667pt;}
.y164{bottom:359.066667pt;}
.y15{bottom:366.266667pt;}
.y1e8{bottom:368.186667pt;}
.y7a{bottom:368.826667pt;}
.y49{bottom:370.586667pt;}
.y98{bottom:371.546667pt;}
.yc8{bottom:372.346667pt;}
.yb4{bottom:373.146667pt;}
.y155{bottom:374.426667pt;}
.ye9{bottom:378.346667pt;}
.y163{bottom:378.746667pt;}
.y111{bottom:380.186667pt;}
.y14{bottom:383.226667pt;}
.y1e7{bottom:387.706667pt;}
.y79{bottom:388.346667pt;}
.y18e{bottom:388.826667pt;}
.y48{bottom:390.106667pt;}
.y97{bottom:390.906667pt;}
.y1c5{bottom:391.226667pt;}
.yc7{bottom:391.866667pt;}
.yb3{bottom:392.666667pt;}
.y154{bottom:394.106667pt;}
.y110{bottom:399.706667pt;}
.y13{bottom:402.746667pt;}
.y1e6{bottom:407.226667pt;}
.y78{bottom:407.866667pt;}
.y18d{bottom:408.186667pt;}
.y47{bottom:409.626667pt;}
.y96{bottom:410.426667pt;}
.y1c4{bottom:410.746667pt;}
.yc6{bottom:411.386667pt;}
.yb2{bottom:412.186667pt;}
.y162{bottom:416.826667pt;}
.y10f{bottom:419.226667pt;}
.y12{bottom:422.266667pt;}
.y1e5{bottom:426.786667pt;}
.y77{bottom:427.426667pt;}
.y18c{bottom:427.746667pt;}
.y46{bottom:429.186667pt;}
.y95{bottom:429.986667pt;}
.y1c3{bottom:430.306667pt;}
.y153{bottom:431.426667pt;}
.y175{bottom:431.746667pt;}
.y161{bottom:436.386667pt;}
.y10e{bottom:438.786667pt;}
.y11{bottom:441.826667pt;}
.y1e4{bottom:446.306667pt;}
.y76{bottom:446.946667pt;}
.y18b{bottom:447.266667pt;}
.y152{bottom:447.746667pt;}
.y45{bottom:448.706667pt;}
.y94{bottom:449.506667pt;}
.yc5{bottom:449.666667pt;}
.y1c2{bottom:449.826667pt;}
.yb1{bottom:450.626667pt;}
.y174{bottom:451.266667pt;}
.y160{bottom:455.906667pt;}
.y10d{bottom:458.306667pt;}
.y144{bottom:461.013333pt;}
.y142{bottom:461.026667pt;}
.y10{bottom:461.346667pt;}
.y1e3{bottom:465.826667pt;}
.y75{bottom:466.466667pt;}
.y18a{bottom:466.786667pt;}
.y44{bottom:468.226667pt;}
.y93{bottom:469.186667pt;}
.y1c1{bottom:469.346667pt;}
.yb0{bottom:469.986667pt;}
.y173{bottom:470.786667pt;}
.y15f{bottom:474.786667pt;}
.y10c{bottom:477.826667pt;}
.yf{bottom:481.666667pt;}
.y1e2{bottom:485.346667pt;}
.y74{bottom:485.986667pt;}
.y189{bottom:486.306667pt;}
.y15e{bottom:487.426667pt;}
.y43{bottom:487.746667pt;}
.y92{bottom:488.706667pt;}
.y1c0{bottom:488.866667pt;}
.yaf{bottom:489.506667pt;}
.y172{bottom:490.466667pt;}
.ye5{bottom:496.106667pt;}
.y10b{bottom:497.346667pt;}
.ye{bottom:503.746667pt;}
.y1e1{bottom:504.866667pt;}
.y73{bottom:505.506667pt;}
.y188{bottom:505.826667pt;}
.y42{bottom:507.266667pt;}
.y91{bottom:508.226667pt;}
.y1bf{bottom:508.386667pt;}
.yae{bottom:509.026667pt;}
.y10a{bottom:516.866667pt;}
.y1e0{bottom:524.386667pt;}
.y72{bottom:525.186667pt;}
.y187{bottom:525.346667pt;}
.y41{bottom:526.786667pt;}
.y90{bottom:527.746667pt;}
.y171{bottom:527.906667pt;}
.yad{bottom:528.546667pt;}
.y109{bottom:536.386667pt;}
.yd{bottom:539.426667pt;}
.ye1{bottom:540.760000pt;}
.ydf{bottom:540.773333pt;}
.y1df{bottom:543.906667pt;}
.y170{bottom:544.226667pt;}
.y71{bottom:544.706667pt;}
.y40{bottom:546.306667pt;}
.y8f{bottom:547.266667pt;}
.y1be{bottom:547.426667pt;}
.y108{bottom:555.906667pt;}
.y16f{bottom:556.866667pt;}
.y179{bottom:556.960000pt;}
.yc{bottom:559.746667pt;}
.y1de{bottom:563.586667pt;}
.y186{bottom:563.746667pt;}
.y70{bottom:564.226667pt;}
.y3f{bottom:565.986667pt;}
.y8e{bottom:566.786667pt;}
.yac{bottom:566.946667pt;}
.y107{bottom:575.426667pt;}
.yb{bottom:581.826667pt;}
.y1dd{bottom:583.106667pt;}
.y6f{bottom:583.746667pt;}
.yd7{bottom:585.413333pt;}
.y3e{bottom:585.506667pt;}
.yab{bottom:586.306667pt;}
.y106{bottom:594.306667pt;}
.ydd{bottom:600.773333pt;}
.ya{bottom:601.346667pt;}
.y185{bottom:601.666667pt;}
.y1dc{bottom:602.626667pt;}
.y6e{bottom:603.266667pt;}
.y3d{bottom:605.026667pt;}
.y8d{bottom:605.186667pt;}
.y1bd{bottom:605.346667pt;}
.yaa{bottom:605.826667pt;}
.y105{bottom:610.626667pt;}
.yd9{bottom:615.973333pt;}
.y184{bottom:618.946667pt;}
.y9{bottom:620.866667pt;}
.y1db{bottom:622.146667pt;}
.y6d{bottom:622.786667pt;}
.y104{bottom:623.266667pt;}
.y119{bottom:623.360000pt;}
.y3c{bottom:624.546667pt;}
.y1bc{bottom:624.706667pt;}
.ya9{bottom:625.346667pt;}
.y12a{bottom:640.733333pt;}
.y1da{bottom:641.693333pt;}
.y6c{bottom:642.333333pt;}
.y198{bottom:642.720000pt;}
.yc4{bottom:643.133333pt;}
.y3b{bottom:644.093333pt;}
.y1bb{bottom:644.253333pt;}
.ya8{bottom:644.893333pt;}
.y8{bottom:659.933333pt;}
.y1d9{bottom:661.213333pt;}
.y6b{bottom:661.853333pt;}
.yc3{bottom:662.653333pt;}
.y3a{bottom:663.613333pt;}
.y1ba{bottom:663.773333pt;}
.ya7{bottom:664.413333pt;}
.y1d8{bottom:680.733333pt;}
.y6a{bottom:681.373333pt;}
.yc2{bottom:682.333333pt;}
.y39{bottom:683.133333pt;}
.y1b9{bottom:683.293333pt;}
.ya6{bottom:683.933333pt;}
.y1d7{bottom:700.253333pt;}
.y69{bottom:700.893333pt;}
.y7{bottom:701.213333pt;}
.yc1{bottom:701.853333pt;}
.y38{bottom:702.653333pt;}
.yd6{bottom:703.013333pt;}
.y1d6{bottom:719.773333pt;}
.y68{bottom:720.413333pt;}
.yc0{bottom:721.373333pt;}
.y1b8{bottom:721.693333pt;}
.y37{bottom:722.173333pt;}
.ya5{bottom:722.333333pt;}
.y6{bottom:723.293333pt;}
.yce{bottom:733.920000pt;}
.y1d5{bottom:739.293333pt;}
.y67{bottom:739.933333pt;}
.ybf{bottom:740.893333pt;}
.y36{bottom:741.693333pt;}
.y5{bottom:744.413333pt;}
.y1d4{bottom:758.813333pt;}
.y66{bottom:759.453333pt;}
.y1b7{bottom:759.933333pt;}
.ybe{bottom:760.413333pt;}
.ya4{bottom:760.573333pt;}
.y35{bottom:761.213333pt;}
.y4{bottom:761.533333pt;}
.y1d3{bottom:778.333333pt;}
.y65{bottom:778.973333pt;}
.y1b6{bottom:779.293333pt;}
.ya3{bottom:779.933333pt;}
.y34{bottom:780.093333pt;}
.y33{bottom:796.413333pt;}
.y3{bottom:797.213333pt;}
.y1d2{bottom:797.853333pt;}
.y64{bottom:798.653333pt;}
.y1b5{bottom:798.813333pt;}
.ya2{bottom:799.453333pt;}
.y8c{bottom:799.613333pt;}
.y32{bottom:812.573333pt;}
.y1d1{bottom:817.373333pt;}
.y63{bottom:818.173333pt;}
.y1b4{bottom:818.333333pt;}
.y8b{bottom:818.973333pt;}
.y31{bottom:829.573333pt;}
.y2{bottom:834.053333pt;}
.y1d0{bottom:837.093333pt;}
.y62{bottom:837.733333pt;}
.y1b3{bottom:837.893333pt;}
.y8a{bottom:838.533333pt;}
.y30{bottom:849.893333pt;}
.y1cf{bottom:856.613333pt;}
.y61{bottom:857.253333pt;}
.y129{bottom:857.413333pt;}
.y89{bottom:858.053333pt;}
.y1{bottom:868.133333pt;}
.y2f{bottom:871.973333pt;}
.y1ce{bottom:876.133333pt;}
.y60{bottom:876.773333pt;}
.ybd{bottom:876.933333pt;}
.y88{bottom:877.573333pt;}
.y2e{bottom:891.493333pt;}
.y103{bottom:895.653333pt;}
.y5f{bottom:896.293333pt;}
.y1b2{bottom:896.453333pt;}
.y15d{bottom:896.613333pt;}
.y87{bottom:897.093333pt;}
.y2d{bottom:911.013333pt;}
.y102{bottom:915.173333pt;}
.y128{bottom:915.333333pt;}
.y5e{bottom:915.813333pt;}
.y1b1{bottom:915.973333pt;}
.y86{bottom:916.613333pt;}
.y16e{bottom:917.093333pt;}
.y101{bottom:934.693333pt;}
.y15c{bottom:934.853333pt;}
.y5d{bottom:935.333333pt;}
.y85{bottom:936.133333pt;}
.y2c{bottom:950.053333pt;}
.y100{bottom:954.213333pt;}
.y1b0{bottom:954.373333pt;}
.y5c{bottom:954.853333pt;}
.ya1{bottom:955.013333pt;}
.y16d{bottom:955.173333pt;}
.y84{bottom:955.813333pt;}
.yff{bottom:973.733333pt;}
.y5b{bottom:974.373333pt;}
.y2b{bottom:991.333333pt;}
.yfe{bottom:993.253333pt;}
.y5a{bottom:993.893333pt;}
.yfd{bottom:1012.773333pt;}
.y183{bottom:1012.933333pt;}
.y54{bottom:1062.720000pt;}
.y23{bottom:1063.520000pt;}
.h14{height:14.546667pt;}
.h13{height:14.706667pt;}
.h2c{height:37.499062pt;}
.h12{height:39.585938pt;}
.h16{height:41.976562pt;}
.h2b{height:42.088500pt;}
.h9{height:42.693125pt;}
.h5{height:42.745000pt;}
.h25{height:43.808438pt;}
.h18{height:43.986667pt;}
.h15{height:43.992000pt;}
.h19{height:43.996000pt;}
.h17{height:44.000000pt;}
.h11{height:45.266667pt;}
.hb{height:46.454062pt;}
.h23{height:46.566000pt;}
.h2{height:47.380000pt;}
.h2d{height:48.558750pt;}
.h6{height:48.593750pt;}
.h7{height:51.437500pt;}
.h4{height:51.500000pt;}
.he{height:52.781250pt;}
.h27{height:54.598989pt;}
.hd{height:55.968750pt;}
.h1f{height:58.546667pt;}
.h20{height:58.556000pt;}
.h21{height:58.560000pt;}
.h3{height:60.181875pt;}
.h8{height:60.255000pt;}
.hc{height:61.754062pt;}
.ha{height:65.781915pt;}
.h2f{height:77.176562pt;}
.h1c{height:117.106667pt;}
.h1a{height:117.116000pt;}
.h1b{height:117.120000pt;}
.h1d{height:117.152000pt;}
.h1e{height:117.160000pt;}
.h28{height:179.066667pt;}
.h29{height:179.080000pt;}
.h24{height:211.693333pt;}
.h26{height:211.706667pt;}
.h22{height:268.000000pt;}
.h2a{height:336.960000pt;}
.h2e{height:352.000000pt;}
.hf{height:793.760000pt;}
.h10{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:99.346667pt;}
.w5{width:113.266667pt;}
.wb{width:113.272000pt;}
.wc{width:113.280000pt;}
.w8{width:129.138667pt;}
.wd{width:129.140000pt;}
.w4{width:129.312000pt;}
.wa{width:129.320000pt;}
.w6{width:240.213333pt;}
.we{width:240.226667pt;}
.w12{width:258.293333pt;}
.w13{width:258.306667pt;}
.w11{width:290.106667pt;}
.w9{width:314.586667pt;}
.wf{width:314.600000pt;}
.w14{width:562.080000pt;}
.w15{width:566.880000pt;}
.w10{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w2{width:1122.560000pt;}
.w3{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x18{left:6.880000pt;}
.x1e{left:8.466667pt;}
.x48{left:18.013333pt;}
.x47{left:24.093333pt;}
.x1f{left:27.666667pt;}
.x46{left:30.173333pt;}
.x1c{left:34.546667pt;}
.x17{left:47.520000pt;}
.x1b{left:65.626667pt;}
.x15{left:94.592000pt;}
.x12{left:95.872000pt;}
.x21{left:97.280000pt;}
.x38{left:98.973333pt;}
.x3f{left:101.533333pt;}
.x37{left:105.053333pt;}
.x49{left:107.746667pt;}
.x1{left:113.472000pt;}
.xc{left:114.752000pt;}
.x32{left:123.240000pt;}
.x31{left:125.792000pt;}
.x3e{left:127.200000pt;}
.x5{left:133.466667pt;}
.x39{left:152.093333pt;}
.x6{left:158.426667pt;}
.x13{left:162.746667pt;}
.x44{left:166.053333pt;}
.x19{left:177.480000pt;}
.xd{left:181.626667pt;}
.x3d{left:185.786667pt;}
.x34{left:187.066667pt;}
.x36{left:192.986667pt;}
.x4{left:199.546667pt;}
.x26{left:205.053322pt;}
.x27{left:207.773322pt;}
.x23{left:213.306667pt;}
.x10{left:215.866667pt;}
.x3a{left:222.146667pt;}
.xb{left:227.066667pt;}
.x2{left:256.866667pt;}
.x16{left:257.786667pt;}
.x3b{left:262.080000pt;}
.x40{left:271.933333pt;}
.x8{left:287.266667pt;}
.x1a{left:291.400000pt;}
.x3c{left:300.893333pt;}
.x42{left:304.160000pt;}
.x25{left:323.746667pt;}
.x9{left:329.506667pt;}
.x3{left:335.106667pt;}
.x45{left:336.413333pt;}
.x7{left:360.226667pt;}
.x28{left:364.346655pt;}
.x2b{left:365.466655pt;}
.xf{left:368.546667pt;}
.x29{left:371.066655pt;}
.xa{left:396.866667pt;}
.x33{left:413.986667pt;}
.x4a{left:429.920000pt;}
.x41{left:436.226667pt;}
.x43{left:468.453333pt;}
.x2a{left:497.786655pt;}
.x11{left:533.053333pt;}
.x2d{left:538.239988pt;}
.x30{left:539.866655pt;}
.x2c{left:541.826655pt;}
.x2f{left:551.039988pt;}
.x2e{left:555.199988pt;}
.x24{left:625.093333pt;}
.x1d{left:632.426667pt;}
.xe{left:667.013333pt;}
.x35{left:675.493333pt;}
.x22{left:680.453333pt;}
.x20{left:762.213333pt;}
.x14{left:1014.720000pt;}
}




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