
    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_4fc28f938a2b450ee2c95d2c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.776855;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_a5f14adde8ade14d9eef4894.woff')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_c07359b87b960cd2e1b40643.woff')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_476550d673f94febf589fb0e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_a701b3152ec61b6598803e47.woff')format("woff");}.ff5{font-family:ff5;line-height:1.105469;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_d49b4fa43df643b1b013627f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_7653a4114b2cf984b4f54910.woff')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_e466c12b5624798287883bd7.woff')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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);}
.v2{vertical-align:-24.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls23{letter-spacing:-0.804000px;}
.ls15{letter-spacing:-0.654000px;}
.lsd{letter-spacing:-0.516000px;}
.ls21{letter-spacing:-0.492000px;}
.lsc{letter-spacing:-0.468000px;}
.ls1d{letter-spacing:-0.348000px;}
.ls1f{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.006000px;}
.ls18{letter-spacing:0.012000px;}
.ls17{letter-spacing:0.018000px;}
.ls1{letter-spacing:0.024000px;}
.ls22{letter-spacing:0.120000px;}
.ls16{letter-spacing:0.174000px;}
.ls2{letter-spacing:0.204000px;}
.ls19{letter-spacing:0.288000px;}
.ls1a{letter-spacing:0.348000px;}
.ls0{letter-spacing:0.384000px;}
.ls8{letter-spacing:0.408000px;}
.ls6{letter-spacing:0.432000px;}
.ls20{letter-spacing:0.462000px;}
.ls10{letter-spacing:0.480000px;}
.ls4{letter-spacing:0.492000px;}
.lsb{letter-spacing:0.516000px;}
.ls1c{letter-spacing:0.522000px;}
.lsa{letter-spacing:0.552000px;}
.ls14{letter-spacing:0.666000px;}
.ls24{letter-spacing:0.804000px;}
.lsf{letter-spacing:0.984000px;}
.ls13{letter-spacing:1.032000px;}
.ls5{letter-spacing:1.500000px;}
.ls12{letter-spacing:1.524000px;}
.ls9{letter-spacing:1.824000px;}
.ls7{letter-spacing:1.884000px;}
.ls11{letter-spacing:3.000000px;}
.lse{letter-spacing:7.500000px;}
.ls1e{letter-spacing:13.500000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-27.000000px;}
.wsb{word-spacing:-19.524000px;}
.wsc{word-spacing:-19.032000px;}
.wsa{word-spacing:-18.984000px;}
.ws7{word-spacing:-18.492000px;}
.ws8{word-spacing:-18.024000px;}
.ws2{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.532000px;}
.ws6{word-spacing:-17.484000px;}
.ws16{word-spacing:-17.304000px;}
.ws10{word-spacing:-17.022000px;}
.ws17{word-spacing:-16.848000px;}
.wsf{word-spacing:-16.500000px;}
.ws9{word-spacing:-15.480000px;}
.ws4{word-spacing:-15.168000px;}
.ws3{word-spacing:-15.024000px;}
.wsd{word-spacing:-14.250000px;}
.wse{word-spacing:-13.596000px;}
.ws11{word-spacing:-13.518000px;}
.ws12{word-spacing:-13.512000px;}
.ws14{word-spacing:-13.506000px;}
.ws15{word-spacing:-13.482000px;}
.ws13{word-spacing:-10.500000px;}
.ws1{word-spacing:0.000000px;}
._11{margin-left:-12.642000px;}
._12{margin-left:-9.990000px;}
._13{margin-left:-8.898000px;}
._c{margin-left:-4.968000px;}
._8{margin-left:-3.426000px;}
._5{margin-left:-2.418000px;}
._0{margin-left:-1.344000px;}
._1{width:1.932000px;}
._6{width:2.946000px;}
._10{width:4.164000px;}
._15{width:5.244000px;}
._3{width:7.176000px;}
._7{width:8.490000px;}
._b{width:10.458000px;}
._16{width:11.544000px;}
._d{width:13.296000px;}
._e{width:14.442000px;}
._f{width:15.516000px;}
._17{width:16.686000px;}
._2c{width:17.754000px;}
._4{width:19.344000px;}
._1b{width:20.352000px;}
._1c{width:22.008000px;}
._9{width:23.832000px;}
._a{width:25.266000px;}
._1d{width:26.928000px;}
._1e{width:28.536000px;}
._24{width:29.652000px;}
._29{width:30.738000px;}
._1f{width:32.742000px;}
._2b{width:34.152000px;}
._23{width:35.382000px;}
._18{width:36.846000px;}
._1a{width:37.962000px;}
._19{width:39.876000px;}
._36{width:41.028000px;}
._3c{width:42.096000px;}
._33{width:43.938000px;}
._32{width:45.276000px;}
._2a{width:49.482000px;}
._27{width:54.546000px;}
._26{width:55.650000px;}
._25{width:57.642000px;}
._21{width:59.094000px;}
._20{width:60.588000px;}
._38{width:67.584000px;}
._3a{width:73.062000px;}
._39{width:74.118000px;}
._2e{width:75.564000px;}
._22{width:77.286000px;}
._2d{width:78.486000px;}
._3e{width:92.208000px;}
._3f{width:94.656000px;}
._28{width:95.832000px;}
._37{width:111.738000px;}
._47{width:126.696000px;}
._46{width:127.704000px;}
._48{width:128.784000px;}
._4c{width:137.712000px;}
._4b{width:139.104000px;}
._41{width:142.248000px;}
._40{width:144.264000px;}
._4a{width:150.888000px;}
._49{width:151.920000px;}
._30{width:161.502000px;}
._3b{width:186.642000px;}
._35{width:204.606000px;}
._31{width:210.606000px;}
._34{width:224.322000px;}
._4e{width:240.564000px;}
._4d{width:241.824000px;}
._2f{width:268.002000px;}
._42{width:362.952000px;}
._43{width:364.224000px;}
._2{width:837.450000px;}
._14{width:846.450000px;}
._45{width:865.872000px;}
._44{width:868.356000px;}
._3d{width:926.856000px;}
._4f{width:2109.312000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs6{font-size:39.000000px;}
.fsa{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yb0{bottom:3.750000px;}
.y117{bottom:3.795000px;}
.y21{bottom:5.625000px;}
.y1f{bottom:19.170000px;}
.yde{bottom:22.500000px;}
.yda{bottom:22.875000px;}
.y116{bottom:22.920000px;}
.yb8{bottom:24.375000px;}
.ydd{bottom:41.625000px;}
.yd9{bottom:41.670000px;}
.y115{bottom:42.045000px;}
.yb7{bottom:45.000000px;}
.y1e{bottom:55.170000px;}
.y24{bottom:58.912500px;}
.ydc{bottom:60.750000px;}
.ye6{bottom:60.780000px;}
.yd8{bottom:60.795000px;}
.y10c{bottom:64.170000px;}
.yb6{bottom:65.625000px;}
.yf7{bottom:79.500000px;}
.ye5{bottom:79.530000px;}
.y23{bottom:79.537500px;}
.y112{bottom:79.875000px;}
.yd7{bottom:79.905000px;}
.y114{bottom:79.920000px;}
.y10b{bottom:82.920000px;}
.yb5{bottom:86.280000px;}
.y1d{bottom:91.170000px;}
.y111{bottom:98.625000px;}
.ye4{bottom:98.655000px;}
.yd6{bottom:98.670000px;}
.yb4{bottom:107.280000px;}
.ya7{bottom:111.037500px;}
.y78{bottom:113.287500px;}
.ye1{bottom:116.287500px;}
.ye3{bottom:117.405000px;}
.y110{bottom:117.780000px;}
.yd5{bottom:117.795000px;}
.y105{bottom:119.662500px;}
.y147{bottom:122.662500px;}
.y10f{bottom:123.780000px;}
.y42{bottom:124.537500px;}
.y1c{bottom:127.545000px;}
.yb3{bottom:127.905000px;}
.ya6{bottom:128.287500px;}
.yc9{bottom:129.037500px;}
.y118{bottom:130.162500px;}
.yae{bottom:133.537500px;}
.yc8{bottom:134.287500px;}
.yf6{bottom:136.530000px;}
.yd4{bottom:136.545000px;}
.y11a{bottom:136.950000px;}
.y113{bottom:136.965000px;}
.y96{bottom:138.412500px;}
.y77{bottom:144.412500px;}
.ya5{bottom:145.537500px;}
.yad{bottom:147.412500px;}
.yb2{bottom:148.530000px;}
.yc7{bottom:148.537500px;}
.ya4{bottom:150.795000px;}
.y146{bottom:153.420000px;}
.yf5{bottom:155.280000px;}
.y10e{bottom:155.655000px;}
.yd3{bottom:155.700000px;}
.y41{bottom:160.545000px;}
.ya3{bottom:162.795000px;}
.yab{bottom:164.670000px;}
.ye0{bottom:168.045000px;}
.y95{bottom:169.155000px;}
.y108{bottom:173.280000px;}
.yf4{bottom:174.405000px;}
.yd2{bottom:174.825000px;}
.y76{bottom:175.200000px;}
.ya2{bottom:180.075000px;}
.y104{bottom:181.575000px;}
.ydf{bottom:181.950000px;}
.y145{bottom:184.575000px;}
.ya1{bottom:185.325000px;}
.yf3{bottom:193.530000px;}
.yd1{bottom:193.575000px;}
.ya0{bottom:197.325000px;}
.ya9{bottom:199.200000px;}
.y94{bottom:200.325000px;}
.ydb{bottom:202.200000px;}
.y130{bottom:202.575000px;}
.y40{bottom:203.700000px;}
.yc6{bottom:205.200000px;}
.y75{bottom:206.325000px;}
.yf2{bottom:212.280000px;}
.yd0{bottom:212.700000px;}
.y9f{bottom:214.575000px;}
.y144{bottom:215.700000px;}
.y12f{bottom:216.450000px;}
.y9e{bottom:219.825000px;}
.yf1{bottom:231.435000px;}
.y93{bottom:231.450000px;}
.y9d{bottom:231.825000px;}
.y3f{bottom:234.450000px;}
.yc5{bottom:236.325000px;}
.y74{bottom:237.450000px;}
.y103{bottom:243.825000px;}
.y143{bottom:246.825000px;}
.y9c{bottom:249.075000px;}
.yf0{bottom:250.185000px;}
.ycf{bottom:250.575000px;}
.y9b{bottom:254.325000px;}
.y92{bottom:265.575000px;}
.yc4{bottom:267.450000px;}
.y9a{bottom:268.200000px;}
.y73{bottom:268.575000px;}
.yef{bottom:269.325000px;}
.yce{bottom:269.700000px;}
.y102{bottom:274.950000px;}
.y3e{bottom:277.575000px;}
.y142{bottom:277.950000px;}
.ycd{bottom:278.700000px;}
.yee{bottom:288.435000px;}
.y91{bottom:296.700000px;}
.yc3{bottom:298.200000px;}
.y72{bottom:299.700000px;}
.y99{bottom:305.745000px;}
.y101{bottom:306.120000px;}
.y12e{bottom:306.870000px;}
.yed{bottom:307.185000px;}
.y141{bottom:308.745000px;}
.y3d{bottom:320.730000px;}
.y10d{bottom:325.995000px;}
.yec{bottom:326.310000px;}
.y90{bottom:327.480000px;}
.yc2{bottom:329.370000px;}
.y71{bottom:330.495000px;}
.ya8{bottom:336.495000px;}
.y100{bottom:336.870000px;}
.y12d{bottom:337.605000px;}
.y140{bottom:339.870000px;}
.yeb{bottom:345.105000px;}
.y19{bottom:358.605000px;}
.yc1{bottom:360.495000px;}
.y70{bottom:361.605000px;}
.y3c{bottom:363.870000px;}
.yea{bottom:364.230000px;}
.yff{bottom:367.980000px;}
.y12b{bottom:368.730000px;}
.y13f{bottom:370.995000px;}
.y12c{bottom:374.730000px;}
.y18{bottom:379.245000px;}
.ye9{bottom:383.355000px;}
.y8f{bottom:389.745000px;}
.ybf{bottom:391.605000px;}
.y6f{bottom:392.745000px;}
.yc0{bottom:397.620000px;}
.yfe{bottom:399.120000px;}
.y17{bottom:399.870000px;}
.ye8{bottom:402.105000px;}
.y13e{bottom:402.120000px;}
.y57{bottom:404.370000px;}
.y3b{bottom:406.995000px;}
.y109{bottom:407.415000px;}
.y16{bottom:420.495000px;}
.y8e{bottom:420.870000px;}
.ybe{bottom:422.745000px;}
.y6e{bottom:423.870000px;}
.yfd{bottom:430.245000px;}
.y12a{bottom:430.995000px;}
.y13d{bottom:433.275000px;}
.y3a{bottom:437.775000px;}
.y15{bottom:442.650000px;}
.y56{bottom:444.900000px;}
.y8d{bottom:452.025000px;}
.ybd{bottom:453.525000px;}
.y6d{bottom:455.025000px;}
.yfc{bottom:461.400000px;}
.y129{bottom:462.150000px;}
.y13c{bottom:464.025000px;}
.y14{bottom:465.525000px;}
.y39{bottom:468.900000px;}
.y8c{bottom:482.775000px;}
.ybc{bottom:484.650000px;}
.y55{bottom:485.400000px;}
.y6c{bottom:485.775000px;}
.yfb{bottom:492.150000px;}
.y128{bottom:492.900000px;}
.y13b{bottom:495.150000px;}
.y13{bottom:496.275000px;}
.y10a{bottom:497.775000px;}
.y38{bottom:500.025000px;}
.y8b{bottom:513.900000px;}
.ybb{bottom:515.775000px;}
.y6b{bottom:516.900000px;}
.yfa{bottom:523.275000px;}
.y127{bottom:524.025000px;}
.y54{bottom:525.900000px;}
.y13a{bottom:526.275000px;}
.y12{bottom:527.400000px;}
.y37{bottom:531.150000px;}
.y8a{bottom:545.025000px;}
.yba{bottom:546.900000px;}
.y6a{bottom:548.025000px;}
.yf9{bottom:554.400000px;}
.y126{bottom:555.150000px;}
.y139{bottom:557.400000px;}
.y11{bottom:558.525000px;}
.y53{bottom:558.900000px;}
.y1b{bottom:559.275000px;}
.y36{bottom:562.320000px;}
.ycc{bottom:564.195000px;}
.y89{bottom:576.195000px;}
.yb9{bottom:578.070000px;}
.y69{bottom:579.195000px;}
.yf8{bottom:585.570000px;}
.y125{bottom:586.320000px;}
.y138{bottom:588.195000px;}
.y10{bottom:588.945000px;}
.y52{bottom:591.945000px;}
.y35{bottom:593.070000px;}
.y107{bottom:596.820000px;}
.ye7{bottom:603.195000px;}
.y88{bottom:607.320000px;}
.y68{bottom:610.320000px;}
.yf{bottom:610.695000px;}
.yb1{bottom:613.695000px;}
.y124{bottom:617.445000px;}
.y137{bottom:619.320000px;}
.y34{bottom:624.195000px;}
.y51{bottom:624.945000px;}
.ye{bottom:632.070000px;}
.y136{bottom:636.945000px;}
.y87{bottom:638.070000px;}
.y67{bottom:641.070000px;}
.yaa{bottom:647.070000px;}
.y123{bottom:648.195000px;}
.y106{bottom:654.570000px;}
.y33{bottom:655.320000px;}
.yd{bottom:656.445000px;}
.y50{bottom:657.945000px;}
.y86{bottom:669.195000px;}
.y66{bottom:672.195000px;}
.y135{bottom:674.820000px;}
.y122{bottom:679.320000px;}
.yc{bottom:680.445000px;}
.y32{bottom:686.445000px;}
.y4f{bottom:690.975000px;}
.y85{bottom:700.350000px;}
.y65{bottom:703.350000px;}
.yb{bottom:704.850000px;}
.y121{bottom:710.475000px;}
.y134{bottom:712.350000px;}
.y4e{bottom:723.975000px;}
.ya{bottom:728.850000px;}
.y31{bottom:729.225000px;}
.y84{bottom:731.475000px;}
.y64{bottom:734.475000px;}
.y120{bottom:741.600000px;}
.y133{bottom:750.225000px;}
.y9{bottom:752.850000px;}
.y4d{bottom:757.350000px;}
.y83{bottom:762.225000px;}
.y63{bottom:765.225000px;}
.y98{bottom:771.225000px;}
.y30{bottom:772.350000px;}
.y8{bottom:777.225000px;}
.yaf{bottom:779.850000px;}
.y4c{bottom:781.350000px;}
.y132{bottom:788.100000px;}
.y82{bottom:793.350000px;}
.y62{bottom:796.350000px;}
.y7{bottom:801.975000px;}
.y11f{bottom:803.475000px;}
.y2f{bottom:815.475000px;}
.y4b{bottom:821.895000px;}
.y6{bottom:823.770000px;}
.y81{bottom:824.505000px;}
.y131{bottom:825.630000px;}
.y61{bottom:827.505000px;}
.y11e{bottom:834.630000px;}
.y2e{bottom:846.630000px;}
.y80{bottom:855.645000px;}
.y60{bottom:858.630000px;}
.y4a{bottom:862.395000px;}
.ycb{bottom:864.630000px;}
.y11d{bottom:865.770000px;}
.y2d{bottom:877.755000px;}
.y7f{bottom:886.755000px;}
.y5f{bottom:889.755000px;}
.y49{bottom:895.380000px;}
.y11c{bottom:896.880000px;}
.y2c{bottom:908.505000px;}
.y7e{bottom:917.505000px;}
.y5e{bottom:920.505000px;}
.y11b{bottom:927.630000px;}
.y48{bottom:928.380000px;}
.y2b{bottom:939.630000px;}
.y119{bottom:945.255000px;}
.y7d{bottom:948.675000px;}
.y5d{bottom:951.675000px;}
.y97{bottom:957.675000px;}
.y47{bottom:961.425000px;}
.y2a{bottom:970.800000px;}
.y7c{bottom:979.800000px;}
.y5c{bottom:982.800000px;}
.yca{bottom:988.800000px;}
.y46{bottom:994.425000px;}
.y29{bottom:1001.925000px;}
.y7b{bottom:1010.925000px;}
.y5b{bottom:1013.925000px;}
.ye2{bottom:1021.425000px;}
.y28{bottom:1033.050000px;}
.y45{bottom:1034.925000px;}
.y7a{bottom:1042.050000px;}
.y5a{bottom:1045.050000px;}
.y5{bottom:1054.425000px;}
.y27{bottom:1063.800000px;}
.y44{bottom:1066.050000px;}
.y79{bottom:1072.800000px;}
.y59{bottom:1075.830000px;}
.y4{bottom:1076.205000px;}
.y26{bottom:1094.955000px;}
.y3{bottom:1098.330000px;}
.y43{bottom:1102.080000px;}
.y58{bottom:1106.955000px;}
.y2{bottom:1120.455000px;}
.y1a{bottom:1129.830000px;}
.y25{bottom:1138.080000px;}
.y1{bottom:1140.330000px;}
.yac{bottom:1144.080000px;}
.y22{bottom:1169.580000px;}
.y20{bottom:1186.455000px;}
.h1a{height:18.750000px;}
.h11{height:19.125000px;}
.he{height:20.625000px;}
.h9{height:22.537500px;}
.h10{height:31.201172px;}
.hc{height:34.962891px;}
.h23{height:36.787500px;}
.h24{height:37.110000px;}
.h22{height:37.125000px;}
.h1f{height:37.652344px;}
.h1{height:41.317383px;}
.hb{height:43.031250px;}
.hd{height:53.789062px;}
.h15{height:54.398438px;}
.h1b{height:57.000000px;}
.h12{height:59.167969px;}
.h8{height:59.343750px;}
.h14{height:61.652344px;}
.h2{height:62.402344px;}
.h19{height:62.824219px;}
.ha{height:63.949219px;}
.h6{height:64.546875px;}
.h3{height:75.304688px;}
.h16{height:75.750000px;}
.h4{height:95.923828px;}
.h5{height:96.820312px;}
.h1d{height:98.287500px;}
.h17{height:132.787500px;}
.h7{height:144.450000px;}
.h20{height:151.950000px;}
.hf{height:165.405000px;}
.h1e{height:171.030000px;}
.h21{height:208.950000px;}
.h13{height:284.745000px;}
.h18{height:417.465000px;}
.h1c{height:422.775000px;}
.h0{height:1263.000000px;}
.wf{width:106.537500px;}
.w12{width:137.287500px;}
.w13{width:154.950000px;}
.we{width:171.825000px;}
.wd{width:184.200000px;}
.wa{width:206.325000px;}
.w10{width:214.605000px;}
.w9{width:217.245000px;}
.w5{width:225.450000px;}
.w4{width:225.495000px;}
.wb{width:244.245000px;}
.wc{width:321.900000px;}
.w8{width:337.275000px;}
.w7{width:337.650000px;}
.w11{width:381.930000px;}
.w3{width:515.475000px;}
.w6{width:892.874973px;}
.w2{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2c{left:7.875000px;}
.x11{left:13.875000px;}
.x45{left:17.610000px;}
.x12{left:30.750000px;}
.x43{left:36.750000px;}
.x3e{left:58.905000px;}
.x34{left:61.162500px;}
.x38{left:63.030000px;}
.x36{left:71.670000px;}
.x3b{left:83.662500px;}
.x1{left:108.037487px;}
.x33{left:111.787500px;}
.x9{left:113.287487px;}
.x39{left:117.787487px;}
.x16{left:124.537487px;}
.x2b{left:134.700000px;}
.x2a{left:139.207500px;}
.x17{left:144.074987px;}
.x10{left:149.325000px;}
.x41{left:156.082500px;}
.xa{left:161.699987px;}
.x6{left:178.574987px;}
.xb{left:216.074987px;}
.x22{left:224.744973px;}
.x14{left:226.230000px;}
.x23{left:230.744987px;}
.x19{left:260.744973px;}
.x31{left:262.994973px;}
.x1a{left:266.744987px;}
.xf{left:269.370000px;}
.x32{left:274.994987px;}
.xe{left:283.619987px;}
.x46{left:290.369987px;}
.x5{left:309.899987px;}
.x7{left:317.774987px;}
.x20{left:324.149987px;}
.x35{left:329.775000px;}
.xd{left:332.774987px;}
.x1f{left:339.524987px;}
.x21{left:354.899987px;}
.x8{left:360.899987px;}
.x18{left:362.024987px;}
.x47{left:366.899987px;}
.x3f{left:383.774973px;}
.x27{left:391.649987px;}
.x40{left:395.819987px;}
.x3c{left:431.445000px;}
.xc{left:443.069987px;}
.x3{left:444.569987px;}
.x2{left:446.444987px;}
.x1b{left:474.944973px;}
.x1c{left:480.944987px;}
.x42{left:491.475000px;}
.x25{left:515.474973px;}
.x26{left:521.474987px;}
.x2f{left:523.724973px;}
.x30{left:529.724987px;}
.x37{left:536.850000px;}
.x28{left:554.099973px;}
.x2d{left:555.599973px;}
.x13{left:558.975000px;}
.x29{left:560.099987px;}
.x2e{left:561.599987px;}
.x4{left:566.099987px;}
.x3d{left:616.395000px;}
.x44{left:629.520000px;}
.x3a{left:647.519987px;}
.x1d{left:739.424973px;}
.x1e{left:745.424987px;}
.x24{left:767.219987px;}
.x15{left:776.204987px;}
@media print{
.v2{vertical-align:-21.333333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls23{letter-spacing:-0.714667pt;}
.ls15{letter-spacing:-0.581333pt;}
.lsd{letter-spacing:-0.458667pt;}
.ls21{letter-spacing:-0.437333pt;}
.lsc{letter-spacing:-0.416000pt;}
.ls1d{letter-spacing:-0.309333pt;}
.ls1f{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.005333pt;}
.ls18{letter-spacing:0.010667pt;}
.ls17{letter-spacing:0.016000pt;}
.ls1{letter-spacing:0.021333pt;}
.ls22{letter-spacing:0.106667pt;}
.ls16{letter-spacing:0.154667pt;}
.ls2{letter-spacing:0.181333pt;}
.ls19{letter-spacing:0.256000pt;}
.ls1a{letter-spacing:0.309333pt;}
.ls0{letter-spacing:0.341333pt;}
.ls8{letter-spacing:0.362667pt;}
.ls6{letter-spacing:0.384000pt;}
.ls20{letter-spacing:0.410667pt;}
.ls10{letter-spacing:0.426667pt;}
.ls4{letter-spacing:0.437333pt;}
.lsb{letter-spacing:0.458667pt;}
.ls1c{letter-spacing:0.464000pt;}
.lsa{letter-spacing:0.490667pt;}
.ls14{letter-spacing:0.592000pt;}
.ls24{letter-spacing:0.714667pt;}
.lsf{letter-spacing:0.874667pt;}
.ls13{letter-spacing:0.917333pt;}
.ls5{letter-spacing:1.333333pt;}
.ls12{letter-spacing:1.354667pt;}
.ls9{letter-spacing:1.621333pt;}
.ls7{letter-spacing:1.674667pt;}
.ls11{letter-spacing:2.666667pt;}
.lse{letter-spacing:6.666667pt;}
.ls1e{letter-spacing:12.000000pt;}
.ws0{word-spacing:-24.000000pt;}
.wsb{word-spacing:-17.354667pt;}
.wsc{word-spacing:-16.917333pt;}
.wsa{word-spacing:-16.874667pt;}
.ws7{word-spacing:-16.437333pt;}
.ws8{word-spacing:-16.021333pt;}
.ws2{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.584000pt;}
.ws6{word-spacing:-15.541333pt;}
.ws16{word-spacing:-15.381333pt;}
.ws10{word-spacing:-15.130667pt;}
.ws17{word-spacing:-14.976000pt;}
.wsf{word-spacing:-14.666667pt;}
.ws9{word-spacing:-13.760000pt;}
.ws4{word-spacing:-13.482667pt;}
.ws3{word-spacing:-13.354667pt;}
.wsd{word-spacing:-12.666667pt;}
.wse{word-spacing:-12.085333pt;}
.ws11{word-spacing:-12.016000pt;}
.ws12{word-spacing:-12.010667pt;}
.ws14{word-spacing:-12.005333pt;}
.ws15{word-spacing:-11.984000pt;}
.ws13{word-spacing:-9.333333pt;}
.ws1{word-spacing:0.000000pt;}
._11{margin-left:-11.237333pt;}
._12{margin-left:-8.880000pt;}
._13{margin-left:-7.909333pt;}
._c{margin-left:-4.416000pt;}
._8{margin-left:-3.045333pt;}
._5{margin-left:-2.149333pt;}
._0{margin-left:-1.194667pt;}
._1{width:1.717333pt;}
._6{width:2.618667pt;}
._10{width:3.701333pt;}
._15{width:4.661333pt;}
._3{width:6.378667pt;}
._7{width:7.546667pt;}
._b{width:9.296000pt;}
._16{width:10.261333pt;}
._d{width:11.818667pt;}
._e{width:12.837333pt;}
._f{width:13.792000pt;}
._17{width:14.832000pt;}
._2c{width:15.781333pt;}
._4{width:17.194667pt;}
._1b{width:18.090667pt;}
._1c{width:19.562667pt;}
._9{width:21.184000pt;}
._a{width:22.458667pt;}
._1d{width:23.936000pt;}
._1e{width:25.365333pt;}
._24{width:26.357333pt;}
._29{width:27.322667pt;}
._1f{width:29.104000pt;}
._2b{width:30.357333pt;}
._23{width:31.450667pt;}
._18{width:32.752000pt;}
._1a{width:33.744000pt;}
._19{width:35.445333pt;}
._36{width:36.469333pt;}
._3c{width:37.418667pt;}
._33{width:39.056000pt;}
._32{width:40.245333pt;}
._2a{width:43.984000pt;}
._27{width:48.485333pt;}
._26{width:49.466667pt;}
._25{width:51.237333pt;}
._21{width:52.528000pt;}
._20{width:53.856000pt;}
._38{width:60.074667pt;}
._3a{width:64.944000pt;}
._39{width:65.882667pt;}
._2e{width:67.168000pt;}
._22{width:68.698667pt;}
._2d{width:69.765333pt;}
._3e{width:81.962667pt;}
._3f{width:84.138667pt;}
._28{width:85.184000pt;}
._37{width:99.322667pt;}
._47{width:112.618667pt;}
._46{width:113.514667pt;}
._48{width:114.474667pt;}
._4c{width:122.410667pt;}
._4b{width:123.648000pt;}
._41{width:126.442667pt;}
._40{width:128.234667pt;}
._4a{width:134.122667pt;}
._49{width:135.040000pt;}
._30{width:143.557333pt;}
._3b{width:165.904000pt;}
._35{width:181.872000pt;}
._31{width:187.205333pt;}
._34{width:199.397333pt;}
._4e{width:213.834667pt;}
._4d{width:214.954667pt;}
._2f{width:238.224000pt;}
._42{width:322.624000pt;}
._43{width:323.754667pt;}
._2{width:744.400000pt;}
._14{width:752.400000pt;}
._45{width:769.664000pt;}
._44{width:771.872000pt;}
._3d{width:823.872000pt;}
._4f{width:1874.944000pt;}
.fs9{font-size:32.000000pt;}
.fs6{font-size:34.666667pt;}
.fsa{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yb0{bottom:3.333333pt;}
.y117{bottom:3.373333pt;}
.y21{bottom:5.000000pt;}
.y1f{bottom:17.040000pt;}
.yde{bottom:20.000000pt;}
.yda{bottom:20.333333pt;}
.y116{bottom:20.373333pt;}
.yb8{bottom:21.666667pt;}
.ydd{bottom:37.000000pt;}
.yd9{bottom:37.040000pt;}
.y115{bottom:37.373333pt;}
.yb7{bottom:40.000000pt;}
.y1e{bottom:49.040000pt;}
.y24{bottom:52.366667pt;}
.ydc{bottom:54.000000pt;}
.ye6{bottom:54.026667pt;}
.yd8{bottom:54.040000pt;}
.y10c{bottom:57.040000pt;}
.yb6{bottom:58.333333pt;}
.yf7{bottom:70.666667pt;}
.ye5{bottom:70.693333pt;}
.y23{bottom:70.700000pt;}
.y112{bottom:71.000000pt;}
.yd7{bottom:71.026667pt;}
.y114{bottom:71.040000pt;}
.y10b{bottom:73.706667pt;}
.yb5{bottom:76.693333pt;}
.y1d{bottom:81.040000pt;}
.y111{bottom:87.666667pt;}
.ye4{bottom:87.693333pt;}
.yd6{bottom:87.706667pt;}
.yb4{bottom:95.360000pt;}
.ya7{bottom:98.700000pt;}
.y78{bottom:100.700000pt;}
.ye1{bottom:103.366667pt;}
.ye3{bottom:104.360000pt;}
.y110{bottom:104.693333pt;}
.yd5{bottom:104.706667pt;}
.y105{bottom:106.366667pt;}
.y147{bottom:109.033333pt;}
.y10f{bottom:110.026667pt;}
.y42{bottom:110.700000pt;}
.y1c{bottom:113.373333pt;}
.yb3{bottom:113.693333pt;}
.ya6{bottom:114.033333pt;}
.yc9{bottom:114.700000pt;}
.y118{bottom:115.700000pt;}
.yae{bottom:118.700000pt;}
.yc8{bottom:119.366667pt;}
.yf6{bottom:121.360000pt;}
.yd4{bottom:121.373333pt;}
.y11a{bottom:121.733333pt;}
.y113{bottom:121.746667pt;}
.y96{bottom:123.033333pt;}
.y77{bottom:128.366667pt;}
.ya5{bottom:129.366667pt;}
.yad{bottom:131.033333pt;}
.yb2{bottom:132.026667pt;}
.yc7{bottom:132.033333pt;}
.ya4{bottom:134.040000pt;}
.y146{bottom:136.373333pt;}
.yf5{bottom:138.026667pt;}
.y10e{bottom:138.360000pt;}
.yd3{bottom:138.400000pt;}
.y41{bottom:142.706667pt;}
.ya3{bottom:144.706667pt;}
.yab{bottom:146.373333pt;}
.ye0{bottom:149.373333pt;}
.y95{bottom:150.360000pt;}
.y108{bottom:154.026667pt;}
.yf4{bottom:155.026667pt;}
.yd2{bottom:155.400000pt;}
.y76{bottom:155.733333pt;}
.ya2{bottom:160.066667pt;}
.y104{bottom:161.400000pt;}
.ydf{bottom:161.733333pt;}
.y145{bottom:164.066667pt;}
.ya1{bottom:164.733333pt;}
.yf3{bottom:172.026667pt;}
.yd1{bottom:172.066667pt;}
.ya0{bottom:175.400000pt;}
.ya9{bottom:177.066667pt;}
.y94{bottom:178.066667pt;}
.ydb{bottom:179.733333pt;}
.y130{bottom:180.066667pt;}
.y40{bottom:181.066667pt;}
.yc6{bottom:182.400000pt;}
.y75{bottom:183.400000pt;}
.yf2{bottom:188.693333pt;}
.yd0{bottom:189.066667pt;}
.y9f{bottom:190.733333pt;}
.y144{bottom:191.733333pt;}
.y12f{bottom:192.400000pt;}
.y9e{bottom:195.400000pt;}
.yf1{bottom:205.720000pt;}
.y93{bottom:205.733333pt;}
.y9d{bottom:206.066667pt;}
.y3f{bottom:208.400000pt;}
.yc5{bottom:210.066667pt;}
.y74{bottom:211.066667pt;}
.y103{bottom:216.733333pt;}
.y143{bottom:219.400000pt;}
.y9c{bottom:221.400000pt;}
.yf0{bottom:222.386667pt;}
.ycf{bottom:222.733333pt;}
.y9b{bottom:226.066667pt;}
.y92{bottom:236.066667pt;}
.yc4{bottom:237.733333pt;}
.y9a{bottom:238.400000pt;}
.y73{bottom:238.733333pt;}
.yef{bottom:239.400000pt;}
.yce{bottom:239.733333pt;}
.y102{bottom:244.400000pt;}
.y3e{bottom:246.733333pt;}
.y142{bottom:247.066667pt;}
.ycd{bottom:247.733333pt;}
.yee{bottom:256.386667pt;}
.y91{bottom:263.733333pt;}
.yc3{bottom:265.066667pt;}
.y72{bottom:266.400000pt;}
.y99{bottom:271.773333pt;}
.y101{bottom:272.106667pt;}
.y12e{bottom:272.773333pt;}
.yed{bottom:273.053333pt;}
.y141{bottom:274.440000pt;}
.y3d{bottom:285.093333pt;}
.y10d{bottom:289.773333pt;}
.yec{bottom:290.053333pt;}
.y90{bottom:291.093333pt;}
.yc2{bottom:292.773333pt;}
.y71{bottom:293.773333pt;}
.ya8{bottom:299.106667pt;}
.y100{bottom:299.440000pt;}
.y12d{bottom:300.093333pt;}
.y140{bottom:302.106667pt;}
.yeb{bottom:306.760000pt;}
.y19{bottom:318.760000pt;}
.yc1{bottom:320.440000pt;}
.y70{bottom:321.426667pt;}
.y3c{bottom:323.440000pt;}
.yea{bottom:323.760000pt;}
.yff{bottom:327.093333pt;}
.y12b{bottom:327.760000pt;}
.y13f{bottom:329.773333pt;}
.y12c{bottom:333.093333pt;}
.y18{bottom:337.106667pt;}
.ye9{bottom:340.760000pt;}
.y8f{bottom:346.440000pt;}
.ybf{bottom:348.093333pt;}
.y6f{bottom:349.106667pt;}
.yc0{bottom:353.440000pt;}
.yfe{bottom:354.773333pt;}
.y17{bottom:355.440000pt;}
.ye8{bottom:357.426667pt;}
.y13e{bottom:357.440000pt;}
.y57{bottom:359.440000pt;}
.y3b{bottom:361.773333pt;}
.y109{bottom:362.146667pt;}
.y16{bottom:373.773333pt;}
.y8e{bottom:374.106667pt;}
.ybe{bottom:375.773333pt;}
.y6e{bottom:376.773333pt;}
.yfd{bottom:382.440000pt;}
.y12a{bottom:383.106667pt;}
.y13d{bottom:385.133333pt;}
.y3a{bottom:389.133333pt;}
.y15{bottom:393.466667pt;}
.y56{bottom:395.466667pt;}
.y8d{bottom:401.800000pt;}
.ybd{bottom:403.133333pt;}
.y6d{bottom:404.466667pt;}
.yfc{bottom:410.133333pt;}
.y129{bottom:410.800000pt;}
.y13c{bottom:412.466667pt;}
.y14{bottom:413.800000pt;}
.y39{bottom:416.800000pt;}
.y8c{bottom:429.133333pt;}
.ybc{bottom:430.800000pt;}
.y55{bottom:431.466667pt;}
.y6c{bottom:431.800000pt;}
.yfb{bottom:437.466667pt;}
.y128{bottom:438.133333pt;}
.y13b{bottom:440.133333pt;}
.y13{bottom:441.133333pt;}
.y10a{bottom:442.466667pt;}
.y38{bottom:444.466667pt;}
.y8b{bottom:456.800000pt;}
.ybb{bottom:458.466667pt;}
.y6b{bottom:459.466667pt;}
.yfa{bottom:465.133333pt;}
.y127{bottom:465.800000pt;}
.y54{bottom:467.466667pt;}
.y13a{bottom:467.800000pt;}
.y12{bottom:468.800000pt;}
.y37{bottom:472.133333pt;}
.y8a{bottom:484.466667pt;}
.yba{bottom:486.133333pt;}
.y6a{bottom:487.133333pt;}
.yf9{bottom:492.800000pt;}
.y126{bottom:493.466667pt;}
.y139{bottom:495.466667pt;}
.y11{bottom:496.466667pt;}
.y53{bottom:496.800000pt;}
.y1b{bottom:497.133333pt;}
.y36{bottom:499.840000pt;}
.ycc{bottom:501.506667pt;}
.y89{bottom:512.173333pt;}
.yb9{bottom:513.840000pt;}
.y69{bottom:514.840000pt;}
.yf8{bottom:520.506667pt;}
.y125{bottom:521.173333pt;}
.y138{bottom:522.840000pt;}
.y10{bottom:523.506667pt;}
.y52{bottom:526.173333pt;}
.y35{bottom:527.173333pt;}
.y107{bottom:530.506667pt;}
.ye7{bottom:536.173333pt;}
.y88{bottom:539.840000pt;}
.y68{bottom:542.506667pt;}
.yf{bottom:542.840000pt;}
.yb1{bottom:545.506667pt;}
.y124{bottom:548.840000pt;}
.y137{bottom:550.506667pt;}
.y34{bottom:554.840000pt;}
.y51{bottom:555.506667pt;}
.ye{bottom:561.840000pt;}
.y136{bottom:566.173333pt;}
.y87{bottom:567.173333pt;}
.y67{bottom:569.840000pt;}
.yaa{bottom:575.173333pt;}
.y123{bottom:576.173333pt;}
.y106{bottom:581.840000pt;}
.y33{bottom:582.506667pt;}
.yd{bottom:583.506667pt;}
.y50{bottom:584.840000pt;}
.y86{bottom:594.840000pt;}
.y66{bottom:597.506667pt;}
.y135{bottom:599.840000pt;}
.y122{bottom:603.840000pt;}
.yc{bottom:604.840000pt;}
.y32{bottom:610.173333pt;}
.y4f{bottom:614.200000pt;}
.y85{bottom:622.533333pt;}
.y65{bottom:625.200000pt;}
.yb{bottom:626.533333pt;}
.y121{bottom:631.533333pt;}
.y134{bottom:633.200000pt;}
.y4e{bottom:643.533333pt;}
.ya{bottom:647.866667pt;}
.y31{bottom:648.200000pt;}
.y84{bottom:650.200000pt;}
.y64{bottom:652.866667pt;}
.y120{bottom:659.200000pt;}
.y133{bottom:666.866667pt;}
.y9{bottom:669.200000pt;}
.y4d{bottom:673.200000pt;}
.y83{bottom:677.533333pt;}
.y63{bottom:680.200000pt;}
.y98{bottom:685.533333pt;}
.y30{bottom:686.533333pt;}
.y8{bottom:690.866667pt;}
.yaf{bottom:693.200000pt;}
.y4c{bottom:694.533333pt;}
.y132{bottom:700.533333pt;}
.y82{bottom:705.200000pt;}
.y62{bottom:707.866667pt;}
.y7{bottom:712.866667pt;}
.y11f{bottom:714.200000pt;}
.y2f{bottom:724.866667pt;}
.y4b{bottom:730.573333pt;}
.y6{bottom:732.240000pt;}
.y81{bottom:732.893333pt;}
.y131{bottom:733.893333pt;}
.y61{bottom:735.560000pt;}
.y11e{bottom:741.893333pt;}
.y2e{bottom:752.560000pt;}
.y80{bottom:760.573333pt;}
.y60{bottom:763.226667pt;}
.y4a{bottom:766.573333pt;}
.ycb{bottom:768.560000pt;}
.y11d{bottom:769.573333pt;}
.y2d{bottom:780.226667pt;}
.y7f{bottom:788.226667pt;}
.y5f{bottom:790.893333pt;}
.y49{bottom:795.893333pt;}
.y11c{bottom:797.226667pt;}
.y2c{bottom:807.560000pt;}
.y7e{bottom:815.560000pt;}
.y5e{bottom:818.226667pt;}
.y11b{bottom:824.560000pt;}
.y48{bottom:825.226667pt;}
.y2b{bottom:835.226667pt;}
.y119{bottom:840.226667pt;}
.y7d{bottom:843.266667pt;}
.y5d{bottom:845.933333pt;}
.y97{bottom:851.266667pt;}
.y47{bottom:854.600000pt;}
.y2a{bottom:862.933333pt;}
.y7c{bottom:870.933333pt;}
.y5c{bottom:873.600000pt;}
.yca{bottom:878.933333pt;}
.y46{bottom:883.933333pt;}
.y29{bottom:890.600000pt;}
.y7b{bottom:898.600000pt;}
.y5b{bottom:901.266667pt;}
.ye2{bottom:907.933333pt;}
.y28{bottom:918.266667pt;}
.y45{bottom:919.933333pt;}
.y7a{bottom:926.266667pt;}
.y5a{bottom:928.933333pt;}
.y5{bottom:937.266667pt;}
.y27{bottom:945.600000pt;}
.y44{bottom:947.600000pt;}
.y79{bottom:953.600000pt;}
.y59{bottom:956.293333pt;}
.y4{bottom:956.626667pt;}
.y26{bottom:973.293333pt;}
.y3{bottom:976.293333pt;}
.y43{bottom:979.626667pt;}
.y58{bottom:983.960000pt;}
.y2{bottom:995.960000pt;}
.y1a{bottom:1004.293333pt;}
.y25{bottom:1011.626667pt;}
.y1{bottom:1013.626667pt;}
.yac{bottom:1016.960000pt;}
.y22{bottom:1039.626667pt;}
.y20{bottom:1054.626667pt;}
.h1a{height:16.666667pt;}
.h11{height:17.000000pt;}
.he{height:18.333333pt;}
.h9{height:20.033333pt;}
.h10{height:27.734375pt;}
.hc{height:31.078125pt;}
.h23{height:32.700000pt;}
.h24{height:32.986667pt;}
.h22{height:33.000000pt;}
.h1f{height:33.468750pt;}
.h1{height:36.726562pt;}
.hb{height:38.250000pt;}
.hd{height:47.812500pt;}
.h15{height:48.354167pt;}
.h1b{height:50.666667pt;}
.h12{height:52.593750pt;}
.h8{height:52.750000pt;}
.h14{height:54.802083pt;}
.h2{height:55.468750pt;}
.h19{height:55.843750pt;}
.ha{height:56.843750pt;}
.h6{height:57.375000pt;}
.h3{height:66.937500pt;}
.h16{height:67.333333pt;}
.h4{height:85.265625pt;}
.h5{height:86.062500pt;}
.h1d{height:87.366667pt;}
.h17{height:118.033333pt;}
.h7{height:128.400000pt;}
.h20{height:135.066667pt;}
.hf{height:147.026667pt;}
.h1e{height:152.026667pt;}
.h21{height:185.733333pt;}
.h13{height:253.106667pt;}
.h18{height:371.080000pt;}
.h1c{height:375.800000pt;}
.h0{height:1122.666667pt;}
.wf{width:94.700000pt;}
.w12{width:122.033333pt;}
.w13{width:137.733333pt;}
.we{width:152.733333pt;}
.wd{width:163.733333pt;}
.wa{width:183.400000pt;}
.w10{width:190.760000pt;}
.w9{width:193.106667pt;}
.w5{width:200.400000pt;}
.w4{width:200.440000pt;}
.wb{width:217.106667pt;}
.wc{width:286.133333pt;}
.w8{width:299.800000pt;}
.w7{width:300.133333pt;}
.w11{width:339.493333pt;}
.w3{width:458.200000pt;}
.w6{width:793.666643pt;}
.w2{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2c{left:7.000000pt;}
.x11{left:12.333333pt;}
.x45{left:15.653333pt;}
.x12{left:27.333333pt;}
.x43{left:32.666667pt;}
.x3e{left:52.360000pt;}
.x34{left:54.366667pt;}
.x38{left:56.026667pt;}
.x36{left:63.706667pt;}
.x3b{left:74.366667pt;}
.x1{left:96.033322pt;}
.x33{left:99.366667pt;}
.x9{left:100.699988pt;}
.x39{left:104.699988pt;}
.x16{left:110.699988pt;}
.x2b{left:119.733333pt;}
.x2a{left:123.740000pt;}
.x17{left:128.066655pt;}
.x10{left:132.733333pt;}
.x41{left:138.740000pt;}
.xa{left:143.733322pt;}
.x6{left:158.733322pt;}
.xb{left:192.066655pt;}
.x22{left:199.773310pt;}
.x14{left:201.093333pt;}
.x23{left:205.106655pt;}
.x19{left:231.773310pt;}
.x31{left:233.773310pt;}
.x1a{left:237.106655pt;}
.xf{left:239.440000pt;}
.x32{left:244.439988pt;}
.xe{left:252.106655pt;}
.x46{left:258.106655pt;}
.x5{left:275.466655pt;}
.x7{left:282.466655pt;}
.x20{left:288.133322pt;}
.x35{left:293.133333pt;}
.xd{left:295.799988pt;}
.x1f{left:301.799988pt;}
.x21{left:315.466655pt;}
.x8{left:320.799988pt;}
.x18{left:321.799988pt;}
.x47{left:326.133322pt;}
.x3f{left:341.133310pt;}
.x27{left:348.133322pt;}
.x40{left:351.839988pt;}
.x3c{left:383.506667pt;}
.xc{left:393.839988pt;}
.x3{left:395.173322pt;}
.x2{left:396.839988pt;}
.x1b{left:422.173310pt;}
.x1c{left:427.506655pt;}
.x42{left:436.866667pt;}
.x25{left:458.199976pt;}
.x26{left:463.533322pt;}
.x2f{left:465.533310pt;}
.x30{left:470.866655pt;}
.x37{left:477.200000pt;}
.x28{left:492.533310pt;}
.x2d{left:493.866643pt;}
.x13{left:496.866667pt;}
.x29{left:497.866655pt;}
.x2e{left:499.199988pt;}
.x4{left:503.199988pt;}
.x3d{left:547.906667pt;}
.x44{left:559.573333pt;}
.x3a{left:575.573322pt;}
.x1d{left:657.266643pt;}
.x1e{left:662.599988pt;}
.x24{left:681.973322pt;}
.x15{left:689.959988pt;}
}

