
    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_e2fd47e6f788d68eb233f3cc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_cec3c266277d280e96981189.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6aa86a941f4a9435bde7b863.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_562418f332bcfef7d1921387.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0675f29b799193686ad44a60.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.690918;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_a9073d9ca939dc091424781d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.721680;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_28d06c14384e09a9e4b8a506.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.172852;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_e3aca1508631536056384571.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.721680;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);}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-15.660000px;}
.ls4{letter-spacing:-1.260000px;}
.lse{letter-spacing:-0.612000px;}
.ls9{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.259800px;}
.ls7{letter-spacing:-0.053280px;}
.lsb{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.053280px;}
.ls5{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.119520px;}
.ls14{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.256200px;}
.lsa{letter-spacing:0.259800px;}
.ls6{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls18{letter-spacing:2.465280px;}
.ls16{letter-spacing:11.466720px;}
.ls8{letter-spacing:21.546720px;}
.lsc{letter-spacing:25.146720px;}
.ls10{letter-spacing:28.026720px;}
.ls11{letter-spacing:31.626720px;}
.ls15{letter-spacing:41.850720px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.246600px;}
.wsa{word-spacing:-15.226440px;}
.ws9{word-spacing:-15.093600px;}
.ws7{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.680200px;}
.ws6{word-spacing:-14.580000px;}
.ws5{word-spacing:-12.204000px;}
.ws3{word-spacing:0.000000px;}
._3a{margin-left:-3151.781520px;}
._51{margin-left:-3106.729440px;}
._2c{margin-left:-3006.282480px;}
._15{margin-left:-2993.428320px;}
._5b{margin-left:-2854.675920px;}
._5a{margin-left:-2818.821600px;}
._3d{margin-left:-2810.950560px;}
._3c{margin-left:-2797.620000px;}
._29{margin-left:-2769.839280px;}
._2a{margin-left:-2753.796480px;}
._57{margin-left:-2634.841200px;}
._1d{margin-left:-2602.615680px;}
._24{margin-left:-2525.959200px;}
._31{margin-left:-2425.606560px;}
._1e{margin-left:-2379.398880px;}
._40{margin-left:-2345.888160px;}
._13{margin-left:-2314.623600px;}
._28{margin-left:-2297.727600px;}
._26{margin-left:-2263.412160px;}
._27{margin-left:-2166.502080px;}
._1{margin-left:-2127.144960px;}
._58{margin-left:-2120.275440px;}
._36{margin-left:-2116.746480px;}
._21{margin-left:-2060.248800px;}
._23{margin-left:-2012.921760px;}
._1b{margin-left:-2003.615760px;}
._20{margin-left:-1993.822560px;}
._1a{margin-left:-1979.138400px;}
._53{margin-left:-1965.242160px;}
._59{margin-left:-1945.621680px;}
._18{margin-left:-1887.721680px;}
._1c{margin-left:-1864.594560px;}
._22{margin-left:-1814.874240px;}
._34{margin-left:-1798.268400px;}
._5c{margin-left:-1753.154880px;}
._4f{margin-left:-1728.720480px;}
._52{margin-left:-1718.905200px;}
._16{margin-left:-1558.947600px;}
._42{margin-left:-1536.077760px;}
._4e{margin-left:-1495.762560px;}
._43{margin-left:-1393.891200px;}
._54{margin-left:-1388.434320px;}
._2{margin-left:-1339.028640px;}
._46{margin-left:-1272.754800px;}
._33{margin-left:-1262.280960px;}
._17{margin-left:-1207.859760px;}
._45{margin-left:-1053.367440px;}
._3b{margin-left:-1019.013360px;}
._3{margin-left:-1005.841440px;}
._4{margin-left:-999.974880px;}
._2f{margin-left:-938.851200px;}
._2d{margin-left:-861.020160px;}
._37{margin-left:-808.420560px;}
._30{margin-left:-804.733680px;}
._2e{margin-left:-723.400320px;}
._56{margin-left:-690.233520px;}
._1f{margin-left:-622.107120px;}
._44{margin-left:-597.366480px;}
._2b{margin-left:-577.227360px;}
._35{margin-left:-575.793120px;}
._32{margin-left:-563.880720px;}
._5{margin-left:-546.108480px;}
._19{margin-left:-539.160240px;}
._25{margin-left:-537.367440px;}
._41{margin-left:-515.913600px;}
._5e{margin-left:-434.886480px;}
._5d{margin-left:-433.133280px;}
._3f{margin-left:-396.553440px;}
._14{margin-left:-371.779920px;}
._50{margin-left:-288.747120px;}
._3e{margin-left:-280.326960px;}
._55{margin-left:-239.760000px;}
._39{margin-left:-80.333280px;}
._38{margin-left:-61.020000px;}
._4b{margin-left:-29.567280px;}
._4a{margin-left:-15.271200px;}
._49{margin-left:-5.574240px;}
._8{margin-left:-4.136160px;}
._6{margin-left:-2.848320px;}
._0{margin-left:-1.263600px;}
._7{width:1.426800px;}
._e{width:2.537520px;}
._9{width:3.585600px;}
._d{width:5.070480px;}
._a{width:6.263040px;}
._11{width:10.039680px;}
._10{width:11.294640px;}
._f{width:13.490640px;}
._4d{width:16.451280px;}
._b{width:20.037120px;}
._c{width:21.334320px;}
._4c{width:30.960000px;}
._12{width:40.935600px;}
._47{width:121.200000px;}
._48{width:272.832000px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(89,89,89);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,35,35);}
.fs4{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y29{bottom:3.240000px;}
.ye{bottom:4.500000px;}
.y44{bottom:5.580000px;}
.y9b{bottom:5.760000px;}
.y132{bottom:5.805000px;}
.y140{bottom:5.934000px;}
.y9f{bottom:5.940000px;}
.y116{bottom:15.300000px;}
.yb4{bottom:15.330000px;}
.y168{bottom:15.375000px;}
.ydf{bottom:15.405000px;}
.y108{bottom:15.450000px;}
.y12a{bottom:15.510000px;}
.y43{bottom:24.120000px;}
.y28{bottom:32.040000px;}
.y115{bottom:40.605000px;}
.yb3{bottom:40.650000px;}
.y167{bottom:40.680000px;}
.yde{bottom:40.710000px;}
.y107{bottom:40.755000px;}
.y129{bottom:40.830000px;}
.y42{bottom:42.840000px;}
.y27{bottom:52.020000px;}
.y6{bottom:59.256000px;}
.y41{bottom:61.380000px;}
.y114{bottom:65.910000px;}
.yb2{bottom:65.985000px;}
.ydd{bottom:66.030000px;}
.y106{bottom:66.060000px;}
.y128{bottom:66.135000px;}
.y26{bottom:71.820000px;}
.y40{bottom:80.100000px;}
.y1b1{bottom:85.425000px;}
.y15f{bottom:85.470000px;}
.y198{bottom:85.500000px;}
.y25{bottom:91.620000px;}
.y10a{bottom:92.850000px;}
.y121{bottom:92.880000px;}
.yb6{bottom:92.910000px;}
.yd4{bottom:92.955000px;}
.yfd{bottom:92.985000px;}
.yb0{bottom:93.096000px;}
.y1f8{bottom:97.236000px;}
.y196{bottom:97.416000px;}
.y3f{bottom:98.640000px;}
.y1b2{bottom:105.225000px;}
.y199{bottom:105.270000px;}
.y51{bottom:106.956000px;}
.y1ce{bottom:107.565000px;}
.y1bc{bottom:107.640000px;}
.y85{bottom:107.676000px;}
.y10b{bottom:109.335000px;}
.y142{bottom:110.376000px;}
.y171{bottom:111.135000px;}
.y24{bottom:111.420000px;}
.y122{bottom:111.705000px;}
.yb7{bottom:111.750000px;}
.yd5{bottom:111.780000px;}
.yfe{bottom:111.855000px;}
.yaf{bottom:113.076000px;}
.y160{bottom:113.190000px;}
.y15d{bottom:113.976000px;}
.y1f7{bottom:115.776000px;}
.y1af{bottom:116.316000px;}
.y3e{bottom:117.360000px;}
.yfb{bottom:117.576000px;}
.y195{bottom:118.116000px;}
.y113{bottom:118.800000px;}
.y109{bottom:120.060000px;}
.yd2{bottom:121.716000px;}
.y1cf{bottom:122.220000px;}
.y1bd{bottom:122.295000px;}
.y1b3{bottom:125.025000px;}
.y19a{bottom:125.070000px;}
.y141{bottom:125.136000px;}
.y10c{bottom:125.820000px;}
.y50{bottom:126.936000px;}
.y84{bottom:127.656000px;}
.y172{bottom:129.420000px;}
.yb8{bottom:130.575000px;}
.yd6{bottom:130.650000px;}
.yff{bottom:130.680000px;}
.y23{bottom:131.220000px;}
.yae{bottom:132.876000px;}
.y15c{bottom:133.776000px;}
.y1f6{bottom:134.496000px;}
.y3d{bottom:135.900000px;}
.y1ae{bottom:136.116000px;}
.y1d0{bottom:136.905000px;}
.y1be{bottom:136.950000px;}
.y194{bottom:138.636000px;}
.y161{bottom:140.910000px;}
.y10d{bottom:142.305000px;}
.yd1{bottom:142.416000px;}
.y1b4{bottom:144.825000px;}
.y19b{bottom:144.870000px;}
.y13f{bottom:145.656000px;}
.y4f{bottom:146.736000px;}
.y83{bottom:147.456000px;}
.y173{bottom:147.675000px;}
.y123{bottom:149.400000px;}
.yb9{bottom:149.430000px;}
.yd7{bottom:149.475000px;}
.y100{bottom:149.505000px;}
.y144{bottom:149.550000px;}
.y15b{bottom:150.330000px;}
.y166{bottom:150.660000px;}
.y22{bottom:151.200000px;}
.y1d1{bottom:151.560000px;}
.y1bf{bottom:151.590000px;}
.y170{bottom:152.640000px;}
.yad{bottom:152.670000px;}
.y1f5{bottom:153.030000px;}
.y3c{bottom:154.440000px;}
.y1ad{bottom:155.910000px;}
.y10e{bottom:158.790000px;}
.y193{bottom:159.150000px;}
.yd0{bottom:162.930000px;}
.y1b5{bottom:164.625000px;}
.y19c{bottom:164.670000px;}
.y174{bottom:165.930000px;}
.y1d2{bottom:166.215000px;}
.y1c0{bottom:166.245000px;}
.y13e{bottom:166.350000px;}
.y4e{bottom:166.530000px;}
.y82{bottom:167.250000px;}
.yba{bottom:168.270000px;}
.yd8{bottom:168.330000px;}
.y101{bottom:168.375000px;}
.y162{bottom:168.630000px;}
.y21{bottom:171.000000px;}
.y1f4{bottom:171.750000px;}
.yac{bottom:172.470000px;}
.y3b{bottom:173.160000px;}
.y10f{bottom:175.290000px;}
.y1ac{bottom:175.710000px;}
.y192{bottom:179.850000px;}
.y1d3{bottom:180.870000px;}
.y1c1{bottom:180.900000px;}
.ycf{bottom:183.630000px;}
.y175{bottom:184.215000px;}
.y1b6{bottom:184.425000px;}
.y19d{bottom:184.470000px;}
.y4d{bottom:186.330000px;}
.y13d{bottom:186.870000px;}
.y81{bottom:187.050000px;}
.y124{bottom:187.095000px;}
.ybb{bottom:187.125000px;}
.yd9{bottom:187.170000px;}
.y102{bottom:187.200000px;}
.y145{bottom:187.230000px;}
.y1f3{bottom:190.290000px;}
.y20{bottom:190.800000px;}
.y3a{bottom:191.700000px;}
.y110{bottom:191.775000px;}
.yab{bottom:192.270000px;}
.y1d4{bottom:195.510000px;}
.y1c2{bottom:195.555000px;}
.y1ab{bottom:195.690000px;}
.y163{bottom:196.350000px;}
.y191{bottom:200.370000px;}
.yce{bottom:204.150000px;}
.y1b7{bottom:204.225000px;}
.y19e{bottom:204.270000px;}
.y125{bottom:205.920000px;}
.ybc{bottom:205.950000px;}
.yda{bottom:206.025000px;}
.y103{bottom:206.070000px;}
.y4c{bottom:206.130000px;}
.y80{bottom:206.850000px;}
.y13c{bottom:207.390000px;}
.y111{bottom:208.260000px;}
.y1f2{bottom:208.830000px;}
.y1d5{bottom:210.165000px;}
.y1c3{bottom:210.210000px;}
.y39{bottom:210.450000px;}
.y1f{bottom:210.630000px;}
.yaa{bottom:212.250000px;}
.y1aa{bottom:215.490000px;}
.y190{bottom:220.890000px;}
.y1b8{bottom:224.025000px;}
.y164{bottom:224.070000px;}
.ycd{bottom:224.670000px;}
.y112{bottom:224.745000px;}
.y126{bottom:224.790000px;}
.ybd{bottom:224.820000px;}
.ydb{bottom:224.850000px;}
.y104{bottom:224.895000px;}
.y4b{bottom:226.110000px;}
.y7f{bottom:226.830000px;}
.y1f1{bottom:227.550000px;}
.y13b{bottom:228.090000px;}
.y38{bottom:228.990000px;}
.y1e{bottom:230.430000px;}
.ya9{bottom:232.050000px;}
.y1a9{bottom:235.290000px;}
.ycc{bottom:245.370000px;}
.y4a{bottom:245.910000px;}
.y1f0{bottom:246.090000px;}
.y7e{bottom:246.630000px;}
.y18f{bottom:247.350000px;}
.y37{bottom:247.530000px;}
.y1d{bottom:250.410000px;}
.ya8{bottom:251.850000px;}
.y1a8{bottom:255.090000px;}
.y13a{bottom:256.890000px;}
.y1ef{bottom:264.810000px;}
.y49{bottom:265.710000px;}
.y36{bottom:266.250000px;}
.y7d{bottom:266.430000px;}
.y18e{bottom:267.150000px;}
.y1c{bottom:270.210000px;}
.ya7{bottom:271.650000px;}
.y1a7{bottom:271.830000px;}
.y1ba{bottom:272.880000px;}
.y1bb{bottom:274.140000px;}
.y1ee{bottom:283.395000px;}
.y35{bottom:284.790000px;}
.y48{bottom:285.555000px;}
.y18d{bottom:286.995000px;}
.y1b{bottom:290.010000px;}
.ya6{bottom:291.495000px;}
.y7c{bottom:295.275000px;}
.y1ed{bottom:301.935000px;}
.y34{bottom:303.510000px;}
.y47{bottom:305.355000px;}
.y18c{bottom:306.975000px;}
.y1a{bottom:309.810000px;}
.ya5{bottom:311.475000px;}
.y7b{bottom:315.075000px;}
.y1ec{bottom:320.655000px;}
.y33{bottom:322.050000px;}
.y46{bottom:325.335000px;}
.y18b{bottom:326.775000px;}
.y19{bottom:329.610000px;}
.ya4{bottom:331.275000px;}
.y7a{bottom:335.055000px;}
.y1eb{bottom:339.195000px;}
.y32{bottom:340.590000px;}
.y45{bottom:345.135000px;}
.y18a{bottom:346.575000px;}
.ya3{bottom:347.835000px;}
.yb1{bottom:349.020000px;}
.y18{bottom:349.590000px;}
.yb5{bottom:350.280000px;}
.ycb{bottom:351.075000px;}
.y1ea{bottom:357.915000px;}
.y31{bottom:359.310000px;}
.yf{bottom:361.335000px;}
.y79{bottom:363.855000px;}
.y189{bottom:366.375000px;}
.y17{bottom:369.390000px;}
.yca{bottom:370.875000px;}
.y16f{bottom:373.215000px;}
.y1e9{bottom:376.455000px;}
.y30{bottom:377.850000px;}
.y78{bottom:383.655000px;}
.yfa{bottom:385.635000px;}
.y188{bottom:386.175000px;}
.y16{bottom:389.190000px;}
.yc9{bottom:390.675000px;}
.y16e{bottom:393.735000px;}
.y1e8{bottom:394.995000px;}
.y2f{bottom:396.570000px;}
.y77{bottom:403.455000px;}
.y187{bottom:406.155000px;}
.yf9{bottom:406.335000px;}
.y15{bottom:408.990000px;}
.yc8{bottom:410.655000px;}
.y1e7{bottom:413.715000px;}
.y16d{bottom:414.435000px;}
.y2e{bottom:415.110000px;}
.y76{bottom:423.255000px;}
.y186{bottom:425.955000px;}
.yf8{bottom:426.855000px;}
.y11f{bottom:427.215000px;}
.y127{bottom:428.220000px;}
.y14{bottom:428.790000px;}
.y120{bottom:429.660000px;}
.yc7{bottom:430.455000px;}
.y1e6{bottom:432.255000px;}
.y2d{bottom:433.830000px;}
.y16c{bottom:434.955000px;}
.y75{bottom:443.235000px;}
.y185{bottom:445.755000px;}
.yf7{bottom:447.375000px;}
.y13{bottom:448.770000px;}
.yc6{bottom:450.255000px;}
.y1e5{bottom:450.975000px;}
.y2c{bottom:452.370000px;}
.y16b{bottom:455.475000px;}
.y184{bottom:465.555000px;}
.yc5{bottom:466.815000px;}
.ydc{bottom:468.000000px;}
.yf6{bottom:468.075000px;}
.y12{bottom:468.570000px;}
.yd3{bottom:469.260000px;}
.y1e4{bottom:469.515000px;}
.y139{bottom:470.055000px;}
.y2b{bottom:470.910000px;}
.y74{bottom:472.035000px;}
.y16a{bottom:476.175000px;}
.y183{bottom:485.355000px;}
.y1e3{bottom:488.235000px;}
.y11{bottom:488.415000px;}
.yf5{bottom:488.595000px;}
.y2a{bottom:489.675000px;}
.y138{bottom:489.855000px;}
.y73{bottom:491.835000px;}
.y169{bottom:504.975000px;}
.y182{bottom:505.335000px;}
.y1e2{bottom:508.035000px;}
.y10{bottom:508.215000px;}
.yf4{bottom:509.295000px;}
.y137{bottom:509.835000px;}
.y72{bottom:511.635000px;}
.y181{bottom:525.135000px;}
.y1e1{bottom:527.835000px;}
.y136{bottom:529.635000px;}
.y15a{bottom:531.075000px;}
.y71{bottom:531.435000px;}
.yf3{bottom:535.575000px;}
.y1a6{bottom:539.895000px;}
.y180{bottom:544.935000px;}
.y1cc{bottom:546.195000px;}
.y1d6{bottom:547.380000px;}
.y1e0{bottom:547.635000px;}
.y1cd{bottom:548.640000px;}
.y135{bottom:549.435000px;}
.y159{bottom:550.875000px;}
.y70{bottom:551.415000px;}
.yf2{bottom:555.375000px;}
.y1a5{bottom:560.445000px;}
.y17f{bottom:564.765000px;}
.y1df{bottom:567.465000px;}
.y134{bottom:569.265000px;}
.y158{bottom:570.885000px;}
.y6f{bottom:571.245000px;}
.yf1{bottom:575.385000px;}
.y1a4{bottom:581.145000px;}
.y17e{bottom:581.505000px;}
.y197{bottom:581.580000px;}
.y19f{bottom:582.480000px;}
.y133{bottom:586.005000px;}
.y146{bottom:586.980000px;}
.y1de{bottom:587.445000px;}
.y143{bottom:588.240000px;}
.y157{bottom:590.685000px;}
.y6e{bottom:591.045000px;}
.yf0{bottom:595.185000px;}
.ya2{bottom:596.085000px;}
.y1a3{bottom:601.665000px;}
.y1dd{bottom:607.245000px;}
.y156{bottom:610.485000px;}
.y6d{bottom:610.845000px;}
.yef{bottom:614.985000px;}
.ya1{bottom:616.785000px;}
.y1a2{bottom:622.185000px;}
.y1dc{bottom:627.045000px;}
.y155{bottom:630.285000px;}
.y6c{bottom:630.645000px;}
.yee{bottom:634.785000px;}
.ya0{bottom:637.305000px;}
.y1a1{bottom:642.885000px;}
.y1db{bottom:646.845000px;}
.y154{bottom:650.085000px;}
.yed{bottom:654.585000px;}
.y9e{bottom:657.825000px;}
.y6b{bottom:659.625000px;}
.y1a0{bottom:663.405000px;}
.y1da{bottom:666.645000px;}
.y153{bottom:670.065000px;}
.yec{bottom:674.565000px;}
.y9d{bottom:678.525000px;}
.y6a{bottom:679.425000px;}
.y11e{bottom:680.505000px;}
.y1d9{bottom:686.625000px;}
.y152{bottom:689.865000px;}
.yeb{bottom:694.365000px;}
.y11d{bottom:695.265000px;}
.y9c{bottom:699.045000px;}
.y69{bottom:699.225000px;}
.y1d8{bottom:706.425000px;}
.y151{bottom:709.665000px;}
.yea{bottom:714.165000px;}
.yc4{bottom:715.245000px;}
.y11c{bottom:715.965000px;}
.y68{bottom:719.025000px;}
.y9a{bottom:719.745000px;}
.y1d7{bottom:726.225000px;}
.y150{bottom:729.465000px;}
.ye9{bottom:733.965000px;}
.yc3{bottom:735.765000px;}
.y11b{bottom:736.485000px;}
.y67{bottom:738.825000px;}
.y99{bottom:746.025000px;}
.y14f{bottom:749.265000px;}
.ye8{bottom:753.765000px;}
.yc2{bottom:756.285000px;}
.y11a{bottom:757.005000px;}
.y66{bottom:758.805000px;}
.y98{bottom:765.825000px;}
.y14e{bottom:769.245000px;}
.ye7{bottom:773.745000px;}
.yc1{bottom:776.985000px;}
.y119{bottom:777.705000px;}
.y65{bottom:778.605000px;}
.y97{bottom:785.805000px;}
.y14d{bottom:789.045000px;}
.ye6{bottom:793.545000px;}
.yc0{bottom:797.505000px;}
.y118{bottom:798.225000px;}
.y64{bottom:798.405000px;}
.y1cb{bottom:799.485000px;}
.y96{bottom:805.605000px;}
.y14c{bottom:808.845000px;}
.ye5{bottom:813.345000px;}
.y1ca{bottom:814.425000px;}
.ybf{bottom:818.025000px;}
.y63{bottom:818.205000px;}
.y117{bottom:818.925000px;}
.y95{bottom:825.405000px;}
.y14b{bottom:828.645000px;}
.ye4{bottom:833.145000px;}
.y131{bottom:834.225000px;}
.y1c9{bottom:834.945000px;}
.y62{bottom:838.005000px;}
.ybe{bottom:838.770000px;}
.y17d{bottom:839.310000px;}
.y94{bottom:845.250000px;}
.y14a{bottom:848.490000px;}
.ye3{bottom:852.990000px;}
.y17c{bottom:854.070000px;}
.y130{bottom:854.790000px;}
.y1c8{bottom:855.510000px;}
.y61{bottom:857.850000px;}
.y93{bottom:865.050000px;}
.y149{bottom:868.470000px;}
.ye2{bottom:872.970000px;}
.y17b{bottom:874.590000px;}
.y12f{bottom:875.310000px;}
.y1c7{bottom:876.210000px;}
.y92{bottom:884.850000px;}
.yd{bottom:885.930000px;}
.y60{bottom:886.830000px;}
.y148{bottom:888.270000px;}
.ye1{bottom:892.770000px;}
.y17a{bottom:895.290000px;}
.y12e{bottom:896.010000px;}
.y1c6{bottom:896.730000px;}
.y91{bottom:904.830000px;}
.y1b0{bottom:905.040000px;}
.y1b9{bottom:905.940000px;}
.y5f{bottom:906.630000px;}
.y147{bottom:908.070000px;}
.yc{bottom:912.570000px;}
.y179{bottom:915.810000px;}
.y12d{bottom:916.530000px;}
.y1c5{bottom:917.250000px;}
.y90{bottom:924.630000px;}
.y15e{bottom:924.840000px;}
.y165{bottom:925.740000px;}
.y5e{bottom:926.430000px;}
.ye0{bottom:929.130000px;}
.y105{bottom:930.240000px;}
.yfc{bottom:931.500000px;}
.yb{bottom:932.370000px;}
.y178{bottom:936.330000px;}
.y12c{bottom:937.230000px;}
.y1c4{bottom:937.950000px;}
.y8f{bottom:944.430000px;}
.y5d{bottom:946.230000px;}
.ya{bottom:952.710000px;}
.y177{bottom:957.030000px;}
.y12b{bottom:957.750000px;}
.y8e{bottom:964.230000px;}
.y5c{bottom:966.030000px;}
.y9{bottom:973.950000px;}
.y176{bottom:977.550000px;}
.y8d{bottom:984.030000px;}
.y5b{bottom:986.010000px;}
.y8{bottom:997.530000px;}
.y8c{bottom:1004.010000px;}
.y5a{bottom:1014.810000px;}
.y8b{bottom:1023.810000px;}
.y7{bottom:1029.210000px;}
.y59{bottom:1034.610000px;}
.y8a{bottom:1043.610000px;}
.y58{bottom:1054.410000px;}
.y89{bottom:1063.410000px;}
.y5{bottom:1070.790000px;}
.y57{bottom:1074.210000px;}
.y88{bottom:1083.210000px;}
.y56{bottom:1094.190000px;}
.y4{bottom:1100.310000px;}
.y87{bottom:1103.190000px;}
.y55{bottom:1113.990000px;}
.y86{bottom:1123.020000px;}
.y3{bottom:1129.680000px;}
.y1f9{bottom:1142.280000px;}
.y54{bottom:1142.820000px;}
.y2{bottom:1159.200000px;}
.y53{bottom:1162.620000px;}
.y1{bottom:1190.160000px;}
.y52{bottom:1194.300000px;}
.h9{height:18.540000px;}
.hc{height:19.800000px;}
.h12{height:19.836000px;}
.hd{height:19.980000px;}
.hb{height:40.472227px;}
.h8{height:41.726953px;}
.h7{height:42.164648px;}
.he{height:43.506914px;}
.h4{height:46.251562px;}
.h5{height:46.736719px;}
.h10{height:53.709961px;}
.h3{height:58.819922px;}
.h2{height:59.436914px;}
.h1c{height:65.884219px;}
.h6{height:67.565039px;}
.h19{height:204.660000px;}
.h18{height:213.660000px;}
.hf{height:239.760000px;}
.h13{height:239.940000px;}
.h11{height:245.160000px;}
.h14{height:245.340000px;}
.h15{height:246.600000px;}
.h17{height:250.920000px;}
.h1b{height:251.100000px;}
.h16{height:251.820000px;}
.h1a{height:252.000000px;}
.ha{height:522.255000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w13{width:90.756000px;}
.w16{width:107.136000px;}
.w14{width:113.940000px;}
.wb{width:122.076000px;}
.w15{width:154.080000px;}
.w10{width:189.930000px;}
.w4{width:193.530000px;}
.w12{width:224.490000px;}
.w5{width:224.670000px;}
.w9{width:224.715000px;}
.w6{width:224.850000px;}
.wa{width:227.190000px;}
.wc{width:229.530000px;}
.w11{width:249.840000px;}
.wf{width:261.540000px;}
.w8{width:263.700000px;}
.wd{width:263.880000px;}
.we{width:267.120000px;}
.w7{width:267.300000px;}
.w17{width:412.635000px;}
.w3{width:587.985000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:3.594000px;}
.x2{left:8.100000px;}
.x13{left:21.600000px;}
.x2b{left:22.965000px;}
.x12{left:28.440000px;}
.x2a{left:29.805000px;}
.x23{left:37.335000px;}
.x10{left:39.675000px;}
.x22{left:44.175000px;}
.x8{left:45.899987px;}
.x7{left:47.159987px;}
.x1{left:54.179987px;}
.x33{left:58.319987px;}
.x5{left:69.479987px;}
.xe{left:80.999987px;}
.xa{left:108.756000px;}
.x29{left:146.160000px;}
.x19{left:148.176000px;}
.x26{left:152.670000px;}
.x21{left:175.320000px;}
.x14{left:176.400000px;}
.x1d{left:177.480000px;}
.xf{left:178.560000px;}
.x2c{left:231.150000px;}
.x2f{left:263.730000px;}
.x16{left:280.110000px;}
.xb{left:334.155000px;}
.x27{left:351.615000px;}
.x30{left:371.775000px;}
.x1b{left:384.375000px;}
.x32{left:442.980000px;}
.x15{left:444.060000px;}
.x24{left:445.320000px;}
.x1e{left:447.480000px;}
.x31{left:449.820000px;}
.x11{left:450.900000px;}
.x2d{left:456.555000px;}
.x25{left:492.480000px;}
.x17{left:505.545000px;}
.x1c{left:515.445000px;}
.x9{left:528.044987px;}
.x2e{left:548.025000px;}
.x28{left:550.545000px;}
.xc{left:559.545000px;}
.x3{left:641.985000px;}
.x18{left:715.469987px;}
.xd{left:716.549987px;}
.x1f{left:717.629987px;}
.x6{left:749.849987px;}
.x20{left:755.969987px;}
.x4{left:831.029987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-13.920000pt;}
.ls4{letter-spacing:-1.120000pt;}
.lse{letter-spacing:-0.544000pt;}
.ls9{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.230933pt;}
.ls7{letter-spacing:-0.047360pt;}
.lsb{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.047360pt;}
.ls5{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.106240pt;}
.ls14{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.227733pt;}
.lsa{letter-spacing:0.230933pt;}
.ls6{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls18{letter-spacing:2.191360pt;}
.ls16{letter-spacing:10.192640pt;}
.ls8{letter-spacing:19.152640pt;}
.lsc{letter-spacing:22.352640pt;}
.ls10{letter-spacing:24.912640pt;}
.ls11{letter-spacing:28.112640pt;}
.ls15{letter-spacing:37.200640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.552533pt;}
.wsa{word-spacing:-13.534613pt;}
.ws9{word-spacing:-13.416533pt;}
.ws7{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.049067pt;}
.ws6{word-spacing:-12.960000pt;}
.ws5{word-spacing:-10.848000pt;}
.ws3{word-spacing:0.000000pt;}
._3a{margin-left:-2801.583573pt;}
._51{margin-left:-2761.537280pt;}
._2c{margin-left:-2672.251093pt;}
._15{margin-left:-2660.825173pt;}
._5b{margin-left:-2537.489707pt;}
._5a{margin-left:-2505.619200pt;}
._3d{margin-left:-2498.622720pt;}
._3c{margin-left:-2486.773333pt;}
._29{margin-left:-2462.079360pt;}
._2a{margin-left:-2447.819093pt;}
._57{margin-left:-2342.081067pt;}
._1d{margin-left:-2313.436160pt;}
._24{margin-left:-2245.297067pt;}
._31{margin-left:-2156.094720pt;}
._1e{margin-left:-2115.021227pt;}
._40{margin-left:-2085.233920pt;}
._13{margin-left:-2057.443200pt;}
._28{margin-left:-2042.424533pt;}
._26{margin-left:-2011.921920pt;}
._27{margin-left:-1925.779627pt;}
._1{margin-left:-1890.795520pt;}
._58{margin-left:-1884.689280pt;}
._36{margin-left:-1881.552427pt;}
._21{margin-left:-1831.332267pt;}
._23{margin-left:-1789.263787pt;}
._1b{margin-left:-1780.991787pt;}
._20{margin-left:-1772.286720pt;}
._1a{margin-left:-1759.234133pt;}
._53{margin-left:-1746.881920pt;}
._59{margin-left:-1729.441493pt;}
._18{margin-left:-1677.974827pt;}
._1c{margin-left:-1657.417387pt;}
._22{margin-left:-1613.221547pt;}
._34{margin-left:-1598.460800pt;}
._5c{margin-left:-1558.359893pt;}
._4f{margin-left:-1536.640427pt;}
._52{margin-left:-1527.915733pt;}
._16{margin-left:-1385.731200pt;}
._42{margin-left:-1365.402453pt;}
._4e{margin-left:-1329.566720pt;}
._43{margin-left:-1239.014400pt;}
._54{margin-left:-1234.163840pt;}
._2{margin-left:-1190.247680pt;}
._46{margin-left:-1131.337600pt;}
._33{margin-left:-1122.027520pt;}
._17{margin-left:-1073.653120pt;}
._45{margin-left:-936.326613pt;}
._3b{margin-left:-905.789653pt;}
._3{margin-left:-894.081280pt;}
._4{margin-left:-888.866560pt;}
._2f{margin-left:-834.534400pt;}
._2d{margin-left:-765.351253pt;}
._37{margin-left:-718.596053pt;}
._30{margin-left:-715.318827pt;}
._2e{margin-left:-643.022507pt;}
._56{margin-left:-613.540907pt;}
._1f{margin-left:-552.984107pt;}
._44{margin-left:-530.992427pt;}
._2b{margin-left:-513.090987pt;}
._35{margin-left:-511.816107pt;}
._32{margin-left:-501.227307pt;}
._5{margin-left:-485.429760pt;}
._19{margin-left:-479.253547pt;}
._25{margin-left:-477.659947pt;}
._41{margin-left:-458.589867pt;}
._5e{margin-left:-386.565760pt;}
._5d{margin-left:-385.007360pt;}
._3f{margin-left:-352.491947pt;}
._14{margin-left:-330.471040pt;}
._50{margin-left:-256.664107pt;}
._3e{margin-left:-249.179520pt;}
._55{margin-left:-213.120000pt;}
._39{margin-left:-71.407360pt;}
._38{margin-left:-54.240000pt;}
._4b{margin-left:-26.282027pt;}
._4a{margin-left:-13.574400pt;}
._49{margin-left:-4.954880pt;}
._8{margin-left:-3.676587pt;}
._6{margin-left:-2.531840pt;}
._0{margin-left:-1.123200pt;}
._7{width:1.268267pt;}
._e{width:2.255573pt;}
._9{width:3.187200pt;}
._d{width:4.507093pt;}
._a{width:5.567147pt;}
._11{width:8.924160pt;}
._10{width:10.039680pt;}
._f{width:11.991680pt;}
._4d{width:14.623360pt;}
._b{width:17.810773pt;}
._c{width:18.963840pt;}
._4c{width:27.520000pt;}
._12{width:36.387200pt;}
._47{width:107.733333pt;}
._48{width:242.517333pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:2.880000pt;}
.ye{bottom:4.000000pt;}
.y44{bottom:4.960000pt;}
.y9b{bottom:5.120000pt;}
.y132{bottom:5.160000pt;}
.y140{bottom:5.274667pt;}
.y9f{bottom:5.280000pt;}
.y116{bottom:13.600000pt;}
.yb4{bottom:13.626667pt;}
.y168{bottom:13.666667pt;}
.ydf{bottom:13.693333pt;}
.y108{bottom:13.733333pt;}
.y12a{bottom:13.786667pt;}
.y43{bottom:21.440000pt;}
.y28{bottom:28.480000pt;}
.y115{bottom:36.093333pt;}
.yb3{bottom:36.133333pt;}
.y167{bottom:36.160000pt;}
.yde{bottom:36.186667pt;}
.y107{bottom:36.226667pt;}
.y129{bottom:36.293333pt;}
.y42{bottom:38.080000pt;}
.y27{bottom:46.240000pt;}
.y6{bottom:52.672000pt;}
.y41{bottom:54.560000pt;}
.y114{bottom:58.586667pt;}
.yb2{bottom:58.653333pt;}
.ydd{bottom:58.693333pt;}
.y106{bottom:58.720000pt;}
.y128{bottom:58.786667pt;}
.y26{bottom:63.840000pt;}
.y40{bottom:71.200000pt;}
.y1b1{bottom:75.933333pt;}
.y15f{bottom:75.973333pt;}
.y198{bottom:76.000000pt;}
.y25{bottom:81.440000pt;}
.y10a{bottom:82.533333pt;}
.y121{bottom:82.560000pt;}
.yb6{bottom:82.586667pt;}
.yd4{bottom:82.626667pt;}
.yfd{bottom:82.653333pt;}
.yb0{bottom:82.752000pt;}
.y1f8{bottom:86.432000pt;}
.y196{bottom:86.592000pt;}
.y3f{bottom:87.680000pt;}
.y1b2{bottom:93.533333pt;}
.y199{bottom:93.573333pt;}
.y51{bottom:95.072000pt;}
.y1ce{bottom:95.613333pt;}
.y1bc{bottom:95.680000pt;}
.y85{bottom:95.712000pt;}
.y10b{bottom:97.186667pt;}
.y142{bottom:98.112000pt;}
.y171{bottom:98.786667pt;}
.y24{bottom:99.040000pt;}
.y122{bottom:99.293333pt;}
.yb7{bottom:99.333333pt;}
.yd5{bottom:99.360000pt;}
.yfe{bottom:99.426667pt;}
.yaf{bottom:100.512000pt;}
.y160{bottom:100.613333pt;}
.y15d{bottom:101.312000pt;}
.y1f7{bottom:102.912000pt;}
.y1af{bottom:103.392000pt;}
.y3e{bottom:104.320000pt;}
.yfb{bottom:104.512000pt;}
.y195{bottom:104.992000pt;}
.y113{bottom:105.600000pt;}
.y109{bottom:106.720000pt;}
.yd2{bottom:108.192000pt;}
.y1cf{bottom:108.640000pt;}
.y1bd{bottom:108.706667pt;}
.y1b3{bottom:111.133333pt;}
.y19a{bottom:111.173333pt;}
.y141{bottom:111.232000pt;}
.y10c{bottom:111.840000pt;}
.y50{bottom:112.832000pt;}
.y84{bottom:113.472000pt;}
.y172{bottom:115.040000pt;}
.yb8{bottom:116.066667pt;}
.yd6{bottom:116.133333pt;}
.yff{bottom:116.160000pt;}
.y23{bottom:116.640000pt;}
.yae{bottom:118.112000pt;}
.y15c{bottom:118.912000pt;}
.y1f6{bottom:119.552000pt;}
.y3d{bottom:120.800000pt;}
.y1ae{bottom:120.992000pt;}
.y1d0{bottom:121.693333pt;}
.y1be{bottom:121.733333pt;}
.y194{bottom:123.232000pt;}
.y161{bottom:125.253333pt;}
.y10d{bottom:126.493333pt;}
.yd1{bottom:126.592000pt;}
.y1b4{bottom:128.733333pt;}
.y19b{bottom:128.773333pt;}
.y13f{bottom:129.472000pt;}
.y4f{bottom:130.432000pt;}
.y83{bottom:131.072000pt;}
.y173{bottom:131.266667pt;}
.y123{bottom:132.800000pt;}
.yb9{bottom:132.826667pt;}
.yd7{bottom:132.866667pt;}
.y100{bottom:132.893333pt;}
.y144{bottom:132.933333pt;}
.y15b{bottom:133.626667pt;}
.y166{bottom:133.920000pt;}
.y22{bottom:134.400000pt;}
.y1d1{bottom:134.720000pt;}
.y1bf{bottom:134.746667pt;}
.y170{bottom:135.680000pt;}
.yad{bottom:135.706667pt;}
.y1f5{bottom:136.026667pt;}
.y3c{bottom:137.280000pt;}
.y1ad{bottom:138.586667pt;}
.y10e{bottom:141.146667pt;}
.y193{bottom:141.466667pt;}
.yd0{bottom:144.826667pt;}
.y1b5{bottom:146.333333pt;}
.y19c{bottom:146.373333pt;}
.y174{bottom:147.493333pt;}
.y1d2{bottom:147.746667pt;}
.y1c0{bottom:147.773333pt;}
.y13e{bottom:147.866667pt;}
.y4e{bottom:148.026667pt;}
.y82{bottom:148.666667pt;}
.yba{bottom:149.573333pt;}
.yd8{bottom:149.626667pt;}
.y101{bottom:149.666667pt;}
.y162{bottom:149.893333pt;}
.y21{bottom:152.000000pt;}
.y1f4{bottom:152.666667pt;}
.yac{bottom:153.306667pt;}
.y3b{bottom:153.920000pt;}
.y10f{bottom:155.813333pt;}
.y1ac{bottom:156.186667pt;}
.y192{bottom:159.866667pt;}
.y1d3{bottom:160.773333pt;}
.y1c1{bottom:160.800000pt;}
.ycf{bottom:163.226667pt;}
.y175{bottom:163.746667pt;}
.y1b6{bottom:163.933333pt;}
.y19d{bottom:163.973333pt;}
.y4d{bottom:165.626667pt;}
.y13d{bottom:166.106667pt;}
.y81{bottom:166.266667pt;}
.y124{bottom:166.306667pt;}
.ybb{bottom:166.333333pt;}
.yd9{bottom:166.373333pt;}
.y102{bottom:166.400000pt;}
.y145{bottom:166.426667pt;}
.y1f3{bottom:169.146667pt;}
.y20{bottom:169.600000pt;}
.y3a{bottom:170.400000pt;}
.y110{bottom:170.466667pt;}
.yab{bottom:170.906667pt;}
.y1d4{bottom:173.786667pt;}
.y1c2{bottom:173.826667pt;}
.y1ab{bottom:173.946667pt;}
.y163{bottom:174.533333pt;}
.y191{bottom:178.106667pt;}
.yce{bottom:181.466667pt;}
.y1b7{bottom:181.533333pt;}
.y19e{bottom:181.573333pt;}
.y125{bottom:183.040000pt;}
.ybc{bottom:183.066667pt;}
.yda{bottom:183.133333pt;}
.y103{bottom:183.173333pt;}
.y4c{bottom:183.226667pt;}
.y80{bottom:183.866667pt;}
.y13c{bottom:184.346667pt;}
.y111{bottom:185.120000pt;}
.y1f2{bottom:185.626667pt;}
.y1d5{bottom:186.813333pt;}
.y1c3{bottom:186.853333pt;}
.y39{bottom:187.066667pt;}
.y1f{bottom:187.226667pt;}
.yaa{bottom:188.666667pt;}
.y1aa{bottom:191.546667pt;}
.y190{bottom:196.346667pt;}
.y1b8{bottom:199.133333pt;}
.y164{bottom:199.173333pt;}
.ycd{bottom:199.706667pt;}
.y112{bottom:199.773333pt;}
.y126{bottom:199.813333pt;}
.ybd{bottom:199.840000pt;}
.ydb{bottom:199.866667pt;}
.y104{bottom:199.906667pt;}
.y4b{bottom:200.986667pt;}
.y7f{bottom:201.626667pt;}
.y1f1{bottom:202.266667pt;}
.y13b{bottom:202.746667pt;}
.y38{bottom:203.546667pt;}
.y1e{bottom:204.826667pt;}
.ya9{bottom:206.266667pt;}
.y1a9{bottom:209.146667pt;}
.ycc{bottom:218.106667pt;}
.y4a{bottom:218.586667pt;}
.y1f0{bottom:218.746667pt;}
.y7e{bottom:219.226667pt;}
.y18f{bottom:219.866667pt;}
.y37{bottom:220.026667pt;}
.y1d{bottom:222.586667pt;}
.ya8{bottom:223.866667pt;}
.y1a8{bottom:226.746667pt;}
.y13a{bottom:228.346667pt;}
.y1ef{bottom:235.386667pt;}
.y49{bottom:236.186667pt;}
.y36{bottom:236.666667pt;}
.y7d{bottom:236.826667pt;}
.y18e{bottom:237.466667pt;}
.y1c{bottom:240.186667pt;}
.ya7{bottom:241.466667pt;}
.y1a7{bottom:241.626667pt;}
.y1ba{bottom:242.560000pt;}
.y1bb{bottom:243.680000pt;}
.y1ee{bottom:251.906667pt;}
.y35{bottom:253.146667pt;}
.y48{bottom:253.826667pt;}
.y18d{bottom:255.106667pt;}
.y1b{bottom:257.786667pt;}
.ya6{bottom:259.106667pt;}
.y7c{bottom:262.466667pt;}
.y1ed{bottom:268.386667pt;}
.y34{bottom:269.786667pt;}
.y47{bottom:271.426667pt;}
.y18c{bottom:272.866667pt;}
.y1a{bottom:275.386667pt;}
.ya5{bottom:276.866667pt;}
.y7b{bottom:280.066667pt;}
.y1ec{bottom:285.026667pt;}
.y33{bottom:286.266667pt;}
.y46{bottom:289.186667pt;}
.y18b{bottom:290.466667pt;}
.y19{bottom:292.986667pt;}
.ya4{bottom:294.466667pt;}
.y7a{bottom:297.826667pt;}
.y1eb{bottom:301.506667pt;}
.y32{bottom:302.746667pt;}
.y45{bottom:306.786667pt;}
.y18a{bottom:308.066667pt;}
.ya3{bottom:309.186667pt;}
.yb1{bottom:310.240000pt;}
.y18{bottom:310.746667pt;}
.yb5{bottom:311.360000pt;}
.ycb{bottom:312.066667pt;}
.y1ea{bottom:318.146667pt;}
.y31{bottom:319.386667pt;}
.yf{bottom:321.186667pt;}
.y79{bottom:323.426667pt;}
.y189{bottom:325.666667pt;}
.y17{bottom:328.346667pt;}
.yca{bottom:329.666667pt;}
.y16f{bottom:331.746667pt;}
.y1e9{bottom:334.626667pt;}
.y30{bottom:335.866667pt;}
.y78{bottom:341.026667pt;}
.yfa{bottom:342.786667pt;}
.y188{bottom:343.266667pt;}
.y16{bottom:345.946667pt;}
.yc9{bottom:347.266667pt;}
.y16e{bottom:349.986667pt;}
.y1e8{bottom:351.106667pt;}
.y2f{bottom:352.506667pt;}
.y77{bottom:358.626667pt;}
.y187{bottom:361.026667pt;}
.yf9{bottom:361.186667pt;}
.y15{bottom:363.546667pt;}
.yc8{bottom:365.026667pt;}
.y1e7{bottom:367.746667pt;}
.y16d{bottom:368.386667pt;}
.y2e{bottom:368.986667pt;}
.y76{bottom:376.226667pt;}
.y186{bottom:378.626667pt;}
.yf8{bottom:379.426667pt;}
.y11f{bottom:379.746667pt;}
.y127{bottom:380.640000pt;}
.y14{bottom:381.146667pt;}
.y120{bottom:381.920000pt;}
.yc7{bottom:382.626667pt;}
.y1e6{bottom:384.226667pt;}
.y2d{bottom:385.626667pt;}
.y16c{bottom:386.626667pt;}
.y75{bottom:393.986667pt;}
.y185{bottom:396.226667pt;}
.yf7{bottom:397.666667pt;}
.y13{bottom:398.906667pt;}
.yc6{bottom:400.226667pt;}
.y1e5{bottom:400.866667pt;}
.y2c{bottom:402.106667pt;}
.y16b{bottom:404.866667pt;}
.y184{bottom:413.826667pt;}
.yc5{bottom:414.946667pt;}
.ydc{bottom:416.000000pt;}
.yf6{bottom:416.066667pt;}
.y12{bottom:416.506667pt;}
.yd3{bottom:417.120000pt;}
.y1e4{bottom:417.346667pt;}
.y139{bottom:417.826667pt;}
.y2b{bottom:418.586667pt;}
.y74{bottom:419.586667pt;}
.y16a{bottom:423.266667pt;}
.y183{bottom:431.426667pt;}
.y1e3{bottom:433.986667pt;}
.y11{bottom:434.146667pt;}
.yf5{bottom:434.306667pt;}
.y2a{bottom:435.266667pt;}
.y138{bottom:435.426667pt;}
.y73{bottom:437.186667pt;}
.y169{bottom:448.866667pt;}
.y182{bottom:449.186667pt;}
.y1e2{bottom:451.586667pt;}
.y10{bottom:451.746667pt;}
.yf4{bottom:452.706667pt;}
.y137{bottom:453.186667pt;}
.y72{bottom:454.786667pt;}
.y181{bottom:466.786667pt;}
.y1e1{bottom:469.186667pt;}
.y136{bottom:470.786667pt;}
.y15a{bottom:472.066667pt;}
.y71{bottom:472.386667pt;}
.yf3{bottom:476.066667pt;}
.y1a6{bottom:479.906667pt;}
.y180{bottom:484.386667pt;}
.y1cc{bottom:485.506667pt;}
.y1d6{bottom:486.560000pt;}
.y1e0{bottom:486.786667pt;}
.y1cd{bottom:487.680000pt;}
.y135{bottom:488.386667pt;}
.y159{bottom:489.666667pt;}
.y70{bottom:490.146667pt;}
.yf2{bottom:493.666667pt;}
.y1a5{bottom:498.173333pt;}
.y17f{bottom:502.013333pt;}
.y1df{bottom:504.413333pt;}
.y134{bottom:506.013333pt;}
.y158{bottom:507.453333pt;}
.y6f{bottom:507.773333pt;}
.yf1{bottom:511.453333pt;}
.y1a4{bottom:516.573333pt;}
.y17e{bottom:516.893333pt;}
.y197{bottom:516.960000pt;}
.y19f{bottom:517.760000pt;}
.y133{bottom:520.893333pt;}
.y146{bottom:521.760000pt;}
.y1de{bottom:522.173333pt;}
.y143{bottom:522.880000pt;}
.y157{bottom:525.053333pt;}
.y6e{bottom:525.373333pt;}
.yf0{bottom:529.053333pt;}
.ya2{bottom:529.853333pt;}
.y1a3{bottom:534.813333pt;}
.y1dd{bottom:539.773333pt;}
.y156{bottom:542.653333pt;}
.y6d{bottom:542.973333pt;}
.yef{bottom:546.653333pt;}
.ya1{bottom:548.253333pt;}
.y1a2{bottom:553.053333pt;}
.y1dc{bottom:557.373333pt;}
.y155{bottom:560.253333pt;}
.y6c{bottom:560.573333pt;}
.yee{bottom:564.253333pt;}
.ya0{bottom:566.493333pt;}
.y1a1{bottom:571.453333pt;}
.y1db{bottom:574.973333pt;}
.y154{bottom:577.853333pt;}
.yed{bottom:581.853333pt;}
.y9e{bottom:584.733333pt;}
.y6b{bottom:586.333333pt;}
.y1a0{bottom:589.693333pt;}
.y1da{bottom:592.573333pt;}
.y153{bottom:595.613333pt;}
.yec{bottom:599.613333pt;}
.y9d{bottom:603.133333pt;}
.y6a{bottom:603.933333pt;}
.y11e{bottom:604.893333pt;}
.y1d9{bottom:610.333333pt;}
.y152{bottom:613.213333pt;}
.yeb{bottom:617.213333pt;}
.y11d{bottom:618.013333pt;}
.y9c{bottom:621.373333pt;}
.y69{bottom:621.533333pt;}
.y1d8{bottom:627.933333pt;}
.y151{bottom:630.813333pt;}
.yea{bottom:634.813333pt;}
.yc4{bottom:635.773333pt;}
.y11c{bottom:636.413333pt;}
.y68{bottom:639.133333pt;}
.y9a{bottom:639.773333pt;}
.y1d7{bottom:645.533333pt;}
.y150{bottom:648.413333pt;}
.ye9{bottom:652.413333pt;}
.yc3{bottom:654.013333pt;}
.y11b{bottom:654.653333pt;}
.y67{bottom:656.733333pt;}
.y99{bottom:663.133333pt;}
.y14f{bottom:666.013333pt;}
.ye8{bottom:670.013333pt;}
.yc2{bottom:672.253333pt;}
.y11a{bottom:672.893333pt;}
.y66{bottom:674.493333pt;}
.y98{bottom:680.733333pt;}
.y14e{bottom:683.773333pt;}
.ye7{bottom:687.773333pt;}
.yc1{bottom:690.653333pt;}
.y119{bottom:691.293333pt;}
.y65{bottom:692.093333pt;}
.y97{bottom:698.493333pt;}
.y14d{bottom:701.373333pt;}
.ye6{bottom:705.373333pt;}
.yc0{bottom:708.893333pt;}
.y118{bottom:709.533333pt;}
.y64{bottom:709.693333pt;}
.y1cb{bottom:710.653333pt;}
.y96{bottom:716.093333pt;}
.y14c{bottom:718.973333pt;}
.ye5{bottom:722.973333pt;}
.y1ca{bottom:723.933333pt;}
.ybf{bottom:727.133333pt;}
.y63{bottom:727.293333pt;}
.y117{bottom:727.933333pt;}
.y95{bottom:733.693333pt;}
.y14b{bottom:736.573333pt;}
.ye4{bottom:740.573333pt;}
.y131{bottom:741.533333pt;}
.y1c9{bottom:742.173333pt;}
.y62{bottom:744.893333pt;}
.ybe{bottom:745.573333pt;}
.y17d{bottom:746.053333pt;}
.y94{bottom:751.333333pt;}
.y14a{bottom:754.213333pt;}
.ye3{bottom:758.213333pt;}
.y17c{bottom:759.173333pt;}
.y130{bottom:759.813333pt;}
.y1c8{bottom:760.453333pt;}
.y61{bottom:762.533333pt;}
.y93{bottom:768.933333pt;}
.y149{bottom:771.973333pt;}
.ye2{bottom:775.973333pt;}
.y17b{bottom:777.413333pt;}
.y12f{bottom:778.053333pt;}
.y1c7{bottom:778.853333pt;}
.y92{bottom:786.533333pt;}
.yd{bottom:787.493333pt;}
.y60{bottom:788.293333pt;}
.y148{bottom:789.573333pt;}
.ye1{bottom:793.573333pt;}
.y17a{bottom:795.813333pt;}
.y12e{bottom:796.453333pt;}
.y1c6{bottom:797.093333pt;}
.y91{bottom:804.293333pt;}
.y1b0{bottom:804.480000pt;}
.y1b9{bottom:805.280000pt;}
.y5f{bottom:805.893333pt;}
.y147{bottom:807.173333pt;}
.yc{bottom:811.173333pt;}
.y179{bottom:814.053333pt;}
.y12d{bottom:814.693333pt;}
.y1c5{bottom:815.333333pt;}
.y90{bottom:821.893333pt;}
.y15e{bottom:822.080000pt;}
.y165{bottom:822.880000pt;}
.y5e{bottom:823.493333pt;}
.ye0{bottom:825.893333pt;}
.y105{bottom:826.880000pt;}
.yfc{bottom:828.000000pt;}
.yb{bottom:828.773333pt;}
.y178{bottom:832.293333pt;}
.y12c{bottom:833.093333pt;}
.y1c4{bottom:833.733333pt;}
.y8f{bottom:839.493333pt;}
.y5d{bottom:841.093333pt;}
.ya{bottom:846.853333pt;}
.y177{bottom:850.693333pt;}
.y12b{bottom:851.333333pt;}
.y8e{bottom:857.093333pt;}
.y5c{bottom:858.693333pt;}
.y9{bottom:865.733333pt;}
.y176{bottom:868.933333pt;}
.y8d{bottom:874.693333pt;}
.y5b{bottom:876.453333pt;}
.y8{bottom:886.693333pt;}
.y8c{bottom:892.453333pt;}
.y5a{bottom:902.053333pt;}
.y8b{bottom:910.053333pt;}
.y7{bottom:914.853333pt;}
.y59{bottom:919.653333pt;}
.y8a{bottom:927.653333pt;}
.y58{bottom:937.253333pt;}
.y89{bottom:945.253333pt;}
.y5{bottom:951.813333pt;}
.y57{bottom:954.853333pt;}
.y88{bottom:962.853333pt;}
.y56{bottom:972.613333pt;}
.y4{bottom:978.053333pt;}
.y87{bottom:980.613333pt;}
.y55{bottom:990.213333pt;}
.y86{bottom:998.240000pt;}
.y3{bottom:1004.160000pt;}
.y1f9{bottom:1015.360000pt;}
.y54{bottom:1015.840000pt;}
.y2{bottom:1030.400000pt;}
.y53{bottom:1033.440000pt;}
.y1{bottom:1057.920000pt;}
.y52{bottom:1061.600000pt;}
.h9{height:16.480000pt;}
.hc{height:17.600000pt;}
.h12{height:17.632000pt;}
.hd{height:17.760000pt;}
.hb{height:35.975313pt;}
.h8{height:37.090625pt;}
.h7{height:37.479688pt;}
.he{height:38.672812pt;}
.h4{height:41.112500pt;}
.h5{height:41.543750pt;}
.h10{height:47.742188pt;}
.h3{height:52.284375pt;}
.h2{height:52.832812pt;}
.h1c{height:58.563750pt;}
.h6{height:60.057813pt;}
.h19{height:181.920000pt;}
.h18{height:189.920000pt;}
.hf{height:213.120000pt;}
.h13{height:213.280000pt;}
.h11{height:217.920000pt;}
.h14{height:218.080000pt;}
.h15{height:219.200000pt;}
.h17{height:223.040000pt;}
.h1b{height:223.200000pt;}
.h16{height:223.840000pt;}
.h1a{height:224.000000pt;}
.ha{height:464.226667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w13{width:80.672000pt;}
.w16{width:95.232000pt;}
.w14{width:101.280000pt;}
.wb{width:108.512000pt;}
.w15{width:136.960000pt;}
.w10{width:168.826667pt;}
.w4{width:172.026667pt;}
.w12{width:199.546667pt;}
.w5{width:199.706667pt;}
.w9{width:199.746667pt;}
.w6{width:199.866667pt;}
.wa{width:201.946667pt;}
.wc{width:204.026667pt;}
.w11{width:222.080000pt;}
.wf{width:232.480000pt;}
.w8{width:234.400000pt;}
.wd{width:234.560000pt;}
.we{width:237.440000pt;}
.w7{width:237.600000pt;}
.w17{width:366.786667pt;}
.w3{width:522.653333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:3.194667pt;}
.x2{left:7.200000pt;}
.x13{left:19.200000pt;}
.x2b{left:20.413333pt;}
.x12{left:25.280000pt;}
.x2a{left:26.493333pt;}
.x23{left:33.186667pt;}
.x10{left:35.266667pt;}
.x22{left:39.266667pt;}
.x8{left:40.799988pt;}
.x7{left:41.919988pt;}
.x1{left:48.159988pt;}
.x33{left:51.839988pt;}
.x5{left:61.759988pt;}
.xe{left:71.999988pt;}
.xa{left:96.672000pt;}
.x29{left:129.920000pt;}
.x19{left:131.712000pt;}
.x26{left:135.706667pt;}
.x21{left:155.840000pt;}
.x14{left:156.800000pt;}
.x1d{left:157.760000pt;}
.xf{left:158.720000pt;}
.x2c{left:205.466667pt;}
.x2f{left:234.426667pt;}
.x16{left:248.986667pt;}
.xb{left:297.026667pt;}
.x27{left:312.546667pt;}
.x30{left:330.466667pt;}
.x1b{left:341.666667pt;}
.x32{left:393.760000pt;}
.x15{left:394.720000pt;}
.x24{left:395.840000pt;}
.x1e{left:397.760000pt;}
.x31{left:399.840000pt;}
.x11{left:400.800000pt;}
.x2d{left:405.826667pt;}
.x25{left:437.760000pt;}
.x17{left:449.373333pt;}
.x1c{left:458.173333pt;}
.x9{left:469.373322pt;}
.x2e{left:487.133333pt;}
.x28{left:489.373333pt;}
.xc{left:497.373333pt;}
.x3{left:570.653333pt;}
.x18{left:635.973322pt;}
.xd{left:636.933322pt;}
.x1f{left:637.893322pt;}
.x6{left:666.533322pt;}
.x20{left:671.973322pt;}
.x4{left:738.693322pt;}
}




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