
    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_225a9fd13c032279b53c96b1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.952637;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_79b163ff67481308c879f586.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959473;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_f53b3a87008df7461eae9d26.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959473;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_300f60ad87e77930dbc0418b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.767578;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_11e1cebe38181b5572e93be8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_1372e0bf746ea8724817b5ac.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_428a7a4a07a452da95784411.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_b44daf9e39d2cfc00ce62b68.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7b9e2dbaa985f89b8a816354.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.946777;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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;}
.ls10{letter-spacing:-1.008000px;}
.ls3{letter-spacing:-0.648000px;}
.lsb{letter-spacing:-0.504000px;}
.ls11{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.174000px;}
.lsc{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.192000px;}
.lse{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.360000px;}
.ls1{letter-spacing:2.880000px;}
.ls12{letter-spacing:40.320000px;}
.ls7{letter-spacing:1322.250240px;}
.ls6{letter-spacing:1431.096000px;}
.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:-72.000000px;}
.ws3{word-spacing:-21.060000px;}
.ws9{word-spacing:-18.360000px;}
.wsa{word-spacing:-18.216000px;}
.ws1{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.928000px;}
.ws6{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.784000px;}
.wsc{word-spacing:-17.712000px;}
.ws2{word-spacing:-17.352000px;}
.wsb{word-spacing:-16.992000px;}
.ws7{word-spacing:0.000000px;}
._1b{margin-left:-214.685520px;}
._18{margin-left:-196.206720px;}
._1c{margin-left:-56.850480px;}
._1e{margin-left:-55.160640px;}
._19{margin-left:-50.834880px;}
._22{margin-left:-47.386080px;}
._24{margin-left:-27.329040px;}
._1d{margin-left:-25.827120px;}
._20{margin-left:-18.894960px;}
._1f{margin-left:-7.571520px;}
._21{margin-left:-6.538320px;}
._23{margin-left:-5.211360px;}
._1a{margin-left:-4.145760px;}
._0{margin-left:-2.700000px;}
._1{margin-left:-1.026000px;}
._2{width:1.038000px;}
._7{width:2.474640px;}
._f{width:3.480000px;}
._c{width:4.482000px;}
._b{width:6.192000px;}
._13{width:8.064000px;}
._2b{width:9.078000px;}
._2a{width:10.170000px;}
._d{width:11.232000px;}
._e{width:12.240000px;}
._33{width:13.422000px;}
._11{width:14.490000px;}
._10{width:15.768000px;}
._12{width:16.968000px;}
._3d{width:19.008000px;}
._27{width:20.088000px;}
._3f{width:21.312000px;}
._30{width:22.410000px;}
._15{width:23.472000px;}
._14{width:24.768000px;}
._2c{width:26.496000px;}
._26{width:27.594000px;}
._25{width:28.656000px;}
._4{width:29.754000px;}
._4f{width:30.852000px;}
._35{width:31.950000px;}
._45{width:33.264000px;}
._39{width:34.416000px;}
._3e{width:36.000000px;}
._3a{width:37.008000px;}
._29{width:38.088000px;}
._28{width:39.240000px;}
._40{width:41.040000px;}
._43{width:42.480000px;}
._42{width:43.488000px;}
._3c{width:44.784000px;}
._4e{width:45.864000px;}
._31{width:46.872000px;}
._32{width:48.816000px;}
._44{width:49.824000px;}
._38{width:50.832000px;}
._2d{width:51.840000px;}
._4d{width:53.730000px;}
._4c{width:54.936000px;}
._4b{width:56.304000px;}
._3b{width:57.690000px;}
._34{width:58.716000px;}
._2f{width:60.696000px;}
._2e{width:62.064000px;}
._48{width:64.008000px;}
._60{width:65.880000px;}
._50{width:67.032000px;}
._37{width:68.472000px;}
._36{width:69.480000px;}
._a{width:71.352000px;}
._46{width:73.728000px;}
._58{width:75.240000px;}
._51{width:77.112000px;}
._52{width:78.552000px;}
._55{width:80.568000px;}
._54{width:82.368000px;}
._49{width:83.520000px;}
._8{width:85.188000px;}
._47{width:86.976000px;}
._4a{width:88.344000px;}
._3{width:90.504000px;}
._5d{width:96.552000px;}
._5c{width:97.632000px;}
._5e{width:98.928000px;}
._5a{width:101.520000px;}
._41{width:103.176000px;}
._9{width:104.808000px;}
._53{width:108.360000px;}
._63{width:111.168000px;}
._62{width:112.464000px;}
._65{width:133.854000px;}
._64{width:135.480000px;}
._17{width:180.120720px;}
._59{width:289.008000px;}
._5f{width:298.872000px;}
._57{width:304.992000px;}
._5b{width:386.640000px;}
._61{width:420.408000px;}
._67{width:449.352000px;}
._6{width:641.556000px;}
._66{width:756.108000px;}
._56{width:983.880000px;}
._16{width:1432.554240px;}
._5{width:1433.832000px;}
.fc9{color:rgb(5,99,193);}
.fc7{color:transparent;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(19,20,74);}
.fc1{color:rgb(10,120,154);}
.fc8{color:rgb(42,42,42);}
.fc6{color:rgb(128,128,128);}
.fc5{color:rgb(34,34,34);}
.fc2{color:rgb(33,29,30);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:75.893905px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y3a{bottom:-5.400000px;}
.y0{bottom:0.000000px;}
.y38{bottom:3.600000px;}
.y36{bottom:56.160000px;}
.y6{bottom:57.600000px;}
.y35{bottom:69.660000px;}
.y5{bottom:76.860000px;}
.y4{bottom:91.980000px;}
.y37{bottom:98.280000px;}
.y39{bottom:104.580000px;}
.y3{bottom:107.280000px;}
.y2{bottom:122.400000px;}
.y1{bottom:137.520000px;}
.y34{bottom:148.500000px;}
.y32{bottom:159.150000px;}
.y10b{bottom:166.890000px;}
.yf2{bottom:167.970000px;}
.y16e{bottom:169.050000px;}
.y67{bottom:171.030000px;}
.y139{bottom:171.210000px;}
.yd4{bottom:171.390000px;}
.ya7{bottom:173.010000px;}
.y118{bottom:173.550000px;}
.y12d{bottom:175.890000px;}
.y1a6{bottom:179.310000px;}
.y14a{bottom:179.490000px;}
.y187{bottom:180.210000px;}
.y16d{bottom:180.390000px;}
.y20a{bottom:184.890000px;}
.y10a{bottom:187.050000px;}
.y31{bottom:188.310000px;}
.ybb{bottom:189.390000px;}
.y66{bottom:191.190000px;}
.yd3{bottom:191.550000px;}
.y117{bottom:193.890000px;}
.y1c5{bottom:194.970000px;}
.y12c{bottom:196.050000px;}
.y1a5{bottom:199.470000px;}
.y149{bottom:199.650000px;}
.y138{bottom:200.550000px;}
.ya6{bottom:202.170000px;}
.y153{bottom:202.710000px;}
.y8f{bottom:204.330000px;}
.y209{bottom:205.050000px;}
.y1ea{bottom:206.130000px;}
.yf1{bottom:208.470000px;}
.yba{bottom:209.550000px;}
.y65{bottom:211.530000px;}
.yf6{bottom:211.890000px;}
.y1fa{bottom:214.050000px;}
.y109{bottom:216.210000px;}
.y225{bottom:216.390000px;}
.y1a4{bottom:219.810000px;}
.y148{bottom:219.990000px;}
.yd2{bottom:220.710000px;}
.y137{bottom:220.890000px;}
.y116{bottom:223.050000px;}
.y30{bottom:223.770000px;}
.y1c4{bottom:224.130000px;}
.y8e{bottom:224.670000px;}
.y12b{bottom:225.210000px;}
.y208{bottom:225.390000px;}
.y1e9{bottom:226.470000px;}
.yf0{bottom:228.810000px;}
.yb9{bottom:229.890000px;}
.ya5{bottom:231.510000px;}
.y64{bottom:231.690000px;}
.yf5{bottom:232.050000px;}
.y224{bottom:236.550000px;}
.y1a3{bottom:239.970000px;}
.y147{bottom:240.150000px;}
.y136{bottom:241.050000px;}
.y1f9{bottom:243.210000px;}
.y1c3{bottom:244.470000px;}
.y8d{bottom:245.010000px;}
.y108{bottom:245.550000px;}
.y1e8{bottom:246.810000px;}
.y2f{bottom:247.170000px;}
.yef{bottom:248.970000px;}
.yb8{bottom:250.050000px;}
.ya4{bottom:251.850000px;}
.y63{bottom:252.030000px;}
.y115{bottom:252.210000px;}
.y152{bottom:252.390000px;}
.y12a{bottom:254.550000px;}
.y223{bottom:256.890000px;}
.y1a2{bottom:260.310000px;}
.y146{bottom:260.490000px;}
.yf4{bottom:261.210000px;}
.y135{bottom:261.390000px;}
.y1f8{bottom:263.550000px;}
.y1c2{bottom:264.810000px;}
.y8c{bottom:265.170000px;}
.y107{bottom:265.890000px;}
.y1e7{bottom:266.970000px;}
.y2e{bottom:270.390000px;}
.y151{bottom:272.550000px;}
.y62{bottom:273.630000px;}
.y207{bottom:274.710000px;}
.ya3{bottom:276.330000px;}
.yee{bottom:278.130000px;}
.y1a1{bottom:280.470000px;}
.y145{bottom:280.650000px;}
.y114{bottom:281.550000px;}
.y129{bottom:283.710000px;}
.y1f7{bottom:283.890000px;}
.y1c1{bottom:284.970000px;}
.y8b{bottom:285.510000px;}
.y134{bottom:285.870000px;}
.y106{bottom:286.050000px;}
.yb7{bottom:290.550000px;}
.y61{bottom:293.790000px;}
.y206{bottom:295.050000px;}
.y1e6{bottom:296.130000px;}
.y150{bottom:297.030000px;}
.y2d{bottom:299.370000px;}
.y1a0{bottom:300.810000px;}
.y144{bottom:300.990000px;}
.y113{bottom:301.890000px;}
.y128{bottom:304.050000px;}
.y1c0{bottom:305.310000px;}
.y8a{bottom:305.670000px;}
.y105{bottom:306.390000px;}
.yed{bottom:307.470000px;}
.yb6{bottom:310.890000px;}
.y60{bottom:314.130000px;}
.y205{bottom:315.390000px;}
.y1e5{bottom:316.470000px;}
.y19f{bottom:320.970000px;}
.y143{bottom:321.150000px;}
.y112{bottom:322.050000px;}
.y127{bottom:324.390000px;}
.y1bf{bottom:325.470000px;}
.y104{bottom:326.550000px;}
.y89{bottom:327.270000px;}
.yec{bottom:327.810000px;}
.y2c{bottom:328.710000px;}
.yb5{bottom:331.050000px;}
.y5f{bottom:334.290000px;}
.y1e4{bottom:336.810000px;}
.y19e{bottom:341.310000px;}
.y142{bottom:341.490000px;}
.y16c{bottom:342.390000px;}
.y126{bottom:344.550000px;}
.y1be{bottom:345.810000px;}
.y111{bottom:346.710000px;}
.y103{bottom:346.890000px;}
.yeb{bottom:347.970000px;}
.y88{bottom:348.690000px;}
.y2b{bottom:349.050000px;}
.yb4{bottom:351.390000px;}
.y1f6{bottom:353.550000px;}
.y5e{bottom:354.630000px;}
.y1e3{bottom:356.970000px;}
.y141{bottom:361.650000px;}
.y16b{bottom:362.550000px;}
.y125{bottom:364.890000px;}
.y1bd{bottom:365.970000px;}
.y222{bottom:367.050000px;}
.y2a{bottom:369.210000px;}
.y87{bottom:370.290000px;}
.y19d{bottom:370.470000px;}
.y102{bottom:371.370000px;}
.yb3{bottom:371.550000px;}
.yea{bottom:372.630000px;}
.y1f5{bottom:373.890000px;}
.y5d{bottom:374.790000px;}
.y1e2{bottom:377.310000px;}
.y186{bottom:382.890000px;}
.y204{bottom:385.050000px;}
.y1bc{bottom:386.310000px;}
.y124{bottom:389.370000px;}
.y29{bottom:389.550000px;}
.y140{bottom:390.810000px;}
.y16a{bottom:391.710000px;}
.y86{bottom:391.890000px;}
.y1f4{bottom:394.050000px;}
.y221{bottom:396.210000px;}
.yb2{bottom:400.755000px;}
.y185{bottom:403.095000px;}
.y5c{bottom:403.995000px;}
.y1bb{bottom:406.515000px;}
.y28{bottom:409.755000px;}
.y19c{bottom:411.015000px;}
.y85{bottom:412.095000px;}
.y203{bottom:414.255000px;}
.y1f3{bottom:414.435000px;}
.y220{bottom:416.595000px;}
.y13f{bottom:420.195000px;}
.yb1{bottom:421.095000px;}
.y184{bottom:423.435000px;}
.y5b{bottom:424.335000px;}
.y1ba{bottom:426.855000px;}
.y27{bottom:430.095000px;}
.y19b{bottom:431.355000px;}
.yd1{bottom:432.435000px;}
.y1f2{bottom:434.595000px;}
.y21f{bottom:436.935000px;}
.y84{bottom:441.255000px;}
.y183{bottom:443.595000px;}
.y1b9{bottom:447.015000px;}
.y13e{bottom:449.355000px;}
.y26{bottom:450.255000px;}
.y19a{bottom:451.515000px;}
.yd0{bottom:452.595000px;}
.y5a{bottom:454.395000px;}
.y1f1{bottom:454.935000px;}
.y21e{bottom:457.095000px;}
.y169{bottom:461.595000px;}
.y182{bottom:463.935000px;}
.y1b8{bottom:467.355000px;}
.y13d{bottom:469.695000px;}
.y25{bottom:470.595000px;}
.y199{bottom:471.855000px;}
.ycf{bottom:472.935000px;}
.y1f0{bottom:475.095000px;}
.ya2{bottom:476.715000px;}
.y21d{bottom:477.435000px;}
.y168{bottom:481.935000px;}
.y181{bottom:484.095000px;}
.y59{bottom:486.075000px;}
.y1b7{bottom:487.515000px;}
.y13c{bottom:490.035000px;}
.y24{bottom:490.755000px;}
.y83{bottom:490.935000px;}
.y198{bottom:492.015000px;}
.yce{bottom:493.095000px;}
.y202{bottom:495.435000px;}
.y21c{bottom:497.595000px;}
.y167{bottom:502.095000px;}
.y1ef{bottom:504.255000px;}
.y180{bottom:504.435000px;}
.ya1{bottom:506.055000px;}
.y58{bottom:506.415000px;}
.y1b6{bottom:507.855000px;}
.y13b{bottom:510.195000px;}
.y23{bottom:511.095000px;}
.y197{bottom:512.355000px;}
.ycd{bottom:513.435000px;}
.y201{bottom:515.595000px;}
.y14f{bottom:522.255000px;}
.y166{bottom:522.435000px;}
.y17f{bottom:524.595000px;}
.ya0{bottom:526.395000px;}
.y57{bottom:526.755000px;}
.y1b5{bottom:528.015000px;}
.y22{bottom:531.255000px;}
.y82{bottom:531.435000px;}
.y196{bottom:532.515000px;}
.ycc{bottom:533.595000px;}
.y13a{bottom:534.855000px;}
.y14e{bottom:542.595000px;}
.y200{bottom:544.755000px;}
.y17e{bottom:544.935000px;}
.y9f{bottom:546.555000px;}
.y56{bottom:546.915000px;}
.y21b{bottom:547.095000px;}
.y1b4{bottom:548.355000px;}
.y21{bottom:551.595000px;}
.y195{bottom:552.855000px;}
.ycb{bottom:553.935000px;}
.y1e1{bottom:557.175000px;}
.ye9{bottom:561.675000px;}
.y14d{bottom:562.935000px;}
.y17d{bottom:565.095000px;}
.y9e{bottom:566.895000px;}
.y55{bottom:567.255000px;}
.y21a{bottom:567.435000px;}
.y1b3{bottom:568.515000px;}
.y20{bottom:571.755000px;}
.y81{bottom:571.935000px;}
.y194{bottom:573.015000px;}
.yca{bottom:574.095000px;}
.y1e0{bottom:577.515000px;}
.y101{bottom:578.595000px;}
.y165{bottom:583.095000px;}
.y17c{bottom:585.435000px;}
.y9d{bottom:587.055000px;}
.y54{bottom:587.415000px;}
.y219{bottom:587.595000px;}
.y1b2{bottom:588.855000px;}
.ye8{bottom:591.015000px;}
.y1f{bottom:592.095000px;}
.y193{bottom:593.355000px;}
.yc9{bottom:594.435000px;}
.y1df{bottom:597.855000px;}
.y133{bottom:601.095000px;}
.yf3{bottom:603.255000px;}
.y164{bottom:603.435000px;}
.y17b{bottom:605.595000px;}
.y9c{bottom:607.395000px;}
.y53{bottom:607.755000px;}
.y1b1{bottom:609.015000px;}
.ye7{bottom:611.355000px;}
.y1e{bottom:612.255000px;}
.y80{bottom:612.435000px;}
.y192{bottom:613.515000px;}
.y218{bottom:616.755000px;}
.y1de{bottom:618.015000px;}
.yc8{bottom:623.595000px;}
.y17a{bottom:625.935000px;}
.y9b{bottom:627.555000px;}
.y52{bottom:627.915000px;}
.y100{bottom:628.095000px;}
.y1b0{bottom:629.355000px;}
.y132{bottom:630.255000px;}
.ye6{bottom:631.515000px;}
.y1d{bottom:632.595000px;}
.y191{bottom:633.855000px;}
.y217{bottom:637.095000px;}
.y1dd{bottom:638.355000px;}
.y110{bottom:643.755000px;}
.yc7{bottom:643.935000px;}
.y179{bottom:646.095000px;}
.y9a{bottom:647.895000px;}
.y51{bottom:648.255000px;}
.yff{bottom:648.435000px;}
.y1af{bottom:649.545000px;}
.y131{bottom:650.625000px;}
.ye5{bottom:651.885000px;}
.y1c{bottom:652.785000px;}
.y7f{bottom:652.965000px;}
.y190{bottom:654.045000px;}
.y1ff{bottom:655.125000px;}
.y216{bottom:657.465000px;}
.y1dc{bottom:658.545000px;}
.y163{bottom:664.125000px;}
.y228{bottom:666.285000px;}
.y178{bottom:666.465000px;}
.y99{bottom:668.085000px;}
.y50{bottom:668.445000px;}
.yfe{bottom:668.625000px;}
.y1ae{bottom:669.885000px;}
.y130{bottom:670.965000px;}
.ye4{bottom:672.045000px;}
.y1b{bottom:673.125000px;}
.y18f{bottom:674.385000px;}
.y1fe{bottom:675.465000px;}
.y215{bottom:677.625000px;}
.y162{bottom:684.465000px;}
.y177{bottom:686.625000px;}
.y1db{bottom:687.705000px;}
.y98{bottom:688.425000px;}
.y4f{bottom:688.785000px;}
.yfd{bottom:688.965000px;}
.y1ad{bottom:690.045000px;}
.y12f{bottom:691.125000px;}
.ye3{bottom:692.385000px;}
.y1a{bottom:693.285000px;}
.y7e{bottom:693.465000px;}
.y18e{bottom:694.545000px;}
.y1fd{bottom:695.625000px;}
.y214{bottom:697.965000px;}
.y123{bottom:702.285000px;}
.y161{bottom:704.625000px;}
.y176{bottom:706.965000px;}
.y1da{bottom:708.045000px;}
.y97{bottom:708.585000px;}
.y4e{bottom:708.945000px;}
.y1ac{bottom:710.385000px;}
.y12e{bottom:711.465000px;}
.ye2{bottom:712.545000px;}
.yfc{bottom:713.445000px;}
.y7d{bottom:713.625000px;}
.y18d{bottom:714.885000px;}
.y1ee{bottom:715.785000px;}
.y1fc{bottom:715.965000px;}
.y19{bottom:723.345000px;}
.y160{bottom:724.965000px;}
.y175{bottom:727.125000px;}
.y1d9{bottom:728.385000px;}
.y96{bottom:728.925000px;}
.y4d{bottom:729.285000px;}
.y1ab{bottom:730.545000px;}
.y122{bottom:731.625000px;}
.ye1{bottom:732.885000px;}
.y7c{bottom:733.965000px;}
.y18c{bottom:735.045000px;}
.y1ed{bottom:736.125000px;}
.y15f{bottom:745.125000px;}
.y174{bottom:747.465000px;}
.y1d8{bottom:748.545000px;}
.y95{bottom:749.085000px;}
.y4c{bottom:749.445000px;}
.y1aa{bottom:750.885000px;}
.y121{bottom:751.965000px;}
.ye0{bottom:753.045000px;}
.y7b{bottom:754.125000px;}
.y18{bottom:755.205000px;}
.y18b{bottom:755.385000px;}
.y1ec{bottom:756.465000px;}
.yb0{bottom:763.125000px;}
.y1fb{bottom:765.285000px;}
.y15e{bottom:765.465000px;}
.y173{bottom:767.625000px;}
.y1d7{bottom:768.885000px;}
.y94{bottom:769.425000px;}
.y4b{bottom:769.785000px;}
.y1a9{bottom:771.045000px;}
.y120{bottom:772.125000px;}
.ydf{bottom:773.385000px;}
.y7a{bottom:774.465000px;}
.y227{bottom:776.625000px;}
.yaf{bottom:783.465000px;}
.y17{bottom:784.365000px;}
.y18a{bottom:785.265000px;}
.y15d{bottom:785.625000px;}
.y213{bottom:787.965000px;}
.y4a{bottom:789.945000px;}
.y1a8{bottom:791.385000px;}
.y11f{bottom:792.465000px;}
.yde{bottom:793.545000px;}
.y79{bottom:794.625000px;}
.y172{bottom:796.785000px;}
.y22b{bottom:796.965000px;}
.y1d6{bottom:798.045000px;}
.y93{bottom:798.585000px;}
.yae{bottom:803.625000px;}
.y16{bottom:804.705000px;}
.y14c{bottom:805.785000px;}
.y15c{bottom:805.965000px;}
.y212{bottom:808.125000px;}
.y49{bottom:811.545000px;}
.y11e{bottom:812.625000px;}
.y78{bottom:814.965000px;}
.y171{bottom:817.125000px;}
.y1d5{bottom:818.385000px;}
.ydd{bottom:822.705000px;}
.yad{bottom:823.965000px;}
.y15b{bottom:826.125000px;}
.y92{bottom:827.745000px;}
.y211{bottom:828.465000px;}
.y48{bottom:831.885000px;}
.y11d{bottom:832.965000px;}
.y15{bottom:833.865000px;}
.y77{bottom:835.125000px;}
.y22a{bottom:837.465000px;}
.y1d4{bottom:838.545000px;}
.yac{bottom:844.125000px;}
.y170{bottom:846.285000px;}
.y15a{bottom:846.465000px;}
.y91{bottom:848.085000px;}
.y47{bottom:852.045000px;}
.ydc{bottom:852.765000px;}
.y11c{bottom:853.125000px;}
.y76{bottom:855.465000px;}
.y210{bottom:857.625000px;}
.y1d3{bottom:858.885000px;}
.y14{bottom:863.205000px;}
.y10f{bottom:864.285000px;}
.yab{bottom:864.465000px;}
.y159{bottom:866.625000px;}
.y46{bottom:872.385000px;}
.y90{bottom:872.745000px;}
.y11b{bottom:873.465000px;}
.y75{bottom:875.625000px;}
.y20f{bottom:877.965000px;}
.y1d2{bottom:879.045000px;}
.y13{bottom:883.545000px;}
.yaa{bottom:884.625000px;}
.y158{bottom:886.965000px;}
.y45{bottom:892.545000px;}
.y11a{bottom:893.625000px;}
.y1eb{bottom:895.785000px;}
.yc6{bottom:895.965000px;}
.y20e{bottom:898.170000px;}
.y1d1{bottom:899.430000px;}
.y12{bottom:903.750000px;}
.y74{bottom:904.830000px;}
.ya9{bottom:905.010000px;}
.y157{bottom:907.170000px;}
.y44{bottom:912.930000px;}
.y10e{bottom:913.830000px;}
.y119{bottom:914.010000px;}
.yc5{bottom:916.170000px;}
.y11{bottom:924.090000px;}
.y73{bottom:925.170000px;}
.y20d{bottom:927.330000px;}
.y156{bottom:927.510000px;}
.y1d0{bottom:929.310000px;}
.y43{bottom:933.090000px;}
.y10d{bottom:934.170000px;}
.y229{bottom:936.330000px;}
.yc4{bottom:936.510000px;}
.y1a7{bottom:942.810000px;}
.y10{bottom:944.250000px;}
.y72{bottom:945.510000px;}
.y155{bottom:947.670000px;}
.y42{bottom:953.430000px;}
.yfb{bottom:954.330000px;}
.y10c{bottom:954.510000px;}
.yc3{bottom:956.670000px;}
.y16f{bottom:960.990000px;}
.y1cf{bottom:961.170000px;}
.y71{bottom:965.670000px;}
.y154{bottom:968.010000px;}
.yf{bottom:973.410000px;}
.y41{bottom:973.590000px;}
.yfa{bottom:974.670000px;}
.yc2{bottom:977.010000px;}
.y14b{bottom:985.830000px;}
.y70{bottom:986.010000px;}
.y189{bottom:988.170000px;}
.y1ce{bottom:991.230000px;}
.ye{bottom:993.750000px;}
.y40{bottom:993.930000px;}
.yf9{bottom:995.010000px;}
.yc1{bottom:997.170000px;}
.y6f{bottom:1006.170000px;}
.y188{bottom:1012.650000px;}
.yd{bottom:1014.090000px;}
.yf8{bottom:1015.170000px;}
.y20c{bottom:1017.330000px;}
.yc0{bottom:1017.510000px;}
.y1cd{bottom:1023.090000px;}
.y6e{bottom:1026.510000px;}
.yc{bottom:1034.250000px;}
.y3f{bottom:1034.430000px;}
.ydb{bottom:1035.330000px;}
.yf7{bottom:1035.510000px;}
.ybf{bottom:1037.670000px;}
.y1cc{bottom:1043.430000px;}
.y6d{bottom:1046.670000px;}
.yb{bottom:1054.590000px;}
.yda{bottom:1055.670000px;}
.ybe{bottom:1058.010000px;}
.y1cb{bottom:1063.590000px;}
.y20b{bottom:1066.830000px;}
.y6c{bottom:1067.010000px;}
.y3e{bottom:1074.930000px;}
.yd9{bottom:1076.010000px;}
.ybd{bottom:1078.170000px;}
.y1ca{bottom:1083.930000px;}
.y6b{bottom:1087.170000px;}
.ya{bottom:1095.090000px;}
.yd8{bottom:1096.170000px;}
.y1c9{bottom:1104.090000px;}
.ybc{bottom:1107.330000px;}
.y6a{bottom:1107.510000px;}
.y3d{bottom:1115.430000px;}
.y226{bottom:1116.330000px;}
.yd7{bottom:1116.510000px;}
.y9{bottom:1122.090000px;}
.y1c8{bottom:1124.430000px;}
.y69{bottom:1127.670000px;}
.yd6{bottom:1136.670000px;}
.y1c7{bottom:1144.590000px;}
.y3c{bottom:1145.310000px;}
.y68{bottom:1148.040000px;}
.y8{bottom:1149.120000px;}
.ya8{bottom:1156.860000px;}
.yd5{bottom:1157.040000px;}
.y1c6{bottom:1174.680000px;}
.y3b{bottom:1177.200000px;}
.y7{bottom:1183.320000px;}
.y33{bottom:1196.820000px;}
.hd{height:10.620000px;}
.hb{height:22.500000px;}
.h2{height:37.599609px;}
.h9{height:41.610234px;}
.h4{height:50.132812px;}
.h7{height:52.844096px;}
.h6{height:53.332031px;}
.h8{height:58.655391px;}
.ha{height:59.439023px;}
.h3{height:65.884219px;}
.h5{height:66.676641px;}
.hc{height:83.787539px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:49.500000px;}
.w4{width:719.640000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:10.836000px;}
.x13{left:13.500000px;}
.x2{left:84.995987px;}
.x34{left:86.255987px;}
.x38{left:88.055987px;}
.x31{left:89.855987px;}
.x41{left:96.515987px;}
.x32{left:100.115987px;}
.x29{left:102.455987px;}
.x1a{left:104.255987px;}
.x17{left:113.075987px;}
.x3c{left:130.715987px;}
.xe{left:136.475987px;}
.x3{left:151.769987px;}
.x18{left:157.169987px;}
.x39{left:162.389987px;}
.x2a{left:168.509987px;}
.x2b{left:172.109987px;}
.x1b{left:175.349987px;}
.x43{left:177.509987px;}
.x33{left:181.469987px;}
.x4{left:185.249987px;}
.x42{left:193.709987px;}
.x9{left:229.709987px;}
.x7{left:238.529987px;}
.x3a{left:252.389987px;}
.x8{left:304.994987px;}
.xa{left:306.794987px;}
.x5{left:319.574987px;}
.x6{left:343.874987px;}
.xb{left:380.774987px;}
.xd{left:387.794987px;}
.x3b{left:405.434987px;}
.x11{left:409.214987px;}
.x37{left:411.194987px;}
.x16{left:418.034987px;}
.x30{left:421.094987px;}
.x19{left:422.534987px;}
.xc{left:446.504987px;}
.x15{left:473.144987px;}
.x20{left:479.084987px;}
.x1d{left:480.164987px;}
.x40{left:481.244987px;}
.x22{left:484.844987px;}
.x24{left:485.924987px;}
.x2d{left:493.484987px;}
.x35{left:495.464987px;}
.x25{left:510.584987px;}
.x21{left:513.104987px;}
.x26{left:518.684987px;}
.x28{left:520.124987px;}
.x1e{left:522.644987px;}
.x3e{left:527.504987px;}
.x27{left:556.304987px;}
.x2c{left:572.144987px;}
.x2e{left:610.664987px;}
.x3f{left:612.464987px;}
.x36{left:621.644987px;}
.x23{left:623.624987px;}
.x2f{left:640.589987px;}
.xf{left:676.589987px;}
.x10{left:681.089987px;}
.x1f{left:797.189987px;}
.x3d{left:803.849987px;}
.x1c{left:806.189987px;}
.x1{left:808.019987px;}
.x12{left:810.360000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.896000pt;}
.ls3{letter-spacing:-0.576000pt;}
.lsb{letter-spacing:-0.448000pt;}
.ls11{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.154667pt;}
.lsc{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.170667pt;}
.lse{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.320000pt;}
.ls1{letter-spacing:2.560000pt;}
.ls12{letter-spacing:35.840000pt;}
.ls7{letter-spacing:1175.333547pt;}
.ls6{letter-spacing:1272.085333pt;}
.ws0{word-spacing:-64.000000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws9{word-spacing:-16.320000pt;}
.wsa{word-spacing:-16.192000pt;}
.ws1{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.936000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.808000pt;}
.wsc{word-spacing:-15.744000pt;}
.ws2{word-spacing:-15.424000pt;}
.wsb{word-spacing:-15.104000pt;}
.ws7{word-spacing:0.000000pt;}
._1b{margin-left:-190.831573pt;}
._18{margin-left:-174.405973pt;}
._1c{margin-left:-50.533760pt;}
._1e{margin-left:-49.031680pt;}
._19{margin-left:-45.186560pt;}
._22{margin-left:-42.120960pt;}
._24{margin-left:-24.292480pt;}
._1d{margin-left:-22.957440pt;}
._20{margin-left:-16.795520pt;}
._1f{margin-left:-6.730240pt;}
._21{margin-left:-5.811840pt;}
._23{margin-left:-4.632320pt;}
._1a{margin-left:-3.685120pt;}
._0{margin-left:-2.400000pt;}
._1{margin-left:-0.912000pt;}
._2{width:0.922667pt;}
._7{width:2.199680pt;}
._f{width:3.093333pt;}
._c{width:3.984000pt;}
._b{width:5.504000pt;}
._13{width:7.168000pt;}
._2b{width:8.069333pt;}
._2a{width:9.040000pt;}
._d{width:9.984000pt;}
._e{width:10.880000pt;}
._33{width:11.930667pt;}
._11{width:12.880000pt;}
._10{width:14.016000pt;}
._12{width:15.082667pt;}
._3d{width:16.896000pt;}
._27{width:17.856000pt;}
._3f{width:18.944000pt;}
._30{width:19.920000pt;}
._15{width:20.864000pt;}
._14{width:22.016000pt;}
._2c{width:23.552000pt;}
._26{width:24.528000pt;}
._25{width:25.472000pt;}
._4{width:26.448000pt;}
._4f{width:27.424000pt;}
._35{width:28.400000pt;}
._45{width:29.568000pt;}
._39{width:30.592000pt;}
._3e{width:32.000000pt;}
._3a{width:32.896000pt;}
._29{width:33.856000pt;}
._28{width:34.880000pt;}
._40{width:36.480000pt;}
._43{width:37.760000pt;}
._42{width:38.656000pt;}
._3c{width:39.808000pt;}
._4e{width:40.768000pt;}
._31{width:41.664000pt;}
._32{width:43.392000pt;}
._44{width:44.288000pt;}
._38{width:45.184000pt;}
._2d{width:46.080000pt;}
._4d{width:47.760000pt;}
._4c{width:48.832000pt;}
._4b{width:50.048000pt;}
._3b{width:51.280000pt;}
._34{width:52.192000pt;}
._2f{width:53.952000pt;}
._2e{width:55.168000pt;}
._48{width:56.896000pt;}
._60{width:58.560000pt;}
._50{width:59.584000pt;}
._37{width:60.864000pt;}
._36{width:61.760000pt;}
._a{width:63.424000pt;}
._46{width:65.536000pt;}
._58{width:66.880000pt;}
._51{width:68.544000pt;}
._52{width:69.824000pt;}
._55{width:71.616000pt;}
._54{width:73.216000pt;}
._49{width:74.240000pt;}
._8{width:75.722667pt;}
._47{width:77.312000pt;}
._4a{width:78.528000pt;}
._3{width:80.448000pt;}
._5d{width:85.824000pt;}
._5c{width:86.784000pt;}
._5e{width:87.936000pt;}
._5a{width:90.240000pt;}
._41{width:91.712000pt;}
._9{width:93.162667pt;}
._53{width:96.320000pt;}
._63{width:98.816000pt;}
._62{width:99.968000pt;}
._65{width:118.981333pt;}
._64{width:120.426667pt;}
._17{width:160.107307pt;}
._59{width:256.896000pt;}
._5f{width:265.664000pt;}
._57{width:271.104000pt;}
._5b{width:343.680000pt;}
._61{width:373.696000pt;}
._67{width:399.424000pt;}
._6{width:570.272000pt;}
._66{width:672.096000pt;}
._56{width:874.560000pt;}
._16{width:1273.381547pt;}
._5{width:1274.517333pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:67.461249pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y3a{bottom:-4.800000pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:3.200000pt;}
.y36{bottom:49.920000pt;}
.y6{bottom:51.200000pt;}
.y35{bottom:61.920000pt;}
.y5{bottom:68.320000pt;}
.y4{bottom:81.760000pt;}
.y37{bottom:87.360000pt;}
.y39{bottom:92.960000pt;}
.y3{bottom:95.360000pt;}
.y2{bottom:108.800000pt;}
.y1{bottom:122.240000pt;}
.y34{bottom:132.000000pt;}
.y32{bottom:141.466667pt;}
.y10b{bottom:148.346667pt;}
.yf2{bottom:149.306667pt;}
.y16e{bottom:150.266667pt;}
.y67{bottom:152.026667pt;}
.y139{bottom:152.186667pt;}
.yd4{bottom:152.346667pt;}
.ya7{bottom:153.786667pt;}
.y118{bottom:154.266667pt;}
.y12d{bottom:156.346667pt;}
.y1a6{bottom:159.386667pt;}
.y14a{bottom:159.546667pt;}
.y187{bottom:160.186667pt;}
.y16d{bottom:160.346667pt;}
.y20a{bottom:164.346667pt;}
.y10a{bottom:166.266667pt;}
.y31{bottom:167.386667pt;}
.ybb{bottom:168.346667pt;}
.y66{bottom:169.946667pt;}
.yd3{bottom:170.266667pt;}
.y117{bottom:172.346667pt;}
.y1c5{bottom:173.306667pt;}
.y12c{bottom:174.266667pt;}
.y1a5{bottom:177.306667pt;}
.y149{bottom:177.466667pt;}
.y138{bottom:178.266667pt;}
.ya6{bottom:179.706667pt;}
.y153{bottom:180.186667pt;}
.y8f{bottom:181.626667pt;}
.y209{bottom:182.266667pt;}
.y1ea{bottom:183.226667pt;}
.yf1{bottom:185.306667pt;}
.yba{bottom:186.266667pt;}
.y65{bottom:188.026667pt;}
.yf6{bottom:188.346667pt;}
.y1fa{bottom:190.266667pt;}
.y109{bottom:192.186667pt;}
.y225{bottom:192.346667pt;}
.y1a4{bottom:195.386667pt;}
.y148{bottom:195.546667pt;}
.yd2{bottom:196.186667pt;}
.y137{bottom:196.346667pt;}
.y116{bottom:198.266667pt;}
.y30{bottom:198.906667pt;}
.y1c4{bottom:199.226667pt;}
.y8e{bottom:199.706667pt;}
.y12b{bottom:200.186667pt;}
.y208{bottom:200.346667pt;}
.y1e9{bottom:201.306667pt;}
.yf0{bottom:203.386667pt;}
.yb9{bottom:204.346667pt;}
.ya5{bottom:205.786667pt;}
.y64{bottom:205.946667pt;}
.yf5{bottom:206.266667pt;}
.y224{bottom:210.266667pt;}
.y1a3{bottom:213.306667pt;}
.y147{bottom:213.466667pt;}
.y136{bottom:214.266667pt;}
.y1f9{bottom:216.186667pt;}
.y1c3{bottom:217.306667pt;}
.y8d{bottom:217.786667pt;}
.y108{bottom:218.266667pt;}
.y1e8{bottom:219.386667pt;}
.y2f{bottom:219.706667pt;}
.yef{bottom:221.306667pt;}
.yb8{bottom:222.266667pt;}
.ya4{bottom:223.866667pt;}
.y63{bottom:224.026667pt;}
.y115{bottom:224.186667pt;}
.y152{bottom:224.346667pt;}
.y12a{bottom:226.266667pt;}
.y223{bottom:228.346667pt;}
.y1a2{bottom:231.386667pt;}
.y146{bottom:231.546667pt;}
.yf4{bottom:232.186667pt;}
.y135{bottom:232.346667pt;}
.y1f8{bottom:234.266667pt;}
.y1c2{bottom:235.386667pt;}
.y8c{bottom:235.706667pt;}
.y107{bottom:236.346667pt;}
.y1e7{bottom:237.306667pt;}
.y2e{bottom:240.346667pt;}
.y151{bottom:242.266667pt;}
.y62{bottom:243.226667pt;}
.y207{bottom:244.186667pt;}
.ya3{bottom:245.626667pt;}
.yee{bottom:247.226667pt;}
.y1a1{bottom:249.306667pt;}
.y145{bottom:249.466667pt;}
.y114{bottom:250.266667pt;}
.y129{bottom:252.186667pt;}
.y1f7{bottom:252.346667pt;}
.y1c1{bottom:253.306667pt;}
.y8b{bottom:253.786667pt;}
.y134{bottom:254.106667pt;}
.y106{bottom:254.266667pt;}
.yb7{bottom:258.266667pt;}
.y61{bottom:261.146667pt;}
.y206{bottom:262.266667pt;}
.y1e6{bottom:263.226667pt;}
.y150{bottom:264.026667pt;}
.y2d{bottom:266.106667pt;}
.y1a0{bottom:267.386667pt;}
.y144{bottom:267.546667pt;}
.y113{bottom:268.346667pt;}
.y128{bottom:270.266667pt;}
.y1c0{bottom:271.386667pt;}
.y8a{bottom:271.706667pt;}
.y105{bottom:272.346667pt;}
.yed{bottom:273.306667pt;}
.yb6{bottom:276.346667pt;}
.y60{bottom:279.226667pt;}
.y205{bottom:280.346667pt;}
.y1e5{bottom:281.306667pt;}
.y19f{bottom:285.306667pt;}
.y143{bottom:285.466667pt;}
.y112{bottom:286.266667pt;}
.y127{bottom:288.346667pt;}
.y1bf{bottom:289.306667pt;}
.y104{bottom:290.266667pt;}
.y89{bottom:290.906667pt;}
.yec{bottom:291.386667pt;}
.y2c{bottom:292.186667pt;}
.yb5{bottom:294.266667pt;}
.y5f{bottom:297.146667pt;}
.y1e4{bottom:299.386667pt;}
.y19e{bottom:303.386667pt;}
.y142{bottom:303.546667pt;}
.y16c{bottom:304.346667pt;}
.y126{bottom:306.266667pt;}
.y1be{bottom:307.386667pt;}
.y111{bottom:308.186667pt;}
.y103{bottom:308.346667pt;}
.yeb{bottom:309.306667pt;}
.y88{bottom:309.946667pt;}
.y2b{bottom:310.266667pt;}
.yb4{bottom:312.346667pt;}
.y1f6{bottom:314.266667pt;}
.y5e{bottom:315.226667pt;}
.y1e3{bottom:317.306667pt;}
.y141{bottom:321.466667pt;}
.y16b{bottom:322.266667pt;}
.y125{bottom:324.346667pt;}
.y1bd{bottom:325.306667pt;}
.y222{bottom:326.266667pt;}
.y2a{bottom:328.186667pt;}
.y87{bottom:329.146667pt;}
.y19d{bottom:329.306667pt;}
.y102{bottom:330.106667pt;}
.yb3{bottom:330.266667pt;}
.yea{bottom:331.226667pt;}
.y1f5{bottom:332.346667pt;}
.y5d{bottom:333.146667pt;}
.y1e2{bottom:335.386667pt;}
.y186{bottom:340.346667pt;}
.y204{bottom:342.266667pt;}
.y1bc{bottom:343.386667pt;}
.y124{bottom:346.106667pt;}
.y29{bottom:346.266667pt;}
.y140{bottom:347.386667pt;}
.y16a{bottom:348.186667pt;}
.y86{bottom:348.346667pt;}
.y1f4{bottom:350.266667pt;}
.y221{bottom:352.186667pt;}
.yb2{bottom:356.226667pt;}
.y185{bottom:358.306667pt;}
.y5c{bottom:359.106667pt;}
.y1bb{bottom:361.346667pt;}
.y28{bottom:364.226667pt;}
.y19c{bottom:365.346667pt;}
.y85{bottom:366.306667pt;}
.y203{bottom:368.226667pt;}
.y1f3{bottom:368.386667pt;}
.y220{bottom:370.306667pt;}
.y13f{bottom:373.506667pt;}
.yb1{bottom:374.306667pt;}
.y184{bottom:376.386667pt;}
.y5b{bottom:377.186667pt;}
.y1ba{bottom:379.426667pt;}
.y27{bottom:382.306667pt;}
.y19b{bottom:383.426667pt;}
.yd1{bottom:384.386667pt;}
.y1f2{bottom:386.306667pt;}
.y21f{bottom:388.386667pt;}
.y84{bottom:392.226667pt;}
.y183{bottom:394.306667pt;}
.y1b9{bottom:397.346667pt;}
.y13e{bottom:399.426667pt;}
.y26{bottom:400.226667pt;}
.y19a{bottom:401.346667pt;}
.yd0{bottom:402.306667pt;}
.y5a{bottom:403.906667pt;}
.y1f1{bottom:404.386667pt;}
.y21e{bottom:406.306667pt;}
.y169{bottom:410.306667pt;}
.y182{bottom:412.386667pt;}
.y1b8{bottom:415.426667pt;}
.y13d{bottom:417.506667pt;}
.y25{bottom:418.306667pt;}
.y199{bottom:419.426667pt;}
.ycf{bottom:420.386667pt;}
.y1f0{bottom:422.306667pt;}
.ya2{bottom:423.746667pt;}
.y21d{bottom:424.386667pt;}
.y168{bottom:428.386667pt;}
.y181{bottom:430.306667pt;}
.y59{bottom:432.066667pt;}
.y1b7{bottom:433.346667pt;}
.y13c{bottom:435.586667pt;}
.y24{bottom:436.226667pt;}
.y83{bottom:436.386667pt;}
.y198{bottom:437.346667pt;}
.yce{bottom:438.306667pt;}
.y202{bottom:440.386667pt;}
.y21c{bottom:442.306667pt;}
.y167{bottom:446.306667pt;}
.y1ef{bottom:448.226667pt;}
.y180{bottom:448.386667pt;}
.ya1{bottom:449.826667pt;}
.y58{bottom:450.146667pt;}
.y1b6{bottom:451.426667pt;}
.y13b{bottom:453.506667pt;}
.y23{bottom:454.306667pt;}
.y197{bottom:455.426667pt;}
.ycd{bottom:456.386667pt;}
.y201{bottom:458.306667pt;}
.y14f{bottom:464.226667pt;}
.y166{bottom:464.386667pt;}
.y17f{bottom:466.306667pt;}
.ya0{bottom:467.906667pt;}
.y57{bottom:468.226667pt;}
.y1b5{bottom:469.346667pt;}
.y22{bottom:472.226667pt;}
.y82{bottom:472.386667pt;}
.y196{bottom:473.346667pt;}
.ycc{bottom:474.306667pt;}
.y13a{bottom:475.426667pt;}
.y14e{bottom:482.306667pt;}
.y200{bottom:484.226667pt;}
.y17e{bottom:484.386667pt;}
.y9f{bottom:485.826667pt;}
.y56{bottom:486.146667pt;}
.y21b{bottom:486.306667pt;}
.y1b4{bottom:487.426667pt;}
.y21{bottom:490.306667pt;}
.y195{bottom:491.426667pt;}
.ycb{bottom:492.386667pt;}
.y1e1{bottom:495.266667pt;}
.ye9{bottom:499.266667pt;}
.y14d{bottom:500.386667pt;}
.y17d{bottom:502.306667pt;}
.y9e{bottom:503.906667pt;}
.y55{bottom:504.226667pt;}
.y21a{bottom:504.386667pt;}
.y1b3{bottom:505.346667pt;}
.y20{bottom:508.226667pt;}
.y81{bottom:508.386667pt;}
.y194{bottom:509.346667pt;}
.yca{bottom:510.306667pt;}
.y1e0{bottom:513.346667pt;}
.y101{bottom:514.306667pt;}
.y165{bottom:518.306667pt;}
.y17c{bottom:520.386667pt;}
.y9d{bottom:521.826667pt;}
.y54{bottom:522.146667pt;}
.y219{bottom:522.306667pt;}
.y1b2{bottom:523.426667pt;}
.ye8{bottom:525.346667pt;}
.y1f{bottom:526.306667pt;}
.y193{bottom:527.426667pt;}
.yc9{bottom:528.386667pt;}
.y1df{bottom:531.426667pt;}
.y133{bottom:534.306667pt;}
.yf3{bottom:536.226667pt;}
.y164{bottom:536.386667pt;}
.y17b{bottom:538.306667pt;}
.y9c{bottom:539.906667pt;}
.y53{bottom:540.226667pt;}
.y1b1{bottom:541.346667pt;}
.ye7{bottom:543.426667pt;}
.y1e{bottom:544.226667pt;}
.y80{bottom:544.386667pt;}
.y192{bottom:545.346667pt;}
.y218{bottom:548.226667pt;}
.y1de{bottom:549.346667pt;}
.yc8{bottom:554.306667pt;}
.y17a{bottom:556.386667pt;}
.y9b{bottom:557.826667pt;}
.y52{bottom:558.146667pt;}
.y100{bottom:558.306667pt;}
.y1b0{bottom:559.426667pt;}
.y132{bottom:560.226667pt;}
.ye6{bottom:561.346667pt;}
.y1d{bottom:562.306667pt;}
.y191{bottom:563.426667pt;}
.y217{bottom:566.306667pt;}
.y1dd{bottom:567.426667pt;}
.y110{bottom:572.226667pt;}
.yc7{bottom:572.386667pt;}
.y179{bottom:574.306667pt;}
.y9a{bottom:575.906667pt;}
.y51{bottom:576.226667pt;}
.yff{bottom:576.386667pt;}
.y1af{bottom:577.373333pt;}
.y131{bottom:578.333333pt;}
.ye5{bottom:579.453333pt;}
.y1c{bottom:580.253333pt;}
.y7f{bottom:580.413333pt;}
.y190{bottom:581.373333pt;}
.y1ff{bottom:582.333333pt;}
.y216{bottom:584.413333pt;}
.y1dc{bottom:585.373333pt;}
.y163{bottom:590.333333pt;}
.y228{bottom:592.253333pt;}
.y178{bottom:592.413333pt;}
.y99{bottom:593.853333pt;}
.y50{bottom:594.173333pt;}
.yfe{bottom:594.333333pt;}
.y1ae{bottom:595.453333pt;}
.y130{bottom:596.413333pt;}
.ye4{bottom:597.373333pt;}
.y1b{bottom:598.333333pt;}
.y18f{bottom:599.453333pt;}
.y1fe{bottom:600.413333pt;}
.y215{bottom:602.333333pt;}
.y162{bottom:608.413333pt;}
.y177{bottom:610.333333pt;}
.y1db{bottom:611.293333pt;}
.y98{bottom:611.933333pt;}
.y4f{bottom:612.253333pt;}
.yfd{bottom:612.413333pt;}
.y1ad{bottom:613.373333pt;}
.y12f{bottom:614.333333pt;}
.ye3{bottom:615.453333pt;}
.y1a{bottom:616.253333pt;}
.y7e{bottom:616.413333pt;}
.y18e{bottom:617.373333pt;}
.y1fd{bottom:618.333333pt;}
.y214{bottom:620.413333pt;}
.y123{bottom:624.253333pt;}
.y161{bottom:626.333333pt;}
.y176{bottom:628.413333pt;}
.y1da{bottom:629.373333pt;}
.y97{bottom:629.853333pt;}
.y4e{bottom:630.173333pt;}
.y1ac{bottom:631.453333pt;}
.y12e{bottom:632.413333pt;}
.ye2{bottom:633.373333pt;}
.yfc{bottom:634.173333pt;}
.y7d{bottom:634.333333pt;}
.y18d{bottom:635.453333pt;}
.y1ee{bottom:636.253333pt;}
.y1fc{bottom:636.413333pt;}
.y19{bottom:642.973333pt;}
.y160{bottom:644.413333pt;}
.y175{bottom:646.333333pt;}
.y1d9{bottom:647.453333pt;}
.y96{bottom:647.933333pt;}
.y4d{bottom:648.253333pt;}
.y1ab{bottom:649.373333pt;}
.y122{bottom:650.333333pt;}
.ye1{bottom:651.453333pt;}
.y7c{bottom:652.413333pt;}
.y18c{bottom:653.373333pt;}
.y1ed{bottom:654.333333pt;}
.y15f{bottom:662.333333pt;}
.y174{bottom:664.413333pt;}
.y1d8{bottom:665.373333pt;}
.y95{bottom:665.853333pt;}
.y4c{bottom:666.173333pt;}
.y1aa{bottom:667.453333pt;}
.y121{bottom:668.413333pt;}
.ye0{bottom:669.373333pt;}
.y7b{bottom:670.333333pt;}
.y18{bottom:671.293333pt;}
.y18b{bottom:671.453333pt;}
.y1ec{bottom:672.413333pt;}
.yb0{bottom:678.333333pt;}
.y1fb{bottom:680.253333pt;}
.y15e{bottom:680.413333pt;}
.y173{bottom:682.333333pt;}
.y1d7{bottom:683.453333pt;}
.y94{bottom:683.933333pt;}
.y4b{bottom:684.253333pt;}
.y1a9{bottom:685.373333pt;}
.y120{bottom:686.333333pt;}
.ydf{bottom:687.453333pt;}
.y7a{bottom:688.413333pt;}
.y227{bottom:690.333333pt;}
.yaf{bottom:696.413333pt;}
.y17{bottom:697.213333pt;}
.y18a{bottom:698.013333pt;}
.y15d{bottom:698.333333pt;}
.y213{bottom:700.413333pt;}
.y4a{bottom:702.173333pt;}
.y1a8{bottom:703.453333pt;}
.y11f{bottom:704.413333pt;}
.yde{bottom:705.373333pt;}
.y79{bottom:706.333333pt;}
.y172{bottom:708.253333pt;}
.y22b{bottom:708.413333pt;}
.y1d6{bottom:709.373333pt;}
.y93{bottom:709.853333pt;}
.yae{bottom:714.333333pt;}
.y16{bottom:715.293333pt;}
.y14c{bottom:716.253333pt;}
.y15c{bottom:716.413333pt;}
.y212{bottom:718.333333pt;}
.y49{bottom:721.373333pt;}
.y11e{bottom:722.333333pt;}
.y78{bottom:724.413333pt;}
.y171{bottom:726.333333pt;}
.y1d5{bottom:727.453333pt;}
.ydd{bottom:731.293333pt;}
.yad{bottom:732.413333pt;}
.y15b{bottom:734.333333pt;}
.y92{bottom:735.773333pt;}
.y211{bottom:736.413333pt;}
.y48{bottom:739.453333pt;}
.y11d{bottom:740.413333pt;}
.y15{bottom:741.213333pt;}
.y77{bottom:742.333333pt;}
.y22a{bottom:744.413333pt;}
.y1d4{bottom:745.373333pt;}
.yac{bottom:750.333333pt;}
.y170{bottom:752.253333pt;}
.y15a{bottom:752.413333pt;}
.y91{bottom:753.853333pt;}
.y47{bottom:757.373333pt;}
.ydc{bottom:758.013333pt;}
.y11c{bottom:758.333333pt;}
.y76{bottom:760.413333pt;}
.y210{bottom:762.333333pt;}
.y1d3{bottom:763.453333pt;}
.y14{bottom:767.293333pt;}
.y10f{bottom:768.253333pt;}
.yab{bottom:768.413333pt;}
.y159{bottom:770.333333pt;}
.y46{bottom:775.453333pt;}
.y90{bottom:775.773333pt;}
.y11b{bottom:776.413333pt;}
.y75{bottom:778.333333pt;}
.y20f{bottom:780.413333pt;}
.y1d2{bottom:781.373333pt;}
.y13{bottom:785.373333pt;}
.yaa{bottom:786.333333pt;}
.y158{bottom:788.413333pt;}
.y45{bottom:793.373333pt;}
.y11a{bottom:794.333333pt;}
.y1eb{bottom:796.253333pt;}
.yc6{bottom:796.413333pt;}
.y20e{bottom:798.373333pt;}
.y1d1{bottom:799.493333pt;}
.y12{bottom:803.333333pt;}
.y74{bottom:804.293333pt;}
.ya9{bottom:804.453333pt;}
.y157{bottom:806.373333pt;}
.y44{bottom:811.493333pt;}
.y10e{bottom:812.293333pt;}
.y119{bottom:812.453333pt;}
.yc5{bottom:814.373333pt;}
.y11{bottom:821.413333pt;}
.y73{bottom:822.373333pt;}
.y20d{bottom:824.293333pt;}
.y156{bottom:824.453333pt;}
.y1d0{bottom:826.053333pt;}
.y43{bottom:829.413333pt;}
.y10d{bottom:830.373333pt;}
.y229{bottom:832.293333pt;}
.yc4{bottom:832.453333pt;}
.y1a7{bottom:838.053333pt;}
.y10{bottom:839.333333pt;}
.y72{bottom:840.453333pt;}
.y155{bottom:842.373333pt;}
.y42{bottom:847.493333pt;}
.yfb{bottom:848.293333pt;}
.y10c{bottom:848.453333pt;}
.yc3{bottom:850.373333pt;}
.y16f{bottom:854.213333pt;}
.y1cf{bottom:854.373333pt;}
.y71{bottom:858.373333pt;}
.y154{bottom:860.453333pt;}
.yf{bottom:865.253333pt;}
.y41{bottom:865.413333pt;}
.yfa{bottom:866.373333pt;}
.yc2{bottom:868.453333pt;}
.y14b{bottom:876.293333pt;}
.y70{bottom:876.453333pt;}
.y189{bottom:878.373333pt;}
.y1ce{bottom:881.093333pt;}
.ye{bottom:883.333333pt;}
.y40{bottom:883.493333pt;}
.yf9{bottom:884.453333pt;}
.yc1{bottom:886.373333pt;}
.y6f{bottom:894.373333pt;}
.y188{bottom:900.133333pt;}
.yd{bottom:901.413333pt;}
.yf8{bottom:902.373333pt;}
.y20c{bottom:904.293333pt;}
.yc0{bottom:904.453333pt;}
.y1cd{bottom:909.413333pt;}
.y6e{bottom:912.453333pt;}
.yc{bottom:919.333333pt;}
.y3f{bottom:919.493333pt;}
.ydb{bottom:920.293333pt;}
.yf7{bottom:920.453333pt;}
.ybf{bottom:922.373333pt;}
.y1cc{bottom:927.493333pt;}
.y6d{bottom:930.373333pt;}
.yb{bottom:937.413333pt;}
.yda{bottom:938.373333pt;}
.ybe{bottom:940.453333pt;}
.y1cb{bottom:945.413333pt;}
.y20b{bottom:948.293333pt;}
.y6c{bottom:948.453333pt;}
.y3e{bottom:955.493333pt;}
.yd9{bottom:956.453333pt;}
.ybd{bottom:958.373333pt;}
.y1ca{bottom:963.493333pt;}
.y6b{bottom:966.373333pt;}
.ya{bottom:973.413333pt;}
.yd8{bottom:974.373333pt;}
.y1c9{bottom:981.413333pt;}
.ybc{bottom:984.293333pt;}
.y6a{bottom:984.453333pt;}
.y3d{bottom:991.493333pt;}
.y226{bottom:992.293333pt;}
.yd7{bottom:992.453333pt;}
.y9{bottom:997.413333pt;}
.y1c8{bottom:999.493333pt;}
.y69{bottom:1002.373333pt;}
.yd6{bottom:1010.373333pt;}
.y1c7{bottom:1017.413333pt;}
.y3c{bottom:1018.053333pt;}
.y68{bottom:1020.480000pt;}
.y8{bottom:1021.440000pt;}
.ya8{bottom:1028.320000pt;}
.yd5{bottom:1028.480000pt;}
.y1c6{bottom:1044.160000pt;}
.y3b{bottom:1046.400000pt;}
.y7{bottom:1051.840000pt;}
.y33{bottom:1063.840000pt;}
.hd{height:9.440000pt;}
.hb{height:20.000000pt;}
.h2{height:33.421875pt;}
.h9{height:36.986875pt;}
.h4{height:44.562500pt;}
.h7{height:46.972530pt;}
.h6{height:47.406250pt;}
.h8{height:52.138125pt;}
.ha{height:52.834688pt;}
.h3{height:58.563750pt;}
.h5{height:59.268125pt;}
.hc{height:74.477812pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:44.000000pt;}
.w4{width:639.680000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:9.632000pt;}
.x13{left:12.000000pt;}
.x2{left:75.551988pt;}
.x34{left:76.671988pt;}
.x38{left:78.271988pt;}
.x31{left:79.871988pt;}
.x41{left:85.791988pt;}
.x32{left:88.991988pt;}
.x29{left:91.071988pt;}
.x1a{left:92.671988pt;}
.x17{left:100.511988pt;}
.x3c{left:116.191988pt;}
.xe{left:121.311988pt;}
.x3{left:134.906655pt;}
.x18{left:139.706655pt;}
.x39{left:144.346655pt;}
.x2a{left:149.786655pt;}
.x2b{left:152.986655pt;}
.x1b{left:155.866655pt;}
.x43{left:157.786655pt;}
.x33{left:161.306655pt;}
.x4{left:164.666655pt;}
.x42{left:172.186655pt;}
.x9{left:204.186655pt;}
.x7{left:212.026655pt;}
.x3a{left:224.346655pt;}
.x8{left:271.106655pt;}
.xa{left:272.706655pt;}
.x5{left:284.066655pt;}
.x6{left:305.666655pt;}
.xb{left:338.466655pt;}
.xd{left:344.706655pt;}
.x3b{left:360.386655pt;}
.x11{left:363.746655pt;}
.x37{left:365.506655pt;}
.x16{left:371.586655pt;}
.x30{left:374.306655pt;}
.x19{left:375.586655pt;}
.xc{left:396.893322pt;}
.x15{left:420.573322pt;}
.x20{left:425.853322pt;}
.x1d{left:426.813322pt;}
.x40{left:427.773322pt;}
.x22{left:430.973322pt;}
.x24{left:431.933322pt;}
.x2d{left:438.653322pt;}
.x35{left:440.413322pt;}
.x25{left:453.853322pt;}
.x21{left:456.093322pt;}
.x26{left:461.053322pt;}
.x28{left:462.333322pt;}
.x1e{left:464.573322pt;}
.x3e{left:468.893322pt;}
.x27{left:494.493322pt;}
.x2c{left:508.573322pt;}
.x2e{left:542.813322pt;}
.x3f{left:544.413322pt;}
.x36{left:552.573322pt;}
.x23{left:554.333322pt;}
.x2f{left:569.413322pt;}
.xf{left:601.413322pt;}
.x10{left:605.413322pt;}
.x1f{left:708.613322pt;}
.x3d{left:714.533322pt;}
.x1c{left:716.613322pt;}
.x1{left:718.239988pt;}
.x12{left:720.320000pt;}
}




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