
    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_c9e4139d2552743c1dd3c357.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_df4e1d593cebd0687d5e550a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_df6786003812a7a32e295dbe.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_74712f7c768f8cbe88aa0bcc.woff')format("woff");}.ff4{font-family:ff4;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_936021efe0c0a8d56b994c69.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f2d98c987d71953cad9e949c.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_971033de3435e0c9341313b9.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f9bc8fb3e3efac710d2d126c.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_eec74b6465d4db3dbdf25042.woff')format("woff");}.ff9{font-family:ff9;line-height:1.052734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_51e77bc8bfbe566fc3946cf0.woff')format("woff");}.ffa{font-family:ffa;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-69.120000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.v4{vertical-align:69.120000px;}
.ls1d{letter-spacing:-0.774000px;}
.lse{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.259800px;}
.lsd{letter-spacing:-0.206400px;}
.ls17{letter-spacing:-0.106800px;}
.ls1a{letter-spacing:-0.100200px;}
.lsc{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.004320px;}
.ls4{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.018000px;}
.ls1b{letter-spacing:0.048000px;}
.ls5{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.106800px;}
.ls12{letter-spacing:0.119520px;}
.lsf{letter-spacing:0.135600px;}
.lsa{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.206400px;}
.ls21{letter-spacing:0.235920px;}
.ls14{letter-spacing:0.259800px;}
.ls9{letter-spacing:0.259920px;}
.ls19{letter-spacing:0.298800px;}
.lsb{letter-spacing:0.306600px;}
.ls3{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.377760px;}
.ls23{letter-spacing:0.666000px;}
.ls22{letter-spacing:5.220000px;}
.ls0{letter-spacing:18.180000px;}
.ls1c{letter-spacing:23.904000px;}
.ls20{letter-spacing:33.984000px;}
.ls1f{letter-spacing:62.784000px;}
.ls13{letter-spacing:150.060000px;}
.ls11{letter-spacing:183.060000px;}
.ls2{letter-spacing:532.956000px;}
.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;}
}
.ws15{word-spacing:-72.000000px;}
.wsc{word-spacing:-59.760000px;}
.ws16{word-spacing:-18.000000px;}
.ws6{word-spacing:-15.300000px;}
.wse{word-spacing:-15.199800px;}
.wsf{word-spacing:-15.146400px;}
.ws8{word-spacing:-15.120000px;}
.ws11{word-spacing:-15.093600px;}
.wsa{word-spacing:-15.046800px;}
.ws0{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.ws13{word-spacing:-14.839800px;}
.ws17{word-spacing:-14.833200px;}
.wsb{word-spacing:-14.733600px;}
.ws12{word-spacing:-14.680200px;}
.ws3{word-spacing:-14.580000px;}
.ws4{word-spacing:-14.220000px;}
.ws14{word-spacing:-13.860000px;}
.ws2{word-spacing:-13.500000px;}
.ws10{word-spacing:-12.060000px;}
.wsd{word-spacing:-9.720000px;}
.ws5{word-spacing:-9.715680px;}
.ws7{word-spacing:0.000000px;}
._2a{margin-left:-9.377280px;}
._3d{margin-left:-7.020000px;}
._6{margin-left:-1.254960px;}
._0{width:1.254960px;}
._7{width:2.748960px;}
._5{width:3.824640px;}
._18{width:5.138400px;}
._2b{width:6.203760px;}
._19{width:7.267440px;}
._8{width:8.366400px;}
._b{width:9.561600px;}
._c{width:11.055600px;}
._e{width:12.522000px;}
._d{width:13.804560px;}
._f{width:16.075440px;}
._17{width:17.868240px;}
._12{width:19.242720px;}
._13{width:20.796480px;}
._1f{width:22.350240px;}
._4{width:23.545440px;}
._1d{width:24.621120px;}
._3{width:25.876080px;}
._23{width:27.429840px;}
._24{width:29.162880px;}
._9{width:30.537360px;}
._15{width:31.672800px;}
._16{width:33.533760px;}
._27{width:34.607280px;}
._1e{width:36.003360px;}
._a{width:37.290240px;}
._14{width:39.286560px;}
._1a{width:40.873920px;}
._2{width:42.399120px;}
._1{width:43.505280px;}
._2f{width:44.879760px;}
._2e{width:46.010400px;}
._20{width:48.171360px;}
._1b{width:50.497200px;}
._3b{width:51.514320px;}
._1c{width:52.588800px;}
._11{width:54.356160px;}
._10{width:55.693200px;}
._25{width:58.134240px;}
._22{width:59.194560px;}
._47{width:60.387840px;}
._3f{width:61.740000px;}
._3e{width:62.946480px;}
._26{width:64.092960px;}
._40{width:65.178240px;}
._28{width:66.811680px;}
._48{width:69.457440px;}
._29{width:70.636320px;}
._45{width:71.832000px;}
._2d{width:80.735760px;}
._39{width:83.903040px;}
._30{width:85.875120px;}
._42{width:88.564320px;}
._41{width:89.699760px;}
._21{width:92.388960px;}
._4a{width:100.576080px;}
._49{width:101.651760px;}
._33{width:111.420000px;}
._2c{width:113.371200px;}
._46{width:141.138000px;}
._3c{width:143.364240px;}
._34{width:186.120000px;}
._31{width:203.201040px;}
._44{width:219.259440px;}
._43{width:220.400640px;}
._3a{width:231.809520px;}
._37{width:371.933280px;}
._36{width:517.004160px;}
._32{width:552.725040px;}
._35{width:708.060000px;}
._38{width:1030.763520px;}
.fc5{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(34,34,34);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs7{font-size:48.240000px;}
.fs3{font-size:51.120000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.yde{bottom:2.520000px;}
.y17b{bottom:2.880000px;}
.ye2{bottom:3.240000px;}
.y182{bottom:4.140000px;}
.y17f{bottom:4.320000px;}
.ycc{bottom:4.680000px;}
.yc8{bottom:4.860000px;}
.y145{bottom:5.040000px;}
.yc6{bottom:5.580000px;}
.y15a{bottom:5.760000px;}
.y144{bottom:6.840000px;}
.y10d{bottom:7.380000px;}
.y140{bottom:10.980000px;}
.yf5{bottom:11.700000px;}
.yf1{bottom:11.880000px;}
.yc4{bottom:12.960000px;}
.y10e{bottom:14.040000px;}
.y13e{bottom:15.840000px;}
.ye0{bottom:16.200000px;}
.y17a{bottom:18.360000px;}
.ye6{bottom:20.340000px;}
.yf0{bottom:20.520000px;}
.yc5{bottom:22.860000px;}
.y10c{bottom:24.660000px;}
.y13f{bottom:28.260000px;}
.ydf{bottom:30.060000px;}
.y1{bottom:79.416000px;}
.y6a{bottom:100.116000px;}
.y32{bottom:113.256000px;}
.y123{bottom:122.616000px;}
.yb8{bottom:123.156000px;}
.y66{bottom:124.416000px;}
.y1cf{bottom:124.776000px;}
.yaf{bottom:126.576000px;}
.y183{bottom:128.196000px;}
.y31{bottom:128.916000px;}
.y88{bottom:129.096000px;}
.yec{bottom:130.536000px;}
.y1ff{bottom:131.076000px;}
.y157{bottom:134.856000px;}
.y1b6{bottom:135.396000px;}
.y18f{bottom:139.176000px;}
.y122{bottom:140.076000px;}
.yb7{bottom:140.436000px;}
.y65{bottom:141.516000px;}
.y1ce{bottom:142.056000px;}
.y181{bottom:143.316000px;}
.yae{bottom:143.856000px;}
.y30{bottom:144.936000px;}
.y87{bottom:146.376000px;}
.yeb{bottom:147.816000px;}
.y1fe{bottom:148.356000px;}
.y153{bottom:150.510000px;}
.y1b5{bottom:152.490000px;}
.y18e{bottom:156.450000px;}
.y2f{bottom:156.810000px;}
.y121{bottom:157.350000px;}
.yb6{bottom:157.710000px;}
.y156{bottom:157.890000px;}
.y64{bottom:158.790000px;}
.y1cd{bottom:159.330000px;}
.yad{bottom:161.130000px;}
.y86{bottom:163.650000px;}
.yea{bottom:165.090000px;}
.y1fd{bottom:165.630000px;}
.y152{bottom:167.790000px;}
.y1b4{bottom:169.770000px;}
.yb5{bottom:171.750000px;}
.y120{bottom:174.630000px;}
.y18d{bottom:175.890000px;}
.y63{bottom:176.070000px;}
.y155{bottom:176.790000px;}
.yac{bottom:178.410000px;}
.y1cc{bottom:179.310000px;}
.y85{bottom:180.930000px;}
.ye9{bottom:182.190000px;}
.y180{bottom:182.910000px;}
.y151{bottom:184.890000px;}
.y11f{bottom:191.910000px;}
.y18c{bottom:193.170000px;}
.y62{bottom:193.350000px;}
.yab{bottom:195.690000px;}
.y1cb{bottom:196.590000px;}
.y84{bottom:198.210000px;}
.ye8{bottom:199.470000px;}
.y150{bottom:202.170000px;}
.y1fc{bottom:202.890000px;}
.y17e{bottom:203.250000px;}
.y11e{bottom:209.370000px;}
.y18b{bottom:210.450000px;}
.y61{bottom:210.630000px;}
.yb4{bottom:210.990000px;}
.yaa{bottom:212.790000px;}
.y1ca{bottom:213.870000px;}
.y83{bottom:215.490000px;}
.ye7{bottom:216.750000px;}
.y14f{bottom:219.450000px;}
.y1fb{bottom:220.170000px;}
.y17d{bottom:223.590000px;}
.y18a{bottom:227.730000px;}
.y60{bottom:227.910000px;}
.yb3{bottom:228.090000px;}
.y11c{bottom:229.170000px;}
.ya9{bottom:230.070000px;}
.y154{bottom:231.870000px;}
.ye5{bottom:232.050000px;}
.y82{bottom:232.590000px;}
.y1c9{bottom:233.850000px;}
.y14e{bottom:236.730000px;}
.y1fa{bottom:237.450000px;}
.y1b3{bottom:240.690000px;}
.y5f{bottom:245.010000px;}
.yb2{bottom:245.370000px;}
.y11d{bottom:246.270000px;}
.y11b{bottom:246.450000px;}
.y2e{bottom:248.790000px;}
.y81{bottom:249.870000px;}
.y1c8{bottom:251.130000px;}
.y14d{bottom:254.010000px;}
.y1f9{bottom:254.730000px;}
.ya8{bottom:259.410000px;}
.y17c{bottom:260.310000px;}
.y189{bottom:262.110000px;}
.y5e{bottom:262.290000px;}
.yb1{bottom:262.650000px;}
.y11a{bottom:263.550000px;}
.y2d{bottom:265.710000px;}
.y80{bottom:267.150000px;}
.y1b2{bottom:267.510000px;}
.y1c7{bottom:268.410000px;}
.ye4{bottom:268.770000px;}
.y14c{bottom:271.110000px;}
.y1f8{bottom:272.010000px;}
.y188{bottom:279.390000px;}
.y5d{bottom:279.570000px;}
.yb0{bottom:279.930000px;}
.y119{bottom:280.830000px;}
.y2c{bottom:281.370000px;}
.y7f{bottom:284.430000px;}
.y1c6{bottom:285.690000px;}
.ye3{bottom:288.255000px;}
.y14b{bottom:288.435000px;}
.ya7{bottom:288.795000px;}
.y1f7{bottom:292.035000px;}
.y1b1{bottom:294.555000px;}
.y187{bottom:296.715000px;}
.y5c{bottom:296.895000px;}
.y2b{bottom:297.255000px;}
.y118{bottom:298.155000px;}
.y179{bottom:299.055000px;}
.y7e{bottom:301.755000px;}
.y14a{bottom:305.715000px;}
.ya6{bottom:306.075000px;}
.ye1{bottom:307.695000px;}
.y1f6{bottom:309.315000px;}
.y186{bottom:313.995000px;}
.y5b{bottom:314.175000px;}
.y2a{bottom:314.535000px;}
.y117{bottom:315.435000px;}
.y7d{bottom:319.035000px;}
.y1b0{bottom:321.375000px;}
.y149{bottom:322.995000px;}
.ya5{bottom:323.175000px;}
.y1f5{bottom:326.595000px;}
.ydd{bottom:327.315000px;}
.y5a{bottom:331.275000px;}
.y29{bottom:331.635000px;}
.y116{bottom:332.715000px;}
.y178{bottom:335.055000px;}
.y7c{bottom:336.135000px;}
.y148{bottom:340.275000px;}
.ya4{bottom:340.455000px;}
.y1f4{bottom:343.875000px;}
.y1af{bottom:348.195000px;}
.y59{bottom:348.555000px;}
.y28{bottom:348.915000px;}
.y115{bottom:349.995000px;}
.y177{bottom:352.335000px;}
.y7b{bottom:353.415000px;}
.y147{bottom:355.035000px;}
.y1c5{bottom:357.555000px;}
.y1f3{bottom:360.975000px;}
.y1ae{bottom:365.475000px;}
.y185{bottom:365.655000px;}
.y58{bottom:365.835000px;}
.y27{bottom:366.195000px;}
.y114{bottom:367.095000px;}
.y176{bottom:369.615000px;}
.y7a{bottom:370.695000px;}
.ya3{bottom:371.415000px;}
.y1c4{bottom:374.655000px;}
.y1f2{bottom:378.255000px;}
.y184{bottom:382.935000px;}
.y57{bottom:383.115000px;}
.y26{bottom:383.475000px;}
.y113{bottom:384.375000px;}
.y79{bottom:387.975000px;}
.y146{bottom:391.215000px;}
.y1c3{bottom:392.115000px;}
.y1ad{bottom:392.475000px;}
.y1f1{bottom:395.535000px;}
.y218{bottom:396.075000px;}
.y112{bottom:399.135000px;}
.y175{bottom:400.215000px;}
.y56{bottom:400.395000px;}
.y25{bottom:400.755000px;}
.ya2{bottom:402.375000px;}
.y78{bottom:405.255000px;}
.ydc{bottom:408.135000px;}
.y143{bottom:410.115000px;}
.y1c2{bottom:412.095000px;}
.y1f0{bottom:415.515000px;}
.y174{bottom:417.495000px;}
.y55{bottom:417.675000px;}
.y24{bottom:417.855000px;}
.y111{bottom:418.035000px;}
.y1ac{bottom:419.295000px;}
.ya1{bottom:419.655000px;}
.y77{bottom:422.355000px;}
.y217{bottom:425.235000px;}
.ydb{bottom:425.415000px;}
.y1c1{bottom:429.195000px;}
.y142{bottom:432.615000px;}
.y1ef{bottom:432.795000px;}
.y54{bottom:434.775000px;}
.y23{bottom:435.135000px;}
.y1ab{bottom:436.575000px;}
.ya0{bottom:436.935000px;}
.y76{bottom:439.635000px;}
.y216{bottom:442.515000px;}
.yda{bottom:442.695000px;}
.y1c0{bottom:446.475000px;}
.y1ee{bottom:450.075000px;}
.y141{bottom:451.515000px;}
.y53{bottom:452.055000px;}
.y22{bottom:452.415000px;}
.y9f{bottom:454.215000px;}
.y110{bottom:455.835000px;}
.y75{bottom:456.915000px;}
.y215{bottom:459.795000px;}
.yd9{bottom:459.975000px;}
.y1aa{bottom:463.395000px;}
.y1bf{bottom:463.755000px;}
.y173{bottom:469.155000px;}
.y52{bottom:469.335000px;}
.y21{bottom:469.695000px;}
.y1ed{bottom:470.055000px;}
.y13d{bottom:470.415000px;}
.y9e{bottom:471.495000px;}
.y74{bottom:474.195000px;}
.y10f{bottom:474.735000px;}
.y214{bottom:477.075000px;}
.yd8{bottom:477.255000px;}
.y1be{bottom:481.035000px;}
.y172{bottom:486.435000px;}
.y51{bottom:486.615000px;}
.y20{bottom:486.975000px;}
.y1ec{bottom:487.335000px;}
.y9d{bottom:488.595000px;}
.y1a9{bottom:490.215000px;}
.y73{bottom:491.475000px;}
.y10b{bottom:493.635000px;}
.yd7{bottom:494.355000px;}
.y1bd{bottom:501.015000px;}
.y171{bottom:503.715000px;}
.y50{bottom:503.895000px;}
.y1f{bottom:504.255000px;}
.y1eb{bottom:504.615000px;}
.y9c{bottom:505.875000px;}
.y72{bottom:508.755000px;}
.yd6{bottom:511.635000px;}
.y1a8{bottom:517.215000px;}
.y13c{bottom:517.575000px;}
.y1bc{bottom:518.295000px;}
.y170{bottom:520.995000px;}
.y4f{bottom:521.175000px;}
.y1e{bottom:521.355000px;}
.y1ea{bottom:521.895000px;}
.y9b{bottom:523.155000px;}
.y71{bottom:525.855000px;}
.yd5{bottom:528.915000px;}
.y13b{bottom:534.855000px;}
.y1bb{bottom:535.575000px;}
.y10a{bottom:537.195000px;}
.y4e{bottom:538.275000px;}
.y1d{bottom:538.635000px;}
.y9a{bottom:540.435000px;}
.y1e9{bottom:541.875000px;}
.y70{bottom:543.135000px;}
.y1a7{bottom:544.035000px;}
.yd4{bottom:546.195000px;}
.y13a{bottom:551.985000px;}
.y213{bottom:552.165000px;}
.y1ba{bottom:552.885000px;}
.y109{bottom:554.505000px;}
.y4d{bottom:555.585000px;}
.y1c{bottom:555.945000px;}
.y99{bottom:557.745000px;}
.y1e8{bottom:559.185000px;}
.y6f{bottom:560.445000px;}
.y1a6{bottom:561.345000px;}
.yd3{bottom:563.505000px;}
.y139{bottom:569.265000px;}
.y212{bottom:569.445000px;}
.y1b9{bottom:570.165000px;}
.y108{bottom:571.785000px;}
.y16f{bottom:572.685000px;}
.y4c{bottom:572.865000px;}
.y1b{bottom:573.225000px;}
.y98{bottom:575.025000px;}
.y1e7{bottom:576.465000px;}
.y6e{bottom:577.725000px;}
.yd2{bottom:580.785000px;}
.y138{bottom:586.545000px;}
.y1b8{bottom:587.445000px;}
.y1a5{bottom:588.165000px;}
.yff{bottom:589.065000px;}
.y16e{bottom:589.965000px;}
.y4b{bottom:590.145000px;}
.y1a{bottom:590.505000px;}
.y97{bottom:592.125000px;}
.y211{bottom:592.845000px;}
.y107{bottom:593.205000px;}
.y1e6{bottom:593.745000px;}
.yd1{bottom:597.885000px;}
.y137{bottom:603.825000px;}
.y1a4{bottom:605.445000px;}
.yfe{bottom:606.345000px;}
.y16d{bottom:607.245000px;}
.y4a{bottom:607.425000px;}
.y19{bottom:607.785000px;}
.y6d{bottom:609.945000px;}
.y210{bottom:610.125000px;}
.y106{bottom:610.485000px;}
.y1e5{bottom:611.025000px;}
.yd0{bottom:612.645000px;}
.y96{bottom:615.705000px;}
.y136{bottom:621.105000px;}
.yfd{bottom:623.445000px;}
.y49{bottom:624.525000px;}
.y1b7{bottom:624.705000px;}
.y18{bottom:624.885000px;}
.y1a3{bottom:627.405000px;}
.y105{bottom:627.765000px;}
.y1e4{bottom:631.005000px;}
.ycf{bottom:633.345000px;}
.y135{bottom:638.385000px;}
.yfc{bottom:640.725000px;}
.y48{bottom:641.805000px;}
.y17{bottom:642.165000px;}
.y1a2{bottom:644.685000px;}
.y104{bottom:645.045000px;}
.y1e3{bottom:648.285000px;}
.y95{bottom:648.825000px;}
.yce{bottom:653.865000px;}
.y134{bottom:655.485000px;}
.yfb{bottom:658.005000px;}
.y16c{bottom:658.905000px;}
.y47{bottom:659.085000px;}
.y16{bottom:659.445000px;}
.y1a1{bottom:661.965000px;}
.y103{bottom:662.145000px;}
.y1e2{bottom:665.565000px;}
.y94{bottom:666.105000px;}
.y133{bottom:672.765000px;}
.ycd{bottom:674.385000px;}
.yfa{bottom:675.285000px;}
.y16b{bottom:676.185000px;}
.y46{bottom:676.365000px;}
.y6c{bottom:676.725000px;}
.y1a0{bottom:679.245000px;}
.y102{bottom:679.425000px;}
.y1e1{bottom:682.665000px;}
.y93{bottom:683.385000px;}
.y132{bottom:690.045000px;}
.y16a{bottom:691.305000px;}
.yf9{bottom:692.565000px;}
.y45{bottom:693.645000px;}
.y15{bottom:694.005000px;}
.ycb{bottom:694.905000px;}
.y101{bottom:696.705000px;}
.y19f{bottom:698.325000px;}
.y1e0{bottom:699.945000px;}
.y92{bottom:706.065000px;}
.y131{bottom:707.325000px;}
.y169{bottom:710.565000px;}
.y44{bottom:710.925000px;}
.y14{bottom:711.105000px;}
.y100{bottom:713.985000px;}
.yca{bottom:715.425000px;}
.y1df{bottom:717.225000px;}
.y19e{bottom:721.725000px;}
.y91{bottom:723.345000px;}
.y130{bottom:724.605000px;}
.y43{bottom:728.025000px;}
.y13{bottom:728.385000px;}
.y168{bottom:730.005000px;}
.yf8{bottom:731.265000px;}
.y20f{bottom:734.505000px;}
.yc9{bottom:736.125000px;}
.y1de{bottom:737.205000px;}
.y12f{bottom:741.705000px;}
.y42{bottom:745.305000px;}
.y12{bottom:745.665000px;}
.y90{bottom:745.845000px;}
.yf7{bottom:746.385000px;}
.y19d{bottom:747.645000px;}
.y167{bottom:749.265000px;}
.y20e{bottom:751.785000px;}
.y1dd{bottom:754.485000px;}
.yc7{bottom:756.645000px;}
.y12e{bottom:758.985000px;}
.y41{bottom:762.585000px;}
.y11{bottom:762.945000px;}
.y8f{bottom:763.125000px;}
.y19c{bottom:764.925000px;}
.y166{bottom:768.525000px;}
.y20d{bottom:769.065000px;}
.y1dc{bottom:771.765000px;}
.y12d{bottom:774.105000px;}
.yc3{bottom:777.345000px;}
.y40{bottom:779.865000px;}
.y10{bottom:780.225000px;}
.y8e{bottom:780.405000px;}
.yf6{bottom:783.105000px;}
.y165{bottom:787.785000px;}
.y1db{bottom:789.045000px;}
.y19b{bottom:793.005000px;}
.y12c{bottom:793.365000px;}
.y3f{bottom:797.145000px;}
.yf{bottom:797.505000px;}
.y8d{bottom:797.685000px;}
.y20c{bottom:806.325000px;}
.y1da{bottom:809.070000px;}
.y164{bottom:809.970000px;}
.y19a{bottom:810.330000px;}
.y12b{bottom:812.850000px;}
.y3e{bottom:814.470000px;}
.ye{bottom:814.650000px;}
.yc2{bottom:819.330000px;}
.yf4{bottom:820.050000px;}
.y8c{bottom:820.770000px;}
.y20b{bottom:823.650000px;}
.y1d9{bottom:826.350000px;}
.y3d{bottom:831.570000px;}
.yd{bottom:831.930000px;}
.y12a{bottom:832.110000px;}
.yc1{bottom:836.610000px;}
.y8b{bottom:838.050000px;}
.y199{bottom:838.230000px;}
.y163{bottom:839.130000px;}
.y20a{bottom:840.750000px;}
.y1d8{bottom:843.630000px;}
.y3c{bottom:848.850000px;}
.yc{bottom:849.210000px;}
.y8a{bottom:855.330000px;}
.y198{bottom:855.510000px;}
.yf3{bottom:856.770000px;}
.y209{bottom:858.210000px;}
.y1d7{bottom:860.910000px;}
.y3b{bottom:866.130000px;}
.yb{bottom:866.490000px;}
.y129{bottom:868.470000px;}
.yc0{bottom:870.990000px;}
.y1d6{bottom:878.190000px;}
.y3a{bottom:883.410000px;}
.y197{bottom:883.590000px;}
.ya{bottom:883.770000px;}
.ybf{bottom:888.270000px;}
.y89{bottom:888.810000px;}
.y162{bottom:892.230000px;}
.yf2{bottom:893.490000px;}
.y160{bottom:893.850000px;}
.y208{bottom:895.290000px;}
.y1d5{bottom:895.470000px;}
.y39{bottom:900.690000px;}
.y196{bottom:900.870000px;}
.y9{bottom:901.050000px;}
.y128{bottom:905.010000px;}
.ybe{bottom:905.550000px;}
.y15f{bottom:910.950000px;}
.y207{bottom:912.570000px;}
.y1d4{bottom:915.450000px;}
.y38{bottom:917.970000px;}
.y8{bottom:918.150000px;}
.y161{bottom:921.570000px;}
.ybd{bottom:922.830000px;}
.y127{bottom:924.270000px;}
.y15e{bottom:928.230000px;}
.y195{bottom:928.950000px;}
.y206{bottom:929.850000px;}
.yef{bottom:930.210000px;}
.y1d3{bottom:932.730000px;}
.y37{bottom:935.070000px;}
.y7{bottom:935.430000px;}
.y126{bottom:943.710000px;}
.y194{bottom:946.230000px;}
.y205{bottom:947.130000px;}
.y1d2{bottom:949.830000px;}
.ybc{bottom:951.990000px;}
.y36{bottom:952.350000px;}
.y6{bottom:952.710000px;}
.y15d{bottom:960.090000px;}
.y125{bottom:962.970000px;}
.y204{bottom:964.410000px;}
.y1d1{bottom:967.110000px;}
.ybb{bottom:969.270000px;}
.y35{bottom:969.630000px;}
.yee{bottom:969.810000px;}
.y5{bottom:969.990000px;}
.y193{bottom:974.130000px;}
.y15c{bottom:974.850000px;}
.y124{bottom:982.230000px;}
.y203{bottom:984.390000px;}
.y1d0{bottom:984.570000px;}
.yba{bottom:986.730000px;}
.y34{bottom:986.910000px;}
.yed{bottom:987.090000px;}
.y4{bottom:987.270000px;}
.y192{bottom:991.410000px;}
.y15b{bottom:993.750000px;}
.y202{bottom:1001.670000px;}
.y33{bottom:1004.190000px;}
.yb9{bottom:1004.370000px;}
.y3{bottom:1004.550000px;}
.y159{bottom:1012.650000px;}
.y201{bottom:1018.950000px;}
.y191{bottom:1019.490000px;}
.y6b{bottom:1021.650000px;}
.y158{bottom:1034.070000px;}
.y200{bottom:1036.230000px;}
.y190{bottom:1036.770000px;}
.y2{bottom:1038.930000px;}
.y69{bottom:1080.180000px;}
.y68{bottom:1100.160000px;}
.y67{bottom:1119.960000px;}
.h17{height:17.100000px;}
.h11{height:17.280000px;}
.h18{height:17.316000px;}
.h20{height:18.180000px;}
.h1f{height:18.360000px;}
.he{height:18.720000px;}
.hd{height:18.900000px;}
.h1c{height:19.800000px;}
.h1a{height:20.880000px;}
.h1b{height:21.420000px;}
.h1d{height:30.960000px;}
.h12{height:34.380000px;}
.h14{height:34.560000px;}
.h15{height:34.596000px;}
.hc{height:36.936000px;}
.h16{height:38.700000px;}
.hf{height:41.400000px;}
.ha{height:41.726953px;}
.h19{height:42.300000px;}
.h10{height:48.616875px;}
.h7{height:51.519375px;}
.h5{height:52.998047px;}
.h1e{height:54.421875px;}
.h8{height:55.824609px;}
.h4{height:58.621992px;}
.h2{height:58.651172px;}
.h9{height:59.038594px;}
.h3{height:60.226875px;}
.h6{height:62.211094px;}
.h1{height:70.664062px;}
.h21{height:74.004654px;}
.hb{height:79.925027px;}
.h13{height:127.771172px;}
.h0{height:1188.000000px;}
.w22{width:34.380000px;}
.w21{width:42.120000px;}
.w34{width:45.576000px;}
.w20{width:48.996000px;}
.w26{width:53.460000px;}
.w28{width:54.360000px;}
.w10{width:55.440000px;}
.we{width:55.656000px;}
.w2a{width:55.980000px;}
.w36{width:56.520000px;}
.wf{width:59.040000px;}
.w35{width:61.560000px;}
.w27{width:61.776000px;}
.w17{width:65.016000px;}
.w19{width:65.340000px;}
.w18{width:68.400000px;}
.w31{width:72.000000px;}
.w16{width:74.520000px;}
.w1d{width:74.556000px;}
.w38{width:75.996000px;}
.w39{width:76.140000px;}
.wc{width:79.020000px;}
.w1f{width:81.180000px;}
.w11{width:83.700000px;}
.w24{width:83.736000px;}
.w30{width:86.400000px;}
.w32{width:86.796000px;}
.w1c{width:88.380000px;}
.wb{width:88.560000px;}
.wa{width:88.596000px;}
.wd{width:88.776000px;}
.w25{width:89.100000px;}
.w2{width:90.540000px;}
.w7{width:91.476000px;}
.w8{width:92.700000px;}
.w2f{width:93.780000px;}
.w14{width:94.140000px;}
.w1b{width:94.536000px;}
.w4{width:98.100000px;}
.w12{width:98.640000px;}
.w13{width:99.036000px;}
.w1e{width:100.440000px;}
.w15{width:101.736000px;}
.w9{width:104.580000px;}
.w2b{width:108.000000px;}
.w2d{width:108.036000px;}
.w2e{width:116.820000px;}
.w2c{width:116.856000px;}
.w23{width:119.196000px;}
.w3{width:120.816000px;}
.w33{width:120.960000px;}
.w6{width:139.356000px;}
.w1a{width:144.360000px;}
.w37{width:182.160000px;}
.w29{width:282.270000px;}
.w5{width:310.170000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x59{left:1.620000px;}
.x61{left:3.240000px;}
.x57{left:4.680000px;}
.x21{left:6.300000px;}
.x15{left:7.740000px;}
.x3d{left:9.720000px;}
.x4a{left:11.520000px;}
.x38{left:12.600000px;}
.x1e{left:14.610000px;}
.x26{left:16.050000px;}
.x3e{left:17.280000px;}
.x2f{left:18.720000px;}
.x3c{left:21.060000px;}
.x64{left:22.140000px;}
.x23{left:23.220000px;}
.x3b{left:24.300000px;}
.x19{left:25.560000px;}
.x28{left:28.110000px;}
.x1b{left:29.340000px;}
.x53{left:30.600000px;}
.x24{left:31.890000px;}
.x39{left:32.940000px;}
.x20{left:34.200000px;}
.x33{left:35.310000px;}
.x3a{left:36.540000px;}
.x27{left:37.800000px;}
.x25{left:39.780000px;}
.x29{left:41.970000px;}
.x4c{left:45.540000px;}
.x4b{left:47.010000px;}
.x18{left:48.780000px;}
.x5b{left:49.860000px;}
.x6c{left:51.294000px;}
.x1a{left:52.560000px;}
.x2d{left:54.534000px;}
.x1c{left:56.340000px;}
.x5a{left:57.954000px;}
.x77{left:59.214000px;}
.x7a{left:62.094000px;}
.x1d{left:63.540000px;}
.x5d{left:90.720000px;}
.x3f{left:95.795986px;}
.x2c{left:98.676000px;}
.x76{left:100.836000px;}
.x2{left:106.415986px;}
.x74{left:107.675986px;}
.x7c{left:111.455986px;}
.x5{left:117.575986px;}
.x3{left:119.735986px;}
.xb{left:124.055986px;}
.x69{left:127.656000px;}
.x4{left:132.695986px;}
.x7d{left:138.455986px;}
.xe{left:142.775986px;}
.xd{left:160.049986px;}
.x43{left:183.090000px;}
.x6a{left:184.350000px;}
.x6d{left:198.210000px;}
.x11{left:199.829986px;}
.x2e{left:203.970000px;}
.x8{left:210.809986px;}
.x9{left:222.149986px;}
.x7{left:237.989986px;}
.x75{left:240.509986px;}
.x42{left:243.569986px;}
.x2b{left:250.049986px;}
.x6{left:268.769986px;}
.x4f{left:278.129986px;}
.x44{left:282.450000px;}
.x78{left:283.890000px;}
.x30{left:293.475000px;}
.xa{left:319.214986px;}
.x50{left:339.195000px;}
.x79{left:360.615000px;}
.x5e{left:378.435000px;}
.x6e{left:380.055000px;}
.x31{left:382.755000px;}
.x2a{left:396.614986px;}
.x51{left:428.295000px;}
.x1{left:444.674986px;}
.x6f{left:452.775000px;}
.x4e{left:455.114986px;}
.x41{left:457.994986px;}
.x32{left:462.495000px;}
.x5f{left:468.075000px;}
.x40{left:474.554986px;}
.x45{left:477.075000px;}
.xc{left:485.174986px;}
.x14{left:492.765000px;}
.x13{left:501.944986px;}
.x52{left:503.565000px;}
.x66{left:506.625000px;}
.x7b{left:512.204986px;}
.x7e{left:513.284986px;}
.xf{left:529.304986px;}
.x4d{left:539.204986px;}
.x70{left:540.285000px;}
.x34{left:551.985000px;}
.x10{left:556.304986px;}
.x67{left:563.325000px;}
.x46{left:579.525000px;}
.x16{left:583.665000px;}
.x5c{left:585.464986px;}
.x65{left:600.764986px;}
.x54{left:604.905000px;}
.x12{left:620.204986px;}
.x1f{left:625.245000px;}
.x60{left:636.225000px;}
.x35{left:641.445000px;}
.x47{left:654.765000px;}
.x71{left:661.965000px;}
.x68{left:672.045000px;}
.x55{left:686.805000px;}
.x62{left:690.045000px;}
.x36{left:698.010000px;}
.x17{left:704.850000px;}
.x72{left:708.450000px;}
.x22{left:717.450000px;}
.x48{left:720.510000px;}
.x56{left:736.530000px;}
.x63{left:752.190000px;}
.x37{left:757.950000px;}
.x73{left:770.730000px;}
.x58{left:779.370000px;}
.x6b{left:780.449986px;}
.x49{left:789.810000px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.v4{vertical-align:61.440000pt;}
.ls1d{letter-spacing:-0.688000pt;}
.lse{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.230933pt;}
.lsd{letter-spacing:-0.183467pt;}
.ls17{letter-spacing:-0.094933pt;}
.ls1a{letter-spacing:-0.089067pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.003840pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.016000pt;}
.ls1b{letter-spacing:0.042667pt;}
.ls5{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.094933pt;}
.ls12{letter-spacing:0.106240pt;}
.lsf{letter-spacing:0.120533pt;}
.lsa{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.183467pt;}
.ls21{letter-spacing:0.209707pt;}
.ls14{letter-spacing:0.230933pt;}
.ls9{letter-spacing:0.231040pt;}
.ls19{letter-spacing:0.265600pt;}
.lsb{letter-spacing:0.272533pt;}
.ls3{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.335787pt;}
.ls23{letter-spacing:0.592000pt;}
.ls22{letter-spacing:4.640000pt;}
.ls0{letter-spacing:16.160000pt;}
.ls1c{letter-spacing:21.248000pt;}
.ls20{letter-spacing:30.208000pt;}
.ls1f{letter-spacing:55.808000pt;}
.ls13{letter-spacing:133.386667pt;}
.ls11{letter-spacing:162.720000pt;}
.ls2{letter-spacing:473.738667pt;}
.ws15{word-spacing:-64.000000pt;}
.wsc{word-spacing:-53.120000pt;}
.ws16{word-spacing:-16.000000pt;}
.ws6{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.510933pt;}
.wsf{word-spacing:-13.463467pt;}
.ws8{word-spacing:-13.440000pt;}
.ws11{word-spacing:-13.416533pt;}
.wsa{word-spacing:-13.374933pt;}
.ws0{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws13{word-spacing:-13.190933pt;}
.ws17{word-spacing:-13.185067pt;}
.wsb{word-spacing:-13.096533pt;}
.ws12{word-spacing:-13.049067pt;}
.ws3{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.640000pt;}
.ws14{word-spacing:-12.320000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws10{word-spacing:-10.720000pt;}
.wsd{word-spacing:-8.640000pt;}
.ws5{word-spacing:-8.636160pt;}
.ws7{word-spacing:0.000000pt;}
._2a{margin-left:-8.335360pt;}
._3d{margin-left:-6.240000pt;}
._6{margin-left:-1.115520pt;}
._0{width:1.115520pt;}
._7{width:2.443520pt;}
._5{width:3.399680pt;}
._18{width:4.567467pt;}
._2b{width:5.514453pt;}
._19{width:6.459947pt;}
._8{width:7.436800pt;}
._b{width:8.499200pt;}
._c{width:9.827200pt;}
._e{width:11.130667pt;}
._d{width:12.270720pt;}
._f{width:14.289280pt;}
._17{width:15.882880pt;}
._12{width:17.104640pt;}
._13{width:18.485760pt;}
._1f{width:19.866880pt;}
._4{width:20.929280pt;}
._1d{width:21.885440pt;}
._3{width:23.000960pt;}
._23{width:24.382080pt;}
._24{width:25.922560pt;}
._9{width:27.144320pt;}
._15{width:28.153600pt;}
._16{width:29.807787pt;}
._27{width:30.762027pt;}
._1e{width:32.002987pt;}
._a{width:33.146880pt;}
._14{width:34.921387pt;}
._1a{width:36.332373pt;}
._2{width:37.688107pt;}
._1{width:38.671360pt;}
._2f{width:39.893120pt;}
._2e{width:40.898133pt;}
._20{width:42.818987pt;}
._1b{width:44.886400pt;}
._3b{width:45.790507pt;}
._1c{width:46.745600pt;}
._11{width:48.316587pt;}
._10{width:49.505067pt;}
._25{width:51.674880pt;}
._22{width:52.617387pt;}
._47{width:53.678080pt;}
._3f{width:54.880000pt;}
._3e{width:55.952427pt;}
._26{width:56.971520pt;}
._40{width:57.936213pt;}
._28{width:59.388160pt;}
._48{width:61.739947pt;}
._29{width:62.787840pt;}
._45{width:63.850667pt;}
._2d{width:71.765120pt;}
._39{width:74.580480pt;}
._30{width:76.333440pt;}
._42{width:78.723840pt;}
._41{width:79.733120pt;}
._21{width:82.123520pt;}
._4a{width:89.400960pt;}
._49{width:90.357120pt;}
._33{width:99.040000pt;}
._2c{width:100.774400pt;}
._46{width:125.456000pt;}
._3c{width:127.434880pt;}
._34{width:165.440000pt;}
._31{width:180.623147pt;}
._44{width:194.897280pt;}
._43{width:195.911680pt;}
._3a{width:206.052907pt;}
._37{width:330.607360pt;}
._36{width:459.559253pt;}
._32{width:491.311147pt;}
._35{width:629.386667pt;}
._38{width:916.234240pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:42.880000pt;}
.fs3{font-size:45.440000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.yde{bottom:2.240000pt;}
.y17b{bottom:2.560000pt;}
.ye2{bottom:2.880000pt;}
.y182{bottom:3.680000pt;}
.y17f{bottom:3.840000pt;}
.ycc{bottom:4.160000pt;}
.yc8{bottom:4.320000pt;}
.y145{bottom:4.480000pt;}
.yc6{bottom:4.960000pt;}
.y15a{bottom:5.120000pt;}
.y144{bottom:6.080000pt;}
.y10d{bottom:6.560000pt;}
.y140{bottom:9.760000pt;}
.yf5{bottom:10.400000pt;}
.yf1{bottom:10.560000pt;}
.yc4{bottom:11.520000pt;}
.y10e{bottom:12.480000pt;}
.y13e{bottom:14.080000pt;}
.ye0{bottom:14.400000pt;}
.y17a{bottom:16.320000pt;}
.ye6{bottom:18.080000pt;}
.yf0{bottom:18.240000pt;}
.yc5{bottom:20.320000pt;}
.y10c{bottom:21.920000pt;}
.y13f{bottom:25.120000pt;}
.ydf{bottom:26.720000pt;}
.y1{bottom:70.592000pt;}
.y6a{bottom:88.992000pt;}
.y32{bottom:100.672000pt;}
.y123{bottom:108.992000pt;}
.yb8{bottom:109.472000pt;}
.y66{bottom:110.592000pt;}
.y1cf{bottom:110.912000pt;}
.yaf{bottom:112.512000pt;}
.y183{bottom:113.952000pt;}
.y31{bottom:114.592000pt;}
.y88{bottom:114.752000pt;}
.yec{bottom:116.032000pt;}
.y1ff{bottom:116.512000pt;}
.y157{bottom:119.872000pt;}
.y1b6{bottom:120.352000pt;}
.y18f{bottom:123.712000pt;}
.y122{bottom:124.512000pt;}
.yb7{bottom:124.832000pt;}
.y65{bottom:125.792000pt;}
.y1ce{bottom:126.272000pt;}
.y181{bottom:127.392000pt;}
.yae{bottom:127.872000pt;}
.y30{bottom:128.832000pt;}
.y87{bottom:130.112000pt;}
.yeb{bottom:131.392000pt;}
.y1fe{bottom:131.872000pt;}
.y153{bottom:133.786667pt;}
.y1b5{bottom:135.546667pt;}
.y18e{bottom:139.066667pt;}
.y2f{bottom:139.386667pt;}
.y121{bottom:139.866667pt;}
.yb6{bottom:140.186667pt;}
.y156{bottom:140.346667pt;}
.y64{bottom:141.146667pt;}
.y1cd{bottom:141.626667pt;}
.yad{bottom:143.226667pt;}
.y86{bottom:145.466667pt;}
.yea{bottom:146.746667pt;}
.y1fd{bottom:147.226667pt;}
.y152{bottom:149.146667pt;}
.y1b4{bottom:150.906667pt;}
.yb5{bottom:152.666667pt;}
.y120{bottom:155.226667pt;}
.y18d{bottom:156.346667pt;}
.y63{bottom:156.506667pt;}
.y155{bottom:157.146667pt;}
.yac{bottom:158.586667pt;}
.y1cc{bottom:159.386667pt;}
.y85{bottom:160.826667pt;}
.ye9{bottom:161.946667pt;}
.y180{bottom:162.586667pt;}
.y151{bottom:164.346667pt;}
.y11f{bottom:170.586667pt;}
.y18c{bottom:171.706667pt;}
.y62{bottom:171.866667pt;}
.yab{bottom:173.946667pt;}
.y1cb{bottom:174.746667pt;}
.y84{bottom:176.186667pt;}
.ye8{bottom:177.306667pt;}
.y150{bottom:179.706667pt;}
.y1fc{bottom:180.346667pt;}
.y17e{bottom:180.666667pt;}
.y11e{bottom:186.106667pt;}
.y18b{bottom:187.066667pt;}
.y61{bottom:187.226667pt;}
.yb4{bottom:187.546667pt;}
.yaa{bottom:189.146667pt;}
.y1ca{bottom:190.106667pt;}
.y83{bottom:191.546667pt;}
.ye7{bottom:192.666667pt;}
.y14f{bottom:195.066667pt;}
.y1fb{bottom:195.706667pt;}
.y17d{bottom:198.746667pt;}
.y18a{bottom:202.426667pt;}
.y60{bottom:202.586667pt;}
.yb3{bottom:202.746667pt;}
.y11c{bottom:203.706667pt;}
.ya9{bottom:204.506667pt;}
.y154{bottom:206.106667pt;}
.ye5{bottom:206.266667pt;}
.y82{bottom:206.746667pt;}
.y1c9{bottom:207.866667pt;}
.y14e{bottom:210.426667pt;}
.y1fa{bottom:211.066667pt;}
.y1b3{bottom:213.946667pt;}
.y5f{bottom:217.786667pt;}
.yb2{bottom:218.106667pt;}
.y11d{bottom:218.906667pt;}
.y11b{bottom:219.066667pt;}
.y2e{bottom:221.146667pt;}
.y81{bottom:222.106667pt;}
.y1c8{bottom:223.226667pt;}
.y14d{bottom:225.786667pt;}
.y1f9{bottom:226.426667pt;}
.ya8{bottom:230.586667pt;}
.y17c{bottom:231.386667pt;}
.y189{bottom:232.986667pt;}
.y5e{bottom:233.146667pt;}
.yb1{bottom:233.466667pt;}
.y11a{bottom:234.266667pt;}
.y2d{bottom:236.186667pt;}
.y80{bottom:237.466667pt;}
.y1b2{bottom:237.786667pt;}
.y1c7{bottom:238.586667pt;}
.ye4{bottom:238.906667pt;}
.y14c{bottom:240.986667pt;}
.y1f8{bottom:241.786667pt;}
.y188{bottom:248.346667pt;}
.y5d{bottom:248.506667pt;}
.yb0{bottom:248.826667pt;}
.y119{bottom:249.626667pt;}
.y2c{bottom:250.106667pt;}
.y7f{bottom:252.826667pt;}
.y1c6{bottom:253.946667pt;}
.ye3{bottom:256.226667pt;}
.y14b{bottom:256.386667pt;}
.ya7{bottom:256.706667pt;}
.y1f7{bottom:259.586667pt;}
.y1b1{bottom:261.826667pt;}
.y187{bottom:263.746667pt;}
.y5c{bottom:263.906667pt;}
.y2b{bottom:264.226667pt;}
.y118{bottom:265.026667pt;}
.y179{bottom:265.826667pt;}
.y7e{bottom:268.226667pt;}
.y14a{bottom:271.746667pt;}
.ya6{bottom:272.066667pt;}
.ye1{bottom:273.506667pt;}
.y1f6{bottom:274.946667pt;}
.y186{bottom:279.106667pt;}
.y5b{bottom:279.266667pt;}
.y2a{bottom:279.586667pt;}
.y117{bottom:280.386667pt;}
.y7d{bottom:283.586667pt;}
.y1b0{bottom:285.666667pt;}
.y149{bottom:287.106667pt;}
.ya5{bottom:287.266667pt;}
.y1f5{bottom:290.306667pt;}
.ydd{bottom:290.946667pt;}
.y5a{bottom:294.466667pt;}
.y29{bottom:294.786667pt;}
.y116{bottom:295.746667pt;}
.y178{bottom:297.826667pt;}
.y7c{bottom:298.786667pt;}
.y148{bottom:302.466667pt;}
.ya4{bottom:302.626667pt;}
.y1f4{bottom:305.666667pt;}
.y1af{bottom:309.506667pt;}
.y59{bottom:309.826667pt;}
.y28{bottom:310.146667pt;}
.y115{bottom:311.106667pt;}
.y177{bottom:313.186667pt;}
.y7b{bottom:314.146667pt;}
.y147{bottom:315.586667pt;}
.y1c5{bottom:317.826667pt;}
.y1f3{bottom:320.866667pt;}
.y1ae{bottom:324.866667pt;}
.y185{bottom:325.026667pt;}
.y58{bottom:325.186667pt;}
.y27{bottom:325.506667pt;}
.y114{bottom:326.306667pt;}
.y176{bottom:328.546667pt;}
.y7a{bottom:329.506667pt;}
.ya3{bottom:330.146667pt;}
.y1c4{bottom:333.026667pt;}
.y1f2{bottom:336.226667pt;}
.y184{bottom:340.386667pt;}
.y57{bottom:340.546667pt;}
.y26{bottom:340.866667pt;}
.y113{bottom:341.666667pt;}
.y79{bottom:344.866667pt;}
.y146{bottom:347.746667pt;}
.y1c3{bottom:348.546667pt;}
.y1ad{bottom:348.866667pt;}
.y1f1{bottom:351.586667pt;}
.y218{bottom:352.066667pt;}
.y112{bottom:354.786667pt;}
.y175{bottom:355.746667pt;}
.y56{bottom:355.906667pt;}
.y25{bottom:356.226667pt;}
.ya2{bottom:357.666667pt;}
.y78{bottom:360.226667pt;}
.ydc{bottom:362.786667pt;}
.y143{bottom:364.546667pt;}
.y1c2{bottom:366.306667pt;}
.y1f0{bottom:369.346667pt;}
.y174{bottom:371.106667pt;}
.y55{bottom:371.266667pt;}
.y24{bottom:371.426667pt;}
.y111{bottom:371.586667pt;}
.y1ac{bottom:372.706667pt;}
.ya1{bottom:373.026667pt;}
.y77{bottom:375.426667pt;}
.y217{bottom:377.986667pt;}
.ydb{bottom:378.146667pt;}
.y1c1{bottom:381.506667pt;}
.y142{bottom:384.546667pt;}
.y1ef{bottom:384.706667pt;}
.y54{bottom:386.466667pt;}
.y23{bottom:386.786667pt;}
.y1ab{bottom:388.066667pt;}
.ya0{bottom:388.386667pt;}
.y76{bottom:390.786667pt;}
.y216{bottom:393.346667pt;}
.yda{bottom:393.506667pt;}
.y1c0{bottom:396.866667pt;}
.y1ee{bottom:400.066667pt;}
.y141{bottom:401.346667pt;}
.y53{bottom:401.826667pt;}
.y22{bottom:402.146667pt;}
.y9f{bottom:403.746667pt;}
.y110{bottom:405.186667pt;}
.y75{bottom:406.146667pt;}
.y215{bottom:408.706667pt;}
.yd9{bottom:408.866667pt;}
.y1aa{bottom:411.906667pt;}
.y1bf{bottom:412.226667pt;}
.y173{bottom:417.026667pt;}
.y52{bottom:417.186667pt;}
.y21{bottom:417.506667pt;}
.y1ed{bottom:417.826667pt;}
.y13d{bottom:418.146667pt;}
.y9e{bottom:419.106667pt;}
.y74{bottom:421.506667pt;}
.y10f{bottom:421.986667pt;}
.y214{bottom:424.066667pt;}
.yd8{bottom:424.226667pt;}
.y1be{bottom:427.586667pt;}
.y172{bottom:432.386667pt;}
.y51{bottom:432.546667pt;}
.y20{bottom:432.866667pt;}
.y1ec{bottom:433.186667pt;}
.y9d{bottom:434.306667pt;}
.y1a9{bottom:435.746667pt;}
.y73{bottom:436.866667pt;}
.y10b{bottom:438.786667pt;}
.yd7{bottom:439.426667pt;}
.y1bd{bottom:445.346667pt;}
.y171{bottom:447.746667pt;}
.y50{bottom:447.906667pt;}
.y1f{bottom:448.226667pt;}
.y1eb{bottom:448.546667pt;}
.y9c{bottom:449.666667pt;}
.y72{bottom:452.226667pt;}
.yd6{bottom:454.786667pt;}
.y1a8{bottom:459.746667pt;}
.y13c{bottom:460.066667pt;}
.y1bc{bottom:460.706667pt;}
.y170{bottom:463.106667pt;}
.y4f{bottom:463.266667pt;}
.y1e{bottom:463.426667pt;}
.y1ea{bottom:463.906667pt;}
.y9b{bottom:465.026667pt;}
.y71{bottom:467.426667pt;}
.yd5{bottom:470.146667pt;}
.y13b{bottom:475.426667pt;}
.y1bb{bottom:476.066667pt;}
.y10a{bottom:477.506667pt;}
.y4e{bottom:478.466667pt;}
.y1d{bottom:478.786667pt;}
.y9a{bottom:480.386667pt;}
.y1e9{bottom:481.666667pt;}
.y70{bottom:482.786667pt;}
.y1a7{bottom:483.586667pt;}
.yd4{bottom:485.506667pt;}
.y13a{bottom:490.653333pt;}
.y213{bottom:490.813333pt;}
.y1ba{bottom:491.453333pt;}
.y109{bottom:492.893333pt;}
.y4d{bottom:493.853333pt;}
.y1c{bottom:494.173333pt;}
.y99{bottom:495.773333pt;}
.y1e8{bottom:497.053333pt;}
.y6f{bottom:498.173333pt;}
.y1a6{bottom:498.973333pt;}
.yd3{bottom:500.893333pt;}
.y139{bottom:506.013333pt;}
.y212{bottom:506.173333pt;}
.y1b9{bottom:506.813333pt;}
.y108{bottom:508.253333pt;}
.y16f{bottom:509.053333pt;}
.y4c{bottom:509.213333pt;}
.y1b{bottom:509.533333pt;}
.y98{bottom:511.133333pt;}
.y1e7{bottom:512.413333pt;}
.y6e{bottom:513.533333pt;}
.yd2{bottom:516.253333pt;}
.y138{bottom:521.373333pt;}
.y1b8{bottom:522.173333pt;}
.y1a5{bottom:522.813333pt;}
.yff{bottom:523.613333pt;}
.y16e{bottom:524.413333pt;}
.y4b{bottom:524.573333pt;}
.y1a{bottom:524.893333pt;}
.y97{bottom:526.333333pt;}
.y211{bottom:526.973333pt;}
.y107{bottom:527.293333pt;}
.y1e6{bottom:527.773333pt;}
.yd1{bottom:531.453333pt;}
.y137{bottom:536.733333pt;}
.y1a4{bottom:538.173333pt;}
.yfe{bottom:538.973333pt;}
.y16d{bottom:539.773333pt;}
.y4a{bottom:539.933333pt;}
.y19{bottom:540.253333pt;}
.y6d{bottom:542.173333pt;}
.y210{bottom:542.333333pt;}
.y106{bottom:542.653333pt;}
.y1e5{bottom:543.133333pt;}
.yd0{bottom:544.573333pt;}
.y96{bottom:547.293333pt;}
.y136{bottom:552.093333pt;}
.yfd{bottom:554.173333pt;}
.y49{bottom:555.133333pt;}
.y1b7{bottom:555.293333pt;}
.y18{bottom:555.453333pt;}
.y1a3{bottom:557.693333pt;}
.y105{bottom:558.013333pt;}
.y1e4{bottom:560.893333pt;}
.ycf{bottom:562.973333pt;}
.y135{bottom:567.453333pt;}
.yfc{bottom:569.533333pt;}
.y48{bottom:570.493333pt;}
.y17{bottom:570.813333pt;}
.y1a2{bottom:573.053333pt;}
.y104{bottom:573.373333pt;}
.y1e3{bottom:576.253333pt;}
.y95{bottom:576.733333pt;}
.yce{bottom:581.213333pt;}
.y134{bottom:582.653333pt;}
.yfb{bottom:584.893333pt;}
.y16c{bottom:585.693333pt;}
.y47{bottom:585.853333pt;}
.y16{bottom:586.173333pt;}
.y1a1{bottom:588.413333pt;}
.y103{bottom:588.573333pt;}
.y1e2{bottom:591.613333pt;}
.y94{bottom:592.093333pt;}
.y133{bottom:598.013333pt;}
.ycd{bottom:599.453333pt;}
.yfa{bottom:600.253333pt;}
.y16b{bottom:601.053333pt;}
.y46{bottom:601.213333pt;}
.y6c{bottom:601.533333pt;}
.y1a0{bottom:603.773333pt;}
.y102{bottom:603.933333pt;}
.y1e1{bottom:606.813333pt;}
.y93{bottom:607.453333pt;}
.y132{bottom:613.373333pt;}
.y16a{bottom:614.493333pt;}
.yf9{bottom:615.613333pt;}
.y45{bottom:616.573333pt;}
.y15{bottom:616.893333pt;}
.ycb{bottom:617.693333pt;}
.y101{bottom:619.293333pt;}
.y19f{bottom:620.733333pt;}
.y1e0{bottom:622.173333pt;}
.y92{bottom:627.613333pt;}
.y131{bottom:628.733333pt;}
.y169{bottom:631.613333pt;}
.y44{bottom:631.933333pt;}
.y14{bottom:632.093333pt;}
.y100{bottom:634.653333pt;}
.yca{bottom:635.933333pt;}
.y1df{bottom:637.533333pt;}
.y19e{bottom:641.533333pt;}
.y91{bottom:642.973333pt;}
.y130{bottom:644.093333pt;}
.y43{bottom:647.133333pt;}
.y13{bottom:647.453333pt;}
.y168{bottom:648.893333pt;}
.yf8{bottom:650.013333pt;}
.y20f{bottom:652.893333pt;}
.yc9{bottom:654.333333pt;}
.y1de{bottom:655.293333pt;}
.y12f{bottom:659.293333pt;}
.y42{bottom:662.493333pt;}
.y12{bottom:662.813333pt;}
.y90{bottom:662.973333pt;}
.yf7{bottom:663.453333pt;}
.y19d{bottom:664.573333pt;}
.y167{bottom:666.013333pt;}
.y20e{bottom:668.253333pt;}
.y1dd{bottom:670.653333pt;}
.yc7{bottom:672.573333pt;}
.y12e{bottom:674.653333pt;}
.y41{bottom:677.853333pt;}
.y11{bottom:678.173333pt;}
.y8f{bottom:678.333333pt;}
.y19c{bottom:679.933333pt;}
.y166{bottom:683.133333pt;}
.y20d{bottom:683.613333pt;}
.y1dc{bottom:686.013333pt;}
.y12d{bottom:688.093333pt;}
.yc3{bottom:690.973333pt;}
.y40{bottom:693.213333pt;}
.y10{bottom:693.533333pt;}
.y8e{bottom:693.693333pt;}
.yf6{bottom:696.093333pt;}
.y165{bottom:700.253333pt;}
.y1db{bottom:701.373333pt;}
.y19b{bottom:704.893333pt;}
.y12c{bottom:705.213333pt;}
.y3f{bottom:708.573333pt;}
.yf{bottom:708.893333pt;}
.y8d{bottom:709.053333pt;}
.y20c{bottom:716.733333pt;}
.y1da{bottom:719.173333pt;}
.y164{bottom:719.973333pt;}
.y19a{bottom:720.293333pt;}
.y12b{bottom:722.533333pt;}
.y3e{bottom:723.973333pt;}
.ye{bottom:724.133333pt;}
.yc2{bottom:728.293333pt;}
.yf4{bottom:728.933333pt;}
.y8c{bottom:729.573333pt;}
.y20b{bottom:732.133333pt;}
.y1d9{bottom:734.533333pt;}
.y3d{bottom:739.173333pt;}
.yd{bottom:739.493333pt;}
.y12a{bottom:739.653333pt;}
.yc1{bottom:743.653333pt;}
.y8b{bottom:744.933333pt;}
.y199{bottom:745.093333pt;}
.y163{bottom:745.893333pt;}
.y20a{bottom:747.333333pt;}
.y1d8{bottom:749.893333pt;}
.y3c{bottom:754.533333pt;}
.yc{bottom:754.853333pt;}
.y8a{bottom:760.293333pt;}
.y198{bottom:760.453333pt;}
.yf3{bottom:761.573333pt;}
.y209{bottom:762.853333pt;}
.y1d7{bottom:765.253333pt;}
.y3b{bottom:769.893333pt;}
.yb{bottom:770.213333pt;}
.y129{bottom:771.973333pt;}
.yc0{bottom:774.213333pt;}
.y1d6{bottom:780.613333pt;}
.y3a{bottom:785.253333pt;}
.y197{bottom:785.413333pt;}
.ya{bottom:785.573333pt;}
.ybf{bottom:789.573333pt;}
.y89{bottom:790.053333pt;}
.y162{bottom:793.093333pt;}
.yf2{bottom:794.213333pt;}
.y160{bottom:794.533333pt;}
.y208{bottom:795.813333pt;}
.y1d5{bottom:795.973333pt;}
.y39{bottom:800.613333pt;}
.y196{bottom:800.773333pt;}
.y9{bottom:800.933333pt;}
.y128{bottom:804.453333pt;}
.ybe{bottom:804.933333pt;}
.y15f{bottom:809.733333pt;}
.y207{bottom:811.173333pt;}
.y1d4{bottom:813.733333pt;}
.y38{bottom:815.973333pt;}
.y8{bottom:816.133333pt;}
.y161{bottom:819.173333pt;}
.ybd{bottom:820.293333pt;}
.y127{bottom:821.573333pt;}
.y15e{bottom:825.093333pt;}
.y195{bottom:825.733333pt;}
.y206{bottom:826.533333pt;}
.yef{bottom:826.853333pt;}
.y1d3{bottom:829.093333pt;}
.y37{bottom:831.173333pt;}
.y7{bottom:831.493333pt;}
.y126{bottom:838.853333pt;}
.y194{bottom:841.093333pt;}
.y205{bottom:841.893333pt;}
.y1d2{bottom:844.293333pt;}
.ybc{bottom:846.213333pt;}
.y36{bottom:846.533333pt;}
.y6{bottom:846.853333pt;}
.y15d{bottom:853.413333pt;}
.y125{bottom:855.973333pt;}
.y204{bottom:857.253333pt;}
.y1d1{bottom:859.653333pt;}
.ybb{bottom:861.573333pt;}
.y35{bottom:861.893333pt;}
.yee{bottom:862.053333pt;}
.y5{bottom:862.213333pt;}
.y193{bottom:865.893333pt;}
.y15c{bottom:866.533333pt;}
.y124{bottom:873.093333pt;}
.y203{bottom:875.013333pt;}
.y1d0{bottom:875.173333pt;}
.yba{bottom:877.093333pt;}
.y34{bottom:877.253333pt;}
.yed{bottom:877.413333pt;}
.y4{bottom:877.573333pt;}
.y192{bottom:881.253333pt;}
.y15b{bottom:883.333333pt;}
.y202{bottom:890.373333pt;}
.y33{bottom:892.613333pt;}
.yb9{bottom:892.773333pt;}
.y3{bottom:892.933333pt;}
.y159{bottom:900.133333pt;}
.y201{bottom:905.733333pt;}
.y191{bottom:906.213333pt;}
.y6b{bottom:908.133333pt;}
.y158{bottom:919.173333pt;}
.y200{bottom:921.093333pt;}
.y190{bottom:921.573333pt;}
.y2{bottom:923.493333pt;}
.y69{bottom:960.160000pt;}
.y68{bottom:977.920000pt;}
.y67{bottom:995.520000pt;}
.h17{height:15.200000pt;}
.h11{height:15.360000pt;}
.h18{height:15.392000pt;}
.h20{height:16.160000pt;}
.h1f{height:16.320000pt;}
.he{height:16.640000pt;}
.hd{height:16.800000pt;}
.h1c{height:17.600000pt;}
.h1a{height:18.560000pt;}
.h1b{height:19.040000pt;}
.h1d{height:27.520000pt;}
.h12{height:30.560000pt;}
.h14{height:30.720000pt;}
.h15{height:30.752000pt;}
.hc{height:32.832000pt;}
.h16{height:34.400000pt;}
.hf{height:36.800000pt;}
.ha{height:37.090625pt;}
.h19{height:37.600000pt;}
.h10{height:43.215000pt;}
.h7{height:45.795000pt;}
.h5{height:47.109375pt;}
.h1e{height:48.375000pt;}
.h8{height:49.621875pt;}
.h4{height:52.108438pt;}
.h2{height:52.134375pt;}
.h9{height:52.478750pt;}
.h3{height:53.535000pt;}
.h6{height:55.298750pt;}
.h1{height:62.812500pt;}
.h21{height:65.781915pt;}
.hb{height:71.044468pt;}
.h13{height:113.574375pt;}
.h0{height:1056.000000pt;}
.w22{width:30.560000pt;}
.w21{width:37.440000pt;}
.w34{width:40.512000pt;}
.w20{width:43.552000pt;}
.w26{width:47.520000pt;}
.w28{width:48.320000pt;}
.w10{width:49.280000pt;}
.we{width:49.472000pt;}
.w2a{width:49.760000pt;}
.w36{width:50.240000pt;}
.wf{width:52.480000pt;}
.w35{width:54.720000pt;}
.w27{width:54.912000pt;}
.w17{width:57.792000pt;}
.w19{width:58.080000pt;}
.w18{width:60.800000pt;}
.w31{width:64.000000pt;}
.w16{width:66.240000pt;}
.w1d{width:66.272000pt;}
.w38{width:67.552000pt;}
.w39{width:67.680000pt;}
.wc{width:70.240000pt;}
.w1f{width:72.160000pt;}
.w11{width:74.400000pt;}
.w24{width:74.432000pt;}
.w30{width:76.800000pt;}
.w32{width:77.152000pt;}
.w1c{width:78.560000pt;}
.wb{width:78.720000pt;}
.wa{width:78.752000pt;}
.wd{width:78.912000pt;}
.w25{width:79.200000pt;}
.w2{width:80.480000pt;}
.w7{width:81.312000pt;}
.w8{width:82.400000pt;}
.w2f{width:83.360000pt;}
.w14{width:83.680000pt;}
.w1b{width:84.032000pt;}
.w4{width:87.200000pt;}
.w12{width:87.680000pt;}
.w13{width:88.032000pt;}
.w1e{width:89.280000pt;}
.w15{width:90.432000pt;}
.w9{width:92.960000pt;}
.w2b{width:96.000000pt;}
.w2d{width:96.032000pt;}
.w2e{width:103.840000pt;}
.w2c{width:103.872000pt;}
.w23{width:105.952000pt;}
.w3{width:107.392000pt;}
.w33{width:107.520000pt;}
.w6{width:123.872000pt;}
.w1a{width:128.320000pt;}
.w37{width:161.920000pt;}
.w29{width:250.906667pt;}
.w5{width:275.706667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x59{left:1.440000pt;}
.x61{left:2.880000pt;}
.x57{left:4.160000pt;}
.x21{left:5.600000pt;}
.x15{left:6.880000pt;}
.x3d{left:8.640000pt;}
.x4a{left:10.240000pt;}
.x38{left:11.200000pt;}
.x1e{left:12.986667pt;}
.x26{left:14.266667pt;}
.x3e{left:15.360000pt;}
.x2f{left:16.640000pt;}
.x3c{left:18.720000pt;}
.x64{left:19.680000pt;}
.x23{left:20.640000pt;}
.x3b{left:21.600000pt;}
.x19{left:22.720000pt;}
.x28{left:24.986667pt;}
.x1b{left:26.080000pt;}
.x53{left:27.200000pt;}
.x24{left:28.346667pt;}
.x39{left:29.280000pt;}
.x20{left:30.400000pt;}
.x33{left:31.386667pt;}
.x3a{left:32.480000pt;}
.x27{left:33.600000pt;}
.x25{left:35.360000pt;}
.x29{left:37.306667pt;}
.x4c{left:40.480000pt;}
.x4b{left:41.786667pt;}
.x18{left:43.360000pt;}
.x5b{left:44.320000pt;}
.x6c{left:45.594667pt;}
.x1a{left:46.720000pt;}
.x2d{left:48.474667pt;}
.x1c{left:50.080000pt;}
.x5a{left:51.514667pt;}
.x77{left:52.634667pt;}
.x7a{left:55.194667pt;}
.x1d{left:56.480000pt;}
.x5d{left:80.640000pt;}
.x3f{left:85.151988pt;}
.x2c{left:87.712000pt;}
.x76{left:89.632000pt;}
.x2{left:94.591988pt;}
.x74{left:95.711988pt;}
.x7c{left:99.071988pt;}
.x5{left:104.511988pt;}
.x3{left:106.431988pt;}
.xb{left:110.271988pt;}
.x69{left:113.472000pt;}
.x4{left:117.951988pt;}
.x7d{left:123.071988pt;}
.xe{left:126.911988pt;}
.xd{left:142.266655pt;}
.x43{left:162.746667pt;}
.x6a{left:163.866667pt;}
.x6d{left:176.186667pt;}
.x11{left:177.626655pt;}
.x2e{left:181.306667pt;}
.x8{left:187.386655pt;}
.x9{left:197.466655pt;}
.x7{left:211.546655pt;}
.x75{left:213.786655pt;}
.x42{left:216.506655pt;}
.x2b{left:222.266655pt;}
.x6{left:238.906655pt;}
.x4f{left:247.226655pt;}
.x44{left:251.066667pt;}
.x78{left:252.346667pt;}
.x30{left:260.866667pt;}
.xa{left:283.746655pt;}
.x50{left:301.506667pt;}
.x79{left:320.546667pt;}
.x5e{left:336.386667pt;}
.x6e{left:337.826667pt;}
.x31{left:340.226667pt;}
.x2a{left:352.546655pt;}
.x51{left:380.706667pt;}
.x1{left:395.266655pt;}
.x6f{left:402.466667pt;}
.x4e{left:404.546655pt;}
.x41{left:407.106655pt;}
.x32{left:411.106667pt;}
.x5f{left:416.066667pt;}
.x40{left:421.826655pt;}
.x45{left:424.066667pt;}
.xc{left:431.266655pt;}
.x14{left:438.013333pt;}
.x13{left:446.173321pt;}
.x52{left:447.613333pt;}
.x66{left:450.333333pt;}
.x7b{left:455.293321pt;}
.x7e{left:456.253321pt;}
.xf{left:470.493321pt;}
.x4d{left:479.293321pt;}
.x70{left:480.253333pt;}
.x34{left:490.653333pt;}
.x10{left:494.493321pt;}
.x67{left:500.733333pt;}
.x46{left:515.133333pt;}
.x16{left:518.813333pt;}
.x5c{left:520.413321pt;}
.x65{left:534.013321pt;}
.x54{left:537.693333pt;}
.x12{left:551.293321pt;}
.x1f{left:555.773333pt;}
.x60{left:565.533333pt;}
.x35{left:570.173333pt;}
.x47{left:582.013333pt;}
.x71{left:588.413333pt;}
.x68{left:597.373333pt;}
.x55{left:610.493333pt;}
.x62{left:613.373333pt;}
.x36{left:620.453333pt;}
.x17{left:626.533333pt;}
.x72{left:629.733333pt;}
.x22{left:637.733333pt;}
.x48{left:640.453333pt;}
.x56{left:654.693333pt;}
.x63{left:668.613333pt;}
.x37{left:673.733333pt;}
.x73{left:685.093333pt;}
.x58{left:692.773333pt;}
.x6b{left:693.733321pt;}
.x49{left:702.053333pt;}
}




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