
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c08a36128c18e7e1d8eeb3ba.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_8dbd921f030c36a87ca68231.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_9b41e7c63a54870535dbca96.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_b0889c832af5a386fc210b45.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_695c9f649238303d258ed217.woff')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_1f5cfdf17de69940a54e1e1f.woff')format("woff");}.ff7{font-family:ff7;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;}
.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:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls18{letter-spacing:-0.409800px;}
.lsd{letter-spacing:-0.186600px;}
.ls1b{letter-spacing:-0.160800px;}
.ls20{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.135000px;}
.ls10{letter-spacing:-0.121200px;}
.ls19{letter-spacing:-0.114000px;}
.ls1a{letter-spacing:-0.092400px;}
.ls7{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.ls17{letter-spacing:-0.038880px;}
.ls1d{letter-spacing:-0.037800px;}
.ls16{letter-spacing:-0.014760px;}
.lsb{letter-spacing:-0.008400px;}
.ls5{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.041760px;}
.ls11{letter-spacing:0.045360px;}
.ls12{letter-spacing:0.048960px;}
.ls9{letter-spacing:0.051600px;}
.lsa{letter-spacing:0.065400px;}
.ls3{letter-spacing:0.065520px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls15{letter-spacing:0.098400px;}
.lsf{letter-spacing:0.113400px;}
.ls21{letter-spacing:0.116400px;}
.ls6{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.ls22{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.181200px;}
.ls14{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.425520px;}
.ls1f{letter-spacing:47.726640px;}
.ls1e{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2{word-spacing:-18.505200px;}
.wsa{word-spacing:-14.493600px;}
.ws14{word-spacing:-14.379600px;}
.wsd{word-spacing:-14.372400px;}
.wsf{word-spacing:-13.425600px;}
.wsc{word-spacing:-13.407600px;}
.ws7{word-spacing:-13.399800px;}
.ws19{word-spacing:-13.342800px;}
.ws8{word-spacing:-13.339800px;}
.ws12{word-spacing:-13.324800px;}
.wse{word-spacing:-13.275360px;}
.ws16{word-spacing:-13.268160px;}
.ws5{word-spacing:-13.226400px;}
.ws10{word-spacing:-13.211640px;}
.ws17{word-spacing:-13.188600px;}
.ws11{word-spacing:-13.187520px;}
.ws1a{word-spacing:-13.141800px;}
.ws18{word-spacing:-13.072800px;}
.ws15{word-spacing:-13.065600px;}
.ws6{word-spacing:-13.039800px;}
.ws13{word-spacing:-12.816600px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws3{word-spacing:-9.331800px;}
.ws4{word-spacing:-8.553600px;}
.wsb{word-spacing:0.000000px;}
.ws9{word-spacing:4.304880px;}
._1d{margin-left:-4.002957px;}
._6{margin-left:-2.886000px;}
._0{margin-left:-1.110000px;}
._2{width:1.107768px;}
._b{width:2.148120px;}
._1{width:3.170280px;}
._9{width:4.473192px;}
._a{width:5.782560px;}
._7{width:7.033800px;}
._8{width:8.296800px;}
._5{width:9.604729px;}
._3{width:10.672824px;}
._4{width:12.316633px;}
._f{width:14.933160px;}
._e{width:15.991920px;}
._1f{width:17.150520px;}
._1e{width:18.156240px;}
._20{width:20.080561px;}
._c{width:21.462600px;}
._d{width:22.599077px;}
._10{width:24.468840px;}
._11{width:25.490880px;}
._3d{width:26.540760px;}
._17{width:28.376640px;}
._2f{width:30.661200px;}
._3e{width:31.683240px;}
._3f{width:32.885640px;}
._14{width:33.967800px;}
._38{width:34.989840px;}
._3b{width:36.396360px;}
._1a{width:38.116080px;}
._1b{width:43.082640px;}
._13{width:44.428680px;}
._40{width:48.336480px;}
._22{width:49.358520px;}
._27{width:50.621040px;}
._23{width:56.272320px;}
._21{width:58.436640px;}
._3c{width:62.885520px;}
._2d{width:64.388520px;}
._39{width:66.192120px;}
._2c{width:74.308320px;}
._25{width:78.576840px;}
._3a{width:79.959600px;}
._16{width:81.703080px;}
._37{width:86.272200px;}
._2e{width:88.075800px;}
._2b{width:89.185800px;}
._29{width:90.540720px;}
._34{width:105.751080px;}
._18{width:111.642840px;}
._12{width:124.147800px;}
._28{width:133.947360px;}
._31{width:140.921280px;}
._32{width:147.021240px;}
._30{width:151.442280px;}
._24{width:158.055480px;}
._2a{width:162.624600px;}
._1c{width:170.139600px;}
._19{width:174.227760px;}
._35{width:177.414120px;}
._26{width:191.662560px;}
._15{width:213.486120px;}
._36{width:218.295720px;}
._33{width:240.660360px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y6e{bottom:7.830000px;}
.ycb{bottom:7.860000px;}
.y69{bottom:7.920000px;}
.y70{bottom:25.380000px;}
.yca{bottom:25.410000px;}
.y68{bottom:25.470000px;}
.y6d{bottom:43.020000px;}
.yc9{bottom:43.050000px;}
.y67{bottom:43.110000px;}
.yc6{bottom:60.570000px;}
.y13d{bottom:60.600000px;}
.y6c{bottom:60.660000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y6b{bottom:78.210000px;}
.y13c{bottom:78.240000px;}
.y1{bottom:101.640000px;}
.yf2{bottom:111.630000px;}
.y1ed{bottom:111.720000px;}
.yd9{bottom:112.080000px;}
.yc2{bottom:112.530000px;}
.y5e{bottom:113.340000px;}
.y169{bottom:115.680000px;}
.y148{bottom:115.860000px;}
.y201{bottom:116.130000px;}
.y1a0{bottom:116.580000px;}
.y135{bottom:125.580000px;}
.yf1{bottom:129.180000px;}
.y1ec{bottom:129.270000px;}
.yd8{bottom:129.630000px;}
.yc1{bottom:130.170000px;}
.y5d{bottom:130.980000px;}
.y147{bottom:133.500000px;}
.y200{bottom:133.680000px;}
.y19f{bottom:134.130000px;}
.y189{bottom:138.720000px;}
.y205{bottom:142.680000px;}
.y134{bottom:143.130000px;}
.y9c{bottom:143.850000px;}
.yf0{bottom:146.820000px;}
.y1eb{bottom:146.910000px;}
.yd7{bottom:147.180000px;}
.yc0{bottom:147.720000px;}
.y146{bottom:151.050000px;}
.y168{bottom:151.320000px;}
.y19e{bottom:151.680000px;}
.y188{bottom:156.270000px;}
.y28{bottom:157.260000px;}
.y5c{bottom:157.530000px;}
.y1ff{bottom:160.320000px;}
.y133{bottom:160.680000px;}
.y9b{bottom:161.400000px;}
.yef{bottom:164.370000px;}
.yd6{bottom:164.820000px;}
.ybf{bottom:165.270000px;}
.y145{bottom:168.600000px;}
.y20d{bottom:169.320000px;}
.y1ea{bottom:173.460000px;}
.y187{bottom:173.910000px;}
.y27{bottom:174.900000px;}
.y1fe{bottom:177.870000px;}
.y19d{bottom:178.320000px;}
.y9a{bottom:179.040000px;}
.yd5{bottom:182.370000px;}
.ybe{bottom:182.910000px;}
.y11a{bottom:183.270000px;}
.y1c0{bottom:183.540000px;}
.y167{bottom:186.870000px;}
.y132{bottom:187.320000px;}
.y1e9{bottom:191.100000px;}
.y186{bottom:191.460000px;}
.y26{bottom:192.450000px;}
.y5b{bottom:193.440000px;}
.y144{bottom:195.240000px;}
.y1fd{bottom:195.510000px;}
.y20c{bottom:195.870000px;}
.y99{bottom:196.590000px;}
.yee{bottom:200.010000px;}
.y119{bottom:200.910000px;}
.y166{bottom:204.510000px;}
.y185{bottom:209.100000px;}
.ybd{bottom:209.460000px;}
.y7e{bottom:209.730000px;}
.y25{bottom:210.090000px;}
.y1bf{bottom:210.450000px;}
.y20b{bottom:213.510000px;}
.y19c{bottom:213.870000px;}
.y98{bottom:214.230000px;}
.yed{bottom:217.560000px;}
.y1e8{bottom:217.650000px;}
.yd4{bottom:218.010000px;}
.y118{bottom:218.460000px;}
.y165{bottom:222.060000px;}
.y131{bottom:222.870000px;}
.y7d{bottom:227.280000px;}
.y24{bottom:227.640000px;}
.y143{bottom:230.790000px;}
.y20a{bottom:231.060000px;}
.y19b{bottom:231.510000px;}
.yec{bottom:235.110000px;}
.y1e7{bottom:235.200000px;}
.yd3{bottom:235.560000px;}
.y117{bottom:236.100000px;}
.y1fc{bottom:239.610000px;}
.y130{bottom:240.510000px;}
.y5a{bottom:241.680000px;}
.y184{bottom:244.650000px;}
.y7c{bottom:244.920000px;}
.ybc{bottom:245.100000px;}
.y23{bottom:245.190000px;}
.y1be{bottom:247.440000px;}
.y142{bottom:248.430000px;}
.y19a{bottom:249.060000px;}
.y97{bottom:249.780000px;}
.yeb{bottom:252.750000px;}
.yd2{bottom:253.110000px;}
.y116{bottom:253.650000px;}
.y164{bottom:257.610000px;}
.y12f{bottom:258.060000px;}
.y59{bottom:259.320000px;}
.y1e6{bottom:261.840000px;}
.y183{bottom:262.200000px;}
.y7b{bottom:262.470000px;}
.ybb{bottom:262.650000px;}
.y22{bottom:262.830000px;}
.y1bd{bottom:265.080000px;}
.y141{bottom:265.980000px;}
.y1fb{bottom:266.250000px;}
.y199{bottom:266.610000px;}
.y96{bottom:267.330000px;}
.yea{bottom:270.300000px;}
.yd1{bottom:270.750000px;}
.y115{bottom:271.200000px;}
.y163{bottom:275.250000px;}
.y12e{bottom:275.610000px;}
.y58{bottom:276.870000px;}
.y1e5{bottom:279.390000px;}
.y182{bottom:279.840000px;}
.y7a{bottom:280.110000px;}
.yba{bottom:280.200000px;}
.y21{bottom:280.380000px;}
.y1bc{bottom:282.630000px;}
.y140{bottom:283.530000px;}
.y1fa{bottom:283.800000px;}
.y198{bottom:284.250000px;}
.y95{bottom:284.970000px;}
.ye9{bottom:287.940000px;}
.yd0{bottom:288.300000px;}
.y114{bottom:288.840000px;}
.y162{bottom:292.800000px;}
.y12d{bottom:293.250000px;}
.y57{bottom:294.510000px;}
.y181{bottom:297.390000px;}
.y79{bottom:297.660000px;}
.yb9{bottom:297.840000px;}
.y20{bottom:298.020000px;}
.y1f9{bottom:301.440000px;}
.y197{bottom:301.800000px;}
.y94{bottom:302.520000px;}
.ye8{bottom:305.490000px;}
.ycf{bottom:305.940000px;}
.y1bb{bottom:309.540000px;}
.y13f{bottom:310.440000px;}
.y12c{bottom:310.800000px;}
.y56{bottom:312.060000px;}
.y180{bottom:314.940000px;}
.y78{bottom:315.210000px;}
.yb8{bottom:315.390000px;}
.y196{bottom:319.440000px;}
.y93{bottom:320.160000px;}
.yce{bottom:323.490000px;}
.y1e4{bottom:323.580000px;}
.y113{bottom:324.390000px;}
.y1f{bottom:324.840000px;}
.y161{bottom:327.990000px;}
.y55{bottom:329.610000px;}
.y17f{bottom:332.580000px;}
.yb7{bottom:332.940000px;}
.y209{bottom:336.990000px;}
.y92{bottom:337.710000px;}
.ye7{bottom:341.040000px;}
.y112{bottom:341.940000px;}
.y160{bottom:345.540000px;}
.y12b{bottom:346.440000px;}
.y1ba{bottom:346.890000px;}
.y54{bottom:347.250000px;}
.ycd{bottom:350.040000px;}
.y1e3{bottom:350.130000px;}
.yb6{bottom:350.580000px;}
.y77{bottom:350.850000px;}
.y195{bottom:354.990000px;}
.y13e{bottom:356.160000px;}
.ye6{bottom:358.680000px;}
.y17e{bottom:359.130000px;}
.y111{bottom:359.580000px;}
.y15f{bottom:363.180000px;}
.y208{bottom:363.540000px;}
.y12a{bottom:363.990000px;}
.y91{bottom:364.260000px;}
.y53{bottom:364.800000px;}
.y1e2{bottom:367.770000px;}
.yb5{bottom:368.130000px;}
.y76{bottom:368.400000px;}
.y204{bottom:372.180000px;}
.y194{bottom:372.540000px;}
.y1e{bottom:373.170000px;}
.ye5{bottom:376.230000px;}
.y110{bottom:377.130000px;}
.y207{bottom:381.180000px;}
.y129{bottom:381.540000px;}
.y52{bottom:382.440000px;}
.ycc{bottom:383.070000px;}
.y75{bottom:386.040000px;}
.y1f8{bottom:389.730000px;}
.y193{bottom:390.180000px;}
.y1d{bottom:391.080000px;}
.ye4{bottom:393.870000px;}
.y1e1{bottom:394.320000px;}
.y10f{bottom:394.770000px;}
.yb4{bottom:395.040000px;}
.y1b9{bottom:395.130000px;}
.y15e{bottom:398.730000px;}
.y128{bottom:399.180000px;}
.y90{bottom:399.900000px;}
.y74{bottom:403.590000px;}
.y1f7{bottom:407.370000px;}
.y192{bottom:407.730000px;}
.ye3{bottom:411.420000px;}
.y1e0{bottom:411.870000px;}
.y10e{bottom:412.320000px;}
.y1b8{bottom:412.770000px;}
.y15d{bottom:416.370000px;}
.y127{bottom:416.730000px;}
.y8f{bottom:417.450000px;}
.y51{bottom:417.990000px;}
.y73{bottom:421.140000px;}
.y191{bottom:425.370000px;}
.y1c{bottom:428.070000px;}
.ye2{bottom:428.970000px;}
.y1df{bottom:429.510000px;}
.y10d{bottom:429.870000px;}
.y1b7{bottom:430.320000px;}
.y15c{bottom:433.920000px;}
.y126{bottom:434.370000px;}
.y8e{bottom:435.000000px;}
.y50{bottom:435.540000px;}
.y13b{bottom:436.260000px;}
.y190{bottom:442.920000px;}
.yb3{bottom:443.370000px;}
.y1b{bottom:445.710000px;}
.y10c{bottom:447.510000px;}
.y72{bottom:447.780000px;}
.y1b6{bottom:447.870000px;}
.y15b{bottom:451.470000px;}
.y125{bottom:451.920000px;}
.y8d{bottom:452.640000px;}
.y4f{bottom:453.180000px;}
.y1de{bottom:456.060000px;}
.y18f{bottom:460.470000px;}
.yb2{bottom:460.920000px;}
.yc8{bottom:463.170000px;}
.y1a{bottom:463.260000px;}
.ye1{bottom:464.610000px;}
.y10b{bottom:465.060000px;}
.y1b5{bottom:465.510000px;}
.y15a{bottom:469.110000px;}
.y8c{bottom:470.220000px;}
.y4e{bottom:470.760000px;}
.y1dd{bottom:473.730000px;}
.y203{bottom:478.140000px;}
.yb1{bottom:478.500000px;}
.y71{bottom:480.750000px;}
.y19{bottom:480.840000px;}
.ye0{bottom:482.190000px;}
.y17d{bottom:482.730000px;}
.y1b4{bottom:483.090000px;}
.y18e{bottom:487.140000px;}
.y124{bottom:487.500000px;}
.y4d{bottom:488.400000px;}
.y10a{bottom:491.730000px;}
.y159{bottom:495.690000px;}
.yb0{bottom:496.140000px;}
.y18{bottom:498.480000px;}
.y1dc{bottom:500.280000px;}
.y206{bottom:504.690000px;}
.y123{bottom:505.140000px;}
.y8b{bottom:505.860000px;}
.y4c{bottom:505.950000px;}
.ydf{bottom:508.830000px;}
.y17c{bottom:509.640000px;}
.y1f6{bottom:513.330000px;}
.yaf{bottom:513.690000px;}
.y17{bottom:516.030000px;}
.y1db{bottom:517.830000px;}
.y1b3{bottom:518.730000px;}
.y202{bottom:522.330000px;}
.y122{bottom:522.690000px;}
.y8a{bottom:523.410000px;}
.y4b{bottom:523.500000px;}
.yc7{bottom:525.660000px;}
.y109{bottom:527.280000px;}
.y158{bottom:531.330000px;}
.y16{bottom:533.670000px;}
.y13a{bottom:533.940000px;}
.y1da{bottom:535.470000px;}
.y1b2{bottom:536.280000px;}
.y1f5{bottom:539.880000px;}
.y121{bottom:540.330000px;}
.y89{bottom:540.960000px;}
.y4a{bottom:541.140000px;}
.yde{bottom:541.770000px;}
.y6f{bottom:543.300000px;}
.y108{bottom:544.830000px;}
.y157{bottom:548.880000px;}
.yae{bottom:549.330000px;}
.y15{bottom:551.220000px;}
.y1b1{bottom:553.830000px;}
.y1f4{bottom:557.430000px;}
.y120{bottom:557.880000px;}
.y88{bottom:558.600000px;}
.y49{bottom:558.690000px;}
.y1d9{bottom:562.020000px;}
.y107{bottom:562.470000px;}
.y156{bottom:566.430000px;}
.yad{bottom:566.880000px;}
.y14{bottom:568.770000px;}
.y1b0{bottom:571.470000px;}
.y11f{bottom:575.430000px;}
.y87{bottom:576.150000px;}
.y48{bottom:576.330000px;}
.y1d8{bottom:579.660000px;}
.y106{bottom:580.020000px;}
.y155{bottom:584.070000px;}
.yac{bottom:584.430000px;}
.y13{bottom:586.410000px;}
.yc5{bottom:588.210000px;}
.y1af{bottom:589.020000px;}
.y11e{bottom:593.070000px;}
.y47{bottom:593.880000px;}
.y139{bottom:596.400000px;}
.y105{bottom:597.660000px;}
.y154{bottom:601.620000px;}
.yab{bottom:602.070000px;}
.y6a{bottom:605.760000px;}
.y1d7{bottom:606.210000px;}
.y1ae{bottom:606.660000px;}
.y17b{bottom:610.620000px;}
.y46{bottom:611.430000px;}
.y86{bottom:611.790000px;}
.y12{bottom:613.320000px;}
.y104{bottom:615.210000px;}
.y1f3{bottom:619.260000px;}
.yaa{bottom:619.620000px;}
.ydd{bottom:621.870000px;}
.y1d6{bottom:623.760000px;}
.y17a{bottom:628.260000px;}
.y45{bottom:629.070000px;}
.y85{bottom:629.340000px;}
.y103{bottom:632.760000px;}
.ya9{bottom:637.260000px;}
.y1d5{bottom:641.400000px;}
.y1ad{bottom:642.210000px;}
.y1f2{bottom:645.810000px;}
.y84{bottom:646.890000px;}
.y102{bottom:650.400000px;}
.y153{bottom:654.810000px;}
.y11d{bottom:655.260000px;}
.y1ac{bottom:659.760000px;}
.y11{bottom:660.030000px;}
.y1f1{bottom:663.360000px;}
.y179{bottom:663.810000px;}
.y83{bottom:664.530000px;}
.y44{bottom:664.620000px;}
.y101{bottom:667.950000px;}
.yc4{bottom:668.310000px;}
.y152{bottom:672.360000px;}
.ya8{bottom:672.810000px;}
.y138{bottom:676.500000px;}
.y1ab{bottom:677.400000px;}
.y1f0{bottom:681.000000px;}
.y178{bottom:681.360000px;}
.y82{bottom:682.080000px;}
.y43{bottom:682.260000px;}
.ydc{bottom:684.330000px;}
.y1d4{bottom:685.590000px;}
.y151{bottom:690.000000px;}
.ya7{bottom:690.360000px;}
.y100{bottom:694.860000px;}
.y1aa{bottom:694.950000px;}
.y10{bottom:695.850000px;}
.y177{bottom:699.000000px;}
.y42{bottom:699.810000px;}
.y66{bottom:703.410000px;}
.y150{bottom:707.550000px;}
.ya6{bottom:708.000000px;}
.y1d3{bottom:712.140000px;}
.y176{bottom:716.550000px;}
.y41{bottom:717.360000px;}
.y81{bottom:717.720000px;}
.y14f{bottom:725.190000px;}
.ya5{bottom:725.550000px;}
.y1d2{bottom:729.690000px;}
.y1a9{bottom:730.590000px;}
.yf{bottom:731.850000px;}
.y175{bottom:734.190000px;}
.yc3{bottom:734.550000px;}
.y40{bottom:735.000000px;}
.y80{bottom:735.270000px;}
.ya4{bottom:743.190000px;}
.y1a8{bottom:748.140000px;}
.y18d{bottom:751.740000px;}
.y3f{bottom:752.550000px;}
.y1d1{bottom:756.330000px;}
.y137{bottom:756.600000px;}
.yff{bottom:760.740000px;}
.ydb{bottom:764.430000px;}
.y1a7{bottom:765.690000px;}
.y7f{bottom:767.490000px;}
.y18c{bottom:769.290000px;}
.y174{bottom:769.740000px;}
.y3e{bottom:770.190000px;}
.ye{bottom:771.630000px;}
.y1d0{bottom:773.880000px;}
.yfe{bottom:778.290000px;}
.ya3{bottom:778.740000px;}
.y1a6{bottom:783.330000px;}
.y1ef{bottom:786.930000px;}
.y65{bottom:787.290000px;}
.y3d{bottom:787.740000px;}
.yd{bottom:789.630000px;}
.yfd{bottom:795.930000px;}
.ya2{bottom:796.290000px;}
.y1cf{bottom:800.520000px;}
.y1a5{bottom:800.880000px;}
.y173{bottom:804.930000px;}
.y3c{bottom:805.290000px;}
.yc{bottom:807.630000px;}
.yfc{bottom:813.480000px;}
.ya1{bottom:813.930000px;}
.y1ce{bottom:818.070000px;}
.y1a4{bottom:818.520000px;}
.y172{bottom:822.480000px;}
.y3b{bottom:822.930000px;}
.yb{bottom:825.630000px;}
.y14e{bottom:831.030000px;}
.ya0{bottom:831.480000px;}
.y1a3{bottom:836.070000px;}
.y171{bottom:840.030000px;}
.y3a{bottom:840.480000px;}
.ya{bottom:843.630000px;}
.yda{bottom:844.530000px;}
.y1cd{bottom:844.620000px;}
.y14d{bottom:848.670000px;}
.y9f{bottom:849.030000px;}
.y1a2{bottom:853.620000px;}
.y1ee{bottom:857.670000px;}
.y39{bottom:858.030000px;}
.y9{bottom:861.630000px;}
.y1cc{bottom:862.260000px;}
.y9e{bottom:866.670000px;}
.y14c{bottom:875.220000px;}
.y64{bottom:875.670000px;}
.y8{bottom:875.850000px;}
.y136{bottom:876.030000px;}
.y1cb{bottom:879.810000px;}
.y1a1{bottom:880.530000px;}
.yfb{bottom:884.220000px;}
.y63{bottom:893.220000px;}
.y38{bottom:893.670000px;}
.y7{bottom:897.630000px;}
.yfa{bottom:901.860000px;}
.y170{bottom:902.220000px;}
.y1ca{bottom:906.450000px;}
.y62{bottom:910.860000px;}
.y37{bottom:911.220000px;}
.yf9{bottom:919.410000px;}
.y11c{bottom:919.860000px;}
.y1c9{bottom:924.000000px;}
.y14b{bottom:928.410000px;}
.y36{bottom:928.860000px;}
.y6{bottom:929.940000px;}
.y18b{bottom:936.960000px;}
.y11b{bottom:937.410000px;}
.y14a{bottom:945.960000px;}
.y35{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y1c8{bottom:950.550000px;}
.yf8{bottom:954.960000px;}
.y149{bottom:963.600000px;}
.y34{bottom:963.960000px;}
.y1c7{bottom:968.190000px;}
.yf7{bottom:972.600000px;}
.y33{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.yf6{bottom:990.150000px;}
.y1c6{bottom:994.740000px;}
.y32{bottom:999.150000px;}
.yf5{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.y31{bottom:1016.820000px;}
.yf4{bottom:1025.370000px;}
.y16f{bottom:1025.820000px;}
.y1c5{bottom:1029.960000px;}
.y30{bottom:1034.370000px;}
.yf3{bottom:1042.920000px;}
.y16e{bottom:1043.370000px;}
.y2f{bottom:1051.920000px;}
.y9d{bottom:1052.370000px;}
.y1c4{bottom:1056.510000px;}
.y18a{bottom:1060.560000px;}
.y16d{bottom:1060.920000px;}
.y2e{bottom:1069.560000px;}
.y61{bottom:1069.920000px;}
.y1c3{bottom:1074.150000px;}
.y16c{bottom:1078.560000px;}
.y2d{bottom:1087.110000px;}
.y60{bottom:1087.560000px;}
.y16b{bottom:1096.110000px;}
.y1c2{bottom:1100.700000px;}
.y5f{bottom:1105.110000px;}
.y16a{bottom:1113.750000px;}
.y2c{bottom:1122.750000px;}
.y1c1{bottom:1127.610000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.hf{height:44.100000px;}
.h12{height:44.190000px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.h9{height:55.779258px;}
.h5{height:57.323320px;}
.he{height:61.740000px;}
.h11{height:61.770000px;}
.h15{height:61.793886px;}
.hc{height:61.830000px;}
.hb{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.h10{height:79.290000px;}
.h13{height:79.380000px;}
.hd{height:96.930000px;}
.h14{height:96.960000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.we{width:86.580000px;}
.w3{width:93.810000px;}
.w6{width:99.030000px;}
.wf{width:99.300000px;}
.w9{width:103.530000px;}
.w11{width:107.370000px;}
.w17{width:111.870000px;}
.w19{width:112.680000px;}
.wc{width:115.050000px;}
.w12{width:115.860000px;}
.w1a{width:117.180000px;}
.wd{width:117.720000px;}
.w14{width:122.130000px;}
.wa{width:123.480000px;}
.w7{width:125.550000px;}
.w18{width:129.360000px;}
.w13{width:134.010000px;}
.w15{width:134.940000px;}
.w4{width:136.170000px;}
.w5{width:139.680000px;}
.w16{width:145.800000px;}
.w8{width:155.880000px;}
.w10{width:173.430000px;}
.wb{width:205.560000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:3.960000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:69.660000px;}
.xc{left:84.779987px;}
.x1f{left:111.239987px;}
.x6{left:164.190000px;}
.x14{left:168.780000px;}
.xf{left:173.100000px;}
.x2{left:192.719987px;}
.x1a{left:204.510000px;}
.x10{left:297.300000px;}
.x7{left:301.080000px;}
.x15{left:342.930000px;}
.x1b{left:351.030000px;}
.xd{left:403.589987px;}
.x8{left:441.570000px;}
.x16{left:451.020000px;}
.x1c{left:463.710000px;}
.x11{left:503.580000px;}
.x9{left:541.320000px;}
.x17{left:567.600000px;}
.x1d{left:593.880000px;}
.x12{left:619.350000px;}
.xa{left:667.680000px;}
.x18{left:702.330000px;}
.x1e{left:707.280000px;}
.x13{left:737.880000px;}
.xb{left:758.309987px;}
.x19{left:800.339987px;}
.x3{left:808.619987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls18{letter-spacing:-0.364267pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls1b{letter-spacing:-0.142933pt;}
.ls20{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.120000pt;}
.ls10{letter-spacing:-0.107733pt;}
.ls19{letter-spacing:-0.101333pt;}
.ls1a{letter-spacing:-0.082133pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.ls17{letter-spacing:-0.034560pt;}
.ls1d{letter-spacing:-0.033600pt;}
.ls16{letter-spacing:-0.013120pt;}
.lsb{letter-spacing:-0.007467pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.037120pt;}
.ls11{letter-spacing:0.040320pt;}
.ls12{letter-spacing:0.043520pt;}
.ls9{letter-spacing:0.045867pt;}
.lsa{letter-spacing:0.058133pt;}
.ls3{letter-spacing:0.058240pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls15{letter-spacing:0.087467pt;}
.lsf{letter-spacing:0.100800pt;}
.ls21{letter-spacing:0.103467pt;}
.ls6{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.ls22{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.161067pt;}
.ls14{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.378240pt;}
.ls1f{letter-spacing:42.423680pt;}
.ls1e{letter-spacing:71.863680pt;}
.ws2{word-spacing:-16.449067pt;}
.wsa{word-spacing:-12.883200pt;}
.ws14{word-spacing:-12.781867pt;}
.wsd{word-spacing:-12.775467pt;}
.wsf{word-spacing:-11.933867pt;}
.wsc{word-spacing:-11.917867pt;}
.ws7{word-spacing:-11.910933pt;}
.ws19{word-spacing:-11.860267pt;}
.ws8{word-spacing:-11.857600pt;}
.ws12{word-spacing:-11.844267pt;}
.wse{word-spacing:-11.800320pt;}
.ws16{word-spacing:-11.793920pt;}
.ws5{word-spacing:-11.756800pt;}
.ws10{word-spacing:-11.743680pt;}
.ws17{word-spacing:-11.723200pt;}
.ws11{word-spacing:-11.722240pt;}
.ws1a{word-spacing:-11.681600pt;}
.ws18{word-spacing:-11.620267pt;}
.ws15{word-spacing:-11.613867pt;}
.ws6{word-spacing:-11.590933pt;}
.ws13{word-spacing:-11.392533pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws3{word-spacing:-8.294933pt;}
.ws4{word-spacing:-7.603200pt;}
.wsb{word-spacing:0.000000pt;}
.ws9{word-spacing:3.826560pt;}
._1d{margin-left:-3.558184pt;}
._6{margin-left:-2.565334pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.984682pt;}
._b{width:1.909440pt;}
._1{width:2.818027pt;}
._9{width:3.976170pt;}
._a{width:5.140053pt;}
._7{width:6.252266pt;}
._8{width:7.374934pt;}
._5{width:8.537537pt;}
._3{width:9.486954pt;}
._4{width:10.948118pt;}
._f{width:13.273920pt;}
._e{width:14.215040pt;}
._1f{width:15.244907pt;}
._1e{width:16.138880pt;}
._20{width:17.849388pt;}
._c{width:19.077866pt;}
._d{width:20.088069pt;}
._10{width:21.750080pt;}
._11{width:22.658560pt;}
._3d{width:23.591787pt;}
._17{width:25.223680pt;}
._2f{width:27.254400pt;}
._3e{width:28.162880pt;}
._3f{width:29.231680pt;}
._14{width:30.193600pt;}
._38{width:31.102080pt;}
._3b{width:32.352320pt;}
._1a{width:33.880960pt;}
._1b{width:38.295680pt;}
._13{width:39.492160pt;}
._40{width:42.965760pt;}
._22{width:43.874240pt;}
._27{width:44.996480pt;}
._23{width:50.019840pt;}
._21{width:51.943680pt;}
._3c{width:55.898240pt;}
._2d{width:57.234240pt;}
._39{width:58.837440pt;}
._2c{width:66.051840pt;}
._25{width:69.846080pt;}
._3a{width:71.075200pt;}
._16{width:72.624960pt;}
._37{width:76.686400pt;}
._2e{width:78.289600pt;}
._2b{width:79.276267pt;}
._29{width:80.480640pt;}
._34{width:94.000960pt;}
._18{width:99.238080pt;}
._12{width:110.353600pt;}
._28{width:119.064320pt;}
._31{width:125.263360pt;}
._32{width:130.685547pt;}
._30{width:134.615360pt;}
._24{width:140.493760pt;}
._2a{width:144.555200pt;}
._1c{width:151.235200pt;}
._19{width:154.869120pt;}
._35{width:157.701440pt;}
._26{width:170.366720pt;}
._15{width:189.765440pt;}
._36{width:194.040640pt;}
._33{width:213.920320pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y6e{bottom:6.960000pt;}
.ycb{bottom:6.986667pt;}
.y69{bottom:7.040000pt;}
.y70{bottom:22.560000pt;}
.yca{bottom:22.586667pt;}
.y68{bottom:22.640000pt;}
.y6d{bottom:38.240000pt;}
.yc9{bottom:38.266667pt;}
.y67{bottom:38.320000pt;}
.yc6{bottom:53.840000pt;}
.y13d{bottom:53.866667pt;}
.y6c{bottom:53.920000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y6b{bottom:69.520000pt;}
.y13c{bottom:69.546667pt;}
.y1{bottom:90.346667pt;}
.yf2{bottom:99.226667pt;}
.y1ed{bottom:99.306667pt;}
.yd9{bottom:99.626667pt;}
.yc2{bottom:100.026667pt;}
.y5e{bottom:100.746667pt;}
.y169{bottom:102.826667pt;}
.y148{bottom:102.986667pt;}
.y201{bottom:103.226667pt;}
.y1a0{bottom:103.626667pt;}
.y135{bottom:111.626667pt;}
.yf1{bottom:114.826667pt;}
.y1ec{bottom:114.906667pt;}
.yd8{bottom:115.226667pt;}
.yc1{bottom:115.706667pt;}
.y5d{bottom:116.426667pt;}
.y147{bottom:118.666667pt;}
.y200{bottom:118.826667pt;}
.y19f{bottom:119.226667pt;}
.y189{bottom:123.306667pt;}
.y205{bottom:126.826667pt;}
.y134{bottom:127.226667pt;}
.y9c{bottom:127.866667pt;}
.yf0{bottom:130.506667pt;}
.y1eb{bottom:130.586667pt;}
.yd7{bottom:130.826667pt;}
.yc0{bottom:131.306667pt;}
.y146{bottom:134.266667pt;}
.y168{bottom:134.506667pt;}
.y19e{bottom:134.826667pt;}
.y188{bottom:138.906667pt;}
.y28{bottom:139.786667pt;}
.y5c{bottom:140.026667pt;}
.y1ff{bottom:142.506667pt;}
.y133{bottom:142.826667pt;}
.y9b{bottom:143.466667pt;}
.yef{bottom:146.106667pt;}
.yd6{bottom:146.506667pt;}
.ybf{bottom:146.906667pt;}
.y145{bottom:149.866667pt;}
.y20d{bottom:150.506667pt;}
.y1ea{bottom:154.186667pt;}
.y187{bottom:154.586667pt;}
.y27{bottom:155.466667pt;}
.y1fe{bottom:158.106667pt;}
.y19d{bottom:158.506667pt;}
.y9a{bottom:159.146667pt;}
.yd5{bottom:162.106667pt;}
.ybe{bottom:162.586667pt;}
.y11a{bottom:162.906667pt;}
.y1c0{bottom:163.146667pt;}
.y167{bottom:166.106667pt;}
.y132{bottom:166.506667pt;}
.y1e9{bottom:169.866667pt;}
.y186{bottom:170.186667pt;}
.y26{bottom:171.066667pt;}
.y5b{bottom:171.946667pt;}
.y144{bottom:173.546667pt;}
.y1fd{bottom:173.786667pt;}
.y20c{bottom:174.106667pt;}
.y99{bottom:174.746667pt;}
.yee{bottom:177.786667pt;}
.y119{bottom:178.586667pt;}
.y166{bottom:181.786667pt;}
.y185{bottom:185.866667pt;}
.ybd{bottom:186.186667pt;}
.y7e{bottom:186.426667pt;}
.y25{bottom:186.746667pt;}
.y1bf{bottom:187.066667pt;}
.y20b{bottom:189.786667pt;}
.y19c{bottom:190.106667pt;}
.y98{bottom:190.426667pt;}
.yed{bottom:193.386667pt;}
.y1e8{bottom:193.466667pt;}
.yd4{bottom:193.786667pt;}
.y118{bottom:194.186667pt;}
.y165{bottom:197.386667pt;}
.y131{bottom:198.106667pt;}
.y7d{bottom:202.026667pt;}
.y24{bottom:202.346667pt;}
.y143{bottom:205.146667pt;}
.y20a{bottom:205.386667pt;}
.y19b{bottom:205.786667pt;}
.yec{bottom:208.986667pt;}
.y1e7{bottom:209.066667pt;}
.yd3{bottom:209.386667pt;}
.y117{bottom:209.866667pt;}
.y1fc{bottom:212.986667pt;}
.y130{bottom:213.786667pt;}
.y5a{bottom:214.826667pt;}
.y184{bottom:217.466667pt;}
.y7c{bottom:217.706667pt;}
.ybc{bottom:217.866667pt;}
.y23{bottom:217.946667pt;}
.y1be{bottom:219.946667pt;}
.y142{bottom:220.826667pt;}
.y19a{bottom:221.386667pt;}
.y97{bottom:222.026667pt;}
.yeb{bottom:224.666667pt;}
.yd2{bottom:224.986667pt;}
.y116{bottom:225.466667pt;}
.y164{bottom:228.986667pt;}
.y12f{bottom:229.386667pt;}
.y59{bottom:230.506667pt;}
.y1e6{bottom:232.746667pt;}
.y183{bottom:233.066667pt;}
.y7b{bottom:233.306667pt;}
.ybb{bottom:233.466667pt;}
.y22{bottom:233.626667pt;}
.y1bd{bottom:235.626667pt;}
.y141{bottom:236.426667pt;}
.y1fb{bottom:236.666667pt;}
.y199{bottom:236.986667pt;}
.y96{bottom:237.626667pt;}
.yea{bottom:240.266667pt;}
.yd1{bottom:240.666667pt;}
.y115{bottom:241.066667pt;}
.y163{bottom:244.666667pt;}
.y12e{bottom:244.986667pt;}
.y58{bottom:246.106667pt;}
.y1e5{bottom:248.346667pt;}
.y182{bottom:248.746667pt;}
.y7a{bottom:248.986667pt;}
.yba{bottom:249.066667pt;}
.y21{bottom:249.226667pt;}
.y1bc{bottom:251.226667pt;}
.y140{bottom:252.026667pt;}
.y1fa{bottom:252.266667pt;}
.y198{bottom:252.666667pt;}
.y95{bottom:253.306667pt;}
.ye9{bottom:255.946667pt;}
.yd0{bottom:256.266667pt;}
.y114{bottom:256.746667pt;}
.y162{bottom:260.266667pt;}
.y12d{bottom:260.666667pt;}
.y57{bottom:261.786667pt;}
.y181{bottom:264.346667pt;}
.y79{bottom:264.586667pt;}
.yb9{bottom:264.746667pt;}
.y20{bottom:264.906667pt;}
.y1f9{bottom:267.946667pt;}
.y197{bottom:268.266667pt;}
.y94{bottom:268.906667pt;}
.ye8{bottom:271.546667pt;}
.ycf{bottom:271.946667pt;}
.y1bb{bottom:275.146667pt;}
.y13f{bottom:275.946667pt;}
.y12c{bottom:276.266667pt;}
.y56{bottom:277.386667pt;}
.y180{bottom:279.946667pt;}
.y78{bottom:280.186667pt;}
.yb8{bottom:280.346667pt;}
.y196{bottom:283.946667pt;}
.y93{bottom:284.586667pt;}
.yce{bottom:287.546667pt;}
.y1e4{bottom:287.626667pt;}
.y113{bottom:288.346667pt;}
.y1f{bottom:288.746667pt;}
.y161{bottom:291.546667pt;}
.y55{bottom:292.986667pt;}
.y17f{bottom:295.626667pt;}
.yb7{bottom:295.946667pt;}
.y209{bottom:299.546667pt;}
.y92{bottom:300.186667pt;}
.ye7{bottom:303.146667pt;}
.y112{bottom:303.946667pt;}
.y160{bottom:307.146667pt;}
.y12b{bottom:307.946667pt;}
.y1ba{bottom:308.346667pt;}
.y54{bottom:308.666667pt;}
.ycd{bottom:311.146667pt;}
.y1e3{bottom:311.226667pt;}
.yb6{bottom:311.626667pt;}
.y77{bottom:311.866667pt;}
.y195{bottom:315.546667pt;}
.y13e{bottom:316.586667pt;}
.ye6{bottom:318.826667pt;}
.y17e{bottom:319.226667pt;}
.y111{bottom:319.626667pt;}
.y15f{bottom:322.826667pt;}
.y208{bottom:323.146667pt;}
.y12a{bottom:323.546667pt;}
.y91{bottom:323.786667pt;}
.y53{bottom:324.266667pt;}
.y1e2{bottom:326.906667pt;}
.yb5{bottom:327.226667pt;}
.y76{bottom:327.466667pt;}
.y204{bottom:330.826667pt;}
.y194{bottom:331.146667pt;}
.y1e{bottom:331.706667pt;}
.ye5{bottom:334.426667pt;}
.y110{bottom:335.226667pt;}
.y207{bottom:338.826667pt;}
.y129{bottom:339.146667pt;}
.y52{bottom:339.946667pt;}
.ycc{bottom:340.506667pt;}
.y75{bottom:343.146667pt;}
.y1f8{bottom:346.426667pt;}
.y193{bottom:346.826667pt;}
.y1d{bottom:347.626667pt;}
.ye4{bottom:350.106667pt;}
.y1e1{bottom:350.506667pt;}
.y10f{bottom:350.906667pt;}
.yb4{bottom:351.146667pt;}
.y1b9{bottom:351.226667pt;}
.y15e{bottom:354.426667pt;}
.y128{bottom:354.826667pt;}
.y90{bottom:355.466667pt;}
.y74{bottom:358.746667pt;}
.y1f7{bottom:362.106667pt;}
.y192{bottom:362.426667pt;}
.ye3{bottom:365.706667pt;}
.y1e0{bottom:366.106667pt;}
.y10e{bottom:366.506667pt;}
.y1b8{bottom:366.906667pt;}
.y15d{bottom:370.106667pt;}
.y127{bottom:370.426667pt;}
.y8f{bottom:371.066667pt;}
.y51{bottom:371.546667pt;}
.y73{bottom:374.346667pt;}
.y191{bottom:378.106667pt;}
.y1c{bottom:380.506667pt;}
.ye2{bottom:381.306667pt;}
.y1df{bottom:381.786667pt;}
.y10d{bottom:382.106667pt;}
.y1b7{bottom:382.506667pt;}
.y15c{bottom:385.706667pt;}
.y126{bottom:386.106667pt;}
.y8e{bottom:386.666667pt;}
.y50{bottom:387.146667pt;}
.y13b{bottom:387.786667pt;}
.y190{bottom:393.706667pt;}
.yb3{bottom:394.106667pt;}
.y1b{bottom:396.186667pt;}
.y10c{bottom:397.786667pt;}
.y72{bottom:398.026667pt;}
.y1b6{bottom:398.106667pt;}
.y15b{bottom:401.306667pt;}
.y125{bottom:401.706667pt;}
.y8d{bottom:402.346667pt;}
.y4f{bottom:402.826667pt;}
.y1de{bottom:405.386667pt;}
.y18f{bottom:409.306667pt;}
.yb2{bottom:409.706667pt;}
.yc8{bottom:411.706667pt;}
.y1a{bottom:411.786667pt;}
.ye1{bottom:412.986667pt;}
.y10b{bottom:413.386667pt;}
.y1b5{bottom:413.786667pt;}
.y15a{bottom:416.986667pt;}
.y8c{bottom:417.973333pt;}
.y4e{bottom:418.453333pt;}
.y1dd{bottom:421.093333pt;}
.y203{bottom:425.013333pt;}
.yb1{bottom:425.333333pt;}
.y71{bottom:427.333333pt;}
.y19{bottom:427.413333pt;}
.ye0{bottom:428.613333pt;}
.y17d{bottom:429.093333pt;}
.y1b4{bottom:429.413333pt;}
.y18e{bottom:433.013333pt;}
.y124{bottom:433.333333pt;}
.y4d{bottom:434.133333pt;}
.y10a{bottom:437.093333pt;}
.y159{bottom:440.613333pt;}
.yb0{bottom:441.013333pt;}
.y18{bottom:443.093333pt;}
.y1dc{bottom:444.693333pt;}
.y206{bottom:448.613333pt;}
.y123{bottom:449.013333pt;}
.y8b{bottom:449.653333pt;}
.y4c{bottom:449.733333pt;}
.ydf{bottom:452.293333pt;}
.y17c{bottom:453.013333pt;}
.y1f6{bottom:456.293333pt;}
.yaf{bottom:456.613333pt;}
.y17{bottom:458.693333pt;}
.y1db{bottom:460.293333pt;}
.y1b3{bottom:461.093333pt;}
.y202{bottom:464.293333pt;}
.y122{bottom:464.613333pt;}
.y8a{bottom:465.253333pt;}
.y4b{bottom:465.333333pt;}
.yc7{bottom:467.253333pt;}
.y109{bottom:468.693333pt;}
.y158{bottom:472.293333pt;}
.y16{bottom:474.373333pt;}
.y13a{bottom:474.613333pt;}
.y1da{bottom:475.973333pt;}
.y1b2{bottom:476.693333pt;}
.y1f5{bottom:479.893333pt;}
.y121{bottom:480.293333pt;}
.y89{bottom:480.853333pt;}
.y4a{bottom:481.013333pt;}
.yde{bottom:481.573333pt;}
.y6f{bottom:482.933333pt;}
.y108{bottom:484.293333pt;}
.y157{bottom:487.893333pt;}
.yae{bottom:488.293333pt;}
.y15{bottom:489.973333pt;}
.y1b1{bottom:492.293333pt;}
.y1f4{bottom:495.493333pt;}
.y120{bottom:495.893333pt;}
.y88{bottom:496.533333pt;}
.y49{bottom:496.613333pt;}
.y1d9{bottom:499.573333pt;}
.y107{bottom:499.973333pt;}
.y156{bottom:503.493333pt;}
.yad{bottom:503.893333pt;}
.y14{bottom:505.573333pt;}
.y1b0{bottom:507.973333pt;}
.y11f{bottom:511.493333pt;}
.y87{bottom:512.133333pt;}
.y48{bottom:512.293333pt;}
.y1d8{bottom:515.253333pt;}
.y106{bottom:515.573333pt;}
.y155{bottom:519.173333pt;}
.yac{bottom:519.493333pt;}
.y13{bottom:521.253333pt;}
.yc5{bottom:522.853333pt;}
.y1af{bottom:523.573333pt;}
.y11e{bottom:527.173333pt;}
.y47{bottom:527.893333pt;}
.y139{bottom:530.133333pt;}
.y105{bottom:531.253333pt;}
.y154{bottom:534.773333pt;}
.yab{bottom:535.173333pt;}
.y6a{bottom:538.453333pt;}
.y1d7{bottom:538.853333pt;}
.y1ae{bottom:539.253333pt;}
.y17b{bottom:542.773333pt;}
.y46{bottom:543.493333pt;}
.y86{bottom:543.813333pt;}
.y12{bottom:545.173333pt;}
.y104{bottom:546.853333pt;}
.y1f3{bottom:550.453333pt;}
.yaa{bottom:550.773333pt;}
.ydd{bottom:552.773333pt;}
.y1d6{bottom:554.453333pt;}
.y17a{bottom:558.453333pt;}
.y45{bottom:559.173333pt;}
.y85{bottom:559.413333pt;}
.y103{bottom:562.453333pt;}
.ya9{bottom:566.453333pt;}
.y1d5{bottom:570.133333pt;}
.y1ad{bottom:570.853333pt;}
.y1f2{bottom:574.053333pt;}
.y84{bottom:575.013333pt;}
.y102{bottom:578.133333pt;}
.y153{bottom:582.053333pt;}
.y11d{bottom:582.453333pt;}
.y1ac{bottom:586.453333pt;}
.y11{bottom:586.693333pt;}
.y1f1{bottom:589.653333pt;}
.y179{bottom:590.053333pt;}
.y83{bottom:590.693333pt;}
.y44{bottom:590.773333pt;}
.y101{bottom:593.733333pt;}
.yc4{bottom:594.053333pt;}
.y152{bottom:597.653333pt;}
.ya8{bottom:598.053333pt;}
.y138{bottom:601.333333pt;}
.y1ab{bottom:602.133333pt;}
.y1f0{bottom:605.333333pt;}
.y178{bottom:605.653333pt;}
.y82{bottom:606.293333pt;}
.y43{bottom:606.453333pt;}
.ydc{bottom:608.293333pt;}
.y1d4{bottom:609.413333pt;}
.y151{bottom:613.333333pt;}
.ya7{bottom:613.653333pt;}
.y100{bottom:617.653333pt;}
.y1aa{bottom:617.733333pt;}
.y10{bottom:618.533333pt;}
.y177{bottom:621.333333pt;}
.y42{bottom:622.053333pt;}
.y66{bottom:625.253333pt;}
.y150{bottom:628.933333pt;}
.ya6{bottom:629.333333pt;}
.y1d3{bottom:633.013333pt;}
.y176{bottom:636.933333pt;}
.y41{bottom:637.653333pt;}
.y81{bottom:637.973333pt;}
.y14f{bottom:644.613333pt;}
.ya5{bottom:644.933333pt;}
.y1d2{bottom:648.613333pt;}
.y1a9{bottom:649.413333pt;}
.yf{bottom:650.533333pt;}
.y175{bottom:652.613333pt;}
.yc3{bottom:652.933333pt;}
.y40{bottom:653.333333pt;}
.y80{bottom:653.573333pt;}
.ya4{bottom:660.613333pt;}
.y1a8{bottom:665.013333pt;}
.y18d{bottom:668.213333pt;}
.y3f{bottom:668.933333pt;}
.y1d1{bottom:672.293333pt;}
.y137{bottom:672.533333pt;}
.yff{bottom:676.213333pt;}
.ydb{bottom:679.493333pt;}
.y1a7{bottom:680.613333pt;}
.y7f{bottom:682.213333pt;}
.y18c{bottom:683.813333pt;}
.y174{bottom:684.213333pt;}
.y3e{bottom:684.613333pt;}
.ye{bottom:685.893333pt;}
.y1d0{bottom:687.893333pt;}
.yfe{bottom:691.813333pt;}
.ya3{bottom:692.213333pt;}
.y1a6{bottom:696.293333pt;}
.y1ef{bottom:699.493333pt;}
.y65{bottom:699.813333pt;}
.y3d{bottom:700.213333pt;}
.yd{bottom:701.893333pt;}
.yfd{bottom:707.493333pt;}
.ya2{bottom:707.813333pt;}
.y1cf{bottom:711.573333pt;}
.y1a5{bottom:711.893333pt;}
.y173{bottom:715.493333pt;}
.y3c{bottom:715.813333pt;}
.yc{bottom:717.893333pt;}
.yfc{bottom:723.093333pt;}
.ya1{bottom:723.493333pt;}
.y1ce{bottom:727.173333pt;}
.y1a4{bottom:727.573333pt;}
.y172{bottom:731.093333pt;}
.y3b{bottom:731.493333pt;}
.yb{bottom:733.893333pt;}
.y14e{bottom:738.693333pt;}
.ya0{bottom:739.093333pt;}
.y1a3{bottom:743.173333pt;}
.y171{bottom:746.693333pt;}
.y3a{bottom:747.093333pt;}
.ya{bottom:749.893333pt;}
.yda{bottom:750.693333pt;}
.y1cd{bottom:750.773333pt;}
.y14d{bottom:754.373333pt;}
.y9f{bottom:754.693333pt;}
.y1a2{bottom:758.773333pt;}
.y1ee{bottom:762.373333pt;}
.y39{bottom:762.693333pt;}
.y9{bottom:765.893333pt;}
.y1cc{bottom:766.453333pt;}
.y9e{bottom:770.373333pt;}
.y14c{bottom:777.973333pt;}
.y64{bottom:778.373333pt;}
.y8{bottom:778.533333pt;}
.y136{bottom:778.693333pt;}
.y1cb{bottom:782.053333pt;}
.y1a1{bottom:782.693333pt;}
.yfb{bottom:785.973333pt;}
.y63{bottom:793.973333pt;}
.y38{bottom:794.373333pt;}
.y7{bottom:797.893333pt;}
.yfa{bottom:801.653333pt;}
.y170{bottom:801.973333pt;}
.y1ca{bottom:805.733333pt;}
.y62{bottom:809.653333pt;}
.y37{bottom:809.973333pt;}
.yf9{bottom:817.253333pt;}
.y11c{bottom:817.653333pt;}
.y1c9{bottom:821.333333pt;}
.y14b{bottom:825.253333pt;}
.y36{bottom:825.653333pt;}
.y6{bottom:826.613333pt;}
.y18b{bottom:832.853333pt;}
.y11b{bottom:833.253333pt;}
.y14a{bottom:840.853333pt;}
.y35{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y1c8{bottom:844.933333pt;}
.yf8{bottom:848.853333pt;}
.y149{bottom:856.533333pt;}
.y34{bottom:856.853333pt;}
.y1c7{bottom:860.613333pt;}
.yf7{bottom:864.533333pt;}
.y33{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.yf6{bottom:880.133333pt;}
.y1c6{bottom:884.213333pt;}
.y32{bottom:888.133333pt;}
.yf5{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.y31{bottom:903.840000pt;}
.yf4{bottom:911.440000pt;}
.y16f{bottom:911.840000pt;}
.y1c5{bottom:915.520000pt;}
.y30{bottom:919.440000pt;}
.yf3{bottom:927.040000pt;}
.y16e{bottom:927.440000pt;}
.y2f{bottom:935.040000pt;}
.y9d{bottom:935.440000pt;}
.y1c4{bottom:939.120000pt;}
.y18a{bottom:942.720000pt;}
.y16d{bottom:943.040000pt;}
.y2e{bottom:950.720000pt;}
.y61{bottom:951.040000pt;}
.y1c3{bottom:954.800000pt;}
.y16c{bottom:958.720000pt;}
.y2d{bottom:966.320000pt;}
.y60{bottom:966.720000pt;}
.y16b{bottom:974.320000pt;}
.y1c2{bottom:978.400000pt;}
.y5f{bottom:982.320000pt;}
.y16a{bottom:990.000000pt;}
.y2c{bottom:998.000000pt;}
.y1c1{bottom:1002.320000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.hf{height:39.200000pt;}
.h12{height:39.280000pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.h9{height:49.581562pt;}
.h5{height:50.954062pt;}
.he{height:54.880000pt;}
.h11{height:54.906667pt;}
.h15{height:54.927899pt;}
.hc{height:54.960000pt;}
.hb{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.h10{height:70.480000pt;}
.h13{height:70.560000pt;}
.hd{height:86.160000pt;}
.h14{height:86.186667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.we{width:76.960000pt;}
.w3{width:83.386667pt;}
.w6{width:88.026667pt;}
.wf{width:88.266667pt;}
.w9{width:92.026667pt;}
.w11{width:95.440000pt;}
.w17{width:99.440000pt;}
.w19{width:100.160000pt;}
.wc{width:102.266667pt;}
.w12{width:102.986667pt;}
.w1a{width:104.160000pt;}
.wd{width:104.640000pt;}
.w14{width:108.560000pt;}
.wa{width:109.760000pt;}
.w7{width:111.600000pt;}
.w18{width:114.986667pt;}
.w13{width:119.120000pt;}
.w15{width:119.946667pt;}
.w4{width:121.040000pt;}
.w5{width:124.160000pt;}
.w16{width:129.600000pt;}
.w8{width:138.560000pt;}
.w10{width:154.160000pt;}
.wb{width:182.720000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:3.520000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:61.920000pt;}
.xc{left:75.359988pt;}
.x1f{left:98.879988pt;}
.x6{left:145.946667pt;}
.x14{left:150.026667pt;}
.xf{left:153.866667pt;}
.x2{left:171.306655pt;}
.x1a{left:181.786667pt;}
.x10{left:264.266667pt;}
.x7{left:267.626667pt;}
.x15{left:304.826667pt;}
.x1b{left:312.026667pt;}
.xd{left:358.746655pt;}
.x8{left:392.506667pt;}
.x16{left:400.906667pt;}
.x1c{left:412.186667pt;}
.x11{left:447.626667pt;}
.x9{left:481.173333pt;}
.x17{left:504.533333pt;}
.x1d{left:527.893333pt;}
.x12{left:550.533333pt;}
.xa{left:593.493333pt;}
.x18{left:624.293333pt;}
.x1e{left:628.693333pt;}
.x13{left:655.893333pt;}
.xb{left:674.053322pt;}
.x19{left:711.413322pt;}
.x3{left:718.773322pt;}
}




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