aboutsummaryrefslogtreecommitdiff
path: root/test/golden/ordo-2027.tex
diff options
context:
space:
mode:
authorLukasz Kasprzak <lukas@labunix.xyz>2026-08-19 15:54:23 +0200
committerLukasz Kasprzak <lukas@labunix.xyz>2026-08-19 15:54:23 +0200
commit3f5409f79a1b82e09f72930487ca9e42a1175eed (patch)
tree2da27b11302a89ea116420cbe91ff39cc82ad490 /test/golden/ordo-2027.tex
parentdb82be80c9479398720e7a72d3ab66a3017ae98c (diff)
downloadcolitur-3f5409f79a1b82e09f72930487ca9e42a1175eed.tar.gz
colitur-3f5409f79a1b82e09f72930487ca9e42a1175eed.zip
feat(templates): the ordo booklet, rebuilt
A5, one week per page, with a table of contents, each day in a framed box and a colour swatch so the page is scannable without reading. Real names throughout, and every fixed string routed through the term vocabulary so a translated booklet needs no template edit. The previous version was A4, printed slugs, ran days together with no visual separation, had no contents, and gave the liturgical colour only as the word white. It was not usable as a printed booklet. lib/render/view.ml already carried month_num/month_name on each week object from Task 5, so no kernel/view change was needed here -- the template uses those instead of a parent path the engine cannot express. Box padding, margins and secondary-line font size were tightened past the brief's own starting values: at the brief's sizes a week with several long commemoration names (e.g. Feb 21-27, three of seven days carrying one) overflowed onto a second physical page, breaking one-week-per-page. Verified by measuring page count against the known week count (63 weeks in 2027) until every content page carried exactly one week, not by eye. The header comments of all six flavours were themselves a trap the brief warns about: writing double braces to NAME a template field inside a LaTeX %, groff .\", HTML <!-- -->, or AsciiDoc // comment gets parsed as a real tag by this brace-only engine, not treated as inert prose. An early draft's own comments did this and produced 'empty tag path' parse errors and a silently-unclosed section; every comment in all six templates is now written without ever typing two braces in a row. The other five flavours keep their existing structure; only the dead {{#name}}{{la}}{{^la}}{{slug}}{{/la}}{{/name}} idiom is replaced with a plain {{name}} (extended to comms entries too, which carry their own resolved name), and the fixed labels (Ordo, Epistle, Gospel, Commemoration) now come from {{term.*}}. Golden regeneration could not follow the brief's own `colitur table` shell-out literally: the CLI's current default language is Latin-only (bin/main.ml's Task-5 bridge), while test_render_golden.ml renders through Test_view's English-primary/Latin-fallback table, so the two produce different text for the same slug. The goldens were regenerated through the test's own render path instead (a temporary env-gated block in test_render_golden.ml, reverted before this commit), so they agree with what the suite actually computes. All six ordo golden tests pass; the three grid ones are Task 9's scope. make check-templates passes with zero warnings. The CLI-rendered PDF is A5 (148x210mm), 65 pages -- 2 pages of title/contents plus exactly one page per week (63), verified with no overflow.
Diffstat (limited to 'test/golden/ordo-2027.tex')
-rw-r--r--test/golden/ordo-2027.tex4790
1 files changed, 3181 insertions, 1609 deletions
diff --git a/test/golden/ordo-2027.tex b/test/golden/ordo-2027.tex
index f5faa3d..9017009 100644
--- a/test/golden/ordo-2027.tex
+++ b/test/golden/ordo-2027.tex
@@ -1,2737 +1,4309 @@
% colitur ordo booklet -- LaTeX. flavour: latex
-% Build: colitur table --year 2027 --template ordo.tex > ordo.tex && pdflatex ordo.tex
+% Build: colitur table --year 2027 --template ordo.tex > ordo.tex && pdflatex ordo.tex &&
+% pdflatex ordo.tex (twice, so \pageref in the table of contents settles)
%
-% Day label falls back to the slug when the day carries no Latin name (most
-% temporal days, and most sanctoral entries, which are Latin-less in the
-% shipped data). The fallback is written as a name-section wrapping a plain
-% var and its inverse, deliberately NOT as a single dotted-path lookup
-% followed by its own inverse: a dotted lookup that misses climbs to the
-% enclosing scope for the WHOLE path, and the month object also carries a
-% same-named key one level up, so the naive form would render the month's
-% own Latin name on every day lacking one, and never fall back at all.
-\documentclass[10pt,twoside]{article}
-\usepackage[a5paper,margin=15mm]{geometry}
+% A5, one week per page, each day in a framed box with a colour swatch. Every
+% fixed string (headings, the Epistle/Gospel/Commemoration/Week labels)
+% comes from the view's term vocabulary rather than being written into this
+% file, so a translated booklet needs no template edit -- only a different
+% --lang.
+%
+% The observed day's own display name is a PLAIN resolved string
+% (View.of_days, Task 5), never a lang-keyed object -- there is no
+% dotted-la-with-slug-fallback idiom to write here at all; a day with no
+% name in the shipped data still resolves to something printable (its slug,
+% under --raw, or the lang table's own miss-echoes-the-key behaviour), so
+% the plain name field alone is always enough.
+%
+% The engine has no parent-path syntax: nested inside a month's own week
+% loop, a bare week-number reference finds the WEEK's own number, and there
+% is no way to reach the enclosing month's from there. That is why each
+% week object carries its own month number and month name fields
+% (lib/render/view.ml, Task 5) -- used throughout below instead of a
+% parent-path reference, which this engine cannot express.
+%
+% This template's own %-comments are plain text to the engine: it has no
+% awareness of LaTeX's comment syntax, and a stray double-brace pair inside
+% one would still be parsed as a tag -- which is why this whole header is
+% deliberately written without ever typing two curly braces next to each
+% other, even to name a field.
+\documentclass[10pt]{article}
+\usepackage[a5paper,top=11mm,bottom=12mm,inner=14mm,outer=10mm]{geometry}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
+\usepackage{xcolor}
+\usepackage{tikz}
+\usepackage{tcolorbox}
\usepackage{fancyhdr}
-\pagestyle{fancy}
-\fancyhead[C]{ORDO 2027 \textperiodcentered\ ef}
+\usepackage[hidelinks]{hyperref}
+\definecolor{licolwhite}{HTML}{FFFFFF}
+\definecolor{licolred}{HTML}{C1272D}
+\definecolor{licolgreen}{HTML}{2E7D32}
+\definecolor{licolviolet}{HTML}{6A1B9A}
+\definecolor{licolrose}{HTML}{E91E8C}
+\definecolor{licolblack}{HTML}{000000}
+% A framed square, always outlined in black regardless of fill -- so white
+% (and, on a black background page, black) still reads as a swatch rather
+% than a gap. tikz (a tcolorbox dependency already) draws the border; xcolor
+% alone cannot outline a filled rule.
+\newcommand{\swatch}[1]{\tikz[baseline=-0.6ex]{\fill[draw=black,line width=0.4pt,fill=#1] (0,0) rectangle (2.4ex,2.4ex);}}
+\pagestyle{fancy}\fancyhf{}
+\fancyhead[C]{\small Ordo 2027 \textperiodcentered\ ef}
+\fancyfoot[C]{\small\thepage}
+\renewcommand{\headrulewidth}{0.4pt}
\setlength{\parindent}{0pt}
\begin{document}
-\section*{ Ianuarius }
+\begin{center}
+\Large\bfseries Ordo 2027\\[2pt]
+\normalsize\mdseries ef
+\end{center}
+\vspace{4mm}
+{\bfseries Contents}\par\vspace{2mm}
+\begin{small}
+
+\textbf{ January }\par
+\hspace*{4mm}Week 1\dotfill\pageref{w1-1}\par
+\hspace*{4mm}Week 2\dotfill\pageref{w1-2}\par
+\hspace*{4mm}Week 3\dotfill\pageref{w1-3}\par
+\hspace*{4mm}Week 4\dotfill\pageref{w1-4}\par
+\hspace*{4mm}Week 5\dotfill\pageref{w1-5}\par
+\hspace*{4mm}Week 6\dotfill\pageref{w1-6}\par
+
+
+\textbf{ February }\par
+\hspace*{4mm}Week 1\dotfill\pageref{w2-1}\par
+\hspace*{4mm}Week 2\dotfill\pageref{w2-2}\par
+\hspace*{4mm}Week 3\dotfill\pageref{w2-3}\par
+\hspace*{4mm}Week 4\dotfill\pageref{w2-4}\par
+\hspace*{4mm}Week 5\dotfill\pageref{w2-5}\par
+
+
+\textbf{ March }\par
+\hspace*{4mm}Week 1\dotfill\pageref{w3-1}\par
+\hspace*{4mm}Week 2\dotfill\pageref{w3-2}\par
+\hspace*{4mm}Week 3\dotfill\pageref{w3-3}\par
+\hspace*{4mm}Week 4\dotfill\pageref{w3-4}\par
+\hspace*{4mm}Week 5\dotfill\pageref{w3-5}\par
+
+
+\textbf{ April }\par
+\hspace*{4mm}Week 1\dotfill\pageref{w4-1}\par
+\hspace*{4mm}Week 2\dotfill\pageref{w4-2}\par
+\hspace*{4mm}Week 3\dotfill\pageref{w4-3}\par
+\hspace*{4mm}Week 4\dotfill\pageref{w4-4}\par
+\hspace*{4mm}Week 5\dotfill\pageref{w4-5}\par
+
+
+\textbf{ May }\par
+\hspace*{4mm}Week 1\dotfill\pageref{w5-1}\par
+\hspace*{4mm}Week 2\dotfill\pageref{w5-2}\par
+\hspace*{4mm}Week 3\dotfill\pageref{w5-3}\par
+\hspace*{4mm}Week 4\dotfill\pageref{w5-4}\par
+\hspace*{4mm}Week 5\dotfill\pageref{w5-5}\par
+\hspace*{4mm}Week 6\dotfill\pageref{w5-6}\par
+
+
+\textbf{ June }\par
+\hspace*{4mm}Week 1\dotfill\pageref{w6-1}\par
+\hspace*{4mm}Week 2\dotfill\pageref{w6-2}\par
+\hspace*{4mm}Week 3\dotfill\pageref{w6-3}\par
+\hspace*{4mm}Week 4\dotfill\pageref{w6-4}\par
+\hspace*{4mm}Week 5\dotfill\pageref{w6-5}\par
+
+
+\textbf{ July }\par
+\hspace*{4mm}Week 1\dotfill\pageref{w7-1}\par
+\hspace*{4mm}Week 2\dotfill\pageref{w7-2}\par
+\hspace*{4mm}Week 3\dotfill\pageref{w7-3}\par
+\hspace*{4mm}Week 4\dotfill\pageref{w7-4}\par
+\hspace*{4mm}Week 5\dotfill\pageref{w7-5}\par
+
+
+\textbf{ August }\par
+\hspace*{4mm}Week 1\dotfill\pageref{w8-1}\par
+\hspace*{4mm}Week 2\dotfill\pageref{w8-2}\par
+\hspace*{4mm}Week 3\dotfill\pageref{w8-3}\par
+\hspace*{4mm}Week 4\dotfill\pageref{w8-4}\par
+\hspace*{4mm}Week 5\dotfill\pageref{w8-5}\par
+
+
+\textbf{ September }\par
+\hspace*{4mm}Week 1\dotfill\pageref{w9-1}\par
+\hspace*{4mm}Week 2\dotfill\pageref{w9-2}\par
+\hspace*{4mm}Week 3\dotfill\pageref{w9-3}\par
+\hspace*{4mm}Week 4\dotfill\pageref{w9-4}\par
+\hspace*{4mm}Week 5\dotfill\pageref{w9-5}\par
+
+
+\textbf{ October }\par
+\hspace*{4mm}Week 1\dotfill\pageref{w10-1}\par
+\hspace*{4mm}Week 2\dotfill\pageref{w10-2}\par
+\hspace*{4mm}Week 3\dotfill\pageref{w10-3}\par
+\hspace*{4mm}Week 4\dotfill\pageref{w10-4}\par
+\hspace*{4mm}Week 5\dotfill\pageref{w10-5}\par
+\hspace*{4mm}Week 6\dotfill\pageref{w10-6}\par
+
+
+\textbf{ November }\par
+\hspace*{4mm}Week 1\dotfill\pageref{w11-1}\par
+\hspace*{4mm}Week 2\dotfill\pageref{w11-2}\par
+\hspace*{4mm}Week 3\dotfill\pageref{w11-3}\par
+\hspace*{4mm}Week 4\dotfill\pageref{w11-4}\par
+\hspace*{4mm}Week 5\dotfill\pageref{w11-5}\par
+
+
+\textbf{ December }\par
+\hspace*{4mm}Week 1\dotfill\pageref{w12-1}\par
+\hspace*{4mm}Week 2\dotfill\pageref{w12-2}\par
+\hspace*{4mm}Week 3\dotfill\pageref{w12-3}\par
+\hspace*{4mm}Week 4\dotfill\pageref{w12-4}\par
+\hspace*{4mm}Week 5\dotfill\pageref{w12-5}\par
+
+
+\end{small}
+
+\clearpage
+
+
+\label{w1-1}
+{\bfseries\large January }\hfill{\small Week 1}\par\vspace{0.5mm}
+
+
+
+
+
+
+
+
+
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 1 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par
+{\bfseries The Octave Day of the Nativity }\par
+{\scriptsize 1st Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Titus 2:11-15 }\quad{\scriptsize Gospel\ Luke 2:21 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 2 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par
+{\bfseries Our Lady's Saturday Office }\par
+{\scriptsize 4th Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Titus 3:4-7 }\quad{\scriptsize Gospel\ Luke 2:15-20 }
+
+\end{tcolorbox}
+
+
+\clearpage
+
+\label{w1-2}
+{\bfseries\large January }\hfill{\small Week 2}\par\vspace{0.5mm}
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 3 } \;\; {\scriptsize Sunday } \hfill \swatch{licolwhite}\par
+{\bfseries The Holy Name of Jesus }\par
+{\scriptsize 2nd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Acts 4:8-12 }\quad{\scriptsize Gospel\ Luke 2:21 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 4 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par
+{\bfseries Monday before Epiphany }\par
+{\scriptsize 4th Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Titus 2:11-15 }\quad{\scriptsize Gospel\ Luke 2:21 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 5 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par
+{\bfseries Tuesday before Epiphany }\par
+{\scriptsize 4th Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Titus 2:11-15 }\quad{\scriptsize Gospel\ Luke 2:21 }
+\par{\scriptsize Commemoration\ telesphorus-pope-and-martyr }
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 6 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par
+{\bfseries The Epiphany of Our Lord }\par
+{\scriptsize 1st Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Isa 60:1-6 }\quad{\scriptsize Gospel\ Matt 2:1-12 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 7 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par
+{\bfseries Thursday after Epiphany }\par
+{\scriptsize 4th Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Isa 60:1-6 }\quad{\scriptsize Gospel\ Matt 2:1-12 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 8 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par
+{\bfseries Friday after Epiphany }\par
+{\scriptsize 4th Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Isa 60:1-6 }\quad{\scriptsize Gospel\ Matt 2:1-12 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 9 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par
+{\bfseries Our Lady's Saturday Office }\par
+{\scriptsize 4th Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Titus 3:4-7 }\quad{\scriptsize Gospel\ Luke 2:15-20 }
+
+\end{tcolorbox}
+
+
+\clearpage
+
+\label{w1-3}
+{\bfseries\large January }\hfill{\small Week 3}\par\vspace{0.5mm}
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 10 } \;\; {\scriptsize Sunday } \hfill \swatch{licolwhite}\par
+{\bfseries The Holy Family }\par
+{\scriptsize 2nd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Col 3:12-17 }\quad{\scriptsize Gospel\ Luke 2:42-52 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 11 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par
+{\bfseries Monday of the 1st Week of the Time after Epiphany }\par
+{\scriptsize 4th Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Rom 12:1-5 }\quad{\scriptsize Gospel\ Luke 2:42-52 }
+\par{\scriptsize Commemoration\ hyginus-pope-and-martyr }
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 12 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par
+{\bfseries Tuesday of the 1st Week of the Time after Epiphany }\par
+{\scriptsize 4th Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Rom 12:1-5 }\quad{\scriptsize Gospel\ Luke 2:42-52 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 13 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par
+{\bfseries Commemoration of the Baptism of the Lord }\par
+{\scriptsize 2nd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Isa 60:1-6 }\quad{\scriptsize Gospel\ John 1:29-34 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 14 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Hilary }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 }
+\par{\scriptsize Commemoration\ felicis }
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 15 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Paul, the First Hermit }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Phil 3:7-12 }\quad{\scriptsize Gospel\ Matt 11:25-30 }
+\par{\scriptsize Commemoration\ maur-abbot }
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 16 } \;\; {\scriptsize Saturday } \hfill \swatch{licolred}\par
+{\bfseries St. Marcellus I }\par
+{\scriptsize 3rd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ 1 Pet 5:1-4; 5:10-11. }\quad{\scriptsize Gospel\ Matt 16:13-19 }
+
+\end{tcolorbox}
+
+
+\clearpage
+
+\label{w1-4}
+{\bfseries\large January }\hfill{\small Week 4}\par\vspace{0.5mm}
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 17 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par
+{\bfseries 2nd Sunday after Epiphany }\par
+{\scriptsize 2nd Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Rom 12:6-16 }\quad{\scriptsize Gospel\ John 2:1-11 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 18 } \;\; {\scriptsize Monday } \hfill \swatch{licolgreen}\par
+{\bfseries Monday of the 2nd Week of the Time after Epiphany }\par
+{\scriptsize 4th Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Rom 12:6-16 }\quad{\scriptsize Gospel\ John 2:1-11 }
+\par{\scriptsize Commemoration\ prisca }
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 19 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolgreen}\par
+{\bfseries Tuesday of the 2nd Week of the Time after Epiphany }\par
+{\scriptsize 4th Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Rom 12:6-16 }\quad{\scriptsize Gospel\ John 2:1-11 }
+\par{\scriptsize Commemoration\ canute-martyr }\par{\scriptsize Commemoration\ sts-marius-martha-audifax-abachum }
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 20 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolred}\par
+{\bfseries Sts. Fabian \& Sebastian }\par
+{\scriptsize 3rd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ Heb 11:33-39 }\quad{\scriptsize Gospel\ Luke 6:17-23 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 21 } \;\; {\scriptsize Thursday } \hfill \swatch{licolred}\par
+{\bfseries St. Agnes }\par
+{\scriptsize 3rd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ Sir 51:1-8; 51:12 }\quad{\scriptsize Gospel\ Matt 25:1-13. }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 22 } \;\; {\scriptsize Friday } \hfill \swatch{licolred}\par
+{\bfseries Sts. Vincent \& Anastasius }\par
+{\scriptsize 3rd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ Wis 3:1-8 }\quad{\scriptsize Gospel\ Luke 21:9-19 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 23 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Raymond of PeƱafort }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Luke 12:35-40 }
+\par{\scriptsize Commemoration\ emerentiana }
+\end{tcolorbox}
+
+
+\clearpage
+
+\label{w1-5}
+{\bfseries\large January }\hfill{\small Week 5}\par\vspace{0.5mm}
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 24 } \;\; {\scriptsize Sunday } \hfill \swatch{licolviolet}\par
+{\bfseries Septuagesima Sunday }\par
+{\scriptsize 2nd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ 1 Cor. 9:24-27; 10:1-5 }\quad{\scriptsize Gospel\ Matt 20:1-16 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 25 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par
+{\bfseries Conversion of St. Paul }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Acts 9:1-22 }\quad{\scriptsize Gospel\ Matt 19:27-29. }
+\par{\scriptsize Commemoration\ peter }
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 26 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par
+{\bfseries St. Polycarp }\par
+{\scriptsize 3rd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ 1 John 3:10-16 }\quad{\scriptsize Gospel\ Matt 10:26-32. }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 27 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par
+{\bfseries St. John Chrysostom }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 28 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Peter Nolasco }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 1 Cor. 4:9-14 }\quad{\scriptsize Gospel\ Luke 12:32-34 }
+\par{\scriptsize Commemoration\ agnes-secundo }
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 29 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Francis de Sales }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 30 } \;\; {\scriptsize Saturday } \hfill \swatch{licolred}\par
+{\bfseries St. Martina }\par
+{\scriptsize 3rd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ Sir 51:1-8; 51:12 }\quad{\scriptsize Gospel\ Matt 25:1-13. }
+
+\end{tcolorbox}
+
+
+\clearpage
+
+\label{w1-6}
+{\bfseries\large January }\hfill{\small Week 6}\par\vspace{0.5mm}
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 31 } \;\; {\scriptsize Sunday } \hfill \swatch{licolviolet}\par
+{\bfseries Sexagesima Sunday }\par
+{\scriptsize 2nd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ 2 Cor. 11:19-33; 12:1-9 }\quad{\scriptsize Gospel\ Luke 8:4-15 }
+
+\end{tcolorbox}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+\clearpage
+
+
+
+\label{w2-1}
+{\bfseries\large February }\hfill{\small Week 1}\par\vspace{0.5mm}
+
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 1 } \;\; {\scriptsize Monday } \hfill \swatch{licolred}\par
+{\bfseries St. Ignatius of Antioch }\par
+{\scriptsize 3rd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ Rom 8:35-39 }\quad{\scriptsize Gospel\ John 12:24-26 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 2 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par
+{\bfseries Purification of the Blessed Virgin Mary }\par
+{\scriptsize 2nd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Mal 3:1-4 }\quad{\scriptsize Gospel\ Luke 2:22-32 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 3 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolviolet}\par
+{\bfseries Wednesday of the 2nd Week of Septuagesimatide }\par
+{\scriptsize 4th Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ 2 Cor. 11:19-33; 12:1-9 }\quad{\scriptsize Gospel\ Luke 8:4-15 }
+\par{\scriptsize Commemoration\ blaise }
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 4 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Andrew Corsini }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Sir 44:16-27; 45:3-20 }\quad{\scriptsize Gospel\ Matt 25:14-23 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 5 } \;\; {\scriptsize Friday } \hfill \swatch{licolred}\par
+{\bfseries St. Agatha }\par
+{\scriptsize 3rd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ 1 Cor. 1:26-31 }\quad{\scriptsize Gospel\ Matt 19:3-12. }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 6 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Titus }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Sir 44:16-27; 45:3-20 }\quad{\scriptsize Gospel\ Luke 10:1-9 }
+\par{\scriptsize Commemoration\ dorothy }
+\end{tcolorbox}
+
+
+\clearpage
+
+\label{w2-2}
+{\bfseries\large February }\hfill{\small Week 2}\par\vspace{0.5mm}
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 7 } \;\; {\scriptsize Sunday } \hfill \swatch{licolviolet}\par
+{\bfseries Quinquagesima Sunday }\par
+{\scriptsize 2nd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ 1 Cor. 13:1-13 }\quad{\scriptsize Gospel\ Luke 18:31-43 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 8 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par
+{\bfseries St. John of Matha }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Luke 12:35-40 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 9 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Cyril of Alexandria }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 }
+\par{\scriptsize Commemoration\ appollonia }
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 10 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolviolet}\par
+{\bfseries Ash Wednesday }\par
+{\scriptsize 1st Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Joel 2:12-19 }\quad{\scriptsize Gospel\ Matt 6:16-21 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 11 } \;\; {\scriptsize Thursday } \hfill \swatch{licolviolet}\par
+{\bfseries Thursday after Ash Wednesday }\par
+{\scriptsize 3rd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Isa 38:1-6 }\quad{\scriptsize Gospel\ Matt 8:5-13 }
+\par{\scriptsize Commemoration\ Our Lady of Lourdes }
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 12 } \;\; {\scriptsize Friday } \hfill \swatch{licolviolet}\par
+{\bfseries Friday after Ash Wednesday }\par
+{\scriptsize 3rd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Isa 58:1-9 }\quad{\scriptsize Gospel\ Matt 5:43-48; 6:1-4 }
+\par{\scriptsize Commemoration\ Seven Holy Servite Founders }
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 13 } \;\; {\scriptsize Saturday } \hfill \swatch{licolviolet}\par
+{\bfseries Saturday after Ash Wednesday }\par
+{\scriptsize 3rd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Isa 58:9-14 }\quad{\scriptsize Gospel\ Mark 6:47-56 }
+
+\end{tcolorbox}
+
+
+\clearpage
+
+\label{w2-3}
+{\bfseries\large February }\hfill{\small Week 3}\par\vspace{0.5mm}
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 14 } \;\; {\scriptsize Sunday } \hfill \swatch{licolviolet}\par
+{\bfseries 1st Sunday of Lent }\par
+{\scriptsize 1st Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ 2 Cor. 6:1-10 }\quad{\scriptsize Gospel\ Matt 4:1-11 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 15 } \;\; {\scriptsize Monday } \hfill \swatch{licolviolet}\par
+{\bfseries Monday of the 1st Week of Lent }\par
+{\scriptsize 3rd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Ezech 34:11-16 }\quad{\scriptsize Gospel\ Matt 25:31-46 }
+\par{\scriptsize Commemoration\ sts-faustinus-jovita }
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 16 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolviolet}\par
+{\bfseries Tuesday of the 1st Week of Lent }\par
+{\scriptsize 3rd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Isa 55:6-11 }\quad{\scriptsize Gospel\ Matt 21:10-17 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 17 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolviolet}\par
+{\bfseries Lenten Ember Wednesday }\par
+{\scriptsize 2nd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ 3 Kgs. 19:3-8 }\quad{\scriptsize Gospel\ Matt 12:38-50 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 18 } \;\; {\scriptsize Thursday } \hfill \swatch{licolviolet}\par
+{\bfseries Thursday of the 1st Week of Lent }\par
+{\scriptsize 3rd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Ezech 18:1-9 }\quad{\scriptsize Gospel\ Matt 15:21-28 }
+\par{\scriptsize Commemoration\ simeon }
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 19 } \;\; {\scriptsize Friday } \hfill \swatch{licolviolet}\par
+{\bfseries Lenten Ember Friday }\par
+{\scriptsize 2nd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Ezech 18:20-28 }\quad{\scriptsize Gospel\ John 5:1-15 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 20 } \;\; {\scriptsize Saturday } \hfill \swatch{licolviolet}\par
+{\bfseries Lenten Ember Saturday }\par
+{\scriptsize 2nd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ 1 Thess. 5:14-23 }\quad{\scriptsize Gospel\ Matt 17:1-9 }
+
+\end{tcolorbox}
+
+
+\clearpage
+
+\label{w2-4}
+{\bfseries\large February }\hfill{\small Week 4}\par\vspace{0.5mm}
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 21 } \;\; {\scriptsize Sunday } \hfill \swatch{licolviolet}\par
+{\bfseries 2nd Sunday of Lent }\par
+{\scriptsize 1st Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ 1 Thess. 4:1-7 }\quad{\scriptsize Gospel\ Matt 17:1-9 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 22 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par
+{\bfseries Chair of St. Peter }\par
+{\scriptsize 2nd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 1 Pet 1:1-7 }\quad{\scriptsize Gospel\ Matt 16:13-19 }
+\par{\scriptsize Commemoration\ Monday of the 2nd Week of Lent }\par{\scriptsize Commemoration\ paul }
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 23 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolviolet}\par
+{\bfseries Tuesday of the 2nd Week of Lent }\par
+{\scriptsize 3rd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ 3 Kings 17:8-16 }\quad{\scriptsize Gospel\ Matt 23:1-12 }
+\par{\scriptsize Commemoration\ St. Peter Damien }
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 24 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolred}\par
+{\bfseries St. Matthias }\par
+{\scriptsize 2nd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ Acts 1:15-26 }\quad{\scriptsize Gospel\ Matt 11:25-30 }
+\par{\scriptsize Commemoration\ Wednesday of the 2nd Week of Lent }
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 25 } \;\; {\scriptsize Thursday } \hfill \swatch{licolviolet}\par
+{\bfseries Thursday of the 2nd Week of Lent }\par
+{\scriptsize 3rd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Jer 17:5-10 }\quad{\scriptsize Gospel\ Luke 16:19-31 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 26 } \;\; {\scriptsize Friday } \hfill \swatch{licolviolet}\par
+{\bfseries Friday of the 2nd Week of Lent }\par
+{\scriptsize 3rd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Gen 37:6-22 }\quad{\scriptsize Gospel\ Matt 21:33-46 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 27 } \;\; {\scriptsize Saturday } \hfill \swatch{licolviolet}\par
+{\bfseries Saturday of the 2nd Week of Lent }\par
+{\scriptsize 3rd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Gen 27:6-40 }\quad{\scriptsize Gospel\ Luke 15:11-32 }
+\par{\scriptsize Commemoration\ St. Gabriel of Our Lady of Sorrows }
+\end{tcolorbox}
+
+
+\clearpage
+
+\label{w2-5}
+{\bfseries\large February }\hfill{\small Week 5}\par\vspace{0.5mm}
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 28 } \;\; {\scriptsize Sunday } \hfill \swatch{licolviolet}\par
+{\bfseries 3rd Sunday of Lent }\par
+{\scriptsize 1st Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Eph 5:1-9 }\quad{\scriptsize Gospel\ Luke 11:14-28 }
+
+\end{tcolorbox}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+\clearpage
+
+
+
+\label{w3-1}
+{\bfseries\large March }\hfill{\small Week 1}\par\vspace{0.5mm}
+
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 1 } \;\; {\scriptsize Monday } \hfill \swatch{licolviolet}\par
+{\bfseries Monday of the 3rd Week of Lent }\par
+{\scriptsize 3rd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ 4 Kings 5:1-15 }\quad{\scriptsize Gospel\ Luke 4:23-30 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 2 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolviolet}\par
+{\bfseries Tuesday of the 3rd Week of Lent }\par
+{\scriptsize 3rd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ 4 Kings 4:1-7 }\quad{\scriptsize Gospel\ Matt 18:15-22 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 3 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolviolet}\par
+{\bfseries Wednesday of the 3rd Week of Lent }\par
+{\scriptsize 3rd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Ex 20:12-24 }\quad{\scriptsize Gospel\ Matt 15:1-20 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 4 } \;\; {\scriptsize Thursday } \hfill \swatch{licolviolet}\par
+{\bfseries Thursday of the 3rd Week of Lent }\par
+{\scriptsize 3rd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Jer 7:1-7 }\quad{\scriptsize Gospel\ Luke 4:38-44. }
+\par{\scriptsize Commemoration\ St. Casimir }\par{\scriptsize Commemoration\ lucius }
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 5 } \;\; {\scriptsize Friday } \hfill \swatch{licolviolet}\par
+{\bfseries Friday of the 3rd Week of Lent }\par
+{\scriptsize 3rd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Num 20:1, 3; 6-13. }\quad{\scriptsize Gospel\ John 4:5-42 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 6 } \;\; {\scriptsize Saturday } \hfill \swatch{licolviolet}\par
+{\bfseries Saturday of the 3rd Week of Lent }\par
+{\scriptsize 3rd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Dan 13:1-9, 15-17, 19-30, 33-62. }\quad{\scriptsize Gospel\ John 8:1-11 }
+\par{\scriptsize Commemoration\ Sts. Felicitas \& Perpetua }
+\end{tcolorbox}
+
+
+\clearpage
+
+\label{w3-2}
+{\bfseries\large March }\hfill{\small Week 2}\par\vspace{0.5mm}
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 7 } \;\; {\scriptsize Sunday } \hfill \swatch{licolrose}\par
+{\bfseries 4th Sunday of Lent }\par
+{\scriptsize 1st Class \textperiodcentered\ Rose }\par
+{\scriptsize Epistle\ Gal 4:22-31 }\quad{\scriptsize Gospel\ John 6:1-15 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 8 } \;\; {\scriptsize Monday } \hfill \swatch{licolviolet}\par
+{\bfseries Monday of the 4th Week of Lent }\par
+{\scriptsize 3rd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ 3 Kings 3:16-28 }\quad{\scriptsize Gospel\ John 2:13-25 }
+\par{\scriptsize Commemoration\ St. John of God }
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 9 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolviolet}\par
+{\bfseries Tuesday of the 4th Week of Lent }\par
+{\scriptsize 3rd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Ex 32:7-14 }\quad{\scriptsize Gospel\ John 7:14-31 }
+\par{\scriptsize Commemoration\ St. Frances Rome }
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 10 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolviolet}\par
+{\bfseries Wednesday of the 4th Week of Lent }\par
+{\scriptsize 3rd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Isa. 1:16-19 }\quad{\scriptsize Gospel\ John 9:1-38 }
+\par{\scriptsize Commemoration\ forty-holy-martyrs-of-sebaste }
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 11 } \;\; {\scriptsize Thursday } \hfill \swatch{licolviolet}\par
+{\bfseries Thursday of the 4th Week of Lent }\par
+{\scriptsize 3rd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ 4 Kings 4:25-38 }\quad{\scriptsize Gospel\ Luke 7:11-16 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 12 } \;\; {\scriptsize Friday } \hfill \swatch{licolviolet}\par
+{\bfseries Friday of the 4th Week of Lent }\par
+{\scriptsize 3rd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ 3 Kings 17:17-24 }\quad{\scriptsize Gospel\ John 11:1-45 }
+\par{\scriptsize Commemoration\ gregory-the-great }
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 13 } \;\; {\scriptsize Saturday } \hfill \swatch{licolviolet}\par
+{\bfseries Saturday of the 4th Week of Lent }\par
+{\scriptsize 3rd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Isa 49:8-15 }\quad{\scriptsize Gospel\ John 8:12-20 }
+
+\end{tcolorbox}
+
+
+\clearpage
+
+\label{w3-3}
+{\bfseries\large March }\hfill{\small Week 3}\par\vspace{0.5mm}
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 14 } \;\; {\scriptsize Sunday } \hfill \swatch{licolviolet}\par
+{\bfseries Passion Sunday }\par
+{\scriptsize 1st Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Heb 9:11-15. }\quad{\scriptsize Gospel\ John 8:46-59. }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 15 } \;\; {\scriptsize Monday } \hfill \swatch{licolviolet}\par
+{\bfseries Monday of the 1st Week of Passion Week }\par
+{\scriptsize 3rd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Jonas 3:1-10 }\quad{\scriptsize Gospel\ John 7:32-39 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 16 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolviolet}\par
+{\bfseries Tuesday of the 1st Week of Passion Week }\par
+{\scriptsize 3rd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Dan 14:27, 28-42 }\quad{\scriptsize Gospel\ John 7:1-13 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 17 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolviolet}\par
+{\bfseries Wednesday of the 1st Week of Passion Week }\par
+{\scriptsize 3rd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Lev 19:1-2, 11-19, 25 }\quad{\scriptsize Gospel\ John 10:22-38 }
+\par{\scriptsize Commemoration\ patrick }
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 18 } \;\; {\scriptsize Thursday } \hfill \swatch{licolviolet}\par
+{\bfseries Thursday of the 1st Week of Passion Week }\par
+{\scriptsize 3rd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Dan 3:25, 34-45. }\quad{\scriptsize Gospel\ Luke 7:36-50 }
+\par{\scriptsize Commemoration\ cyril-of-jerusalem }
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 19 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Joseph, Spouse of the Bl. Virgin Mary }\par
+{\scriptsize 1st Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Ecclus 45:1-6 }\quad{\scriptsize Gospel\ Matt 1:18-21 }
+\par{\scriptsize Commemoration\ Friday of the 1st Week of Passion Week }
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 20 } \;\; {\scriptsize Saturday } \hfill \swatch{licolviolet}\par
+{\bfseries Saturday of the 1st Week of Passion Week }\par
+{\scriptsize 3rd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Jer 18:18-23 }\quad{\scriptsize Gospel\ John 12:10-36 }
+
+\end{tcolorbox}
+
+
+\clearpage
+
+\label{w3-4}
+{\bfseries\large March }\hfill{\small Week 4}\par\vspace{0.5mm}
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 21 } \;\; {\scriptsize Sunday } \hfill \swatch{licolviolet}\par
+{\bfseries Palm Sunday }\par
+{\scriptsize 1st Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Phil 2:5-11 }\quad{\scriptsize Gospel\ Matt. 26:36-75; 27:1-60. }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 22 } \;\; {\scriptsize Monday } \hfill \swatch{licolviolet}\par
+{\bfseries Monday of Holy Week }\par
+{\scriptsize 1st Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Isa 50:5-10 }\quad{\scriptsize Gospel\ John 12:1-9 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 23 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolviolet}\par
+{\bfseries Tuesday of Holy Week }\par
+{\scriptsize 1st Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Jer 11:18-20 }\quad{\scriptsize Gospel\ Mark 14:32-72; 15, 1-46 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 24 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolviolet}\par
+{\bfseries Wednesday of Holy Week (Spy Wednesday) }\par
+{\scriptsize 1st Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Isa 53:1-12 }\quad{\scriptsize Gospel\ Luke 22:39-71; 23:1-53 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 25 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par
+{\bfseries Holy Thursday (Maundy Thursday) }\par
+{\scriptsize 1st Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 1 Cor 11:20-32 }\quad{\scriptsize Gospel\ John 13:1-15 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 26 } \;\; {\scriptsize Friday } \hfill \swatch{licolblack}\par
+{\bfseries Good Friday }\par
+{\scriptsize 1st Class \textperiodcentered\ Black }\par
+{\scriptsize Epistle\ Ex 12:1-11 }\quad{\scriptsize Gospel\ John 18:1-40; 19:1-42 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 27 } \;\; {\scriptsize Saturday } \hfill \swatch{licolviolet}\par
+{\bfseries Holy Saturday }\par
+{\scriptsize 1st Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Col 3:1-4 }\quad{\scriptsize Gospel\ Matt 28:1-7 }
+
+\end{tcolorbox}
+
+
+\clearpage
+
+\label{w3-5}
+{\bfseries\large March }\hfill{\small Week 5}\par\vspace{0.5mm}
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 28 } \;\; {\scriptsize Sunday } \hfill \swatch{licolwhite}\par
+{\bfseries Easter Sunday }\par
+{\scriptsize 1st Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 1 Cor 5:7-8 }\quad{\scriptsize Gospel\ Mark 16:1-7 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 29 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par
+{\bfseries Monday of Easter Week }\par
+{\scriptsize 1st Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Acts 10:37-43. }\quad{\scriptsize Gospel\ Luke 24:13-35 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 30 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par
+{\bfseries Tuesday of Easter Week }\par
+{\scriptsize 1st Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Acts 13:16; 13:26-33 }\quad{\scriptsize Gospel\ Luke 24:36-47 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 31 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par
+{\bfseries Wednesday of Easter Week }\par
+{\scriptsize 1st Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Acts 3:13-15; 3:17-19 }\quad{\scriptsize Gospel\ John 21:1-14 }
+
+\end{tcolorbox}
+
+
+
+
+
+
+
+
+\clearpage
+
+
+
+\label{w4-1}
+{\bfseries\large April }\hfill{\small Week 1}\par\vspace{0.5mm}
+
+
+
+
+
+
+
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 1 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par
+{\bfseries Thursday of Easter Week }\par
+{\scriptsize 1st Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Acts 8:26-40 }\quad{\scriptsize Gospel\ John 20:11-18 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 2 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par
+{\bfseries Friday of Easter Week }\par
+{\scriptsize 1st Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 1 Pet 3:18-22 }\quad{\scriptsize Gospel\ Matt 28:16-20 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 3 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par
+{\bfseries Saturday of Easter Week }\par
+{\scriptsize 1st Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 1 Pet 2:1-10 }\quad{\scriptsize Gospel\ John 20:1-9 }
+
+\end{tcolorbox}
+
+
+\clearpage
+
+\label{w4-2}
+{\bfseries\large April }\hfill{\small Week 2}\par\vspace{0.5mm}
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 4 } \;\; {\scriptsize Sunday } \hfill \swatch{licolwhite}\par
+{\bfseries Low Sunday (Sunday in Easter Octave) }\par
+{\scriptsize 1st Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 1 John 5:4-10 }\quad{\scriptsize Gospel\ John 20:19-31 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 5 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par
+{\bfseries Annunciation of the Blessed Virgin Mary }\par
+{\scriptsize 1st Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Isa 7:10-15 }\quad{\scriptsize Gospel\ Luke 1:26-38 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 6 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par
+{\bfseries Tuesday of the 2nd Week of Eastertide }\par
+{\scriptsize 4th Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 1 John 5:4-10 }\quad{\scriptsize Gospel\ John 20:19-31 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 7 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par
+{\bfseries Wednesday of the 2nd Week of Eastertide }\par
+{\scriptsize 4th Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 1 John 5:4-10 }\quad{\scriptsize Gospel\ John 20:19-31 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 8 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par
+{\bfseries Thursday of the 2nd Week of Eastertide }\par
+{\scriptsize 4th Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 1 John 5:4-10 }\quad{\scriptsize Gospel\ John 20:19-31 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 9 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par
+{\bfseries Friday of the 2nd Week of Eastertide }\par
+{\scriptsize 4th Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 1 John 5:4-10 }\quad{\scriptsize Gospel\ John 20:19-31 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 10 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par
+{\bfseries Our Lady's Saturday Office }\par
+{\scriptsize 4th Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Ecclus 24:14-16 }\quad{\scriptsize Gospel\ John 19:25-27 }
+
+\end{tcolorbox}
+
+
+\clearpage
+
+\label{w4-3}
+{\bfseries\large April }\hfill{\small Week 3}\par\vspace{0.5mm}
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 11 } \;\; {\scriptsize Sunday } \hfill \swatch{licolwhite}\par
+{\bfseries 2nd Sunday after Easter }\par
+{\scriptsize 2nd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 1 Pet 2:21-25 }\quad{\scriptsize Gospel\ John 10:11-16 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 12 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par
+{\bfseries Monday of the 3rd Week of Eastertide }\par
+{\scriptsize 4th Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 1 Pet 2:21-25 }\quad{\scriptsize Gospel\ John 10:11-16 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 13 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par
+{\bfseries St. Hermenegild }\par
+{\scriptsize 3rd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ Wis 10:10-14 }\quad{\scriptsize Gospel\ Luke 14:26-33. }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 14 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolred}\par
+{\bfseries St. Justin }\par
+{\scriptsize 3rd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ 1 Cor 1:18-25; 1:30; }\quad{\scriptsize Gospel\ Luke 12:2-8 }
+\par{\scriptsize Commemoration\ sts-tiburtius-valerian-et-maximus-martyrs }
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 15 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par
+{\bfseries Thursday of the 3rd Week of Eastertide }\par
+{\scriptsize 4th Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 1 Pet 2:21-25 }\quad{\scriptsize Gospel\ John 10:11-16 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 16 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par
+{\bfseries Friday of the 3rd Week of Eastertide }\par
+{\scriptsize 4th Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 1 Pet 2:21-25 }\quad{\scriptsize Gospel\ John 10:11-16 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 17 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par
+{\bfseries Our Lady's Saturday Office }\par
+{\scriptsize 4th Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Ecclus 24:14-16 }\quad{\scriptsize Gospel\ John 19:25-27 }
+\par{\scriptsize Commemoration\ anicetus }
+\end{tcolorbox}
+
+
+\clearpage
+
+\label{w4-4}
+{\bfseries\large April }\hfill{\small Week 4}\par\vspace{0.5mm}
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 18 } \;\; {\scriptsize Sunday } \hfill \swatch{licolwhite}\par
+{\bfseries 3rd Sunday after Easter }\par
+{\scriptsize 2nd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 1 Pet 2:11-19 }\quad{\scriptsize Gospel\ John 16:16-22 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 19 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par
+{\bfseries Monday of the 4th Week of Eastertide }\par
+{\scriptsize 4th Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 1 Pet 2:11-19 }\quad{\scriptsize Gospel\ John 16:16-22 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 20 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par
+{\bfseries Tuesday of the 4th Week of Eastertide }\par
+{\scriptsize 4th Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 1 Pet 2:11-19 }\quad{\scriptsize Gospel\ John 16:16-22 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 21 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Anselm }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 22 } \;\; {\scriptsize Thursday } \hfill \swatch{licolred}\par
+{\bfseries Sts. Soter \& Caius }\par
+{\scriptsize 3rd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ 1 Pet 5:1-4; 5:10-11. }\quad{\scriptsize Gospel\ Matt 16:13-19 }
+
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 23 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par
+{\bfseries Friday of the 4th Week of Eastertide }\par
+{\scriptsize 4th Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 1 Pet 2:11-19 }\quad{\scriptsize Gospel\ John 16:16-22 }
+\par{\scriptsize Commemoration\ george }
+\end{tcolorbox}
+
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 24 } \;\; {\scriptsize Saturday } \hfill \swatch{licolred}\par
+{\bfseries St. Fidelis of Sigmaringen }\par
+{\scriptsize 3rd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ Wis 5:1-5 }\quad{\scriptsize Gospel\ John 15:1-7 }
+
+\end{tcolorbox}
+
+
+\clearpage
+
+\label{w4-5}
+{\bfseries\large April }\hfill{\small Week 5}\par\vspace{0.5mm}
+
+
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 25 } \;\; {\scriptsize Sunday } \hfill \swatch{licolwhite}\par
+{\bfseries 4th Sunday after Easter }\par
+{\scriptsize 2nd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Jas 1:17-21 }\quad{\scriptsize Gospel\ John 16:5-14 }
+\par{\scriptsize Commemoration\ major-litanies }
+\end{tcolorbox}
-\textbf{ 1 } \quad ef-circumcision\\
-\small class-1 \textperiodcentered\ white\\
-\small Ep. Titus 2:11-15\quad\small Ev. Luke 2:21\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 26 } \;\; {\scriptsize Monday } \hfill \swatch{licolred}\par
+{\bfseries Sts. Cletus \& Marcellinus }\par
+{\scriptsize 3rd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ 1 Pet 5:1-4; 5:10-11. }\quad{\scriptsize Gospel\ Matt 16:13-19 }
-\textbf{ 2 } \quad Officium sanctae Mariae in sabbato\\
-\small class-4 \textperiodcentered\ white\\
-\small Ep. Titus 3:4-7\quad\small Ev. Luke 2:15-20\\
+\end{tcolorbox}
-\medskip
-\textbf{ 3 } \quad Sanctissimi Nominis Iesu\\
-\small class-2 \textperiodcentered\ white\\
-\small Ep. Acts 4:8-12\quad\small Ev. Luke 2:21\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 27 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Peter Canisius }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 }
-\medskip
+\end{tcolorbox}
-\textbf{ 4 } \quad ef-christmas-1-monday\\
-\small class-4 \textperiodcentered\ white\\
-\small Ep. Titus 2:11-15\quad\small Ev. Luke 2:21\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 28 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Paul of the Cross }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 1 Cor 1:17-25. }\quad{\scriptsize Gospel\ Luke 10:1-9 }
+\end{tcolorbox}
-\textbf{ 5 } \quad ef-christmas-1-tuesday\\
-\small class-4 \textperiodcentered\ white\\
-\small Ep. Titus 2:11-15\quad\small Ev. Luke 2:21\\
-\small Com. telesphorus-pope-and-martyr\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 29 } \;\; {\scriptsize Thursday } \hfill \swatch{licolred}\par
+{\bfseries St. Peter of Verona }\par
+{\scriptsize 3rd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ 2 Tim. 2:8-10; 3:10-12. }\quad{\scriptsize Gospel\ Matt 10:34-42 }
-\textbf{ 6 } \quad ef-epiphany\\
-\small class-1 \textperiodcentered\ white\\
-\small Ep. Isa 60:1-6\quad\small Ev. Matt 2:1-12\\
+\end{tcolorbox}
-\medskip
-\textbf{ 7 } \quad ef-christmas-2-thursday\\
-\small class-4 \textperiodcentered\ white\\
-\small Ep. Isa 60:1-6\quad\small Ev. Matt 2:1-12\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 30 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Catherine of Siena }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 2 Cor 10:17-18; 11:1-2 }\quad{\scriptsize Gospel\ Matt 25:1-13. }
-\medskip
+\end{tcolorbox}
-\textbf{ 8 } \quad ef-christmas-2-friday\\
-\small class-4 \textperiodcentered\ white\\
-\small Ep. Isa 60:1-6\quad\small Ev. Matt 2:1-12\\
-\medskip
+\clearpage
-\textbf{ 9 } \quad Officium sanctae Mariae in sabbato\\
-\small class-4 \textperiodcentered\ white\\
-\small Ep. Titus 3:4-7\quad\small Ev. Luke 2:15-20\\
-\medskip
+\label{w5-1}
+{\bfseries\large May }\hfill{\small Week 1}\par\vspace{0.5mm}
-\textbf{ 10 } \quad Sanctae Familiae Iesu, Mariae, Ioseph\\
-\small class-2 \textperiodcentered\ white\\
-\small Ep. Col 3:12-17\quad\small Ev. Luke 2:42-52\\
-\medskip
-\textbf{ 11 } \quad ef-time-after-epiphany-1-monday\\
-\small class-4 \textperiodcentered\ white\\
-\small Ep. Rom 12:1-5\quad\small Ev. Luke 2:42-52\\
-\small Com. hyginus-pope-and-martyr\\
-\medskip
-\textbf{ 12 } \quad ef-time-after-epiphany-1-tuesday\\
-\small class-4 \textperiodcentered\ white\\
-\small Ep. Rom 12:1-5\quad\small Ev. Luke 2:42-52\\
-\medskip
-\textbf{ 13 } \quad commemoration-of-the-baptism-of-the-lord\\
-\small class-2 \textperiodcentered\ white\\
-\small Ep. Isa 60:1-6\quad\small Ev. John 1:29-34\\
-\medskip
-\textbf{ 14 } \quad hilary\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\
-\small Com. felicis\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 1 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Joseph the Workman }\par
+{\scriptsize 1st Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Col. 3:14-15, 17, 23-24 }\quad{\scriptsize Gospel\ Matt 13:54-58 }
+\end{tcolorbox}
-\textbf{ 15 } \quad paul-the-first-hermit\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Phil 3:7-12\quad\small Ev. Matt 11:25-30\\
-\small Com. maur-abbot\\
-\medskip
+\clearpage
+\label{w5-2}
+{\bfseries\large May }\hfill{\small Week 2}\par\vspace{0.5mm}
-\textbf{ 16 } \quad marcellus-i\\
-\small class-3 \textperiodcentered\ red\\
-\small Ep. 1 Pet 5:1-4; 5:10-11.\quad\small Ev. Matt 16:13-19\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 2 } \;\; {\scriptsize Sunday } \hfill \swatch{licolwhite}\par
+{\bfseries 5th Sunday after Easter }\par
+{\scriptsize 2nd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Jas 1:22-27 }\quad{\scriptsize Gospel\ John 16:23-30 }
+\end{tcolorbox}
-\textbf{ 17 } \quad ef-time-after-epiphany-sunday-2\\
-\small class-2 \textperiodcentered\ green\\
-\small Ep. Rom 12:6-16\quad\small Ev. John 2:1-11\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 3 } \;\; {\scriptsize Monday } \hfill \swatch{licolviolet}\par
+{\bfseries Rogation Monday }\par
+{\scriptsize 4th Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Jas 1:22-27 }\quad{\scriptsize Gospel\ John 16:23-30 }
+\par{\scriptsize Commemoration\ sts-alexander-companions }
+\end{tcolorbox}
-\textbf{ 18 } \quad ef-time-after-epiphany-2-monday\\
-\small class-4 \textperiodcentered\ green\\
-\small Ep. Rom 12:6-16\quad\small Ev. John 2:1-11\\
-\small Com. prisca\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 4 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Monica }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 1 Tim. 5:3-10. }\quad{\scriptsize Gospel\ Luke 7:11-16 }
-\textbf{ 19 } \quad ef-time-after-epiphany-2-tuesday\\
-\small class-4 \textperiodcentered\ green\\
-\small Ep. Rom 12:6-16\quad\small Ev. John 2:1-11\\
-\small Com. canute-martyr\\
-\small Com. sts-marius-martha-audifax-abachum\\
+\end{tcolorbox}
-\medskip
-\textbf{ 20 } \quad sts-fabian-sebastian\\
-\small class-3 \textperiodcentered\ red\\
-\small Ep. Heb 11:33-39\quad\small Ev. Luke 6:17-23\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 5 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par
+{\bfseries Vigil of the Ascension }\par
+{\scriptsize 2nd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Eph. 4:7-13. }\quad{\scriptsize Gospel\ John 17:1-11. }
+\par{\scriptsize Commemoration\ St. Pius V }
+\end{tcolorbox}
-\medskip
-\textbf{ 21 } \quad agnes\\
-\small class-3 \textperiodcentered\ red\\
-\small Ep. Sir 51:1-8; 51:12\quad\small Ev. Matt 25:1-13.\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 6 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par
+{\bfseries The Ascension of Our Lord }\par
+{\scriptsize 1st Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Acts 1:1-11 }\quad{\scriptsize Gospel\ Mark 16:14-20 }
-\medskip
+\end{tcolorbox}
-\textbf{ 22 } \quad sts-vincent-anastasius\\
-\small class-3 \textperiodcentered\ red\\
-\small Ep. Wis 3:1-8\quad\small Ev. Luke 21:9-19\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 7 } \;\; {\scriptsize Friday } \hfill \swatch{licolred}\par
+{\bfseries St. Stanislaus }\par
+{\scriptsize 3rd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ Wis 5:1-5 }\quad{\scriptsize Gospel\ John 15:1-7 }
+\end{tcolorbox}
-\textbf{ 23 } \quad raymond-of-pe-afort\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Sir 31:8-11\quad\small Ev. Luke 12:35-40\\
-\small Com. emerentiana\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 8 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par
+{\bfseries Our Lady's Saturday Office }\par
+{\scriptsize 4th Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Ecclus 24:14-16 }\quad{\scriptsize Gospel\ John 19:25-27 }
-\textbf{ 24 } \quad ef-septuagesima-sunday-1\\
-\small class-2 \textperiodcentered\ violet\\
-\small Ep. 1 Cor. 9:24-27; 10:1-5\quad\small Ev. Matt 20:1-16\\
+\end{tcolorbox}
-\medskip
+\clearpage
-\textbf{ 25 } \quad conversion-of-st-paul\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Acts 9:1-22\quad\small Ev. Matt 19:27-29.\\
-\small Com. peter\\
+\label{w5-3}
+{\bfseries\large May }\hfill{\small Week 3}\par\vspace{0.5mm}
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 9 } \;\; {\scriptsize Sunday } \hfill \swatch{licolwhite}\par
+{\bfseries Sunday after the Ascension }\par
+{\scriptsize 2nd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 1 Pet 4:7-11. }\quad{\scriptsize Gospel\ John 15:26-27; 16:1-4. }
-\textbf{ 26 } \quad polycarp\\
-\small class-3 \textperiodcentered\ red\\
-\small Ep. 1 John 3:10-16\quad\small Ev. Matt 10:26-32.\\
+\end{tcolorbox}
-\medskip
-\textbf{ 27 } \quad john-chrysostom\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 10 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Antoninus }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Sir 44:16-27; 45:3-20 }\quad{\scriptsize Gospel\ Matt 25:14-23 }
+\par{\scriptsize Commemoration\ gordiano-and-epimacho }
+\end{tcolorbox}
-\medskip
-\textbf{ 28 } \quad peter-nolasco\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 1 Cor. 4:9-14\quad\small Ev. Luke 12:32-34\\
-\small Com. agnes-secundo\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 11 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par
+{\bfseries Sts. Philip \& James }\par
+{\scriptsize 2nd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ Wis. 5:1-5 }\quad{\scriptsize Gospel\ John 14:1-13 }
-\medskip
+\end{tcolorbox}
-\textbf{ 29 } \quad francis-de-sales\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 12 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolred}\par
+{\bfseries Sts. Nereus, Achilleus, Domitilla, \& Pancras }\par
+{\scriptsize 3rd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ Wis. 5:1-5 }\quad{\scriptsize Gospel\ John 4:46-53 }
+\end{tcolorbox}
-\textbf{ 30 } \quad martina\\
-\small class-3 \textperiodcentered\ red\\
-\small Ep. Sir 51:1-8; 51:12\quad\small Ev. Matt 25:1-13.\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 13 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Robert Bellarmine }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Wis 7:7-14. }\quad{\scriptsize Gospel\ Matt 5:13-19 }
-\textbf{ 31 } \quad ef-septuagesima-sunday-2\\
-\small class-2 \textperiodcentered\ violet\\
-\small Ep. 2 Cor. 11:19-33; 12:1-9\quad\small Ev. Luke 8:4-15\\
+\end{tcolorbox}
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 14 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par
+{\bfseries Friday of the 7th Week of Eastertide }\par
+{\scriptsize 4th Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 1 Pet 4:7-11. }\quad{\scriptsize Gospel\ John 15:26-27; 16:1-4. }
+\par{\scriptsize Commemoration\ boniface-martyr }
+\end{tcolorbox}
-\section*{ Februarius }
-\textbf{ 1 } \quad ignatius-of-antioch\\
-\small class-3 \textperiodcentered\ red\\
-\small Ep. Rom 8:35-39\quad\small Ev. John 12:24-26\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 15 } \;\; {\scriptsize Saturday } \hfill \swatch{licolred}\par
+{\bfseries Vigil of Pentecost }\par
+{\scriptsize 1st Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ Acts 19:1-8. }\quad{\scriptsize Gospel\ John 14:15-21. }
+\end{tcolorbox}
-\textbf{ 2 } \quad purification-of-the-blessed-virgin-mary\\
-\small class-2 \textperiodcentered\ white\\
-\small Ep. Mal 3:1-4\quad\small Ev. Luke 2:22-32\\
-\medskip
+\clearpage
+\label{w5-4}
+{\bfseries\large May }\hfill{\small Week 4}\par\vspace{0.5mm}
-\textbf{ 3 } \quad ef-septuagesima-2-wednesday\\
-\small class-4 \textperiodcentered\ violet\\
-\small Ep. 2 Cor. 11:19-33; 12:1-9\quad\small Ev. Luke 8:4-15\\
-\small Com. blaise\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 16 } \;\; {\scriptsize Sunday } \hfill \swatch{licolred}\par
+{\bfseries Pentecost Sunday (Whitsunday) }\par
+{\scriptsize 1st Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ Acts 2:1-11. }\quad{\scriptsize Gospel\ John 14:23-31. }
+\end{tcolorbox}
-\textbf{ 4 } \quad andrew-corsini\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Sir 44:16-27; 45:3-20\quad\small Ev. Matt 25:14-23\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 17 } \;\; {\scriptsize Monday } \hfill \swatch{licolred}\par
+{\bfseries Monday of Pentecost Week }\par
+{\scriptsize 1st Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ Acts 10:34, 42-48 }\quad{\scriptsize Gospel\ John 3:16-21 }
-\textbf{ 5 } \quad agatha\\
-\small class-3 \textperiodcentered\ red\\
-\small Ep. 1 Cor. 1:26-31\quad\small Ev. Matt 19:3-12.\\
+\end{tcolorbox}
-\medskip
-\textbf{ 6 } \quad titus\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Sir 44:16-27; 45:3-20\quad\small Ev. Luke 10:1-9\\
-\small Com. dorothy\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 18 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par
+{\bfseries Tuesday of Pentecost Week }\par
+{\scriptsize 1st Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ Acts 8:14-17. }\quad{\scriptsize Gospel\ John 10:1-10. }
-\medskip
+\end{tcolorbox}
-\textbf{ 7 } \quad ef-septuagesima-sunday-3\\
-\small class-2 \textperiodcentered\ violet\\
-\small Ep. 1 Cor. 13:1-13\quad\small Ev. Luke 18:31-43\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 19 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolred}\par
+{\bfseries Pentecost Ember Wednesday }\par
+{\scriptsize 1st Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ Acts 5:12-16 }\quad{\scriptsize Gospel\ John 6:44-52. }
+\end{tcolorbox}
-\textbf{ 8 } \quad john-of-matha\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Sir 31:8-11\quad\small Ev. Luke 12:35-40\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 20 } \;\; {\scriptsize Thursday } \hfill \swatch{licolred}\par
+{\bfseries Thursday of Pentecost Week }\par
+{\scriptsize 1st Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ Acts 8:5-8 }\quad{\scriptsize Gospel\ Luke 9:1-6 }
-\textbf{ 9 } \quad cyril-of-alexandria\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\
-\small Com. appollonia\\
+\end{tcolorbox}
-\medskip
-\textbf{ 10 } \quad ef-ash-wednesday\\
-\small class-1 \textperiodcentered\ violet\\
-\small Ep. Joel 2:12-19\quad\small Ev. Matt 6:16-21\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 21 } \;\; {\scriptsize Friday } \hfill \swatch{licolred}\par
+{\bfseries Pentecost Ember Friday }\par
+{\scriptsize 1st Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ Joel 2:23-24; 26-27 }\quad{\scriptsize Gospel\ Luke 5:17-26 }
-\medskip
+\end{tcolorbox}
-\textbf{ 11 } \quad ef-lent-after-ashes-thursday\\
-\small class-3 \textperiodcentered\ violet\\
-\small Ep. Isa 38:1-6\quad\small Ev. Matt 8:5-13\\
-\small Com. our-lady-of-lourdes\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 22 } \;\; {\scriptsize Saturday } \hfill \swatch{licolred}\par
+{\bfseries Pentecost Ember Saturday }\par
+{\scriptsize 1st Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ Rom 5:1-5. }\quad{\scriptsize Gospel\ Luke 4:38-44. }
+\end{tcolorbox}
-\textbf{ 12 } \quad ef-lent-after-ashes-friday\\
-\small class-3 \textperiodcentered\ violet\\
-\small Ep. Isa 58:1-9\quad\small Ev. Matt 5:43-48; 6:1-4\\
-\small Com. seven-holy-servite-founders\\
-\medskip
+\clearpage
+\label{w5-5}
+{\bfseries\large May }\hfill{\small Week 5}\par\vspace{0.5mm}
-\textbf{ 13 } \quad ef-lent-after-ashes-saturday\\
-\small class-3 \textperiodcentered\ violet\\
-\small Ep. Isa 58:9-14\quad\small Ev. Mark 6:47-56\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 23 } \;\; {\scriptsize Sunday } \hfill \swatch{licolwhite}\par
+{\bfseries Trinity Sunday }\par
+{\scriptsize 1st Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Rom 11:33-36. }\quad{\scriptsize Gospel\ Matt 28:18-20 }
+\end{tcolorbox}
-\textbf{ 14 } \quad ef-lent-sunday-1\\
-\small class-1 \textperiodcentered\ violet\\
-\small Ep. 2 Cor. 6:1-10\quad\small Ev. Matt 4:1-11\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 24 } \;\; {\scriptsize Monday } \hfill \swatch{licolgreen}\par
+{\bfseries Monday of the 1st Week of the Time after Pentecost }\par
+{\scriptsize 4th Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ 1 John 4:8-21 }\quad{\scriptsize Gospel\ Luke 6:36-42 }
-\textbf{ 15 } \quad ef-lent-1-monday\\
-\small class-3 \textperiodcentered\ violet\\
-\small Ep. Ezech 34:11-16\quad\small Ev. Matt 25:31-46\\
-\small Com. sts-faustinus-jovita\\
+\end{tcolorbox}
-\medskip
-\textbf{ 16 } \quad ef-lent-1-tuesday\\
-\small class-3 \textperiodcentered\ violet\\
-\small Ep. Isa 55:6-11\quad\small Ev. Matt 21:10-17\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 25 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Gregory VII }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 1 Pet 5:1-4; 5:10-11. }\quad{\scriptsize Gospel\ Matt 16:13-19 }
+\par{\scriptsize Commemoration\ urban-pope-and-martyr }
+\end{tcolorbox}
-\medskip
-\textbf{ 17 } \quad ef-lent-ember-wed\\
-\small class-2 \textperiodcentered\ violet\\
-\small Ep. 3 Kgs. 19:3-8\quad\small Ev. Matt 12:38-50\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 26 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Philip Neri }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Wis 7:7-14. }\quad{\scriptsize Gospel\ Luke 12:35-40 }
+\par{\scriptsize Commemoration\ eleutherius }
+\end{tcolorbox}
-\medskip
-\textbf{ 18 } \quad ef-lent-1-thursday\\
-\small class-3 \textperiodcentered\ violet\\
-\small Ep. Ezech 18:1-9\quad\small Ev. Matt 15:21-28\\
-\small Com. simeon\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 27 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par
+{\bfseries Corpus Christi }\par
+{\scriptsize 1st Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 1 Cor 11:23-29 }\quad{\scriptsize Gospel\ John 6:56-59 }
-\medskip
+\end{tcolorbox}
-\textbf{ 19 } \quad ef-lent-ember-fri\\
-\small class-2 \textperiodcentered\ violet\\
-\small Ep. Ezech 18:20-28\quad\small Ev. John 5:1-15\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 28 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Augustine of Canterbury }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 1 Thess 2:2-9 }\quad{\scriptsize Gospel\ Luke 10:1-9 }
+\end{tcolorbox}
-\textbf{ 20 } \quad ef-lent-ember-sat\\
-\small class-2 \textperiodcentered\ violet\\
-\small Ep. 1 Thess. 5:14-23\quad\small Ev. Matt 17:1-9\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 29 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Mary Magdalene de Pazzi }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 2 Cor 10:17-18; 11:1-2 }\quad{\scriptsize Gospel\ Matt 25:1-13. }
-\textbf{ 21 } \quad ef-lent-sunday-2\\
-\small class-1 \textperiodcentered\ violet\\
-\small Ep. 1 Thess. 4:1-7\quad\small Ev. Matt 17:1-9\\
+\end{tcolorbox}
-\medskip
+\clearpage
-\textbf{ 22 } \quad chair-of-st-peter\\
-\small class-2 \textperiodcentered\ white\\
-\small Ep. 1 Pet 1:1-7\quad\small Ev. Matt 16:13-19\\
-\small Com. ef-lent-2-monday\\
-\small Com. paul\\
+\label{w5-6}
+{\bfseries\large May }\hfill{\small Week 6}\par\vspace{0.5mm}
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 30 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par
+{\bfseries 2nd Sunday after Pentecost }\par
+{\scriptsize 2nd Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ 1 John 3:13-18. }\quad{\scriptsize Gospel\ Luke 14:16-24. }
-\textbf{ 23 } \quad ef-lent-2-tuesday\\
-\small class-3 \textperiodcentered\ violet\\
-\small Ep. 3 Kings 17:8-16\quad\small Ev. Matt 23:1-12\\
-\small Com. peter-damien\\
+\end{tcolorbox}
-\medskip
-\textbf{ 24 } \quad matthias\\
-\small class-2 \textperiodcentered\ red\\
-\small Ep. Acts 1:15-26\quad\small Ev. Matt 11:25-30\\
-\small Com. ef-lent-2-wednesday\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 31 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par
+{\bfseries Queenship of the Blessed Virgin Mary }\par
+{\scriptsize 2nd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Eccli 24:5; 14:7; 14:9-11; 24:30-31 }\quad{\scriptsize Gospel\ Luke 1:26-33 }
+\par{\scriptsize Commemoration\ petronilla }
+\end{tcolorbox}
-\medskip
-\textbf{ 25 } \quad ef-lent-2-thursday\\
-\small class-3 \textperiodcentered\ violet\\
-\small Ep. Jer 17:5-10\quad\small Ev. Luke 16:19-31\\
-\medskip
-\textbf{ 26 } \quad ef-lent-2-friday\\
-\small class-3 \textperiodcentered\ violet\\
-\small Ep. Gen 37:6-22\quad\small Ev. Matt 21:33-46\\
-\medskip
-\textbf{ 27 } \quad ef-lent-2-saturday\\
-\small class-3 \textperiodcentered\ violet\\
-\small Ep. Gen 27:6-40\quad\small Ev. Luke 15:11-32\\
-\small Com. gabriel-of-our-lady-of-sorrows\\
-\medskip
-\textbf{ 28 } \quad ef-lent-sunday-3\\
-\small class-1 \textperiodcentered\ violet\\
-\small Ep. Eph 5:1-9\quad\small Ev. Luke 11:14-28\\
+\clearpage
-\medskip
+\label{w6-1}
+{\bfseries\large June }\hfill{\small Week 1}\par\vspace{0.5mm}
-\section*{ Martius }
-\textbf{ 1 } \quad ef-lent-3-monday\\
-\small class-3 \textperiodcentered\ violet\\
-\small Ep. 4 Kings 5:1-15\quad\small Ev. Luke 4:23-30\\
-\medskip
-\textbf{ 2 } \quad ef-lent-3-tuesday\\
-\small class-3 \textperiodcentered\ violet\\
-\small Ep. 4 Kings 4:1-7\quad\small Ev. Matt 18:15-22\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 1 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Angela Merici }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 2 Cor 10:17-18; 11:1-2 }\quad{\scriptsize Gospel\ Matt 25:1-13. }
+\end{tcolorbox}
-\textbf{ 3 } \quad ef-lent-3-wednesday\\
-\small class-3 \textperiodcentered\ violet\\
-\small Ep. Ex 20:12-24\quad\small Ev. Matt 15:1-20\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 2 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolgreen}\par
+{\bfseries Wednesday of the 2nd Week of the Time after Pentecost }\par
+{\scriptsize 4th Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ 1 John 3:13-18. }\quad{\scriptsize Gospel\ Luke 14:16-24. }
+\par{\scriptsize Commemoration\ sts-marcellinus-peter-erasmus }
+\end{tcolorbox}
-\textbf{ 4 } \quad ef-lent-3-thursday\\
-\small class-3 \textperiodcentered\ violet\\
-\small Ep. Jer 7:1-7\quad\small Ev. Luke 4:38-44.\\
-\small Com. casimir\\
-\small Com. lucius\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 3 } \;\; {\scriptsize Thursday } \hfill \swatch{licolgreen}\par
+{\bfseries Thursday of the 2nd Week of the Time after Pentecost }\par
+{\scriptsize 4th Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ 1 John 3:13-18. }\quad{\scriptsize Gospel\ Luke 14:16-24. }
-\textbf{ 5 } \quad ef-lent-3-friday\\
-\small class-3 \textperiodcentered\ violet\\
-\small Ep. Num 20:1, 3; 6-13.\quad\small Ev. John 4:5-42\\
+\end{tcolorbox}
-\medskip
-\textbf{ 6 } \quad ef-lent-3-saturday\\
-\small class-3 \textperiodcentered\ violet\\
-\small Ep. Dan 13:1-9, 15-17, 19-30, 33-62.\quad\small Ev. John 8:1-11\\
-\small Com. sts-felicitas-perpetua\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 4 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par
+{\bfseries The Sacred Heart of Jesus }\par
+{\scriptsize 1st Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Eph 3:8-12, 14-19 }\quad{\scriptsize Gospel\ John 19:31-37 }
-\medskip
+\end{tcolorbox}
-\textbf{ 7 } \quad ef-lent-sunday-4\\
-\small class-1 \textperiodcentered\ rose\\
-\small Ep. Gal 4:22-31\quad\small Ev. John 6:1-15\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 5 } \;\; {\scriptsize Saturday } \hfill \swatch{licolred}\par
+{\bfseries St. Boniface }\par
+{\scriptsize 3rd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ Ecclus 44:1-15 }\quad{\scriptsize Gospel\ Matt 5:1-12 }
+\end{tcolorbox}
-\textbf{ 8 } \quad ef-lent-4-monday\\
-\small class-3 \textperiodcentered\ violet\\
-\small Ep. 3 Kings 3:16-28\quad\small Ev. John 2:13-25\\
-\small Com. john-of-god\\
-\medskip
+\clearpage
+\label{w6-2}
+{\bfseries\large June }\hfill{\small Week 2}\par\vspace{0.5mm}
-\textbf{ 9 } \quad ef-lent-4-tuesday\\
-\small class-3 \textperiodcentered\ violet\\
-\small Ep. Ex 32:7-14\quad\small Ev. John 7:14-31\\
-\small Com. frances-rome\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 6 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par
+{\bfseries 3rd Sunday after Pentecost }\par
+{\scriptsize 2nd Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ 1 Pet. 5:6-11 }\quad{\scriptsize Gospel\ Luke 15:1-10 }
+\end{tcolorbox}
-\textbf{ 10 } \quad ef-lent-4-wednesday\\
-\small class-3 \textperiodcentered\ violet\\
-\small Ep. Isa. 1:16-19\quad\small Ev. John 9:1-38\\
-\small Com. forty-holy-martyrs-of-sebaste\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 7 } \;\; {\scriptsize Monday } \hfill \swatch{licolgreen}\par
+{\bfseries Monday of the 3rd Week of the Time after Pentecost }\par
+{\scriptsize 4th Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ 1 Pet. 5:6-11 }\quad{\scriptsize Gospel\ Luke 15:1-10 }
-\textbf{ 11 } \quad ef-lent-4-thursday\\
-\small class-3 \textperiodcentered\ violet\\
-\small Ep. 4 Kings 4:25-38\quad\small Ev. Luke 7:11-16\\
+\end{tcolorbox}
-\medskip
-\textbf{ 12 } \quad ef-lent-4-friday\\
-\small class-3 \textperiodcentered\ violet\\
-\small Ep. 3 Kings 17:17-24\quad\small Ev. John 11:1-45\\
-\small Com. gregory-the-great\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 8 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolgreen}\par
+{\bfseries Tuesday of the 3rd Week of the Time after Pentecost }\par
+{\scriptsize 4th Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ 1 Pet. 5:6-11 }\quad{\scriptsize Gospel\ Luke 15:1-10 }
-\medskip
+\end{tcolorbox}
-\textbf{ 13 } \quad ef-lent-4-saturday\\
-\small class-3 \textperiodcentered\ violet\\
-\small Ep. Isa 49:8-15\quad\small Ev. John 8:12-20\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 9 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolgreen}\par
+{\bfseries Wednesday of the 3rd Week of the Time after Pentecost }\par
+{\scriptsize 4th Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ 1 Pet. 5:6-11 }\quad{\scriptsize Gospel\ Luke 15:1-10 }
+\par{\scriptsize Commemoration\ sts-primus-felicianus }
+\end{tcolorbox}
-\textbf{ 14 } \quad ef-passion-sunday\\
-\small class-1 \textperiodcentered\ violet\\
-\small Ep. Heb 9:11-15.\quad\small Ev. John 8:46-59.\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 10 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Margaret of Scotland }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Prov 31:10-31 }\quad{\scriptsize Gospel\ Matt 13:44-52. }
+\end{tcolorbox}
-\textbf{ 15 } \quad ef-passiontide-1-monday\\
-\small class-3 \textperiodcentered\ violet\\
-\small Ep. Jonas 3:1-10\quad\small Ev. John 7:32-39\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 11 } \;\; {\scriptsize Friday } \hfill \swatch{licolred}\par
+{\bfseries St. Barnabas }\par
+{\scriptsize 3rd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ Acts 11:21-26; 13:1-3 }\quad{\scriptsize Gospel\ Matt 10:16-22 }
-\textbf{ 16 } \quad ef-passiontide-1-tuesday\\
-\small class-3 \textperiodcentered\ violet\\
-\small Ep. Dan 14:27, 28-42\quad\small Ev. John 7:1-13\\
+\end{tcolorbox}
-\medskip
-\textbf{ 17 } \quad ef-passiontide-1-wednesday\\
-\small class-3 \textperiodcentered\ violet\\
-\small Ep. Lev 19:1-2, 11-19, 25\quad\small Ev. John 10:22-38\\
-\small Com. patrick\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 12 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par
+{\bfseries St. John of San Fecundo }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Luke 12:35-40 }
+\par{\scriptsize Commemoration\ basilidus }
+\end{tcolorbox}
-\medskip
+\clearpage
-\textbf{ 18 } \quad ef-passiontide-1-thursday\\
-\small class-3 \textperiodcentered\ violet\\
-\small Ep. Dan 3:25, 34-45.\quad\small Ev. Luke 7:36-50\\
-\small Com. cyril-of-jerusalem\\
+\label{w6-3}
+{\bfseries\large June }\hfill{\small Week 3}\par\vspace{0.5mm}
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 13 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par
+{\bfseries 4th Sunday after Pentecost }\par
+{\scriptsize 2nd Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Rom 8:18-23 }\quad{\scriptsize Gospel\ Luke 5:1-11 }
-\textbf{ 19 } \quad joseph-spouse-of-the-bl-virgin-mary\\
-\small class-1 \textperiodcentered\ white\\
-\small Ep. Ecclus 45:1-6\quad\small Ev. Matt 1:18-21\\
-\small Com. ef-passiontide-1-friday\\
+\end{tcolorbox}
-\medskip
-\textbf{ 20 } \quad ef-passiontide-1-saturday\\
-\small class-3 \textperiodcentered\ violet\\
-\small Ep. Jer 18:18-23\quad\small Ev. John 12:10-36\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 14 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Basil the Great }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Luke 14:26-35 }
-\medskip
+\end{tcolorbox}
-\textbf{ 21 } \quad ef-palm-sunday\\
-\small class-1 \textperiodcentered\ violet\\
-\small Ep. Phil 2:5-11\quad\small Ev. Matt. 26:36-75; 27:1-60.\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 15 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolgreen}\par
+{\bfseries Tuesday of the 4th Week of the Time after Pentecost }\par
+{\scriptsize 4th Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Rom 8:18-23 }\quad{\scriptsize Gospel\ Luke 5:1-11 }
+\par{\scriptsize Commemoration\ vitus }
+\end{tcolorbox}
-\textbf{ 22 } \quad ef-passiontide-2-monday\\
-\small class-1 \textperiodcentered\ violet\\
-\small Ep. Isa 50:5-10\quad\small Ev. John 12:1-9\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 16 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolgreen}\par
+{\bfseries Wednesday of the 4th Week of the Time after Pentecost }\par
+{\scriptsize 4th Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Rom 8:18-23 }\quad{\scriptsize Gospel\ Luke 5:1-11 }
+\end{tcolorbox}
-\textbf{ 23 } \quad ef-passiontide-2-tuesday\\
-\small class-1 \textperiodcentered\ violet\\
-\small Ep. Jer 11:18-20\quad\small Ev. Mark 14:32-72; 15, 1-46\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 17 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Gregory Barbarigo }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Sir 44:16-27; 45:3-20 }\quad{\scriptsize Gospel\ Matt 25:14-23 }
-\textbf{ 24 } \quad ef-passiontide-2-wednesday\\
-\small class-1 \textperiodcentered\ violet\\
-\small Ep. Isa 53:1-12\quad\small Ev. Luke 22:39-71; 23:1-53\\
+\end{tcolorbox}
-\medskip
-\textbf{ 25 } \quad Feria V in Cena Domini\\
-\small class-1 \textperiodcentered\ white\\
-\small Ep. 1 Cor 11:20-32\quad\small Ev. John 13:1-15\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 18 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Ephrem of Syria }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 }
+\par{\scriptsize Commemoration\ marcus-and-marcellianus }
+\end{tcolorbox}
-\medskip
-\textbf{ 26 } \quad Feria VI in Passione et Morte Domini\\
-\small class-1 \textperiodcentered\ black\\
-\small Ep. Ex 12:1-11\quad\small Ev. John 18:1-40; 19:1-42\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 19 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Julia of Falconieri }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 2 Cor 10:17-18; 11:1-2 }\quad{\scriptsize Gospel\ Matt 25:1-13. }
+\par{\scriptsize Commemoration\ sts-gervasius-and-protasius }
+\end{tcolorbox}
-\medskip
+\clearpage
-\textbf{ 27 } \quad Sabbato sancto\\
-\small class-1 \textperiodcentered\ violet\\
-\small Ep. Col 3:1-4\quad\small Ev. Matt 28:1-7\\
+\label{w6-4}
+{\bfseries\large June }\hfill{\small Week 4}\par\vspace{0.5mm}
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 20 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par
+{\bfseries 5th Sunday after Pentecost }\par
+{\scriptsize 2nd Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ 1 Pet 3:8-15. }\quad{\scriptsize Gospel\ Matt 5:20-24. }
-\textbf{ 28 } \quad ef-easter-sunday\\
-\small class-1 \textperiodcentered\ white\\
-\small Ep. 1 Cor 5:7-8\quad\small Ev. Mark 16:1-7\\
+\end{tcolorbox}
-\medskip
-\textbf{ 29 } \quad ef-easter-1-monday\\
-\small class-1 \textperiodcentered\ white\\
-\small Ep. Acts 10:37-43.\quad\small Ev. Luke 24:13-35\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 21 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Aloysius Gongzaga }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Matt 22:29-40 }
-\medskip
+\end{tcolorbox}
-\textbf{ 30 } \quad ef-easter-1-tuesday\\
-\small class-1 \textperiodcentered\ white\\
-\small Ep. Acts 13:16; 13:26-33\quad\small Ev. Luke 24:36-47\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 22 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Paulinus of Nola }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 2 Cor. 8:9-15 }\quad{\scriptsize Gospel\ Luke 12:32-34 }
+\end{tcolorbox}
-\textbf{ 31 } \quad ef-easter-1-wednesday\\
-\small class-1 \textperiodcentered\ white\\
-\small Ep. Acts 3:13-15; 3:17-19\quad\small Ev. John 21:1-14\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 23 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolviolet}\par
+{\bfseries Vigil of the Nativity of St. John the Baptist }\par
+{\scriptsize 2nd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Jer 1:4-10 }\quad{\scriptsize Gospel\ Luke 1:5-17 }
+\end{tcolorbox}
-\section*{ Aprilis }
-\textbf{ 1 } \quad ef-easter-1-thursday\\
-\small class-1 \textperiodcentered\ white\\
-\small Ep. Acts 8:26-40\quad\small Ev. John 20:11-18\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 24 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par
+{\bfseries Nativity of St. John the Baptist }\par
+{\scriptsize 1st Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Isa 49:1-3, 5-7. }\quad{\scriptsize Gospel\ Luke 1:57-68 }
+\end{tcolorbox}
-\textbf{ 2 } \quad ef-easter-1-friday\\
-\small class-1 \textperiodcentered\ white\\
-\small Ep. 1 Pet 3:18-22\quad\small Ev. Matt 28:16-20\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 25 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par
+{\bfseries St. William }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Ecclus 45:1-6 }\quad{\scriptsize Gospel\ Matt 19:27-29. }
-\textbf{ 3 } \quad ef-easter-1-saturday\\
-\small class-1 \textperiodcentered\ white\\
-\small Ep. 1 Pet 2:1-10\quad\small Ev. John 20:1-9\\
+\end{tcolorbox}
-\medskip
-\textbf{ 4 } \quad ef-low-sunday\\
-\small class-1 \textperiodcentered\ white\\
-\small Ep. 1 John 5:4-10\quad\small Ev. John 20:19-31\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 26 } \;\; {\scriptsize Saturday } \hfill \swatch{licolred}\par
+{\bfseries Sts. John \& Paul }\par
+{\scriptsize 3rd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ Eccli 44:10-15 }\quad{\scriptsize Gospel\ Luke 12:1-8 }
-\medskip
+\end{tcolorbox}
-\textbf{ 5 } \quad annunciation-of-the-blessed-virgin-mary\\
-\small class-1 \textperiodcentered\ white\\
-\small Ep. Isa 7:10-15\quad\small Ev. Luke 1:26-38\\
+\clearpage
-\medskip
+\label{w6-5}
+{\bfseries\large June }\hfill{\small Week 5}\par\vspace{0.5mm}
-\textbf{ 6 } \quad ef-easter-2-tuesday\\
-\small class-4 \textperiodcentered\ white\\
-\small Ep. 1 John 5:4-10\quad\small Ev. John 20:19-31\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 27 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par
+{\bfseries 6th Sunday after Pentecost }\par
+{\scriptsize 2nd Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Rom 6:3-11. }\quad{\scriptsize Gospel\ Mark 8:1-9 }
-\medskip
+\end{tcolorbox}
-\textbf{ 7 } \quad ef-easter-2-wednesday\\
-\small class-4 \textperiodcentered\ white\\
-\small Ep. 1 John 5:4-10\quad\small Ev. John 20:19-31\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 28 } \;\; {\scriptsize Monday } \hfill \swatch{licolviolet}\par
+{\bfseries Vigil of Sts. Peter \& Paul }\par
+{\scriptsize 2nd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Acts 3:1-10 }\quad{\scriptsize Gospel\ John 21:15-19 }
+\end{tcolorbox}
-\textbf{ 8 } \quad ef-easter-2-thursday\\
-\small class-4 \textperiodcentered\ white\\
-\small Ep. 1 John 5:4-10\quad\small Ev. John 20:19-31\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 29 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par
+{\bfseries Sts. Peter \& Paul }\par
+{\scriptsize 1st Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ Acts 12:1-11 }\quad{\scriptsize Gospel\ Matt 16:13-19 }
-\textbf{ 9 } \quad ef-easter-2-friday\\
-\small class-4 \textperiodcentered\ white\\
-\small Ep. 1 John 5:4-10\quad\small Ev. John 20:19-31\\
+\end{tcolorbox}
-\medskip
-\textbf{ 10 } \quad Officium sanctae Mariae in sabbato\\
-\small class-4 \textperiodcentered\ white\\
-\small Ep. Ecclus 24:14-16\quad\small Ev. John 19:25-27\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 30 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolred}\par
+{\bfseries In Commemoratione Sancti Pauli Apostoli }\par
+{\scriptsize 3rd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ Gal 1:11-20 }\quad{\scriptsize Gospel\ Matt 10:16-22 }
+\par{\scriptsize Commemoration\ commemoration-of-st-peter }
+\end{tcolorbox}
-\medskip
-\textbf{ 11 } \quad ef-easter-sunday-3\\
-\small class-2 \textperiodcentered\ white\\
-\small Ep. 1 Pet 2:21-25\quad\small Ev. John 10:11-16\\
-\medskip
-\textbf{ 12 } \quad ef-easter-3-monday\\
-\small class-4 \textperiodcentered\ white\\
-\small Ep. 1 Pet 2:21-25\quad\small Ev. John 10:11-16\\
-\medskip
+\clearpage
-\textbf{ 13 } \quad hermenegild\\
-\small class-3 \textperiodcentered\ red\\
-\small Ep. Wis 10:10-14\quad\small Ev. Luke 14:26-33.\\
-\medskip
+\label{w7-1}
+{\bfseries\large July }\hfill{\small Week 1}\par\vspace{0.5mm}
-\textbf{ 14 } \quad justin\\
-\small class-3 \textperiodcentered\ red\\
-\small Ep. 1 Cor 1:18-25; 1:30;\quad\small Ev. Luke 12:2-8\\
-\small Com. sts-tiburtius-valerian-et-maximus-martyrs\\
-\medskip
-\textbf{ 15 } \quad ef-easter-3-thursday\\
-\small class-4 \textperiodcentered\ white\\
-\small Ep. 1 Pet 2:21-25\quad\small Ev. John 10:11-16\\
-\medskip
-\textbf{ 16 } \quad ef-easter-3-friday\\
-\small class-4 \textperiodcentered\ white\\
-\small Ep. 1 Pet 2:21-25\quad\small Ev. John 10:11-16\\
-\medskip
-\textbf{ 17 } \quad Officium sanctae Mariae in sabbato\\
-\small class-4 \textperiodcentered\ white\\
-\small Ep. Ecclus 24:14-16\quad\small Ev. John 19:25-27\\
-\small Com. anicetus\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 1 } \;\; {\scriptsize Thursday } \hfill \swatch{licolred}\par
+{\bfseries The Precious Blood of Our Lord Jesus Christ }\par
+{\scriptsize 1st Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ Heb 9:11-15. }\quad{\scriptsize Gospel\ John 19:30-35 }
-\medskip
+\end{tcolorbox}
-\textbf{ 18 } \quad ef-easter-sunday-4\\
-\small class-2 \textperiodcentered\ white\\
-\small Ep. 1 Pet 2:11-19\quad\small Ev. John 16:16-22\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 2 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par
+{\bfseries Visitation of the Blessed Virgin Mary }\par
+{\scriptsize 2nd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Song 2:8-14 }\quad{\scriptsize Gospel\ Luke 1:39-47 }
+\par{\scriptsize Commemoration\ processus-and-martinian }
+\end{tcolorbox}
-\textbf{ 19 } \quad ef-easter-4-monday\\
-\small class-4 \textperiodcentered\ white\\
-\small Ep. 1 Pet 2:11-19\quad\small Ev. John 16:16-22\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 3 } \;\; {\scriptsize Saturday } \hfill \swatch{licolred}\par
+{\bfseries St. Irenaeus }\par
+{\scriptsize 3rd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ 2 Tim. 3:14-17; 4:1-5 }\quad{\scriptsize Gospel\ Matt 10:28-33 }
+\end{tcolorbox}
-\textbf{ 20 } \quad ef-easter-4-tuesday\\
-\small class-4 \textperiodcentered\ white\\
-\small Ep. 1 Pet 2:11-19\quad\small Ev. John 16:16-22\\
-\medskip
+\clearpage
+\label{w7-2}
+{\bfseries\large July }\hfill{\small Week 2}\par\vspace{0.5mm}
-\textbf{ 21 } \quad anselm\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 4 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par
+{\bfseries 7th Sunday after Pentecost }\par
+{\scriptsize 2nd Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Rom 6:19-23 }\quad{\scriptsize Gospel\ Matt 7:15-21 }
+\end{tcolorbox}
-\textbf{ 22 } \quad sts-soter-caius\\
-\small class-3 \textperiodcentered\ red\\
-\small Ep. 1 Pet 5:1-4; 5:10-11.\quad\small Ev. Matt 16:13-19\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 5 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Anthony Mary Zaccariah }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 1 Tim. 4:8-16 }\quad{\scriptsize Gospel\ Mark 10:15-21 }
-\textbf{ 23 } \quad ef-easter-4-friday\\
-\small class-4 \textperiodcentered\ white\\
-\small Ep. 1 Pet 2:11-19\quad\small Ev. John 16:16-22\\
-\small Com. george\\
+\end{tcolorbox}
-\medskip
-\textbf{ 24 } \quad fidelis-of-sigmaringen\\
-\small class-3 \textperiodcentered\ red\\
-\small Ep. Wis 5:1-5\quad\small Ev. John 15:1-7\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 6 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolgreen}\par
+{\bfseries Tuesday of the 7th Week of the Time after Pentecost }\par
+{\scriptsize 4th Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Rom 6:19-23 }\quad{\scriptsize Gospel\ Matt 7:15-21 }
-\medskip
+\end{tcolorbox}
-\textbf{ 25 } \quad ef-easter-sunday-5\\
-\small class-2 \textperiodcentered\ white\\
-\small Ep. Jas 1:17-21\quad\small Ev. John 16:5-14\\
-\small Com. major-litanies\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 7 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par
+{\bfseries Sts. Cyril \& Methodius }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Heb 7:23-27 }\quad{\scriptsize Gospel\ Luke 10:1-9 }
+\end{tcolorbox}
-\textbf{ 26 } \quad sts-cletus-marcellinus\\
-\small class-3 \textperiodcentered\ red\\
-\small Ep. 1 Pet 5:1-4; 5:10-11.\quad\small Ev. Matt 16:13-19\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 8 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Elizabeth of Portugal }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Prov 31:10-31 }\quad{\scriptsize Gospel\ Matt 13:44-52. }
-\textbf{ 27 } \quad peter-canisius\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\
+\end{tcolorbox}
-\medskip
-\textbf{ 28 } \quad paul-of-the-cross\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 1 Cor 1:17-25.\quad\small Ev. Luke 10:1-9\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 9 } \;\; {\scriptsize Friday } \hfill \swatch{licolgreen}\par
+{\bfseries Friday of the 7th Week of the Time after Pentecost }\par
+{\scriptsize 4th Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Rom 6:19-23 }\quad{\scriptsize Gospel\ Matt 7:15-21 }
-\medskip
+\end{tcolorbox}
-\textbf{ 29 } \quad peter-of-verona\\
-\small class-3 \textperiodcentered\ red\\
-\small Ep. 2 Tim. 2:8-10; 3:10-12.\quad\small Ev. Matt 10:34-42\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 10 } \;\; {\scriptsize Saturday } \hfill \swatch{licolred}\par
+{\bfseries Seven Holy Brothers and Sts. Rufina \& Secunda }\par
+{\scriptsize 3rd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ Prov 31:10-31 }\quad{\scriptsize Gospel\ Matt 12:46-50 }
+\end{tcolorbox}
-\textbf{ 30 } \quad catherine-of-siena\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 2 Cor 10:17-18; 11:1-2\quad\small Ev. Matt 25:1-13.\\
-\medskip
+\clearpage
+\label{w7-3}
+{\bfseries\large July }\hfill{\small Week 3}\par\vspace{0.5mm}
-\section*{ Maius }
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 11 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par
+{\bfseries 8th Sunday after Pentecost }\par
+{\scriptsize 2nd Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Rom 8:12-17 }\quad{\scriptsize Gospel\ Luke 16:1-9 }
-\textbf{ 1 } \quad joseph-the-workman\\
-\small class-1 \textperiodcentered\ white\\
-\small Ep. Col. 3:14-15, 17, 23-24\quad\small Ev. Matt 13:54-58\\
+\end{tcolorbox}
-\medskip
-\textbf{ 2 } \quad ef-easter-sunday-6\\
-\small class-2 \textperiodcentered\ white\\
-\small Ep. Jas 1:22-27\quad\small Ev. John 16:23-30\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 12 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par
+{\bfseries St. John Gualbert }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Ecclus 45:1-6 }\quad{\scriptsize Gospel\ Matt 5:43-48 }
+\par{\scriptsize Commemoration\ naboris-et-felicis }
+\end{tcolorbox}
-\medskip
-\textbf{ 3 } \quad ef-rogation-monday\\
-\small class-4 \textperiodcentered\ violet\\
-\small Ep. Jas 1:22-27\quad\small Ev. John 16:23-30\\
-\small Com. sts-alexander-companions\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 13 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolgreen}\par
+{\bfseries Tuesday of the 8th Week of the Time after Pentecost }\par
+{\scriptsize 4th Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Rom 8:12-17 }\quad{\scriptsize Gospel\ Luke 16:1-9 }
-\medskip
+\end{tcolorbox}
-\textbf{ 4 } \quad monica\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 1 Tim. 5:3-10.\quad\small Ev. Luke 7:11-16\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 14 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Bonaventure }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 }
+\end{tcolorbox}
-\textbf{ 5 } \quad ef-ascension-vigil\\
-\small class-2 \textperiodcentered\ white\\
-\small Ep. Eph. 4:7-13.\quad\small Ev. John 17:1-11.\\
-\small Com. pius-v\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 15 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Henry the Emperor }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Luke 12:35-40 }
-\textbf{ 6 } \quad ef-ascension\\
-\small class-1 \textperiodcentered\ white\\
-\small Ep. Acts 1:1-11\quad\small Ev. Mark 16:14-20\\
+\end{tcolorbox}
-\medskip
-\textbf{ 7 } \quad stanislaus\\
-\small class-3 \textperiodcentered\ red\\
-\small Ep. Wis 5:1-5\quad\small Ev. John 15:1-7\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 16 } \;\; {\scriptsize Friday } \hfill \swatch{licolgreen}\par
+{\bfseries Friday of the 8th Week of the Time after Pentecost }\par
+{\scriptsize 4th Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Rom 8:12-17 }\quad{\scriptsize Gospel\ Luke 16:1-9 }
+\par{\scriptsize Commemoration\ our-lady-of-mt-carmel }
+\end{tcolorbox}
-\medskip
-\textbf{ 8 } \quad Officium sanctae Mariae in sabbato\\
-\small class-4 \textperiodcentered\ white\\
-\small Ep. Ecclus 24:14-16\quad\small Ev. John 19:25-27\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 17 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par
+{\bfseries Our Lady's Saturday Office }\par
+{\scriptsize 4th Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Ecclus 24:14-16 }\quad{\scriptsize Gospel\ Luke 11:27-28 }
+\par{\scriptsize Commemoration\ alexis }
+\end{tcolorbox}
-\medskip
+\clearpage
-\textbf{ 9 } \quad ef-easter-sunday-7\\
-\small class-2 \textperiodcentered\ white\\
-\small Ep. 1 Pet 4:7-11.\quad\small Ev. John 15:26-27; 16:1-4.\\
+\label{w7-4}
+{\bfseries\large July }\hfill{\small Week 4}\par\vspace{0.5mm}
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 18 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par
+{\bfseries 9th Sunday after Pentecost }\par
+{\scriptsize 2nd Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ 1 Cor. 10:6-13 }\quad{\scriptsize Gospel\ Luke 19:41-47 }
-\textbf{ 10 } \quad antoninus\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Sir 44:16-27; 45:3-20\quad\small Ev. Matt 25:14-23\\
-\small Com. gordiano-and-epimacho\\
+\end{tcolorbox}
-\medskip
-\textbf{ 11 } \quad sts-philip-james\\
-\small class-2 \textperiodcentered\ red\\
-\small Ep. Wis. 5:1-5\quad\small Ev. John 14:1-13\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 19 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Vincent de Paul }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 1 Cor. 4:9-14 }\quad{\scriptsize Gospel\ Luke 10:1-9 }
-\medskip
+\end{tcolorbox}
-\textbf{ 12 } \quad sts-nereus-achilleus-domitilla-pancras\\
-\small class-3 \textperiodcentered\ red\\
-\small Ep. Wis. 5:1-5\quad\small Ev. John 4:46-53\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 20 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Jerome Emiliani }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Isa 58:7-11 }\quad{\scriptsize Gospel\ Matt 19:13-21 }
+\par{\scriptsize Commemoration\ margaret }
+\end{tcolorbox}
-\textbf{ 13 } \quad robert-bellarmine\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Wis 7:7-14.\quad\small Ev. Matt 5:13-19\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 21 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Laurence of Brindisi }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 }
+\par{\scriptsize Commemoration\ praxedis-virginis }
+\end{tcolorbox}
-\textbf{ 14 } \quad ef-easter-7-friday\\
-\small class-4 \textperiodcentered\ white\\
-\small Ep. 1 Pet 4:7-11.\quad\small Ev. John 15:26-27; 16:1-4.\\
-\small Com. boniface-martyr\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 22 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Mary Magdalene }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Song 3:2-5; 8:6-7 }\quad{\scriptsize Gospel\ Luke 7:36-50 }
+\end{tcolorbox}
-\textbf{ 15 } \quad ef-pentecost-vigil\\
-\small class-1 \textperiodcentered\ red\\
-\small Ep. Acts 19:1-8.\quad\small Ev. John 14:15-21.\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 23 } \;\; {\scriptsize Friday } \hfill \swatch{licolred}\par
+{\bfseries St. Apollinaris }\par
+{\scriptsize 3rd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ 1 Pet. 5:1-11 }\quad{\scriptsize Gospel\ Luke 22:24-30 }
+\par{\scriptsize Commemoration\ liborii }
+\end{tcolorbox}
-\textbf{ 16 } \quad ef-pentecost\\
-\small class-1 \textperiodcentered\ red\\
-\small Ep. Acts 2:1-11.\quad\small Ev. John 14:23-31.\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 24 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par
+{\bfseries Our Lady's Saturday Office }\par
+{\scriptsize 4th Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Ecclus 24:14-16 }\quad{\scriptsize Gospel\ Luke 11:27-28 }
+\par{\scriptsize Commemoration\ christina }
+\end{tcolorbox}
-\textbf{ 17 } \quad ef-easter-8-monday\\
-\small class-1 \textperiodcentered\ red\\
-\small Ep. Acts 10:34, 42-48\quad\small Ev. John 3:16-21\\
-\medskip
+\clearpage
+\label{w7-5}
+{\bfseries\large July }\hfill{\small Week 5}\par\vspace{0.5mm}
-\textbf{ 18 } \quad ef-easter-8-tuesday\\
-\small class-1 \textperiodcentered\ red\\
-\small Ep. Acts 8:14-17.\quad\small Ev. John 10:1-10.\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 25 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par
+{\bfseries 10th Sunday after Pentecost }\par
+{\scriptsize 2nd Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ 1 Cor. 12:2-11 }\quad{\scriptsize Gospel\ Luke 18:9-14 }
+\par{\scriptsize Commemoration\ St. James the Greater }
+\end{tcolorbox}
-\textbf{ 19 } \quad ef-pentecost-ember-wed\\
-\small class-1 \textperiodcentered\ red\\
-\small Ep. Acts 5:12-16\quad\small Ev. John 6:44-52.\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 26 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Anne, Mother of the Blessed Virgin }\par
+{\scriptsize 2nd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Prov 31:10-31 }\quad{\scriptsize Gospel\ Matt 13:44-52. }
+\end{tcolorbox}
-\textbf{ 20 } \quad ef-easter-8-thursday\\
-\small class-1 \textperiodcentered\ red\\
-\small Ep. Acts 8:5-8\quad\small Ev. Luke 9:1-6\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 27 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolgreen}\par
+{\bfseries Tuesday of the 10th Week of the Time after Pentecost }\par
+{\scriptsize 4th Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ 1 Cor. 12:2-11 }\quad{\scriptsize Gospel\ Luke 18:9-14 }
+\par{\scriptsize Commemoration\ pantaleon }
+\end{tcolorbox}
-\textbf{ 21 } \quad ef-pentecost-ember-fri\\
-\small class-1 \textperiodcentered\ red\\
-\small Ep. Joel 2:23-24; 26-27\quad\small Ev. Luke 5:17-26\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 28 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolred}\par
+{\bfseries Sts. Nazarius \& Celsus, St. Victor I \& St. Innocent I }\par
+{\scriptsize 3rd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ Wis 10:17-20 }\quad{\scriptsize Gospel\ Luke 21:9-19 }
-\textbf{ 22 } \quad ef-pentecost-ember-sat\\
-\small class-1 \textperiodcentered\ red\\
-\small Ep. Rom 5:1-5.\quad\small Ev. Luke 4:38-44.\\
+\end{tcolorbox}
-\medskip
-\textbf{ 23 } \quad ef-trinity\\
-\small class-1 \textperiodcentered\ white\\
-\small Ep. Rom 11:33-36.\quad\small Ev. Matt 28:18-20\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 29 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Martha }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 2 Cor 10:17-18; 11:1-2 }\quad{\scriptsize Gospel\ Luke 10:38-42 }
+\par{\scriptsize Commemoration\ felicis-simplicii-faustini-et-beatricis }
+\end{tcolorbox}
-\medskip
-\textbf{ 24 } \quad ef-time-after-pentecost-1-monday\\
-\small class-4 \textperiodcentered\ green\\
-\small Ep. 1 John 4:8-21\quad\small Ev. Luke 6:36-42\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 30 } \;\; {\scriptsize Friday } \hfill \swatch{licolgreen}\par
+{\bfseries Friday of the 10th Week of the Time after Pentecost }\par
+{\scriptsize 4th Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ 1 Cor. 12:2-11 }\quad{\scriptsize Gospel\ Luke 18:9-14 }
+\par{\scriptsize Commemoration\ sts-abdon-sennen }
+\end{tcolorbox}
-\medskip
-\textbf{ 25 } \quad gregory-vii\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 1 Pet 5:1-4; 5:10-11.\quad\small Ev. Matt 16:13-19\\
-\small Com. urban-pope-and-martyr\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 31 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Ignatius Loyola }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 2 Tim. 2:8-10; 3:10-12. }\quad{\scriptsize Gospel\ Luke 10:1-9 }
-\medskip
+\end{tcolorbox}
-\textbf{ 26 } \quad philip-neri\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Wis 7:7-14.\quad\small Ev. Luke 12:35-40\\
-\small Com. eleutherius\\
+\clearpage
-\medskip
-\textbf{ 27 } \quad ef-corpus-christi\\
-\small class-1 \textperiodcentered\ white\\
-\small Ep. 1 Cor 11:23-29\quad\small Ev. John 6:56-59\\
+\label{w8-1}
+{\bfseries\large August }\hfill{\small Week 1}\par\vspace{0.5mm}
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 1 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par
+{\bfseries 11th Sunday after Pentecost }\par
+{\scriptsize 2nd Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ 1 Cor. 15:1-10 }\quad{\scriptsize Gospel\ Mark 7:31-37 }
-\textbf{ 28 } \quad augustine-of-canterbury\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 1 Thess 2:2-9\quad\small Ev. Luke 10:1-9\\
+\end{tcolorbox}
-\medskip
-\textbf{ 29 } \quad mary-magdalene-de-pazzi\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 2 Cor 10:17-18; 11:1-2\quad\small Ev. Matt 25:1-13.\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 2 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Alphonsus Liguori }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 2 Tim. 2:1-7 }\quad{\scriptsize Gospel\ Luke 10:1-9 }
+\par{\scriptsize Commemoration\ stephen-i-pope-and-martyr }
+\end{tcolorbox}
-\medskip
-\textbf{ 30 } \quad ef-time-after-pentecost-sunday-2\\
-\small class-2 \textperiodcentered\ green\\
-\small Ep. 1 John 3:13-18.\quad\small Ev. Luke 14:16-24.\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 3 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolgreen}\par
+{\bfseries Tuesday of the 11th Week of the Time after Pentecost }\par
+{\scriptsize 4th Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ 1 Cor. 15:1-10 }\quad{\scriptsize Gospel\ Mark 7:31-37 }
-\medskip
+\end{tcolorbox}
-\textbf{ 31 } \quad queenship-of-the-blessed-virgin-mary\\
-\small class-2 \textperiodcentered\ white\\
-\small Ep. Eccli 24:5; 14:7; 14:9-11; 24:30-31\quad\small Ev. Luke 1:26-33\\
-\small Com. petronilla\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 4 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Dominic }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 2 Tim. 4:1-8 }\quad{\scriptsize Gospel\ Luke 12:35-40 }
+\end{tcolorbox}
-\section*{ Iunius }
-\textbf{ 1 } \quad angela-merici\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 2 Cor 10:17-18; 11:1-2\quad\small Ev. Matt 25:1-13.\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 5 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par
+{\bfseries Dedication of the Basilica of St. Mary Major }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Ecclus 24:14-16 }\quad{\scriptsize Gospel\ Luke 11:27-28 }
-\medskip
+\end{tcolorbox}
-\textbf{ 2 } \quad ef-time-after-pentecost-2-wednesday\\
-\small class-4 \textperiodcentered\ green\\
-\small Ep. 1 John 3:13-18.\quad\small Ev. Luke 14:16-24.\\
-\small Com. sts-marcellinus-peter-erasmus\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 6 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par
+{\bfseries Transfiguration of Our Lord }\par
+{\scriptsize 2nd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 2 Pet. 1:16-19 }\quad{\scriptsize Gospel\ Matt 17:1-9 }
+\par{\scriptsize Commemoration\ pope-sixtus-ii-felicissimus-and-agapitus-martyrs }
+\end{tcolorbox}
-\textbf{ 3 } \quad ef-time-after-pentecost-2-thursday\\
-\small class-4 \textperiodcentered\ green\\
-\small Ep. 1 John 3:13-18.\quad\small Ev. Luke 14:16-24.\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 7 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Cajetan }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Matt 6:24-33 }
+\par{\scriptsize Commemoration\ donatus }
+\end{tcolorbox}
-\textbf{ 4 } \quad ef-sacred-heart\\
-\small class-1 \textperiodcentered\ white\\
-\small Ep. Eph 3:8-12, 14-19\quad\small Ev. John 19:31-37\\
+\clearpage
-\medskip
+\label{w8-2}
+{\bfseries\large August }\hfill{\small Week 2}\par\vspace{0.5mm}
-\textbf{ 5 } \quad boniface\\
-\small class-3 \textperiodcentered\ red\\
-\small Ep. Ecclus 44:1-15\quad\small Ev. Matt 5:1-12\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 8 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par
+{\bfseries 12th Sunday after Pentecost }\par
+{\scriptsize 2nd Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ 2 Cor. 3:4-9 }\quad{\scriptsize Gospel\ Luke 10:23-37 }
-\medskip
+\end{tcolorbox}
-\textbf{ 6 } \quad ef-time-after-pentecost-sunday-3\\
-\small class-2 \textperiodcentered\ green\\
-\small Ep. 1 Pet. 5:6-11\quad\small Ev. Luke 15:1-10\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 9 } \;\; {\scriptsize Monday } \hfill \swatch{licolviolet}\par
+{\bfseries Vigil of St. Lawrence }\par
+{\scriptsize 3rd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Ecclus 51:1-8, 12 }\quad{\scriptsize Gospel\ Matt 16:24-27 }
+\par{\scriptsize Commemoration\ romanus }
+\end{tcolorbox}
-\textbf{ 7 } \quad ef-time-after-pentecost-3-monday\\
-\small class-4 \textperiodcentered\ green\\
-\small Ep. 1 Pet. 5:6-11\quad\small Ev. Luke 15:1-10\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 10 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par
+{\bfseries St. Lawrence }\par
+{\scriptsize 2nd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ 2 Cor. 9:6-10 }\quad{\scriptsize Gospel\ John 12:24-26 }
+\end{tcolorbox}
-\textbf{ 8 } \quad ef-time-after-pentecost-3-tuesday\\
-\small class-4 \textperiodcentered\ green\\
-\small Ep. 1 Pet. 5:6-11\quad\small Ev. Luke 15:1-10\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 11 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolgreen}\par
+{\bfseries Wednesday of the 12th Week of the Time after Pentecost }\par
+{\scriptsize 4th Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ 2 Cor. 3:4-9 }\quad{\scriptsize Gospel\ Luke 10:23-37 }
+\par{\scriptsize Commemoration\ sts-tiburtius-susanna }
+\end{tcolorbox}
-\textbf{ 9 } \quad ef-time-after-pentecost-3-wednesday\\
-\small class-4 \textperiodcentered\ green\\
-\small Ep. 1 Pet. 5:6-11\quad\small Ev. Luke 15:1-10\\
-\small Com. sts-primus-felicianus\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 12 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Clare }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 2 Cor 10:17-18; 11:1-2 }\quad{\scriptsize Gospel\ Matt 25:1-13. }
-\textbf{ 10 } \quad margaret-of-scotland\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Prov 31:10-31\quad\small Ev. Matt 13:44-52.\\
+\end{tcolorbox}
-\medskip
-\textbf{ 11 } \quad barnabas\\
-\small class-3 \textperiodcentered\ red\\
-\small Ep. Acts 11:21-26; 13:1-3\quad\small Ev. Matt 10:16-22\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 13 } \;\; {\scriptsize Friday } \hfill \swatch{licolgreen}\par
+{\bfseries Friday of the 12th Week of the Time after Pentecost }\par
+{\scriptsize 4th Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ 2 Cor. 3:4-9 }\quad{\scriptsize Gospel\ Luke 10:23-37 }
+\par{\scriptsize Commemoration\ sts-hippolytus-cassian }
+\end{tcolorbox}
-\medskip
-\textbf{ 12 } \quad john-of-san-fecundo\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Sir 31:8-11\quad\small Ev. Luke 12:35-40\\
-\small Com. basilidus\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 14 } \;\; {\scriptsize Saturday } \hfill \swatch{licolviolet}\par
+{\bfseries Vigil of the Assumption }\par
+{\scriptsize 2nd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Sir 24:23-31 }\quad{\scriptsize Gospel\ Luke 11:27-28 }
+\par{\scriptsize Commemoration\ eusebius-confessor }
+\end{tcolorbox}
-\medskip
+\clearpage
-\textbf{ 13 } \quad ef-time-after-pentecost-sunday-4\\
-\small class-2 \textperiodcentered\ green\\
-\small Ep. Rom 8:18-23\quad\small Ev. Luke 5:1-11\\
+\label{w8-3}
+{\bfseries\large August }\hfill{\small Week 3}\par\vspace{0.5mm}
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 15 } \;\; {\scriptsize Sunday } \hfill \swatch{licolwhite}\par
+{\bfseries Assumption of the Blessed Virgin Mary }\par
+{\scriptsize 1st Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Judith 13:22-25; 15:10 }\quad{\scriptsize Gospel\ Luke 1:41-50 }
+\par{\scriptsize Commemoration\ 13th Sunday after Pentecost }
+\end{tcolorbox}
-\textbf{ 14 } \quad basil-the-great\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 2 Tim 4:1-8\quad\small Ev. Luke 14:26-35\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 16 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Joachim, Father of the Blessed Virgin }\par
+{\scriptsize 2nd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Matt 1:1-16 }
-\textbf{ 15 } \quad ef-time-after-pentecost-4-tuesday\\
-\small class-4 \textperiodcentered\ green\\
-\small Ep. Rom 8:18-23\quad\small Ev. Luke 5:1-11\\
-\small Com. vitus\\
+\end{tcolorbox}
-\medskip
-\textbf{ 16 } \quad ef-time-after-pentecost-4-wednesday\\
-\small class-4 \textperiodcentered\ green\\
-\small Ep. Rom 8:18-23\quad\small Ev. Luke 5:1-11\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 17 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Hyacinth }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Luke 12:35-40 }
-\medskip
+\end{tcolorbox}
-\textbf{ 17 } \quad gregory-barbarigo\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Sir 44:16-27; 45:3-20\quad\small Ev. Matt 25:14-23\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 18 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolgreen}\par
+{\bfseries Wednesday of the 13th Week of the Time after Pentecost }\par
+{\scriptsize 4th Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Gal 3:16-22 }\quad{\scriptsize Gospel\ Luke 17:11-19 }
+\par{\scriptsize Commemoration\ agapitus }
+\end{tcolorbox}
-\textbf{ 18 } \quad ephrem-of-syria\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\
-\small Com. marcus-and-marcellianus\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 19 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par
+{\bfseries St. John Eudes }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Luke 12:35-40 }
+\end{tcolorbox}
-\textbf{ 19 } \quad julia-of-falconieri\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 2 Cor 10:17-18; 11:1-2\quad\small Ev. Matt 25:1-13.\\
-\small Com. sts-gervasius-and-protasius\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 20 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Bernard of Clairvaux }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Ecclus 39:6-14 }\quad{\scriptsize Gospel\ Matt 5:13-19 }
-\textbf{ 20 } \quad ef-time-after-pentecost-sunday-5\\
-\small class-2 \textperiodcentered\ green\\
-\small Ep. 1 Pet 3:8-15.\quad\small Ev. Matt 5:20-24.\\
+\end{tcolorbox}
-\medskip
-\textbf{ 21 } \quad aloysius-gongzaga\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Sir 31:8-11\quad\small Ev. Matt 22:29-40\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 21 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Jane Frances de Chantal }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Prov 31:10-31 }\quad{\scriptsize Gospel\ Matt 13:44-52. }
-\medskip
+\end{tcolorbox}
-\textbf{ 22 } \quad paulinus-of-nola\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 2 Cor. 8:9-15\quad\small Ev. Luke 12:32-34\\
+\clearpage
-\medskip
+\label{w8-4}
+{\bfseries\large August }\hfill{\small Week 4}\par\vspace{0.5mm}
-\textbf{ 23 } \quad vigil-of-the-nativity-of-st-john-the-baptist\\
-\small class-2 \textperiodcentered\ violet\\
-\small Ep. Jer 1:4-10\quad\small Ev. Luke 1:5-17\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 22 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par
+{\bfseries 14th Sunday after Pentecost }\par
+{\scriptsize 2nd Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Gal 5:16-24 }\quad{\scriptsize Gospel\ Matt 6:24-33 }
+\par{\scriptsize Commemoration\ Immaculate Heart of Mary }
+\end{tcolorbox}
-\medskip
-\textbf{ 24 } \quad nativity-of-st-john-the-baptist\\
-\small class-1 \textperiodcentered\ white\\
-\small Ep. Isa 49:1-3, 5-7.\quad\small Ev. Luke 1:57-68\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 23 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Philip Benizi }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 1 Cor. 4:9-14 }\quad{\scriptsize Gospel\ Luke 12:32-34 }
-\medskip
+\end{tcolorbox}
-\textbf{ 25 } \quad william\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Ecclus 45:1-6\quad\small Ev. Matt 19:27-29.\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 24 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par
+{\bfseries St. Bartholomew }\par
+{\scriptsize 2nd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ 1 Cor. 12:27-31 }\quad{\scriptsize Gospel\ Luke 6:12-19 }
+\end{tcolorbox}
-\textbf{ 26 } \quad sts-john-paul\\
-\small class-3 \textperiodcentered\ red\\
-\small Ep. Eccli 44:10-15\quad\small Ev. Luke 12:1-8\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 25 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Louis IX }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Wis 10:10-14 }\quad{\scriptsize Gospel\ Luke 19:12-26 }
-\textbf{ 27 } \quad ef-time-after-pentecost-sunday-6\\
-\small class-2 \textperiodcentered\ green\\
-\small Ep. Rom 6:3-11.\quad\small Ev. Mark 8:1-9\\
+\end{tcolorbox}
-\medskip
-\textbf{ 28 } \quad vigil-of-sts-peter-paul\\
-\small class-2 \textperiodcentered\ violet\\
-\small Ep. Acts 3:1-10\quad\small Ev. John 21:15-19\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 26 } \;\; {\scriptsize Thursday } \hfill \swatch{licolgreen}\par
+{\bfseries Thursday of the 14th Week of the Time after Pentecost }\par
+{\scriptsize 4th Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Gal 5:16-24 }\quad{\scriptsize Gospel\ Matt 6:24-33 }
+\par{\scriptsize Commemoration\ zephyrinus }
+\end{tcolorbox}
-\medskip
-\textbf{ 29 } \quad sts-peter-paul\\
-\small class-1 \textperiodcentered\ red\\
-\small Ep. Acts 12:1-11\quad\small Ev. Matt 16:13-19\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 27 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Joseph Calasance }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Wis 10:10-14 }\quad{\scriptsize Gospel\ Matt 18:1-5 }
-\medskip
+\end{tcolorbox}
-\textbf{ 30 } \quad in-commemoratione-sancti-pauli-apostoli\\
-\small class-3 \textperiodcentered\ red\\
-\small Ep. Gal 1:11-20\quad\small Ev. Matt 10:16-22\\
-\small Com. commemoration-of-st-peter\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 28 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Augustine }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 }
+\par{\scriptsize Commemoration\ hermes }
+\end{tcolorbox}
+\clearpage
-\section*{ Iulius }
+\label{w8-5}
+{\bfseries\large August }\hfill{\small Week 5}\par\vspace{0.5mm}
-\textbf{ 1 } \quad precious-blood-of-our-lord-jesus-christ\\
-\small class-1 \textperiodcentered\ red\\
-\small Ep. Heb 9:11-15.\quad\small Ev. John 19:30-35\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 29 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par
+{\bfseries 15th Sunday after Pentecost }\par
+{\scriptsize 2nd Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Gal 5:25-26; 6:1-10 }\quad{\scriptsize Gospel\ Luke 7:11-16 }
+\end{tcolorbox}
-\textbf{ 2 } \quad visitation-of-the-blessed-virgin-mary\\
-\small class-2 \textperiodcentered\ white\\
-\small Ep. Song 2:8-14\quad\small Ev. Luke 1:39-47\\
-\small Com. processus-and-martinian\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 30 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Rose of Lima }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 2 Cor 10:17-18; 11:1-2 }\quad{\scriptsize Gospel\ Matt 25:1-13. }
+\par{\scriptsize Commemoration\ sts-felix-and-adauctus }
+\end{tcolorbox}
-\textbf{ 3 } \quad irenaeus\\
-\small class-3 \textperiodcentered\ red\\
-\small Ep. 2 Tim. 3:14-17; 4:1-5\quad\small Ev. Matt 10:28-33\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 31 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Raymond Nonnatus }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Luke 12:35-40 }
-\textbf{ 4 } \quad ef-time-after-pentecost-sunday-7\\
-\small class-2 \textperiodcentered\ green\\
-\small Ep. Rom 6:19-23\quad\small Ev. Matt 7:15-21\\
+\end{tcolorbox}
-\medskip
-\textbf{ 5 } \quad anthony-mary-zaccariah\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 1 Tim. 4:8-16\quad\small Ev. Mark 10:15-21\\
-\medskip
-\textbf{ 6 } \quad ef-time-after-pentecost-7-tuesday\\
-\small class-4 \textperiodcentered\ green\\
-\small Ep. Rom 6:19-23\quad\small Ev. Matt 7:15-21\\
-\medskip
-\textbf{ 7 } \quad sts-cyril-methodius\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Heb 7:23-27\quad\small Ev. Luke 10:1-9\\
-\medskip
+\clearpage
-\textbf{ 8 } \quad elizabeth-of-portugal\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Prov 31:10-31\quad\small Ev. Matt 13:44-52.\\
-\medskip
+\label{w9-1}
+{\bfseries\large September }\hfill{\small Week 1}\par\vspace{0.5mm}
-\textbf{ 9 } \quad ef-time-after-pentecost-7-friday\\
-\small class-4 \textperiodcentered\ green\\
-\small Ep. Rom 6:19-23\quad\small Ev. Matt 7:15-21\\
-\medskip
-\textbf{ 10 } \quad seven-holy-brothers-and-sts-rufina-secunda\\
-\small class-3 \textperiodcentered\ red\\
-\small Ep. Prov 31:10-31\quad\small Ev. Matt 12:46-50\\
-\medskip
-\textbf{ 11 } \quad ef-time-after-pentecost-sunday-8\\
-\small class-2 \textperiodcentered\ green\\
-\small Ep. Rom 8:12-17\quad\small Ev. Luke 16:1-9\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 1 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolgreen}\par
+{\bfseries Wednesday of the 15th Week of the Time after Pentecost }\par
+{\scriptsize 4th Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Gal 5:25-26; 6:1-10 }\quad{\scriptsize Gospel\ Luke 7:11-16 }
+\par{\scriptsize Commemoration\ giles }\par{\scriptsize Commemoration\ twelve-holy-brothers-martyrs }
+\end{tcolorbox}
-\medskip
-\textbf{ 12 } \quad john-gualbert\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Ecclus 45:1-6\quad\small Ev. Matt 5:43-48\\
-\small Com. naboris-et-felicis\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 2 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Stephen of Hungary }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Luke 19:12-26 }
-\medskip
+\end{tcolorbox}
-\textbf{ 13 } \quad ef-time-after-pentecost-8-tuesday\\
-\small class-4 \textperiodcentered\ green\\
-\small Ep. Rom 8:12-17\quad\small Ev. Luke 16:1-9\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 3 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Pius X }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 1 Thess. 2:2-8 }\quad{\scriptsize Gospel\ John 21:15-17 }
+\end{tcolorbox}
-\textbf{ 14 } \quad bonaventure\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 4 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par
+{\bfseries Our Lady's Saturday Office }\par
+{\scriptsize 4th Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Ecclus 24:14-16 }\quad{\scriptsize Gospel\ Luke 11:27-28 }
-\textbf{ 15 } \quad henry-the-emperor\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Sir 31:8-11\quad\small Ev. Luke 12:35-40\\
+\end{tcolorbox}
-\medskip
+\clearpage
-\textbf{ 16 } \quad ef-time-after-pentecost-8-friday\\
-\small class-4 \textperiodcentered\ green\\
-\small Ep. Rom 8:12-17\quad\small Ev. Luke 16:1-9\\
-\small Com. our-lady-of-mt-carmel\\
+\label{w9-2}
+{\bfseries\large September }\hfill{\small Week 2}\par\vspace{0.5mm}
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 5 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par
+{\bfseries 16th Sunday after Pentecost }\par
+{\scriptsize 2nd Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Eph 3:13-21 }\quad{\scriptsize Gospel\ Luke 14:1-11 }
-\textbf{ 17 } \quad Officium sanctae Mariae in sabbato\\
-\small class-4 \textperiodcentered\ white\\
-\small Ep. Ecclus 24:14-16\quad\small Ev. Luke 11:27-28\\
-\small Com. alexis\\
+\end{tcolorbox}
-\medskip
-\textbf{ 18 } \quad ef-time-after-pentecost-sunday-9\\
-\small class-2 \textperiodcentered\ green\\
-\small Ep. 1 Cor. 10:6-13\quad\small Ev. Luke 19:41-47\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 6 } \;\; {\scriptsize Monday } \hfill \swatch{licolgreen}\par
+{\bfseries Monday of the 16th Week of the Time after Pentecost }\par
+{\scriptsize 4th Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Eph 3:13-21 }\quad{\scriptsize Gospel\ Luke 14:1-11 }
-\medskip
+\end{tcolorbox}
-\textbf{ 19 } \quad vincent-de-paul\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 1 Cor. 4:9-14\quad\small Ev. Luke 10:1-9\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 7 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolgreen}\par
+{\bfseries Tuesday of the 16th Week of the Time after Pentecost }\par
+{\scriptsize 4th Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Eph 3:13-21 }\quad{\scriptsize Gospel\ Luke 14:1-11 }
+\end{tcolorbox}
-\textbf{ 20 } \quad jerome-emiliani\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Isa 58:7-11\quad\small Ev. Matt 19:13-21\\
-\small Com. margaret\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 8 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par
+{\bfseries Nativity of the Blessed Virgin Mary }\par
+{\scriptsize 2nd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Prov 8:22-35 }\quad{\scriptsize Gospel\ Matt 1:1-16 }
+\par{\scriptsize Commemoration\ hadriani }
+\end{tcolorbox}
-\textbf{ 21 } \quad laurence-of-brindisi\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\
-\small Com. praxedis-virginis\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 9 } \;\; {\scriptsize Thursday } \hfill \swatch{licolgreen}\par
+{\bfseries Thursday of the 16th Week of the Time after Pentecost }\par
+{\scriptsize 4th Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Eph 3:13-21 }\quad{\scriptsize Gospel\ Luke 14:1-11 }
+\par{\scriptsize Commemoration\ gorgonius }
+\end{tcolorbox}
-\textbf{ 22 } \quad mary-magdalene\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Song 3:2-5; 8:6-7\quad\small Ev. Luke 7:36-50\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 10 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Nicholas of Tolentino }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 1 Cor. 4:9-14 }\quad{\scriptsize Gospel\ Luke 12:32-34 }
-\textbf{ 23 } \quad apollinaris\\
-\small class-3 \textperiodcentered\ red\\
-\small Ep. 1 Pet. 5:1-11\quad\small Ev. Luke 22:24-30\\
-\small Com. liborii\\
+\end{tcolorbox}
-\medskip
-\textbf{ 24 } \quad Officium sanctae Mariae in sabbato\\
-\small class-4 \textperiodcentered\ white\\
-\small Ep. Ecclus 24:14-16\quad\small Ev. Luke 11:27-28\\
-\small Com. christina\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 11 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par
+{\bfseries Our Lady's Saturday Office }\par
+{\scriptsize 4th Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Ecclus 24:14-16 }\quad{\scriptsize Gospel\ Luke 11:27-28 }
+\par{\scriptsize Commemoration\ sts-protus-hyacinth }
+\end{tcolorbox}
-\medskip
+\clearpage
-\textbf{ 25 } \quad ef-time-after-pentecost-sunday-10\\
-\small class-2 \textperiodcentered\ green\\
-\small Ep. 1 Cor. 12:2-11\quad\small Ev. Luke 18:9-14\\
-\small Com. james-the-greater\\
+\label{w9-3}
+{\bfseries\large September }\hfill{\small Week 3}\par\vspace{0.5mm}
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 12 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par
+{\bfseries 17th Sunday after Pentecost }\par
+{\scriptsize 2nd Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Eph 4:1-6 }\quad{\scriptsize Gospel\ Matt 22:34-46 }
-\textbf{ 26 } \quad anne-mother-of-the-blessed-virgin\\
-\small class-2 \textperiodcentered\ white\\
-\small Ep. Prov 31:10-31\quad\small Ev. Matt 13:44-52.\\
+\end{tcolorbox}
-\medskip
-\textbf{ 27 } \quad ef-time-after-pentecost-10-tuesday\\
-\small class-4 \textperiodcentered\ green\\
-\small Ep. 1 Cor. 12:2-11\quad\small Ev. Luke 18:9-14\\
-\small Com. pantaleon\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 13 } \;\; {\scriptsize Monday } \hfill \swatch{licolgreen}\par
+{\bfseries Monday of the 17th Week of the Time after Pentecost }\par
+{\scriptsize 4th Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Eph 4:1-6 }\quad{\scriptsize Gospel\ Matt 22:34-46 }
-\medskip
+\end{tcolorbox}
-\textbf{ 28 } \quad sts-nazarius-celsus-st-victor-i-st-innocent-i\\
-\small class-3 \textperiodcentered\ red\\
-\small Ep. Wis 10:17-20\quad\small Ev. Luke 21:9-19\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 14 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par
+{\bfseries Exaltation of the Holy Cross }\par
+{\scriptsize 2nd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ Phil 2:5-11 }\quad{\scriptsize Gospel\ John 12:31-36 }
+\end{tcolorbox}
-\textbf{ 29 } \quad martha\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 2 Cor 10:17-18; 11:1-2\quad\small Ev. Luke 10:38-42\\
-\small Com. felicis-simplicii-faustini-et-beatricis\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 15 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par
+{\bfseries Seven Sorrows of the Blessed Virgin Mary }\par
+{\scriptsize 2nd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Judith 13:22; 13:23-25 }\quad{\scriptsize Gospel\ John 19:25-27 }
+\par{\scriptsize Commemoration\ nicomedes }
+\end{tcolorbox}
-\textbf{ 30 } \quad ef-time-after-pentecost-10-friday\\
-\small class-4 \textperiodcentered\ green\\
-\small Ep. 1 Cor. 12:2-11\quad\small Ev. Luke 18:9-14\\
-\small Com. sts-abdon-sennen\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 16 } \;\; {\scriptsize Thursday } \hfill \swatch{licolred}\par
+{\bfseries Sts. Cornelius \& Cyprian }\par
+{\scriptsize 3rd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ Wis 3:1-8 }\quad{\scriptsize Gospel\ Luke 21:9-19 }
+\par{\scriptsize Commemoration\ sts-euphemia-lucy-and-geminianus }
+\end{tcolorbox}
-\textbf{ 31 } \quad ignatius-loyola\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 2 Tim. 2:8-10; 3:10-12.\quad\small Ev. Luke 10:1-9\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 17 } \;\; {\scriptsize Friday } \hfill \swatch{licolgreen}\par
+{\bfseries Friday of the 17th Week of the Time after Pentecost }\par
+{\scriptsize 4th Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Eph 4:1-6 }\quad{\scriptsize Gospel\ Matt 22:34-46 }
+\par{\scriptsize Commemoration\ stigmata-of-st-francis }
+\end{tcolorbox}
-\section*{ Augustus }
-\textbf{ 1 } \quad ef-time-after-pentecost-sunday-11\\
-\small class-2 \textperiodcentered\ green\\
-\small Ep. 1 Cor. 15:1-10\quad\small Ev. Mark 7:31-37\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 18 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Joseph of Cupertino }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 1 Cor 13:1-8 }\quad{\scriptsize Gospel\ Matt 22:1-14 }
-\medskip
+\end{tcolorbox}
-\textbf{ 2 } \quad alphonsus-liguori\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 2 Tim. 2:1-7\quad\small Ev. Luke 10:1-9\\
-\small Com. stephen-i-pope-and-martyr\\
+\clearpage
-\medskip
+\label{w9-4}
+{\bfseries\large September }\hfill{\small Week 4}\par\vspace{0.5mm}
-\textbf{ 3 } \quad ef-time-after-pentecost-11-tuesday\\
-\small class-4 \textperiodcentered\ green\\
-\small Ep. 1 Cor. 15:1-10\quad\small Ev. Mark 7:31-37\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 19 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par
+{\bfseries 18th Sunday after Pentecost }\par
+{\scriptsize 2nd Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ 1 Cor. 1:4-8 }\quad{\scriptsize Gospel\ Matt 9:1-8 }
-\medskip
+\end{tcolorbox}
-\textbf{ 4 } \quad dominic\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 2 Tim. 4:1-8\quad\small Ev. Luke 12:35-40\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 20 } \;\; {\scriptsize Monday } \hfill \swatch{licolgreen}\par
+{\bfseries Monday of the 18th Week of the Time after Pentecost }\par
+{\scriptsize 4th Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ 1 Cor. 1:4-8 }\quad{\scriptsize Gospel\ Matt 9:1-8 }
+\par{\scriptsize Commemoration\ sts-eustace-companions }
+\end{tcolorbox}
-\textbf{ 5 } \quad dedication-of-the-basilica-of-st-mary-major\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Ecclus 24:14-16\quad\small Ev. Luke 11:27-28\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 21 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par
+{\bfseries St. Matthew }\par
+{\scriptsize 2nd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ Ezek 1:10-14 }\quad{\scriptsize Gospel\ Matt 9:9-13 }
+\end{tcolorbox}
-\textbf{ 6 } \quad transfiguration-of-our-lord\\
-\small class-2 \textperiodcentered\ white\\
-\small Ep. 2 Pet. 1:16-19\quad\small Ev. Matt 17:1-9\\
-\small Com. pope-sixtus-ii-felicissimus-and-agapitus-martyrs\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 22 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolviolet}\par
+{\bfseries September Ember Wednesday }\par
+{\scriptsize 2nd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ 2 Esd. 8:1-10 }\quad{\scriptsize Gospel\ Mark 9:16-28 }
+\par{\scriptsize Commemoration\ St. Thomas of Villanova }
+\end{tcolorbox}
-\textbf{ 7 } \quad cajetan\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Sir 31:8-11\quad\small Ev. Matt 6:24-33\\
-\small Com. donatus\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 23 } \;\; {\scriptsize Thursday } \hfill \swatch{licolred}\par
+{\bfseries St. Linus }\par
+{\scriptsize 3rd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ 1 Pet 5:1-4; 5:10-11. }\quad{\scriptsize Gospel\ Matt 16:13-19 }
+\par{\scriptsize Commemoration\ thecla }
+\end{tcolorbox}
-\textbf{ 8 } \quad ef-time-after-pentecost-sunday-12\\
-\small class-2 \textperiodcentered\ green\\
-\small Ep. 2 Cor. 3:4-9\quad\small Ev. Luke 10:23-37\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 24 } \;\; {\scriptsize Friday } \hfill \swatch{licolviolet}\par
+{\bfseries September Ember Friday }\par
+{\scriptsize 2nd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Osee 14:2-10 }\quad{\scriptsize Gospel\ Luke 7:36-50 }
+\par{\scriptsize Commemoration\ our-lady-of-ransom }
+\end{tcolorbox}
-\textbf{ 9 } \quad vigil-of-st-lawrence\\
-\small class-3 \textperiodcentered\ violet\\
-\small Ep. Ecclus 51:1-8, 12\quad\small Ev. Matt 16:24-27\\
-\small Com. romanus\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 25 } \;\; {\scriptsize Saturday } \hfill \swatch{licolviolet}\par
+{\bfseries September Ember Saturday }\par
+{\scriptsize 2nd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Heb 9:2-12 }\quad{\scriptsize Gospel\ Luke 13:6-17 }
-\textbf{ 10 } \quad lawrence\\
-\small class-2 \textperiodcentered\ red\\
-\small Ep. 2 Cor. 9:6-10\quad\small Ev. John 12:24-26\\
+\end{tcolorbox}
-\medskip
+\clearpage
-\textbf{ 11 } \quad ef-time-after-pentecost-12-wednesday\\
-\small class-4 \textperiodcentered\ green\\
-\small Ep. 2 Cor. 3:4-9\quad\small Ev. Luke 10:23-37\\
-\small Com. sts-tiburtius-susanna\\
+\label{w9-5}
+{\bfseries\large September }\hfill{\small Week 5}\par\vspace{0.5mm}
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 26 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par
+{\bfseries 19th Sunday after Pentecost }\par
+{\scriptsize 2nd Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Eph 4:23-28 }\quad{\scriptsize Gospel\ Matt 22:1-14 }
-\textbf{ 12 } \quad clare\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 2 Cor 10:17-18; 11:1-2\quad\small Ev. Matt 25:1-13.\\
+\end{tcolorbox}
-\medskip
-\textbf{ 13 } \quad ef-time-after-pentecost-12-friday\\
-\small class-4 \textperiodcentered\ green\\
-\small Ep. 2 Cor. 3:4-9\quad\small Ev. Luke 10:23-37\\
-\small Com. sts-hippolytus-cassian\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 27 } \;\; {\scriptsize Monday } \hfill \swatch{licolred}\par
+{\bfseries Sts. Cosmas \& Damian }\par
+{\scriptsize 3rd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ Wis 5:16-20 }\quad{\scriptsize Gospel\ Luke 6:17-23 }
-\medskip
+\end{tcolorbox}
-\textbf{ 14 } \quad vigil-of-the-assumption\\
-\small class-2 \textperiodcentered\ violet\\
-\small Ep. Sir 24:23-31\quad\small Ev. Luke 11:27-28\\
-\small Com. eusebius-confessor\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 28 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par
+{\bfseries St. Wenceslaus }\par
+{\scriptsize 3rd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ Wis 10:10-14 }\quad{\scriptsize Gospel\ Matt 10:34-42 }
+\end{tcolorbox}
-\textbf{ 15 } \quad assumption-of-the-blessed-virgin-mary\\
-\small class-1 \textperiodcentered\ white\\
-\small Ep. Judith 13:22-25; 15:10\quad\small Ev. Luke 1:41-50\\
-\small Com. ef-time-after-pentecost-sunday-13\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 29 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par
+{\bfseries Dedication of St. Michael the Archangel }\par
+{\scriptsize 1st Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Rev 1:1-5 }\quad{\scriptsize Gospel\ Matt 18:1-10 }
-\textbf{ 16 } \quad joachim-father-of-the-blessed-virgin\\
-\small class-2 \textperiodcentered\ white\\
-\small Ep. Sir 31:8-11\quad\small Ev. Matt 1:1-16\\
+\end{tcolorbox}
-\medskip
-\textbf{ 17 } \quad hyacinth\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Sir 31:8-11\quad\small Ev. Luke 12:35-40\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 30 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Jerome }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 }
-\medskip
+\end{tcolorbox}
-\textbf{ 18 } \quad ef-time-after-pentecost-13-wednesday\\
-\small class-4 \textperiodcentered\ green\\
-\small Ep. Gal 3:16-22\quad\small Ev. Luke 17:11-19\\
-\small Com. agapitus\\
-\medskip
-\textbf{ 19 } \quad john-eudes\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Sir 31:8-11\quad\small Ev. Luke 12:35-40\\
-\medskip
+\clearpage
-\textbf{ 20 } \quad bernard-of-clairvaux\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Ecclus 39:6-14\quad\small Ev. Matt 5:13-19\\
-\medskip
+\label{w10-1}
+{\bfseries\large October }\hfill{\small Week 1}\par\vspace{0.5mm}
-\textbf{ 21 } \quad jane-frances-de-chantal\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Prov 31:10-31\quad\small Ev. Matt 13:44-52.\\
-\medskip
-\textbf{ 22 } \quad ef-time-after-pentecost-sunday-14\\
-\small class-2 \textperiodcentered\ green\\
-\small Ep. Gal 5:16-24\quad\small Ev. Matt 6:24-33\\
-\small Com. immaculate-heart-of-mary\\
-\medskip
-\textbf{ 23 } \quad philip-benizi\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 1 Cor. 4:9-14\quad\small Ev. Luke 12:32-34\\
-\medskip
-\textbf{ 24 } \quad bartholomew\\
-\small class-2 \textperiodcentered\ red\\
-\small Ep. 1 Cor. 12:27-31\quad\small Ev. Luke 6:12-19\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 1 } \;\; {\scriptsize Friday } \hfill \swatch{licolgreen}\par
+{\bfseries Friday of the 19th Week of the Time after Pentecost }\par
+{\scriptsize 4th Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Eph 4:23-28 }\quad{\scriptsize Gospel\ Matt 22:1-14 }
+\par{\scriptsize Commemoration\ remigius }
+\end{tcolorbox}
-\textbf{ 25 } \quad louis-ix\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Wis 10:10-14\quad\small Ev. Luke 19:12-26\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 2 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par
+{\bfseries Holy Guardian Angels }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Exod 23:20-23 }\quad{\scriptsize Gospel\ Matt 18:1-10 }
+\end{tcolorbox}
-\textbf{ 26 } \quad ef-time-after-pentecost-14-thursday\\
-\small class-4 \textperiodcentered\ green\\
-\small Ep. Gal 5:16-24\quad\small Ev. Matt 6:24-33\\
-\small Com. zephyrinus\\
-\medskip
+\clearpage
+\label{w10-2}
+{\bfseries\large October }\hfill{\small Week 2}\par\vspace{0.5mm}
-\textbf{ 27 } \quad joseph-calasance\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Wis 10:10-14\quad\small Ev. Matt 18:1-5\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 3 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par
+{\bfseries 20th Sunday after Pentecost }\par
+{\scriptsize 2nd Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Eph 5:15-21 }\quad{\scriptsize Gospel\ John 4:46-53 }
+\end{tcolorbox}
-\textbf{ 28 } \quad augustine\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\
-\small Com. hermes\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 4 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Francis of Assisi }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Gal 6:14-18 }\quad{\scriptsize Gospel\ Matt 11:25-30 }
-\textbf{ 29 } \quad ef-time-after-pentecost-sunday-15\\
-\small class-2 \textperiodcentered\ green\\
-\small Ep. Gal 5:25-26; 6:1-10\quad\small Ev. Luke 7:11-16\\
+\end{tcolorbox}
-\medskip
-\textbf{ 30 } \quad rose-of-lima\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 2 Cor 10:17-18; 11:1-2\quad\small Ev. Matt 25:1-13.\\
-\small Com. sts-felix-and-adauctus\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 5 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolgreen}\par
+{\bfseries Tuesday of the 20th Week of the Time after Pentecost }\par
+{\scriptsize 4th Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Eph 5:15-21 }\quad{\scriptsize Gospel\ John 4:46-53 }
+\par{\scriptsize Commemoration\ placid-companions }
+\end{tcolorbox}
-\medskip
-\textbf{ 31 } \quad raymond-nonnatus\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Sir 31:8-11\quad\small Ev. Luke 12:35-40\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 6 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Bruno }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Luke 12:35-40 }
-\medskip
+\end{tcolorbox}
-\section*{ September }
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 7 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par
+{\bfseries Our Lady of the Rosary }\par
+{\scriptsize 2nd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Prov 8:22-24, 32-35. }\quad{\scriptsize Gospel\ Luke 1:26-38 }
+\par{\scriptsize Commemoration\ mark-i }
+\end{tcolorbox}
-\textbf{ 1 } \quad ef-time-after-pentecost-15-wednesday\\
-\small class-4 \textperiodcentered\ green\\
-\small Ep. Gal 5:25-26; 6:1-10\quad\small Ev. Luke 7:11-16\\
-\small Com. giles\\
-\small Com. twelve-holy-brothers-martyrs\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 8 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Bridget of Sweden }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 1 Tim. 5:3-10. }\quad{\scriptsize Gospel\ Matt 13:44-52. }
+\par{\scriptsize Commemoration\ sergio-baccho-marcello-and-apulejo-martyrs }
+\end{tcolorbox}
-\textbf{ 2 } \quad stephen-of-hungary\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Sir 31:8-11\quad\small Ev. Luke 19:12-26\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 9 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par
+{\bfseries St. John Leonardi }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 2 Cor 4:1-6; 4:15-18 }\quad{\scriptsize Gospel\ Luke 10:1-9 }
+\par{\scriptsize Commemoration\ dionysius-and-companions }
+\end{tcolorbox}
-\textbf{ 3 } \quad pius-x\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 1 Thess. 2:2-8\quad\small Ev. John 21:15-17\\
-\medskip
+\clearpage
+\label{w10-3}
+{\bfseries\large October }\hfill{\small Week 3}\par\vspace{0.5mm}
-\textbf{ 4 } \quad Officium sanctae Mariae in sabbato\\
-\small class-4 \textperiodcentered\ white\\
-\small Ep. Ecclus 24:14-16\quad\small Ev. Luke 11:27-28\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 10 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par
+{\bfseries 21st Sunday after Pentecost }\par
+{\scriptsize 2nd Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Eph 6:10-17 }\quad{\scriptsize Gospel\ Matt 18:23-35 }
+\end{tcolorbox}
-\textbf{ 5 } \quad ef-time-after-pentecost-sunday-16\\
-\small class-2 \textperiodcentered\ green\\
-\small Ep. Eph 3:13-21\quad\small Ev. Luke 14:1-11\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 11 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par
+{\bfseries Maternity of the Blessed Virgin Mary }\par
+{\scriptsize 2nd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Sir 24:23-31 }\quad{\scriptsize Gospel\ Luke 2:43-51 }
-\textbf{ 6 } \quad ef-time-after-pentecost-16-monday\\
-\small class-4 \textperiodcentered\ green\\
-\small Ep. Eph 3:13-21\quad\small Ev. Luke 14:1-11\\
+\end{tcolorbox}
-\medskip
-\textbf{ 7 } \quad ef-time-after-pentecost-16-tuesday\\
-\small class-4 \textperiodcentered\ green\\
-\small Ep. Eph 3:13-21\quad\small Ev. Luke 14:1-11\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 12 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolgreen}\par
+{\bfseries Tuesday of the 21st Week of the Time after Pentecost }\par
+{\scriptsize 4th Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Eph 6:10-17 }\quad{\scriptsize Gospel\ Matt 18:23-35 }
-\medskip
+\end{tcolorbox}
-\textbf{ 8 } \quad nativity-of-the-blessed-virgin-mary\\
-\small class-2 \textperiodcentered\ white\\
-\small Ep. Prov 8:22-35\quad\small Ev. Matt 1:1-16\\
-\small Com. hadriani\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 13 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Edward }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Luke 12:35-40 }
+\end{tcolorbox}
-\textbf{ 9 } \quad ef-time-after-pentecost-16-thursday\\
-\small class-4 \textperiodcentered\ green\\
-\small Ep. Eph 3:13-21\quad\small Ev. Luke 14:1-11\\
-\small Com. gorgonius\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 14 } \;\; {\scriptsize Thursday } \hfill \swatch{licolred}\par
+{\bfseries St. Callistus I }\par
+{\scriptsize 3rd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ 1 Pet 5:1-4; 5:10-11. }\quad{\scriptsize Gospel\ Matt 16:13-19 }
-\textbf{ 10 } \quad nicholas-of-tolentino\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 1 Cor. 4:9-14\quad\small Ev. Luke 12:32-34\\
+\end{tcolorbox}
-\medskip
-\textbf{ 11 } \quad Officium sanctae Mariae in sabbato\\
-\small class-4 \textperiodcentered\ white\\
-\small Ep. Ecclus 24:14-16\quad\small Ev. Luke 11:27-28\\
-\small Com. sts-protus-hyacinth\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 15 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Teresa of Avila }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 2 Cor 10:17-18; 11:1-2 }\quad{\scriptsize Gospel\ Matt 25:1-13. }
-\medskip
+\end{tcolorbox}
-\textbf{ 12 } \quad ef-time-after-pentecost-sunday-17\\
-\small class-2 \textperiodcentered\ green\\
-\small Ep. Eph 4:1-6\quad\small Ev. Matt 22:34-46\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 16 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Hedwig }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Prov 31:10-31 }\quad{\scriptsize Gospel\ Matt 13:44-52. }
+\end{tcolorbox}
-\textbf{ 13 } \quad ef-time-after-pentecost-17-monday\\
-\small class-4 \textperiodcentered\ green\\
-\small Ep. Eph 4:1-6\quad\small Ev. Matt 22:34-46\\
-\medskip
+\clearpage
+\label{w10-4}
+{\bfseries\large October }\hfill{\small Week 4}\par\vspace{0.5mm}
-\textbf{ 14 } \quad exaltation-of-the-holy-cross\\
-\small class-2 \textperiodcentered\ red\\
-\small Ep. Phil 2:5-11\quad\small Ev. John 12:31-36\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 17 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par
+{\bfseries 22nd Sunday after Pentecost }\par
+{\scriptsize 2nd Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Phil 1:6-11 }\quad{\scriptsize Gospel\ Matt 22:15-21 }
+\end{tcolorbox}
-\textbf{ 15 } \quad seven-sorrows-of-the-blessed-virgin-mary\\
-\small class-2 \textperiodcentered\ white\\
-\small Ep. Judith 13:22; 13:23-25\quad\small Ev. John 19:25-27\\
-\small Com. nicomedes\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 18 } \;\; {\scriptsize Monday } \hfill \swatch{licolred}\par
+{\bfseries St. Luke the Evangelist }\par
+{\scriptsize 2nd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ 2 Cor. 8:16-24 }\quad{\scriptsize Gospel\ Luke 10:1-9 }
-\textbf{ 16 } \quad sts-cornelius-cyprian\\
-\small class-3 \textperiodcentered\ red\\
-\small Ep. Wis 3:1-8\quad\small Ev. Luke 21:9-19\\
-\small Com. sts-euphemia-lucy-and-geminianus\\
+\end{tcolorbox}
-\medskip
-\textbf{ 17 } \quad ef-time-after-pentecost-17-friday\\
-\small class-4 \textperiodcentered\ green\\
-\small Ep. Eph 4:1-6\quad\small Ev. Matt 22:34-46\\
-\small Com. stigmata-of-st-francis\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 19 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Peter of Alcantara }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Phil 3:7-12 }\quad{\scriptsize Gospel\ Luke 12:32-34 }
-\medskip
+\end{tcolorbox}
-\textbf{ 18 } \quad joseph-of-cupertino\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 1 Cor 13:1-8\quad\small Ev. Matt 22:1-14\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 20 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par
+{\bfseries St. John Cantius }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ James 2:12-17 }\quad{\scriptsize Gospel\ Luke 12:35-40 }
+\end{tcolorbox}
-\textbf{ 19 } \quad ef-time-after-pentecost-sunday-18\\
-\small class-2 \textperiodcentered\ green\\
-\small Ep. 1 Cor. 1:4-8\quad\small Ev. Matt 9:1-8\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 21 } \;\; {\scriptsize Thursday } \hfill \swatch{licolgreen}\par
+{\bfseries Thursday of the 22nd Week of the Time after Pentecost }\par
+{\scriptsize 4th Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Phil 1:6-11 }\quad{\scriptsize Gospel\ Matt 22:15-21 }
+\par{\scriptsize Commemoration\ hilarion }\par{\scriptsize Commemoration\ ursula-and-companions }
+\end{tcolorbox}
-\textbf{ 20 } \quad ef-time-after-pentecost-18-monday\\
-\small class-4 \textperiodcentered\ green\\
-\small Ep. 1 Cor. 1:4-8\quad\small Ev. Matt 9:1-8\\
-\small Com. sts-eustace-companions\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 22 } \;\; {\scriptsize Friday } \hfill \swatch{licolgreen}\par
+{\bfseries Friday of the 22nd Week of the Time after Pentecost }\par
+{\scriptsize 4th Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Phil 1:6-11 }\quad{\scriptsize Gospel\ Matt 22:15-21 }
-\textbf{ 21 } \quad matthew\\
-\small class-2 \textperiodcentered\ red\\
-\small Ep. Ezek 1:10-14\quad\small Ev. Matt 9:9-13\\
+\end{tcolorbox}
-\medskip
-\textbf{ 22 } \quad ef-september-ember-wed\\
-\small class-2 \textperiodcentered\ violet\\
-\small Ep. 2 Esd. 8:1-10\quad\small Ev. Mark 9:16-28\\
-\small Com. thomas-of-villanova\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 23 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Anthony Mary Claret }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Heb 7:23-27 }\quad{\scriptsize Gospel\ Matt 24:42-47 }
-\medskip
+\end{tcolorbox}
-\textbf{ 23 } \quad linus\\
-\small class-3 \textperiodcentered\ red\\
-\small Ep. 1 Pet 5:1-4; 5:10-11.\quad\small Ev. Matt 16:13-19\\
-\small Com. thecla\\
+\clearpage
-\medskip
+\label{w10-5}
+{\bfseries\large October }\hfill{\small Week 5}\par\vspace{0.5mm}
-\textbf{ 24 } \quad ef-september-ember-fri\\
-\small class-2 \textperiodcentered\ violet\\
-\small Ep. Osee 14:2-10\quad\small Ev. Luke 7:36-50\\
-\small Com. our-lady-of-ransom\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 24 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par
+{\bfseries 23rd Sunday after Pentecost }\par
+{\scriptsize 2nd Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Phil 3:17-21; 4:1-3 }\quad{\scriptsize Gospel\ Matt 9:18-26 }
-\medskip
+\end{tcolorbox}
-\textbf{ 25 } \quad ef-september-ember-sat\\
-\small class-2 \textperiodcentered\ violet\\
-\small Ep. Heb 9:2-12\quad\small Ev. Luke 13:6-17\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 25 } \;\; {\scriptsize Monday } \hfill \swatch{licolgreen}\par
+{\bfseries Monday of the 23rd Week of the Time after Pentecost }\par
+{\scriptsize 4th Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Phil 3:17-21; 4:1-3 }\quad{\scriptsize Gospel\ Matt 9:18-26 }
+\par{\scriptsize Commemoration\ sts-chrysanthus-daria }
+\end{tcolorbox}
-\textbf{ 26 } \quad ef-time-after-pentecost-sunday-19\\
-\small class-2 \textperiodcentered\ green\\
-\small Ep. Eph 4:23-28\quad\small Ev. Matt 22:1-14\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 26 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolgreen}\par
+{\bfseries Tuesday of the 23rd Week of the Time after Pentecost }\par
+{\scriptsize 4th Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Phil 3:17-21; 4:1-3 }\quad{\scriptsize Gospel\ Matt 9:18-26 }
+\par{\scriptsize Commemoration\ evaristus }
+\end{tcolorbox}
-\textbf{ 27 } \quad sts-cosmas-damian\\
-\small class-3 \textperiodcentered\ red\\
-\small Ep. Wis 5:16-20\quad\small Ev. Luke 6:17-23\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 27 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolgreen}\par
+{\bfseries Wednesday of the 23rd Week of the Time after Pentecost }\par
+{\scriptsize 4th Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Phil 3:17-21; 4:1-3 }\quad{\scriptsize Gospel\ Matt 9:18-26 }
+\end{tcolorbox}
-\textbf{ 28 } \quad wenceslaus\\
-\small class-3 \textperiodcentered\ red\\
-\small Ep. Wis 10:10-14\quad\small Ev. Matt 10:34-42\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 28 } \;\; {\scriptsize Thursday } \hfill \swatch{licolred}\par
+{\bfseries Sts. Simon \& Jude }\par
+{\scriptsize 2nd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ Eph. 4:7-13. }\quad{\scriptsize Gospel\ John 15:17-25 }
-\textbf{ 29 } \quad dedication-of-st-michael-the-archangel\\
-\small class-1 \textperiodcentered\ white\\
-\small Ep. Rev 1:1-5\quad\small Ev. Matt 18:1-10\\
+\end{tcolorbox}
-\medskip
-\textbf{ 30 } \quad jerome\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 29 } \;\; {\scriptsize Friday } \hfill \swatch{licolgreen}\par
+{\bfseries Friday of the 23rd Week of the Time after Pentecost }\par
+{\scriptsize 4th Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Phil 3:17-21; 4:1-3 }\quad{\scriptsize Gospel\ Matt 9:18-26 }
-\medskip
+\end{tcolorbox}
-\section*{ October }
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 30 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par
+{\bfseries Our Lady's Saturday Office }\par
+{\scriptsize 4th Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Ecclus 24:14-16 }\quad{\scriptsize Gospel\ Luke 11:27-28 }
-\textbf{ 1 } \quad ef-time-after-pentecost-19-friday\\
-\small class-4 \textperiodcentered\ green\\
-\small Ep. Eph 4:23-28\quad\small Ev. Matt 22:1-14\\
-\small Com. remigius\\
+\end{tcolorbox}
-\medskip
+\clearpage
-\textbf{ 2 } \quad holy-guardian-angels\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Exod 23:20-23\quad\small Ev. Matt 18:1-10\\
+\label{w10-6}
+{\bfseries\large October }\hfill{\small Week 6}\par\vspace{0.5mm}
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 31 } \;\; {\scriptsize Sunday } \hfill \swatch{licolwhite}\par
+{\bfseries Christ the King }\par
+{\scriptsize 1st Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Col 1:12-20. }\quad{\scriptsize Gospel\ John 18:33-37 }
-\textbf{ 3 } \quad ef-time-after-pentecost-sunday-20\\
-\small class-2 \textperiodcentered\ green\\
-\small Ep. Eph 5:15-21\quad\small Ev. John 4:46-53\\
+\end{tcolorbox}
-\medskip
-\textbf{ 4 } \quad francis-of-assisi\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Gal 6:14-18\quad\small Ev. Matt 11:25-30\\
-\medskip
-\textbf{ 5 } \quad ef-time-after-pentecost-20-tuesday\\
-\small class-4 \textperiodcentered\ green\\
-\small Ep. Eph 5:15-21\quad\small Ev. John 4:46-53\\
-\small Com. placid-companions\\
-\medskip
-\textbf{ 6 } \quad bruno\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Sir 31:8-11\quad\small Ev. Luke 12:35-40\\
-\medskip
-\textbf{ 7 } \quad our-lady-of-the-rosary\\
-\small class-2 \textperiodcentered\ white\\
-\small Ep. Prov 8:22-24, 32-35.\quad\small Ev. Luke 1:26-38\\
-\small Com. mark-i\\
-\medskip
+\clearpage
-\textbf{ 8 } \quad bridget-of-sweden\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 1 Tim. 5:3-10.\quad\small Ev. Matt 13:44-52.\\
-\small Com. sergio-baccho-marcello-and-apulejo-martyrs\\
-\medskip
+\label{w11-1}
+{\bfseries\large November }\hfill{\small Week 1}\par\vspace{0.5mm}
-\textbf{ 9 } \quad john-leonardi\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 2 Cor 4:1-6; 4:15-18\quad\small Ev. Luke 10:1-9\\
-\small Com. dionysius-and-companions\\
-\medskip
-\textbf{ 10 } \quad ef-time-after-pentecost-sunday-21\\
-\small class-2 \textperiodcentered\ green\\
-\small Ep. Eph 6:10-17\quad\small Ev. Matt 18:23-35\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 1 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par
+{\bfseries All Saints }\par
+{\scriptsize 1st Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Apoc 7:2-12 }\quad{\scriptsize Gospel\ Matt 5:1-12 }
-\medskip
+\end{tcolorbox}
-\textbf{ 11 } \quad maternity-of-the-blessed-virgin-mary\\
-\small class-2 \textperiodcentered\ white\\
-\small Ep. Sir 24:23-31\quad\small Ev. Luke 2:43-51\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 2 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolblack}\par
+{\bfseries Commemoration of All Souls }\par
+{\scriptsize 1st Class \textperiodcentered\ Black }\par
+{\scriptsize Epistle\ 1 Cor. 15:51-57 }\quad{\scriptsize Gospel\ John 5:25-29 }
+\end{tcolorbox}
-\textbf{ 12 } \quad ef-time-after-pentecost-21-tuesday\\
-\small class-4 \textperiodcentered\ green\\
-\small Ep. Eph 6:10-17\quad\small Ev. Matt 18:23-35\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 3 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolgreen}\par
+{\bfseries Wednesday of the 24th Week of the Time after Pentecost }\par
+{\scriptsize 4th Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Col 1:12-20. }\quad{\scriptsize Gospel\ John 18:33-37 }
-\textbf{ 13 } \quad edward\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Sir 31:8-11\quad\small Ev. Luke 12:35-40\\
+\end{tcolorbox}
-\medskip
-\textbf{ 14 } \quad callistus-i\\
-\small class-3 \textperiodcentered\ red\\
-\small Ep. 1 Pet 5:1-4; 5:10-11.\quad\small Ev. Matt 16:13-19\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 4 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Charles Borromeo }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Sir 44:16-27; 45:3-20 }\quad{\scriptsize Gospel\ Matt 25:14-23 }
+\par{\scriptsize Commemoration\ sts-vitalis-and-agricola-martyrs }
+\end{tcolorbox}
-\medskip
-\textbf{ 15 } \quad teresa-of-avila\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 2 Cor 10:17-18; 11:1-2\quad\small Ev. Matt 25:1-13.\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 5 } \;\; {\scriptsize Friday } \hfill \swatch{licolgreen}\par
+{\bfseries Friday of the 24th Week of the Time after Pentecost }\par
+{\scriptsize 4th Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Col 1:12-20. }\quad{\scriptsize Gospel\ John 18:33-37 }
-\medskip
+\end{tcolorbox}
-\textbf{ 16 } \quad hedwig\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Prov 31:10-31\quad\small Ev. Matt 13:44-52.\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 6 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par
+{\bfseries Our Lady's Saturday Office }\par
+{\scriptsize 4th Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Ecclus 24:14-16 }\quad{\scriptsize Gospel\ Luke 11:27-28 }
+\end{tcolorbox}
-\textbf{ 17 } \quad ef-time-after-pentecost-sunday-22\\
-\small class-2 \textperiodcentered\ green\\
-\small Ep. Phil 1:6-11\quad\small Ev. Matt 22:15-21\\
-\medskip
+\clearpage
+\label{w11-2}
+{\bfseries\large November }\hfill{\small Week 2}\par\vspace{0.5mm}
-\textbf{ 18 } \quad luke-the-evangelist\\
-\small class-2 \textperiodcentered\ red\\
-\small Ep. 2 Cor. 8:16-24\quad\small Ev. Luke 10:1-9\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 7 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par
+{\bfseries 5th Sunday after Epiphany }\par
+{\scriptsize 2nd Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Col 3:12-17 }\quad{\scriptsize Gospel\ Matt 13:24-30 }
+\end{tcolorbox}
-\textbf{ 19 } \quad peter-of-alcantara\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Phil 3:7-12\quad\small Ev. Luke 12:32-34\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 8 } \;\; {\scriptsize Monday } \hfill \swatch{licolgreen}\par
+{\bfseries Monday of the 25th Week of the Time after Pentecost }\par
+{\scriptsize 4th Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Col 3:12-17 }\quad{\scriptsize Gospel\ Matt 13:24-30 }
+\par{\scriptsize Commemoration\ four-holy-crowned-martyrs }
+\end{tcolorbox}
-\textbf{ 20 } \quad john-cantius\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. James 2:12-17\quad\small Ev. Luke 12:35-40\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 9 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par
+{\bfseries Dedication of the Archbasilica of Our Holy Savior }\par
+{\scriptsize 2nd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Rev 21:2-5 }\quad{\scriptsize Gospel\ Luke 19:1-10 }
+\par{\scriptsize Commemoration\ theodore }
+\end{tcolorbox}
-\textbf{ 21 } \quad ef-time-after-pentecost-22-thursday\\
-\small class-4 \textperiodcentered\ green\\
-\small Ep. Phil 1:6-11\quad\small Ev. Matt 22:15-21\\
-\small Com. hilarion\\
-\small Com. ursula-and-companions\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 10 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Andrew Avellino }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Luke 12:35-40 }
+\par{\scriptsize Commemoration\ sts-tryphonis-respicii-et-nymphae }
+\end{tcolorbox}
-\textbf{ 22 } \quad ef-time-after-pentecost-22-friday\\
-\small class-4 \textperiodcentered\ green\\
-\small Ep. Phil 1:6-11\quad\small Ev. Matt 22:15-21\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 11 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Martin of Tours }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Sir 44:16-27; 45:3-20 }\quad{\scriptsize Gospel\ Luke 11:33-36 }
+\par{\scriptsize Commemoration\ menna }
+\end{tcolorbox}
-\textbf{ 23 } \quad anthony-mary-claret\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Heb 7:23-27\quad\small Ev. Matt 24:42-47\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 12 } \;\; {\scriptsize Friday } \hfill \swatch{licolred}\par
+{\bfseries St. Martin I }\par
+{\scriptsize 3rd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ 1 Pet 5:1-4; 5:10-11. }\quad{\scriptsize Gospel\ Matt 16:13-19 }
-\textbf{ 24 } \quad ef-time-after-pentecost-sunday-23\\
-\small class-2 \textperiodcentered\ green\\
-\small Ep. Phil 3:17-21; 4:1-3\quad\small Ev. Matt 9:18-26\\
+\end{tcolorbox}
-\medskip
-\textbf{ 25 } \quad ef-time-after-pentecost-23-monday\\
-\small class-4 \textperiodcentered\ green\\
-\small Ep. Phil 3:17-21; 4:1-3\quad\small Ev. Matt 9:18-26\\
-\small Com. sts-chrysanthus-daria\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 13 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Didacus }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 1 Cor 4:9-14 }\quad{\scriptsize Gospel\ Luke 12:32-34 }
-\medskip
+\end{tcolorbox}
-\textbf{ 26 } \quad ef-time-after-pentecost-23-tuesday\\
-\small class-4 \textperiodcentered\ green\\
-\small Ep. Phil 3:17-21; 4:1-3\quad\small Ev. Matt 9:18-26\\
-\small Com. evaristus\\
+\clearpage
-\medskip
+\label{w11-3}
+{\bfseries\large November }\hfill{\small Week 3}\par\vspace{0.5mm}
-\textbf{ 27 } \quad ef-time-after-pentecost-23-wednesday\\
-\small class-4 \textperiodcentered\ green\\
-\small Ep. Phil 3:17-21; 4:1-3\quad\small Ev. Matt 9:18-26\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 14 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par
+{\bfseries 6th Sunday after Epiphany }\par
+{\scriptsize 2nd Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ 1 Thess 1:2-10 }\quad{\scriptsize Gospel\ Matt 13:31-35 }
-\medskip
+\end{tcolorbox}
-\textbf{ 28 } \quad sts-simon-jude\\
-\small class-2 \textperiodcentered\ red\\
-\small Ep. Eph. 4:7-13.\quad\small Ev. John 15:17-25\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 15 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Albert the Great }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 }
+\end{tcolorbox}
-\textbf{ 29 } \quad ef-time-after-pentecost-23-friday\\
-\small class-4 \textperiodcentered\ green\\
-\small Ep. Phil 3:17-21; 4:1-3\quad\small Ev. Matt 9:18-26\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 16 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Gertrude the Great }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 2 Cor 10:17-18; 11:1-2 }\quad{\scriptsize Gospel\ Matt 25:1-13. }
-\textbf{ 30 } \quad Officium sanctae Mariae in sabbato\\
-\small class-4 \textperiodcentered\ white\\
-\small Ep. Ecclus 24:14-16\quad\small Ev. Luke 11:27-28\\
+\end{tcolorbox}
-\medskip
-\textbf{ 31 } \quad ef-christ-the-king\\
-\small class-1 \textperiodcentered\ white\\
-\small Ep. Col 1:12-20.\quad\small Ev. John 18:33-37\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 17 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Gregory the Wonderworker }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Sir 44:16-27; 45:3-20 }\quad{\scriptsize Gospel\ Mark 11:22-24 }
-\medskip
+\end{tcolorbox}
-\section*{ November }
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 18 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par
+{\bfseries Dedication of the Basilicas of Sts. Peter \& Paul }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Rev 21:2-5 }\quad{\scriptsize Gospel\ Luke 19:1-10 }
-\textbf{ 1 } \quad all-saints\\
-\small class-1 \textperiodcentered\ white\\
-\small Ep. Apoc 7:2-12\quad\small Ev. Matt 5:1-12\\
+\end{tcolorbox}
-\medskip
-\textbf{ 2 } \quad commemoration-of-all-souls\\
-\small class-1 \textperiodcentered\ black\\
-\small Ep. 1 Cor. 15:51-57\quad\small Ev. John 5:25-29\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 19 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Elizabeth of Hungary }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Prov 31:10-31 }\quad{\scriptsize Gospel\ Matt 13:44-52. }
+\par{\scriptsize Commemoration\ pontian }
+\end{tcolorbox}
-\medskip
-\textbf{ 3 } \quad ef-time-after-pentecost-24-wednesday\\
-\small class-4 \textperiodcentered\ green\\
-\small Ep. Col 1:12-20.\quad\small Ev. John 18:33-37\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 20 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Felix of Valois }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 1 Cor. 4:9-14 }\quad{\scriptsize Gospel\ Luke 12:32-34 }
-\medskip
+\end{tcolorbox}
-\textbf{ 4 } \quad charles-borromeo\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Sir 44:16-27; 45:3-20\quad\small Ev. Matt 25:14-23\\
-\small Com. sts-vitalis-and-agricola-martyrs\\
+\clearpage
-\medskip
+\label{w11-4}
+{\bfseries\large November }\hfill{\small Week 4}\par\vspace{0.5mm}
-\textbf{ 5 } \quad ef-time-after-pentecost-24-friday\\
-\small class-4 \textperiodcentered\ green\\
-\small Ep. Col 1:12-20.\quad\small Ev. John 18:33-37\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 21 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par
+{\bfseries 24th and Last Sunday after Pentecost }\par
+{\scriptsize 2nd Class \textperiodcentered\ Green }\par
+{\scriptsize Epistle\ Col 1:9-14 }\quad{\scriptsize Gospel\ Matt 24:15-35 }
-\medskip
+\end{tcolorbox}
-\textbf{ 6 } \quad Officium sanctae Mariae in sabbato\\
-\small class-4 \textperiodcentered\ white\\
-\small Ep. Ecclus 24:14-16\quad\small Ev. Luke 11:27-28\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 22 } \;\; {\scriptsize Monday } \hfill \swatch{licolred}\par
+{\bfseries St. Cecilia }\par
+{\scriptsize 3rd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ Sir 51:13-17. }\quad{\scriptsize Gospel\ Matt 25:1-13. }
+\end{tcolorbox}
-\textbf{ 7 } \quad ef-time-after-epiphany-sunday-5\\
-\small class-2 \textperiodcentered\ green\\
-\small Ep. Col 3:12-17\quad\small Ev. Matt 13:24-30\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 23 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par
+{\bfseries St. Clement I }\par
+{\scriptsize 3rd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ Phil 3:17-21; 4:1-3 }\quad{\scriptsize Gospel\ Matt 16:13-19 }
+\par{\scriptsize Commemoration\ felicity }
+\end{tcolorbox}
-\textbf{ 8 } \quad ef-time-after-pentecost-25-monday\\
-\small class-4 \textperiodcentered\ green\\
-\small Ep. Col 3:12-17\quad\small Ev. Matt 13:24-30\\
-\small Com. four-holy-crowned-martyrs\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 24 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par
+{\bfseries St. John of the Cross }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 }
+\par{\scriptsize Commemoration\ chrysogonus }
+\end{tcolorbox}
-\textbf{ 9 } \quad dedication-of-the-archbasilica-of-our-holy-savior\\
-\small class-2 \textperiodcentered\ white\\
-\small Ep. Rev 21:2-5\quad\small Ev. Luke 19:1-10\\
-\small Com. theodore\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 25 } \;\; {\scriptsize Thursday } \hfill \swatch{licolred}\par
+{\bfseries St. Catherine of Alexandria }\par
+{\scriptsize 3rd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ Sir 51:1-8; 51:12 }\quad{\scriptsize Gospel\ Matt 25:1-13. }
-\textbf{ 10 } \quad andrew-avellino\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Sir 31:8-11\quad\small Ev. Luke 12:35-40\\
-\small Com. sts-tryphonis-respicii-et-nymphae\\
+\end{tcolorbox}
-\medskip
-\textbf{ 11 } \quad martin-of-tours\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Sir 44:16-27; 45:3-20\quad\small Ev. Luke 11:33-36\\
-\small Com. menna\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 26 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Sylvester }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Ecclus 45:1-6 }\quad{\scriptsize Gospel\ Matt 19:27-29. }
+\par{\scriptsize Commemoration\ peter-of-alexandria }
+\end{tcolorbox}
-\medskip
-\textbf{ 12 } \quad martin-i\\
-\small class-3 \textperiodcentered\ red\\
-\small Ep. 1 Pet 5:1-4; 5:10-11.\quad\small Ev. Matt 16:13-19\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 27 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par
+{\bfseries Our Lady's Saturday Office }\par
+{\scriptsize 4th Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Ecclus 24:14-16 }\quad{\scriptsize Gospel\ Luke 11:27-28 }
-\medskip
+\end{tcolorbox}
-\textbf{ 13 } \quad didacus\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 1 Cor 4:9-14\quad\small Ev. Luke 12:32-34\\
+\clearpage
-\medskip
+\label{w11-5}
+{\bfseries\large November }\hfill{\small Week 5}\par\vspace{0.5mm}
-\textbf{ 14 } \quad ef-time-after-epiphany-sunday-6\\
-\small class-2 \textperiodcentered\ green\\
-\small Ep. 1 Thess 1:2-10\quad\small Ev. Matt 13:31-35\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 28 } \;\; {\scriptsize Sunday } \hfill \swatch{licolviolet}\par
+{\bfseries 1st Sunday of Advent }\par
+{\scriptsize 1st Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Rom 13:11-14 }\quad{\scriptsize Gospel\ Luke 21:25-33 }
-\medskip
+\end{tcolorbox}
-\textbf{ 15 } \quad albert-the-great\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 29 } \;\; {\scriptsize Monday } \hfill \swatch{licolviolet}\par
+{\bfseries Monday of the 1st Week of Advent }\par
+{\scriptsize 3rd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Rom 13:11-14 }\quad{\scriptsize Gospel\ Luke 21:25-33 }
+\par{\scriptsize Commemoration\ saturninus }
+\end{tcolorbox}
-\textbf{ 16 } \quad gertrude-the-great\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 2 Cor 10:17-18; 11:1-2\quad\small Ev. Matt 25:1-13.\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 30 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par
+{\bfseries St. Andrew }\par
+{\scriptsize 2nd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ Rom 10:10-18 }\quad{\scriptsize Gospel\ Matt 4:18-22 }
+\par{\scriptsize Commemoration\ Tuesday of the 1st Week of Advent }
+\end{tcolorbox}
-\textbf{ 17 } \quad gregory-the-wonderworker\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Sir 44:16-27; 45:3-20\quad\small Ev. Mark 11:22-24\\
-\medskip
-\textbf{ 18 } \quad dedication-of-the-basilicas-of-sts-peter-paul\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Rev 21:2-5\quad\small Ev. Luke 19:1-10\\
-\medskip
-\textbf{ 19 } \quad elizabeth-of-hungary\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Prov 31:10-31\quad\small Ev. Matt 13:44-52.\\
-\small Com. pontian\\
-\medskip
+\clearpage
-\textbf{ 20 } \quad felix-of-valois\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 1 Cor. 4:9-14\quad\small Ev. Luke 12:32-34\\
-\medskip
+\label{w12-1}
+{\bfseries\large December }\hfill{\small Week 1}\par\vspace{0.5mm}
-\textbf{ 21 } \quad ef-time-after-pentecost-sunday-24\\
-\small class-2 \textperiodcentered\ green\\
-\small Ep. Col 1:9-14\quad\small Ev. Matt 24:15-35\\
-\medskip
-\textbf{ 22 } \quad cecilia\\
-\small class-3 \textperiodcentered\ red\\
-\small Ep. Sir 51:13-17.\quad\small Ev. Matt 25:1-13.\\
-\medskip
-\textbf{ 23 } \quad clement-i\\
-\small class-3 \textperiodcentered\ red\\
-\small Ep. Phil 3:17-21; 4:1-3\quad\small Ev. Matt 16:13-19\\
-\small Com. felicity\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 1 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolviolet}\par
+{\bfseries Wednesday of the 1st Week of Advent }\par
+{\scriptsize 3rd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Rom 13:11-14 }\quad{\scriptsize Gospel\ Luke 21:25-33 }
+\end{tcolorbox}
-\textbf{ 24 } \quad john-of-the-cross\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\
-\small Com. chrysogonus\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 2 } \;\; {\scriptsize Thursday } \hfill \swatch{licolred}\par
+{\bfseries St. Vivian }\par
+{\scriptsize 3rd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ Sir 51:13-17. }\quad{\scriptsize Gospel\ Matt 13:44-52. }
+\par{\scriptsize Commemoration\ Thursday of the 1st Week of Advent }
+\end{tcolorbox}
-\textbf{ 25 } \quad catherine-of-alexandria\\
-\small class-3 \textperiodcentered\ red\\
-\small Ep. Sir 51:1-8; 51:12\quad\small Ev. Matt 25:1-13.\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 3 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Francis Xavier }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Rom 10:10-18 }\quad{\scriptsize Gospel\ Mark 16:15-18 }
+\par{\scriptsize Commemoration\ Friday of the 1st Week of Advent }
+\end{tcolorbox}
-\textbf{ 26 } \quad sylvester\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Ecclus 45:1-6\quad\small Ev. Matt 19:27-29.\\
-\small Com. peter-of-alexandria\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 4 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Peter Chrysologus }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 }
+\par{\scriptsize Commemoration\ Saturday of the 1st Week of Advent }\par{\scriptsize Commemoration\ barbara }
+\end{tcolorbox}
-\textbf{ 27 } \quad Officium sanctae Mariae in sabbato\\
-\small class-4 \textperiodcentered\ white\\
-\small Ep. Ecclus 24:14-16\quad\small Ev. Luke 11:27-28\\
-\medskip
+\clearpage
+\label{w12-2}
+{\bfseries\large December }\hfill{\small Week 2}\par\vspace{0.5mm}
-\textbf{ 28 } \quad ef-advent-sunday-1\\
-\small class-1 \textperiodcentered\ violet\\
-\small Ep. Rom 13:11-14\quad\small Ev. Luke 21:25-33\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 5 } \;\; {\scriptsize Sunday } \hfill \swatch{licolviolet}\par
+{\bfseries 2nd Sunday of Advent }\par
+{\scriptsize 1st Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Rom 15:4-13 }\quad{\scriptsize Gospel\ Matt 11:2-10 }
+\end{tcolorbox}
-\textbf{ 29 } \quad ef-advent-1-monday\\
-\small class-3 \textperiodcentered\ violet\\
-\small Ep. Rom 13:11-14\quad\small Ev. Luke 21:25-33\\
-\small Com. saturninus\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 6 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Nicholas }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Heb 13:7-17 }\quad{\scriptsize Gospel\ Matt 25:14-23 }
+\par{\scriptsize Commemoration\ Monday of the 2nd Week of Advent }
+\end{tcolorbox}
-\textbf{ 30 } \quad andrew\\
-\small class-2 \textperiodcentered\ red\\
-\small Ep. Rom 10:10-18\quad\small Ev. Matt 4:18-22\\
-\small Com. ef-advent-1-tuesday\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 7 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Ambrose }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 }
+\par{\scriptsize Commemoration\ Tuesday of the 2nd Week of Advent }
+\end{tcolorbox}
-\section*{ December }
-\textbf{ 1 } \quad ef-advent-1-wednesday\\
-\small class-3 \textperiodcentered\ violet\\
-\small Ep. Rom 13:11-14\quad\small Ev. Luke 21:25-33\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 8 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par
+{\bfseries Immaculate Conception of the Blessed Virgin Mary }\par
+{\scriptsize 1st Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Prov 8:22-35 }\quad{\scriptsize Gospel\ Luke 1:26-28 }
+\par{\scriptsize Commemoration\ Wednesday of the 2nd Week of Advent }
+\end{tcolorbox}
-\medskip
-\textbf{ 2 } \quad vivian\\
-\small class-3 \textperiodcentered\ red\\
-\small Ep. Sir 51:13-17.\quad\small Ev. Matt 13:44-52.\\
-\small Com. ef-advent-1-thursday\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 9 } \;\; {\scriptsize Thursday } \hfill \swatch{licolviolet}\par
+{\bfseries Thursday of the 2nd Week of Advent }\par
+{\scriptsize 3rd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Rom 15:4-13 }\quad{\scriptsize Gospel\ Matt 11:2-10 }
-\medskip
+\end{tcolorbox}
-\textbf{ 3 } \quad francis-xavier\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Rom 10:10-18\quad\small Ev. Mark 16:15-18\\
-\small Com. ef-advent-1-friday\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 10 } \;\; {\scriptsize Friday } \hfill \swatch{licolviolet}\par
+{\bfseries Friday of the 2nd Week of Advent }\par
+{\scriptsize 3rd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Rom 15:4-13 }\quad{\scriptsize Gospel\ Matt 11:2-10 }
+\par{\scriptsize Commemoration\ melchiades }
+\end{tcolorbox}
-\textbf{ 4 } \quad peter-chrysologus\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\
-\small Com. ef-advent-1-saturday\\
-\small Com. barbara\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 11 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par
+{\bfseries St. Damasus I }\par
+{\scriptsize 3rd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ 1 Pet 5:1-4; 5:10-11. }\quad{\scriptsize Gospel\ Matt 16:13-19 }
+\par{\scriptsize Commemoration\ Saturday of the 2nd Week of Advent }
+\end{tcolorbox}
-\textbf{ 5 } \quad ef-advent-sunday-2\\
-\small class-1 \textperiodcentered\ violet\\
-\small Ep. Rom 15:4-13\quad\small Ev. Matt 11:2-10\\
+\clearpage
-\medskip
+\label{w12-3}
+{\bfseries\large December }\hfill{\small Week 3}\par\vspace{0.5mm}
-\textbf{ 6 } \quad nicholas\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. Heb 13:7-17\quad\small Ev. Matt 25:14-23\\
-\small Com. ef-advent-2-monday\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 12 } \;\; {\scriptsize Sunday } \hfill \swatch{licolrose}\par
+{\bfseries 3rd Sunday of Advent }\par
+{\scriptsize 1st Class \textperiodcentered\ Rose }\par
+{\scriptsize Epistle\ Phil 4:4-7 }\quad{\scriptsize Gospel\ John 1:19-28 }
-\medskip
+\end{tcolorbox}
-\textbf{ 7 } \quad ambrose\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\
-\small Com. ef-advent-2-tuesday\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 13 } \;\; {\scriptsize Monday } \hfill \swatch{licolred}\par
+{\bfseries St. Lucy }\par
+{\scriptsize 3rd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ 2 Cor 10:17-18; 11:1-2 }\quad{\scriptsize Gospel\ Matt 13:44-52. }
+\par{\scriptsize Commemoration\ Monday of the 3rd Week of Advent }
+\end{tcolorbox}
-\textbf{ 8 } \quad immaculate-conception-of-the-blessed-virgin-mary\\
-\small class-1 \textperiodcentered\ white\\
-\small Ep. Prov 8:22-35\quad\small Ev. Luke 1:26-28\\
-\small Com. ef-advent-2-wednesday\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 14 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolviolet}\par
+{\bfseries Tuesday of the 3rd Week of Advent }\par
+{\scriptsize 3rd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Phil 4:4-7 }\quad{\scriptsize Gospel\ John 1:19-28 }
+\end{tcolorbox}
-\textbf{ 9 } \quad ef-advent-2-thursday\\
-\small class-3 \textperiodcentered\ violet\\
-\small Ep. Rom 15:4-13\quad\small Ev. Matt 11:2-10\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 15 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolviolet}\par
+{\bfseries Advent Ember Wednesday }\par
+{\scriptsize 2nd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Isa 7:10-15 }\quad{\scriptsize Gospel\ Luke 1:26-38 }
-\textbf{ 10 } \quad ef-advent-2-friday\\
-\small class-3 \textperiodcentered\ violet\\
-\small Ep. Rom 15:4-13\quad\small Ev. Matt 11:2-10\\
-\small Com. melchiades\\
+\end{tcolorbox}
-\medskip
-\textbf{ 11 } \quad damasus-i\\
-\small class-3 \textperiodcentered\ white\\
-\small Ep. 1 Pet 5:1-4; 5:10-11.\quad\small Ev. Matt 16:13-19\\
-\small Com. ef-advent-2-saturday\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 16 } \;\; {\scriptsize Thursday } \hfill \swatch{licolred}\par
+{\bfseries St. Eusebius }\par
+{\scriptsize 3rd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ 2 Cor. 1:3-7 }\quad{\scriptsize Gospel\ Matt 16:24-27. }
+\par{\scriptsize Commemoration\ Thursday of the 3rd Week of Advent }
+\end{tcolorbox}
-\medskip
-\textbf{ 12 } \quad ef-advent-sunday-3\\
-\small class-1 \textperiodcentered\ rose\\
-\small Ep. Phil 4:4-7\quad\small Ev. John 1:19-28\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 17 } \;\; {\scriptsize Friday } \hfill \swatch{licolviolet}\par
+{\bfseries Advent Ember Friday }\par
+{\scriptsize 2nd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Isa 11:1-5 }\quad{\scriptsize Gospel\ Luke 1:39-47 }
-\medskip
+\end{tcolorbox}
-\textbf{ 13 } \quad lucy\\
-\small class-3 \textperiodcentered\ red\\
-\small Ep. 2 Cor 10:17-18; 11:1-2\quad\small Ev. Matt 13:44-52.\\
-\small Com. ef-advent-3-monday\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 18 } \;\; {\scriptsize Saturday } \hfill \swatch{licolviolet}\par
+{\bfseries Advent Ember Saturday }\par
+{\scriptsize 2nd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ 2 Thess 2:1-8 }\quad{\scriptsize Gospel\ Luke 3:1-6 }
+\end{tcolorbox}
-\textbf{ 14 } \quad ef-advent-3-tuesday\\
-\small class-3 \textperiodcentered\ violet\\
-\small Ep. Phil 4:4-7\quad\small Ev. John 1:19-28\\
-\medskip
+\clearpage
+\label{w12-4}
+{\bfseries\large December }\hfill{\small Week 4}\par\vspace{0.5mm}
-\textbf{ 15 } \quad ef-advent-ember-wed\\
-\small class-2 \textperiodcentered\ violet\\
-\small Ep. Isa 7:10-15\quad\small Ev. Luke 1:26-38\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 19 } \;\; {\scriptsize Sunday } \hfill \swatch{licolviolet}\par
+{\bfseries 4th Sunday of Advent }\par
+{\scriptsize 1st Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ 1 Cor. 4:1-5 }\quad{\scriptsize Gospel\ Luke 3:1-6 }
+\end{tcolorbox}
-\textbf{ 16 } \quad eusebius\\
-\small class-3 \textperiodcentered\ red\\
-\small Ep. 2 Cor. 1:3-7\quad\small Ev. Matt 16:24-27.\\
-\small Com. ef-advent-3-thursday\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 20 } \;\; {\scriptsize Monday } \hfill \swatch{licolviolet}\par
+{\bfseries Monday of the 4th Week of Advent }\par
+{\scriptsize 2nd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ 1 Cor. 4:1-5 }\quad{\scriptsize Gospel\ Luke 3:1-6 }
-\textbf{ 17 } \quad ef-advent-ember-fri\\
-\small class-2 \textperiodcentered\ violet\\
-\small Ep. Isa 11:1-5\quad\small Ev. Luke 1:39-47\\
+\end{tcolorbox}
-\medskip
-\textbf{ 18 } \quad ef-advent-ember-sat\\
-\small class-2 \textperiodcentered\ violet\\
-\small Ep. 2 Thess 2:1-8\quad\small Ev. Luke 3:1-6\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 21 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par
+{\bfseries St. Thomas }\par
+{\scriptsize 2nd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ Eph 2:19-22 }\quad{\scriptsize Gospel\ John 20:24-29 }
+\par{\scriptsize Commemoration\ Tuesday of the 4th Week of Advent }
+\end{tcolorbox}
-\medskip
-\textbf{ 19 } \quad ef-advent-sunday-4\\
-\small class-1 \textperiodcentered\ violet\\
-\small Ep. 1 Cor. 4:1-5\quad\small Ev. Luke 3:1-6\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 22 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolviolet}\par
+{\bfseries Wednesday of the 4th Week of Advent }\par
+{\scriptsize 2nd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ 1 Cor. 4:1-5 }\quad{\scriptsize Gospel\ Luke 3:1-6 }
-\medskip
+\end{tcolorbox}
-\textbf{ 20 } \quad ef-advent-4-monday\\
-\small class-2 \textperiodcentered\ violet\\
-\small Ep. 1 Cor. 4:1-5\quad\small Ev. Luke 3:1-6\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 23 } \;\; {\scriptsize Thursday } \hfill \swatch{licolviolet}\par
+{\bfseries Thursday of the 4th Week of Advent }\par
+{\scriptsize 2nd Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ 1 Cor. 4:1-5 }\quad{\scriptsize Gospel\ Luke 3:1-6 }
+\end{tcolorbox}
-\textbf{ 21 } \quad thomas\\
-\small class-2 \textperiodcentered\ red\\
-\small Ep. Eph 2:19-22\quad\small Ev. John 20:24-29\\
-\small Com. ef-advent-4-tuesday\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 24 } \;\; {\scriptsize Friday } \hfill \swatch{licolviolet}\par
+{\bfseries Vigil of the Nativity (Christmas Eve) }\par
+{\scriptsize 1st Class \textperiodcentered\ Violet }\par
+{\scriptsize Epistle\ Rom 1:1-6 }\quad{\scriptsize Gospel\ Matt 1:18-21 }
-\textbf{ 22 } \quad ef-advent-4-wednesday\\
-\small class-2 \textperiodcentered\ violet\\
-\small Ep. 1 Cor. 4:1-5\quad\small Ev. Luke 3:1-6\\
+\end{tcolorbox}
-\medskip
-\textbf{ 23 } \quad ef-advent-4-thursday\\
-\small class-2 \textperiodcentered\ violet\\
-\small Ep. 1 Cor. 4:1-5\quad\small Ev. Luke 3:1-6\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 25 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par
+{\bfseries The Nativity of Our Lord (Christmas) }\par
+{\scriptsize 1st Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Heb 1:1-12 }\quad{\scriptsize Gospel\ John 1:1-14 }
-\medskip
+\end{tcolorbox}
-\textbf{ 24 } \quad ef-nativity-vigil\\
-\small class-1 \textperiodcentered\ violet\\
-\small Ep. Rom 1:1-6\quad\small Ev. Matt 1:18-21\\
+\clearpage
-\medskip
+\label{w12-5}
+{\bfseries\large December }\hfill{\small Week 5}\par\vspace{0.5mm}
-\textbf{ 25 } \quad ef-nativity\\
-\small class-1 \textperiodcentered\ white\\
-\small Ep. Heb 1:1-12\quad\small Ev. John 1:1-14\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 26 } \;\; {\scriptsize Sunday } \hfill \swatch{licolwhite}\par
+{\bfseries Sunday within the Octave of the Nativity }\par
+{\scriptsize 2nd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Gal 4:1-7 }\quad{\scriptsize Gospel\ Luke 2:33-40 }
+\par{\scriptsize Commemoration\ St. Stephen }
+\end{tcolorbox}
-\medskip
-\textbf{ 26 } \quad ef-christmas-sunday-0\\
-\small class-2 \textperiodcentered\ white\\
-\small Ep. Gal 4:1-7\quad\small Ev. Luke 2:33-40\\
-\small Com. stephen\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 27 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par
+{\bfseries St. John the Evangelist }\par
+{\scriptsize 2nd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Ecclus 15:1-6 }\quad{\scriptsize Gospel\ John 21:19-24 }
+\par{\scriptsize Commemoration\ ef-nativity-octave-day-3 }
+\end{tcolorbox}
-\medskip
-\textbf{ 27 } \quad john-the-evangelist\\
-\small class-2 \textperiodcentered\ white\\
-\small Ep. Ecclus 15:1-6\quad\small Ev. John 21:19-24\\
-\small Com. ef-nativity-octave-day-3\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 28 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par
+{\bfseries Holy Innocents }\par
+{\scriptsize 2nd Class \textperiodcentered\ Red }\par
+{\scriptsize Epistle\ Apoc 14:1-5 }\quad{\scriptsize Gospel\ Matt 2:13-18 }
+\par{\scriptsize Commemoration\ ef-nativity-octave-day-4 }
+\end{tcolorbox}
-\medskip
-\textbf{ 28 } \quad holy-innocents\\
-\small class-2 \textperiodcentered\ red\\
-\small Ep. Apoc 14:1-5\quad\small Ev. Matt 2:13-18\\
-\small Com. ef-nativity-octave-day-4\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 29 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par
+{\bfseries 5th Day within the Octave of the Nativity }\par
+{\scriptsize 2nd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Titus 3:4-7 }\quad{\scriptsize Gospel\ Luke 2:15-20 }
+\par{\scriptsize Commemoration\ thomas-becket }
+\end{tcolorbox}
-\medskip
-\textbf{ 29 } \quad ef-nativity-octave-day-5\\
-\small class-2 \textperiodcentered\ white\\
-\small Ep. Titus 3:4-7\quad\small Ev. Luke 2:15-20\\
-\small Com. thomas-becket\\
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 30 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par
+{\bfseries 6th Day within the Octave of the Nativity }\par
+{\scriptsize 2nd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Titus 3:4-7 }\quad{\scriptsize Gospel\ Luke 2:15-20 }
-\medskip
+\end{tcolorbox}
-\textbf{ 30 } \quad ef-nativity-octave-day-6\\
-\small class-2 \textperiodcentered\ white\\
-\small Ep. Titus 3:4-7\quad\small Ev. Luke 2:15-20\\
-\medskip
+\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm]
+{\bfseries 31 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par
+{\bfseries 7th Day within the Octave of the Nativity }\par
+{\scriptsize 2nd Class \textperiodcentered\ White }\par
+{\scriptsize Epistle\ Titus 3:4-7 }\quad{\scriptsize Gospel\ Luke 2:15-20 }
+\par{\scriptsize Commemoration\ silvester }
+\end{tcolorbox}
-\textbf{ 31 } \quad ef-nativity-octave-day-7\\
-\small class-2 \textperiodcentered\ white\\
-\small Ep. Titus 3:4-7\quad\small Ev. Luke 2:15-20\\
-\small Com. silvester\\
-\medskip
+\clearpage
\end{document}