
    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_a642f16605d6630601039f41.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_9387f2a4694cfadb91e4a3d1.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_82e060bf9160e734a507576e.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_814aa62676e6e8c55206e437.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_f39f2b74d8da52fc7ed75d46.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_5ad0ec560a26196bbc3bb7f7.woff')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_bd20015eb7b4b1eac91f8258.woff')format("woff");}.ff7{font-family:ff7;line-height:0.691406;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);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.576000px;}
.ls5{letter-spacing:-0.432000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.432000px;}
.ls9{letter-spacing:1.584000px;}
.ls8{letter-spacing:9.504000px;}
.ls6{letter-spacing:23.904000px;}
.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;}
}
.ws4{word-spacing:-20.304000px;}
.ws5{word-spacing:-20.232000px;}
.ws3{word-spacing:-20.016000px;}
.ws6{word-spacing:-19.584000px;}
.ws2{word-spacing:-18.432000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:0.000000px;}
._19{margin-left:-2.089920px;}
._1{margin-left:-1.080000px;}
._0{width:1.162560px;}
._3{width:2.592000px;}
._23{width:3.592800px;}
._b{width:4.608000px;}
._d{width:5.616000px;}
._8{width:6.624000px;}
._9{width:8.197440px;}
._a{width:9.453120px;}
._f{width:11.302080px;}
._e{width:12.744000px;}
._c{width:14.688000px;}
._1b{width:15.696000px;}
._11{width:16.920000px;}
._1d{width:18.049920px;}
._12{width:19.152000px;}
._18{width:20.377440px;}
._2{width:21.456000px;}
._13{width:23.018880px;}
._14{width:24.408000px;}
._15{width:25.776000px;}
._1a{width:27.300000px;}
._24{width:28.322880px;}
._10{width:29.376000px;}
._1e{width:30.436800px;}
._1c{width:31.536000px;}
._6{width:32.544000px;}
._7{width:33.624000px;}
._27{width:34.704000px;}
._22{width:35.784000px;}
._21{width:37.368000px;}
._16{width:39.360000px;}
._17{width:40.488000px;}
._20{width:41.680320px;}
._1f{width:42.696000px;}
._28{width:43.776000px;}
._2b{width:45.000000px;}
._4{width:47.880000px;}
._5{width:48.888000px;}
._2a{width:50.173440px;}
._26{width:51.399360px;}
._25{width:52.632000px;}
._29{width:66.816000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ya2{bottom:118.476000px;}
.y88{bottom:120.636000px;}
.y18a{bottom:120.816000px;}
.y6b{bottom:120.996000px;}
.ycc{bottom:121.176000px;}
.y175{bottom:121.716000px;}
.y16a{bottom:122.436000px;}
.yff{bottom:122.616000px;}
.y13e{bottom:122.976000px;}
.y153{bottom:123.336000px;}
.y121{bottom:124.236000px;}
.y27{bottom:136.836000px;}
.yb7{bottom:139.176000px;}
.y87{bottom:141.336000px;}
.y189{bottom:141.516000px;}
.y6a{bottom:141.696000px;}
.y174{bottom:142.416000px;}
.y4b{bottom:142.776000px;}
.y169{bottom:143.136000px;}
.yfe{bottom:143.316000px;}
.y13d{bottom:143.676000px;}
.y152{bottom:144.036000px;}
.y120{bottom:144.936000px;}
.y26{bottom:157.530000px;}
.ya1{bottom:160.050000px;}
.ycb{bottom:162.930000px;}
.y15a{bottom:163.110000px;}
.y4a{bottom:163.470000px;}
.yfd{bottom:164.010000px;}
.y13c{bottom:164.370000px;}
.y151{bottom:164.730000px;}
.y11f{bottom:165.630000px;}
.y25{bottom:178.230000px;}
.yb6{bottom:180.750000px;}
.y86{bottom:182.910000px;}
.y69{bottom:183.270000px;}
.y49{bottom:184.170000px;}
.yfc{bottom:184.710000px;}
.y150{bottom:185.430000px;}
.y11e{bottom:186.330000px;}
.ya0{bottom:201.810000px;}
.ye1{bottom:203.610000px;}
.y68{bottom:203.970000px;}
.yca{bottom:204.510000px;}
.y48{bottom:204.870000px;}
.yfb{bottom:205.410000px;}
.y165{bottom:205.770000px;}
.y13b{bottom:206.130000px;}
.y11d{bottom:207.210000px;}
.y24{bottom:219.630000px;}
.yb5{bottom:222.510000px;}
.ye0{bottom:224.310000px;}
.y85{bottom:224.670000px;}
.y132{bottom:226.110000px;}
.yfa{bottom:226.290000px;}
.y164{bottom:226.470000px;}
.y13a{bottom:226.830000px;}
.y14f{bottom:227.010000px;}
.y9f{bottom:243.570000px;}
.ydf{bottom:245.010000px;}
.y67{bottom:245.730000px;}
.yc9{bottom:246.270000px;}
.y47{bottom:246.630000px;}
.y168{bottom:246.810000px;}
.y163{bottom:247.170000px;}
.y139{bottom:247.530000px;}
.y14e{bottom:247.710000px;}
.y11c{bottom:248.610000px;}
.y23{bottom:261.210000px;}
.yb4{bottom:264.270000px;}
.y66{bottom:266.430000px;}
.y46{bottom:267.330000px;}
.yf9{bottom:267.870000px;}
.y138{bottom:268.230000px;}
.y14d{bottom:268.410000px;}
.y11b{bottom:269.310000px;}
.y9e{bottom:285.150000px;}
.yde{bottom:286.770000px;}
.y84{bottom:287.130000px;}
.yc8{bottom:288.030000px;}
.y159{bottom:288.210000px;}
.yf8{bottom:288.570000px;}
.y162{bottom:288.930000px;}
.y14c{bottom:289.110000px;}
.y11a{bottom:290.010000px;}
.y22{bottom:303.330000px;}
.yb3{bottom:305.850000px;}
.y188{bottom:308.010000px;}
.y65{bottom:308.190000px;}
.y173{bottom:308.910000px;}
.y45{bottom:309.090000px;}
.yf7{bottom:309.270000px;}
.y131{bottom:309.630000px;}
.y137{bottom:309.810000px;}
.y119{bottom:310.710000px;}
.y9d{bottom:326.910000px;}
.ydd{bottom:328.350000px;}
.y83{bottom:328.710000px;}
.yc7{bottom:329.610000px;}
.y158{bottom:329.970000px;}
.y161{bottom:330.330000px;}
.y136{bottom:330.510000px;}
.y14b{bottom:330.870000px;}
.y118{bottom:331.410000px;}
.y21{bottom:345.135000px;}
.yb2{bottom:347.655000px;}
.y64{bottom:349.815000px;}
.y172{bottom:350.355000px;}
.y44{bottom:350.715000px;}
.yf6{bottom:351.075000px;}
.y130{bottom:351.255000px;}
.y14a{bottom:351.615000px;}
.y117{bottom:352.155000px;}
.y9c{bottom:368.715000px;}
.ydc{bottom:370.155000px;}
.y63{bottom:370.515000px;}
.y82{bottom:370.875000px;}
.y171{bottom:371.055000px;}
.yc6{bottom:371.415000px;}
.yf5{bottom:371.775000px;}
.y12f{bottom:371.955000px;}
.y149{bottom:372.315000px;}
.y116{bottom:372.855000px;}
.y20{bottom:386.715000px;}
.yb1{bottom:389.415000px;}
.y17d{bottom:391.215000px;}
.y170{bottom:391.755000px;}
.yc5{bottom:392.115000px;}
.y43{bottom:392.475000px;}
.y12e{bottom:392.655000px;}
.y148{bottom:393.015000px;}
.y115{bottom:393.555000px;}
.y1f{bottom:407.415000px;}
.y9b{bottom:410.295000px;}
.ydb{bottom:411.915000px;}
.y62{bottom:412.275000px;}
.y81{bottom:412.455000px;}
.yc4{bottom:412.815000px;}
.y167{bottom:413.175000px;}
.yf4{bottom:413.355000px;}
.y147{bottom:413.715000px;}
.y114{bottom:414.255000px;}
.y1e{bottom:428.115000px;}
.yb0{bottom:430.995000px;}
.y17c{bottom:432.795000px;}
.y61{bottom:432.975000px;}
.yc3{bottom:433.515000px;}
.yf3{bottom:434.055000px;}
.y42{bottom:434.235000px;}
.y12d{bottom:434.415000px;}
.y113{bottom:434.955000px;}
.y1d{bottom:448.815000px;}
.y9a{bottom:452.055000px;}
.yda{bottom:453.495000px;}
.y60{bottom:453.675000px;}
.y80{bottom:454.215000px;}
.yf2{bottom:454.755000px;}
.y12c{bottom:455.115000px;}
.y112{bottom:455.655000px;}
.y1c{bottom:469.515000px;}
.yaf{bottom:472.755000px;}
.y5f{bottom:474.375000px;}
.y16f{bottom:475.095000px;}
.y157{bottom:475.455000px;}
.y41{bottom:475.815000px;}
.y111{bottom:476.535000px;}
.y1b{bottom:490.215000px;}
.y99{bottom:493.815000px;}
.y5e{bottom:495.075000px;}
.yd9{bottom:495.255000px;}
.yc2{bottom:495.795000px;}
.y7f{bottom:495.975000px;}
.y182{bottom:496.155000px;}
.yf1{bottom:496.515000px;}
.y146{bottom:496.875000px;}
.y1a{bottom:510.915000px;}
.yae{bottom:514.515000px;}
.y5d{bottom:515.775000px;}
.y17b{bottom:515.955000px;}
.y16e{bottom:516.495000px;}
.yf0{bottom:517.215000px;}
.y12b{bottom:517.395000px;}
.y40{bottom:517.575000px;}
.y110{bottom:518.115000px;}
.y19{bottom:531.615000px;}
.y98{bottom:535.395000px;}
.y5c{bottom:536.475000px;}
.y187{bottom:536.655000px;}
.yd8{bottom:537.015000px;}
.y7e{bottom:537.555000px;}
.yef{bottom:537.915000px;}
.y12a{bottom:538.095000px;}
.y10f{bottom:538.815000px;}
.y18{bottom:552.315000px;}
.yad{bottom:556.095000px;}
.yd7{bottom:557.715000px;}
.y7d{bottom:558.255000px;}
.yee{bottom:558.615000px;}
.y129{bottom:558.795000px;}
.y3f{bottom:559.155000px;}
.y10e{bottom:559.515000px;}
.y17{bottom:573.015000px;}
.y97{bottom:577.155000px;}
.y5b{bottom:578.055000px;}
.y17a{bottom:578.415000px;}
.yc1{bottom:578.955000px;}
.y135{bottom:579.315000px;}
.y128{bottom:579.495000px;}
.y160{bottom:579.675000px;}
.y3e{bottom:579.855000px;}
.y10d{bottom:580.215000px;}
.y16{bottom:593.715000px;}
.yac{bottom:597.855000px;}
.y186{bottom:599.115000px;}
.yd6{bottom:599.295000px;}
.yc0{bottom:599.655000px;}
.y7c{bottom:600.015000px;}
.yed{bottom:600.195000px;}
.y15f{bottom:600.375000px;}
.y3d{bottom:600.555000px;}
.y10c{bottom:600.915000px;}
.y15{bottom:614.445000px;}
.y96{bottom:618.945000px;}
.y5a{bottom:619.845000px;}
.yd5{bottom:620.025000px;}
.ybf{bottom:620.385000px;}
.y7b{bottom:620.745000px;}
.yec{bottom:620.925000px;}
.y3c{bottom:621.285000px;}
.y10b{bottom:621.645000px;}
.y14{bottom:635.145000px;}
.yab{bottom:639.645000px;}
.y59{bottom:640.545000px;}
.yd4{bottom:640.725000px;}
.y7a{bottom:641.445000px;}
.yeb{bottom:641.625000px;}
.y145{bottom:641.985000px;}
.y10a{bottom:642.345000px;}
.y95{bottom:660.525000px;}
.yd3{bottom:661.425000px;}
.ybe{bottom:662.145000px;}
.yea{bottom:662.325000px;}
.y134{bottom:662.685000px;}
.y3b{bottom:663.045000px;}
.y109{bottom:663.225000px;}
.y13{bottom:676.905000px;}
.yaa{bottom:681.225000px;}
.y58{bottom:682.305000px;}
.y179{bottom:682.485000px;}
.y16d{bottom:682.845000px;}
.y156{bottom:683.025000px;}
.y79{bottom:683.205000px;}
.y127{bottom:683.385000px;}
.y3a{bottom:683.745000px;}
.y12{bottom:697.605000px;}
.y94{bottom:702.285000px;}
.y57{bottom:703.005000px;}
.yd2{bottom:703.185000px;}
.y178{bottom:703.545000px;}
.ybd{bottom:703.725000px;}
.y78{bottom:703.905000px;}
.y15e{bottom:704.265000px;}
.y39{bottom:704.445000px;}
.y108{bottom:704.625000px;}
.y11{bottom:718.305000px;}
.ya9{bottom:722.985000px;}
.yd1{bottom:723.885000px;}
.y177{bottom:724.245000px;}
.y16c{bottom:724.425000px;}
.y77{bottom:724.605000px;}
.ye9{bottom:724.785000px;}
.y15d{bottom:724.965000px;}
.y38{bottom:725.145000px;}
.y107{bottom:725.325000px;}
.y10{bottom:739.005000px;}
.y93{bottom:744.045000px;}
.y56{bottom:744.585000px;}
.y16b{bottom:745.125000px;}
.y76{bottom:745.305000px;}
.ybc{bottom:745.485000px;}
.y133{bottom:745.845000px;}
.y106{bottom:746.025000px;}
.yf{bottom:759.705000px;}
.ya8{bottom:764.745000px;}
.y55{bottom:765.285000px;}
.y185{bottom:765.645000px;}
.y176{bottom:765.825000px;}
.y75{bottom:766.005000px;}
.ybb{bottom:766.185000px;}
.y144{bottom:766.545000px;}
.y105{bottom:766.725000px;}
.y37{bottom:766.905000px;}
.ye{bottom:780.405000px;}
.y92{bottom:785.625000px;}
.y54{bottom:785.985000px;}
.y184{bottom:786.345000px;}
.y181{bottom:786.525000px;}
.y74{bottom:786.705000px;}
.yba{bottom:786.885000px;}
.y143{bottom:787.245000px;}
.y104{bottom:787.425000px;}
.y36{bottom:787.605000px;}
.yd{bottom:801.105000px;}
.ya7{bottom:806.325000px;}
.y53{bottom:806.685000px;}
.y183{bottom:807.045000px;}
.y180{bottom:807.225000px;}
.yb9{bottom:807.585000px;}
.y142{bottom:807.945000px;}
.y103{bottom:808.125000px;}
.y35{bottom:808.305000px;}
.yc{bottom:821.805000px;}
.y91{bottom:827.385000px;}
.yd0{bottom:827.745000px;}
.y17f{bottom:827.925000px;}
.y73{bottom:828.285000px;}
.y126{bottom:828.825000px;}
.y102{bottom:829.005000px;}
.yb{bottom:842.505000px;}
.ya6{bottom:848.085000px;}
.y52{bottom:848.445000px;}
.y17e{bottom:848.625000px;}
.y72{bottom:848.985000px;}
.ye8{bottom:849.165000px;}
.y155{bottom:849.345000px;}
.y125{bottom:849.525000px;}
.y34{bottom:849.885000px;}
.ya{bottom:863.205000px;}
.y90{bottom:869.145000px;}
.y71{bottom:869.730000px;}
.y154{bottom:870.090000px;}
.y124{bottom:870.270000px;}
.y33{bottom:870.630000px;}
.y9{bottom:883.950000px;}
.ya5{bottom:889.890000px;}
.y51{bottom:890.250000px;}
.yb8{bottom:890.430000px;}
.ye7{bottom:890.790000px;}
.y141{bottom:890.970000px;}
.y123{bottom:891.150000px;}
.y32{bottom:891.330000px;}
.y8{bottom:904.650000px;}
.y8f{bottom:910.770000px;}
.y70{bottom:911.130000px;}
.ye6{bottom:911.490000px;}
.y140{bottom:911.670000px;}
.y31{bottom:912.030000px;}
.y7{bottom:925.350000px;}
.y18b{bottom:928.230000px;}
.ya4{bottom:931.470000px;}
.y50{bottom:931.830000px;}
.ye5{bottom:932.190000px;}
.y13f{bottom:932.370000px;}
.y15c{bottom:932.550000px;}
.y30{bottom:932.730000px;}
.y6{bottom:946.050000px;}
.y8e{bottom:952.530000px;}
.y6f{bottom:952.890000px;}
.y166{bottom:953.070000px;}
.y2f{bottom:953.430000px;}
.y5{bottom:966.750000px;}
.ya3{bottom:973.230000px;}
.y4f{bottom:973.590000px;}
.ye4{bottom:973.770000px;}
.y101{bottom:974.130000px;}
.y8d{bottom:994.290000px;}
.ye3{bottom:994.470000px;}
.y6e{bottom:994.830000px;}
.y2e{bottom:995.190000px;}
.y4{bottom:1007.970000px;}
.y8c{bottom:1014.990000px;}
.ye2{bottom:1015.170000px;}
.y4e{bottom:1015.350000px;}
.y6d{bottom:1015.530000px;}
.y100{bottom:1015.710000px;}
.y2d{bottom:1015.890000px;}
.ycf{bottom:1035.870000px;}
.y6c{bottom:1036.230000px;}
.y122{bottom:1036.410000px;}
.y2c{bottom:1036.590000px;}
.y3{bottom:1050.090000px;}
.y8b{bottom:1056.570000px;}
.y4d{bottom:1056.930000px;}
.y2b{bottom:1057.290000px;}
.yce{bottom:1077.630000px;}
.y2a{bottom:1077.990000px;}
.y2{bottom:1091.850000px;}
.y8a{bottom:1098.330000px;}
.y4c{bottom:1098.690000px;}
.ycd{bottom:1119.390000px;}
.y15b{bottom:1119.570000px;}
.y29{bottom:1119.750000px;}
.y1{bottom:1135.080000px;}
.y89{bottom:1140.120000px;}
.y28{bottom:1140.480000px;}
.h6{height:45.184219px;}
.h3{height:70.664062px;}
.h4{height:72.562500px;}
.h5{height:75.093750px;}
.h2{height:93.983203px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:127.656000px;}
.x1{left:146.196000px;}
.x3{left:274.395000px;}
.x2{left:294.015000px;}
.x5{left:465.405000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.512000pt;}
.ls5{letter-spacing:-0.384000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.384000pt;}
.ls9{letter-spacing:1.408000pt;}
.ls8{letter-spacing:8.448000pt;}
.ls6{letter-spacing:21.248000pt;}
.ws4{word-spacing:-18.048000pt;}
.ws5{word-spacing:-17.984000pt;}
.ws3{word-spacing:-17.792000pt;}
.ws6{word-spacing:-17.408000pt;}
.ws2{word-spacing:-16.384000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:0.000000pt;}
._19{margin-left:-1.857707pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.033387pt;}
._3{width:2.304000pt;}
._23{width:3.193600pt;}
._b{width:4.096000pt;}
._d{width:4.992000pt;}
._8{width:5.888000pt;}
._9{width:7.286613pt;}
._a{width:8.402773pt;}
._f{width:10.046293pt;}
._e{width:11.328000pt;}
._c{width:13.056000pt;}
._1b{width:13.952000pt;}
._11{width:15.040000pt;}
._1d{width:16.044373pt;}
._12{width:17.024000pt;}
._18{width:18.113280pt;}
._2{width:19.072000pt;}
._13{width:20.461227pt;}
._14{width:21.696000pt;}
._15{width:22.912000pt;}
._1a{width:24.266667pt;}
._24{width:25.175893pt;}
._10{width:26.112000pt;}
._1e{width:27.054933pt;}
._1c{width:28.032000pt;}
._6{width:28.928000pt;}
._7{width:29.888000pt;}
._27{width:30.848000pt;}
._22{width:31.808000pt;}
._21{width:33.216000pt;}
._16{width:34.986667pt;}
._17{width:35.989333pt;}
._20{width:37.049173pt;}
._1f{width:37.952000pt;}
._28{width:38.912000pt;}
._2b{width:40.000000pt;}
._4{width:42.560000pt;}
._5{width:43.456000pt;}
._2a{width:44.598613pt;}
._26{width:45.688320pt;}
._25{width:46.784000pt;}
._29{width:59.392000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ya2{bottom:105.312000pt;}
.y88{bottom:107.232000pt;}
.y18a{bottom:107.392000pt;}
.y6b{bottom:107.552000pt;}
.ycc{bottom:107.712000pt;}
.y175{bottom:108.192000pt;}
.y16a{bottom:108.832000pt;}
.yff{bottom:108.992000pt;}
.y13e{bottom:109.312000pt;}
.y153{bottom:109.632000pt;}
.y121{bottom:110.432000pt;}
.y27{bottom:121.632000pt;}
.yb7{bottom:123.712000pt;}
.y87{bottom:125.632000pt;}
.y189{bottom:125.792000pt;}
.y6a{bottom:125.952000pt;}
.y174{bottom:126.592000pt;}
.y4b{bottom:126.912000pt;}
.y169{bottom:127.232000pt;}
.yfe{bottom:127.392000pt;}
.y13d{bottom:127.712000pt;}
.y152{bottom:128.032000pt;}
.y120{bottom:128.832000pt;}
.y26{bottom:140.026667pt;}
.ya1{bottom:142.266667pt;}
.ycb{bottom:144.826667pt;}
.y15a{bottom:144.986667pt;}
.y4a{bottom:145.306667pt;}
.yfd{bottom:145.786667pt;}
.y13c{bottom:146.106667pt;}
.y151{bottom:146.426667pt;}
.y11f{bottom:147.226667pt;}
.y25{bottom:158.426667pt;}
.yb6{bottom:160.666667pt;}
.y86{bottom:162.586667pt;}
.y69{bottom:162.906667pt;}
.y49{bottom:163.706667pt;}
.yfc{bottom:164.186667pt;}
.y150{bottom:164.826667pt;}
.y11e{bottom:165.626667pt;}
.ya0{bottom:179.386667pt;}
.ye1{bottom:180.986667pt;}
.y68{bottom:181.306667pt;}
.yca{bottom:181.786667pt;}
.y48{bottom:182.106667pt;}
.yfb{bottom:182.586667pt;}
.y165{bottom:182.906667pt;}
.y13b{bottom:183.226667pt;}
.y11d{bottom:184.186667pt;}
.y24{bottom:195.226667pt;}
.yb5{bottom:197.786667pt;}
.ye0{bottom:199.386667pt;}
.y85{bottom:199.706667pt;}
.y132{bottom:200.986667pt;}
.yfa{bottom:201.146667pt;}
.y164{bottom:201.306667pt;}
.y13a{bottom:201.626667pt;}
.y14f{bottom:201.786667pt;}
.y9f{bottom:216.506667pt;}
.ydf{bottom:217.786667pt;}
.y67{bottom:218.426667pt;}
.yc9{bottom:218.906667pt;}
.y47{bottom:219.226667pt;}
.y168{bottom:219.386667pt;}
.y163{bottom:219.706667pt;}
.y139{bottom:220.026667pt;}
.y14e{bottom:220.186667pt;}
.y11c{bottom:220.986667pt;}
.y23{bottom:232.186667pt;}
.yb4{bottom:234.906667pt;}
.y66{bottom:236.826667pt;}
.y46{bottom:237.626667pt;}
.yf9{bottom:238.106667pt;}
.y138{bottom:238.426667pt;}
.y14d{bottom:238.586667pt;}
.y11b{bottom:239.386667pt;}
.y9e{bottom:253.466667pt;}
.yde{bottom:254.906667pt;}
.y84{bottom:255.226667pt;}
.yc8{bottom:256.026667pt;}
.y159{bottom:256.186667pt;}
.yf8{bottom:256.506667pt;}
.y162{bottom:256.826667pt;}
.y14c{bottom:256.986667pt;}
.y11a{bottom:257.786667pt;}
.y22{bottom:269.626667pt;}
.yb3{bottom:271.866667pt;}
.y188{bottom:273.786667pt;}
.y65{bottom:273.946667pt;}
.y173{bottom:274.586667pt;}
.y45{bottom:274.746667pt;}
.yf7{bottom:274.906667pt;}
.y131{bottom:275.226667pt;}
.y137{bottom:275.386667pt;}
.y119{bottom:276.186667pt;}
.y9d{bottom:290.586667pt;}
.ydd{bottom:291.866667pt;}
.y83{bottom:292.186667pt;}
.yc7{bottom:292.986667pt;}
.y158{bottom:293.306667pt;}
.y161{bottom:293.626667pt;}
.y136{bottom:293.786667pt;}
.y14b{bottom:294.106667pt;}
.y118{bottom:294.586667pt;}
.y21{bottom:306.786667pt;}
.yb2{bottom:309.026667pt;}
.y64{bottom:310.946667pt;}
.y172{bottom:311.426667pt;}
.y44{bottom:311.746667pt;}
.yf6{bottom:312.066667pt;}
.y130{bottom:312.226667pt;}
.y14a{bottom:312.546667pt;}
.y117{bottom:313.026667pt;}
.y9c{bottom:327.746667pt;}
.ydc{bottom:329.026667pt;}
.y63{bottom:329.346667pt;}
.y82{bottom:329.666667pt;}
.y171{bottom:329.826667pt;}
.yc6{bottom:330.146667pt;}
.yf5{bottom:330.466667pt;}
.y12f{bottom:330.626667pt;}
.y149{bottom:330.946667pt;}
.y116{bottom:331.426667pt;}
.y20{bottom:343.746667pt;}
.yb1{bottom:346.146667pt;}
.y17d{bottom:347.746667pt;}
.y170{bottom:348.226667pt;}
.yc5{bottom:348.546667pt;}
.y43{bottom:348.866667pt;}
.y12e{bottom:349.026667pt;}
.y148{bottom:349.346667pt;}
.y115{bottom:349.826667pt;}
.y1f{bottom:362.146667pt;}
.y9b{bottom:364.706667pt;}
.ydb{bottom:366.146667pt;}
.y62{bottom:366.466667pt;}
.y81{bottom:366.626667pt;}
.yc4{bottom:366.946667pt;}
.y167{bottom:367.266667pt;}
.yf4{bottom:367.426667pt;}
.y147{bottom:367.746667pt;}
.y114{bottom:368.226667pt;}
.y1e{bottom:380.546667pt;}
.yb0{bottom:383.106667pt;}
.y17c{bottom:384.706667pt;}
.y61{bottom:384.866667pt;}
.yc3{bottom:385.346667pt;}
.yf3{bottom:385.826667pt;}
.y42{bottom:385.986667pt;}
.y12d{bottom:386.146667pt;}
.y113{bottom:386.626667pt;}
.y1d{bottom:398.946667pt;}
.y9a{bottom:401.826667pt;}
.yda{bottom:403.106667pt;}
.y60{bottom:403.266667pt;}
.y80{bottom:403.746667pt;}
.yf2{bottom:404.226667pt;}
.y12c{bottom:404.546667pt;}
.y112{bottom:405.026667pt;}
.y1c{bottom:417.346667pt;}
.yaf{bottom:420.226667pt;}
.y5f{bottom:421.666667pt;}
.y16f{bottom:422.306667pt;}
.y157{bottom:422.626667pt;}
.y41{bottom:422.946667pt;}
.y111{bottom:423.586667pt;}
.y1b{bottom:435.746667pt;}
.y99{bottom:438.946667pt;}
.y5e{bottom:440.066667pt;}
.yd9{bottom:440.226667pt;}
.yc2{bottom:440.706667pt;}
.y7f{bottom:440.866667pt;}
.y182{bottom:441.026667pt;}
.yf1{bottom:441.346667pt;}
.y146{bottom:441.666667pt;}
.y1a{bottom:454.146667pt;}
.yae{bottom:457.346667pt;}
.y5d{bottom:458.466667pt;}
.y17b{bottom:458.626667pt;}
.y16e{bottom:459.106667pt;}
.yf0{bottom:459.746667pt;}
.y12b{bottom:459.906667pt;}
.y40{bottom:460.066667pt;}
.y110{bottom:460.546667pt;}
.y19{bottom:472.546667pt;}
.y98{bottom:475.906667pt;}
.y5c{bottom:476.866667pt;}
.y187{bottom:477.026667pt;}
.yd8{bottom:477.346667pt;}
.y7e{bottom:477.826667pt;}
.yef{bottom:478.146667pt;}
.y12a{bottom:478.306667pt;}
.y10f{bottom:478.946667pt;}
.y18{bottom:490.946667pt;}
.yad{bottom:494.306667pt;}
.yd7{bottom:495.746667pt;}
.y7d{bottom:496.226667pt;}
.yee{bottom:496.546667pt;}
.y129{bottom:496.706667pt;}
.y3f{bottom:497.026667pt;}
.y10e{bottom:497.346667pt;}
.y17{bottom:509.346667pt;}
.y97{bottom:513.026667pt;}
.y5b{bottom:513.826667pt;}
.y17a{bottom:514.146667pt;}
.yc1{bottom:514.626667pt;}
.y135{bottom:514.946667pt;}
.y128{bottom:515.106667pt;}
.y160{bottom:515.266667pt;}
.y3e{bottom:515.426667pt;}
.y10d{bottom:515.746667pt;}
.y16{bottom:527.746667pt;}
.yac{bottom:531.426667pt;}
.y186{bottom:532.546667pt;}
.yd6{bottom:532.706667pt;}
.yc0{bottom:533.026667pt;}
.y7c{bottom:533.346667pt;}
.yed{bottom:533.506667pt;}
.y15f{bottom:533.666667pt;}
.y3d{bottom:533.826667pt;}
.y10c{bottom:534.146667pt;}
.y15{bottom:546.173333pt;}
.y96{bottom:550.173333pt;}
.y5a{bottom:550.973333pt;}
.yd5{bottom:551.133333pt;}
.ybf{bottom:551.453333pt;}
.y7b{bottom:551.773333pt;}
.yec{bottom:551.933333pt;}
.y3c{bottom:552.253333pt;}
.y10b{bottom:552.573333pt;}
.y14{bottom:564.573333pt;}
.yab{bottom:568.573333pt;}
.y59{bottom:569.373333pt;}
.yd4{bottom:569.533333pt;}
.y7a{bottom:570.173333pt;}
.yeb{bottom:570.333333pt;}
.y145{bottom:570.653333pt;}
.y10a{bottom:570.973333pt;}
.y95{bottom:587.133333pt;}
.yd3{bottom:587.933333pt;}
.ybe{bottom:588.573333pt;}
.yea{bottom:588.733333pt;}
.y134{bottom:589.053333pt;}
.y3b{bottom:589.373333pt;}
.y109{bottom:589.533333pt;}
.y13{bottom:601.693333pt;}
.yaa{bottom:605.533333pt;}
.y58{bottom:606.493333pt;}
.y179{bottom:606.653333pt;}
.y16d{bottom:606.973333pt;}
.y156{bottom:607.133333pt;}
.y79{bottom:607.293333pt;}
.y127{bottom:607.453333pt;}
.y3a{bottom:607.773333pt;}
.y12{bottom:620.093333pt;}
.y94{bottom:624.253333pt;}
.y57{bottom:624.893333pt;}
.yd2{bottom:625.053333pt;}
.y178{bottom:625.373333pt;}
.ybd{bottom:625.533333pt;}
.y78{bottom:625.693333pt;}
.y15e{bottom:626.013333pt;}
.y39{bottom:626.173333pt;}
.y108{bottom:626.333333pt;}
.y11{bottom:638.493333pt;}
.ya9{bottom:642.653333pt;}
.yd1{bottom:643.453333pt;}
.y177{bottom:643.773333pt;}
.y16c{bottom:643.933333pt;}
.y77{bottom:644.093333pt;}
.ye9{bottom:644.253333pt;}
.y15d{bottom:644.413333pt;}
.y38{bottom:644.573333pt;}
.y107{bottom:644.733333pt;}
.y10{bottom:656.893333pt;}
.y93{bottom:661.373333pt;}
.y56{bottom:661.853333pt;}
.y16b{bottom:662.333333pt;}
.y76{bottom:662.493333pt;}
.ybc{bottom:662.653333pt;}
.y133{bottom:662.973333pt;}
.y106{bottom:663.133333pt;}
.yf{bottom:675.293333pt;}
.ya8{bottom:679.773333pt;}
.y55{bottom:680.253333pt;}
.y185{bottom:680.573333pt;}
.y176{bottom:680.733333pt;}
.y75{bottom:680.893333pt;}
.ybb{bottom:681.053333pt;}
.y144{bottom:681.373333pt;}
.y105{bottom:681.533333pt;}
.y37{bottom:681.693333pt;}
.ye{bottom:693.693333pt;}
.y92{bottom:698.333333pt;}
.y54{bottom:698.653333pt;}
.y184{bottom:698.973333pt;}
.y181{bottom:699.133333pt;}
.y74{bottom:699.293333pt;}
.yba{bottom:699.453333pt;}
.y143{bottom:699.773333pt;}
.y104{bottom:699.933333pt;}
.y36{bottom:700.093333pt;}
.yd{bottom:712.093333pt;}
.ya7{bottom:716.733333pt;}
.y53{bottom:717.053333pt;}
.y183{bottom:717.373333pt;}
.y180{bottom:717.533333pt;}
.yb9{bottom:717.853333pt;}
.y142{bottom:718.173333pt;}
.y103{bottom:718.333333pt;}
.y35{bottom:718.493333pt;}
.yc{bottom:730.493333pt;}
.y91{bottom:735.453333pt;}
.yd0{bottom:735.773333pt;}
.y17f{bottom:735.933333pt;}
.y73{bottom:736.253333pt;}
.y126{bottom:736.733333pt;}
.y102{bottom:736.893333pt;}
.yb{bottom:748.893333pt;}
.ya6{bottom:753.853333pt;}
.y52{bottom:754.173333pt;}
.y17e{bottom:754.333333pt;}
.y72{bottom:754.653333pt;}
.ye8{bottom:754.813333pt;}
.y155{bottom:754.973333pt;}
.y125{bottom:755.133333pt;}
.y34{bottom:755.453333pt;}
.ya{bottom:767.293333pt;}
.y90{bottom:772.573333pt;}
.y71{bottom:773.093333pt;}
.y154{bottom:773.413333pt;}
.y124{bottom:773.573333pt;}
.y33{bottom:773.893333pt;}
.y9{bottom:785.733333pt;}
.ya5{bottom:791.013333pt;}
.y51{bottom:791.333333pt;}
.yb8{bottom:791.493333pt;}
.ye7{bottom:791.813333pt;}
.y141{bottom:791.973333pt;}
.y123{bottom:792.133333pt;}
.y32{bottom:792.293333pt;}
.y8{bottom:804.133333pt;}
.y8f{bottom:809.573333pt;}
.y70{bottom:809.893333pt;}
.ye6{bottom:810.213333pt;}
.y140{bottom:810.373333pt;}
.y31{bottom:810.693333pt;}
.y7{bottom:822.533333pt;}
.y18b{bottom:825.093333pt;}
.ya4{bottom:827.973333pt;}
.y50{bottom:828.293333pt;}
.ye5{bottom:828.613333pt;}
.y13f{bottom:828.773333pt;}
.y15c{bottom:828.933333pt;}
.y30{bottom:829.093333pt;}
.y6{bottom:840.933333pt;}
.y8e{bottom:846.693333pt;}
.y6f{bottom:847.013333pt;}
.y166{bottom:847.173333pt;}
.y2f{bottom:847.493333pt;}
.y5{bottom:859.333333pt;}
.ya3{bottom:865.093333pt;}
.y4f{bottom:865.413333pt;}
.ye4{bottom:865.573333pt;}
.y101{bottom:865.893333pt;}
.y8d{bottom:883.813333pt;}
.ye3{bottom:883.973333pt;}
.y6e{bottom:884.293333pt;}
.y2e{bottom:884.613333pt;}
.y4{bottom:895.973333pt;}
.y8c{bottom:902.213333pt;}
.ye2{bottom:902.373333pt;}
.y4e{bottom:902.533333pt;}
.y6d{bottom:902.693333pt;}
.y100{bottom:902.853333pt;}
.y2d{bottom:903.013333pt;}
.ycf{bottom:920.773333pt;}
.y6c{bottom:921.093333pt;}
.y122{bottom:921.253333pt;}
.y2c{bottom:921.413333pt;}
.y3{bottom:933.413333pt;}
.y8b{bottom:939.173333pt;}
.y4d{bottom:939.493333pt;}
.y2b{bottom:939.813333pt;}
.yce{bottom:957.893333pt;}
.y2a{bottom:958.213333pt;}
.y2{bottom:970.533333pt;}
.y8a{bottom:976.293333pt;}
.y4c{bottom:976.613333pt;}
.ycd{bottom:995.013333pt;}
.y15b{bottom:995.173333pt;}
.y29{bottom:995.333333pt;}
.y1{bottom:1008.960000pt;}
.y89{bottom:1013.440000pt;}
.y28{bottom:1013.760000pt;}
.h6{height:40.163750pt;}
.h3{height:62.812500pt;}
.h4{height:64.500000pt;}
.h5{height:66.750000pt;}
.h2{height:83.540625pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:113.472000pt;}
.x1{left:129.952000pt;}
.x3{left:243.906667pt;}
.x2{left:261.346667pt;}
.x5{left:413.693333pt;}
}

